/* ================= Kadrebi DEMO STYLES ================= */
.kadrebi-demo-section {
    background-color: #f8fafc;
    font-family: inherit;
}

/* Left Pitch Content */
.kadrebi-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}
.kadrebi-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.kadrebi-demo-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 1rem;
}
.kadrebi-demo-title span {
    color: #2563eb;
}
.kadrebi-demo-lead {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

.kadrebi-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.kadrebi-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.kadrebi-feat-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kadrebi-feat-icon svg {
    width: 22px;
    height: 22px;
}
.kadrebi-feat-item h6 {
    margin: 0 0 3px 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #1e293b;
}
.kadrebi-feat-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

/* Right Card & Wizard */
.kadrebi-wizard-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
    border: 1px solid #edf2f7;
}

/* Stepper Progress Bar */
.kadrebi-steps-header {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.5rem;
}
.kadrebi-step-line {
    position: absolute;
    top: 18px;
    left: 20px;
    right: 45px;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}
.kadrebi-step-progress {
    height: 100%;
    background: #2563eb;
    transition: width 0.3s ease;
}
.kadrebi-step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}
.kadrebi-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.kadrebi-step-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 6px;
    transition: color 0.25s ease;
}
.kadrebi-step-item.active .kadrebi-step-num {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.kadrebi-step-item.active .kadrebi-step-text {
    color: #0f172a;
    font-weight: 700;
}
.kadrebi-step-item.completed .kadrebi-step-num {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

/* Inputs & Forms */
.kadrebi-step-intro h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}
.kadrebi-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.kadrebi-label .req {
    color: #ef4444;
}
.kadrebi-input, .kadrebi-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.92rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.kadrebi-input:focus, .kadrebi-textarea:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.kadrebi-input.is-invalid, .kadrebi-textarea.is-invalid {
    border-color: #ef4444;
    background-color: #fffaf0;
}
.kadrebi-error-msg {
    display: none;
    color: #ef4444;
    font-size: 0.78rem;
    margin-top: 4px;
    font-weight: 500;
}
.kadrebi-input.is-invalid + .kadrebi-error-msg {
    display: block;
}

/* Checkbox Cards */
.kadrebi-checkbox-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s;
    user-select: none;
    margin-bottom: 0;
}
.kadrebi-checkbox-card input {
    display: none;
}
.kadrebi-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}
.kadrebi-checkbox-card input:checked + .kadrebi-checkbox-custom {
    background: #2563eb;
    border-color: #2563eb;
}
.kadrebi-checkbox-card input:checked + .kadrebi-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.kadrebi-checkbox-card:has(input:checked) {
    border-color: #2563eb;
    background: #eff6ff;
    color: #1e40af;
}

/* Buttons */
.kadrebi-btn-next, .kadrebi-btn-submit {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.kadrebi-btn-next:hover {
    background: #2563eb;
    transform: translateY(-1px);
}
.kadrebi-btn-submit {
    background: #2563eb;
}
.kadrebi-btn-submit:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}
.kadrebi-btn-prev {
    background: #f1f5f9;
    color: #475569;
    border: none;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.kadrebi-btn-prev:hover {
    background: #e2e8f0;
    color: #0f172a;
}