.elementor-2874 .elementor-element.elementor-element-2087f0e{--display:flex;}.elementor-2874 .elementor-element.elementor-element-02f4782{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg:          #ffffff;
    --surface:     #f8fafc;
    --heading:     #0f172a;
    --text:        #475569;
    --muted:       #94a3b8;
    --border:      #e2e8f0;
    --cta:         #f97316;
    --cta-hover:   #ea580c;
    --cta-glow:    rgba(249, 115, 22, 0.30);
    --green:       #16a34a;
    --navy:        #0f172a;
    --navy-light:  #1e293b;
    --radius:      14px;
    --radius-sm:   8px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg:   0 8px 48px rgba(15, 23, 42, 0.12);
    --font:        'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }
ul { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .container { padding: 0 24px; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
    color: var(--heading);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 22px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px !important;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease,
                transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
}
@media (min-width: 768px) {
    .btn { height: 56px; padding: 0 28px; }
}

.btn--primary {
    background: var(--cta) !important;
    color: #fff !important;
    border-color: var(--cta);
    text-decoration: none !important;
}
.btn--primary:hover {
    background: var(--cta-hover) !important;
    border-color: var(--cta-hover);
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 8px 24px var(--cta-glow);
}

.btn--outline {
    background: transparent;
    color: var(--heading);
    border-color: var(--border);
    text-decoration: none !important;
}
.btn--outline:hover {
    border-color: var(--cta);
    color: var(--cta);
}

.btn--white {
    background: #fff;
    color: var(--cta);
    border-color: #fff;
    font-weight: 700;
}
.btn--white:hover {
    background: var(--surface);
    transform: translateY(-2px);
}

.btn--sm   { height: 44px; padding: 0 18px; font-size: 14px !important; }
.btn--lg   { height: 60px; font-size: 17px !important; border-radius: var(--radius); }
.btn--full { width: 100%; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 56px 0; }
@media (min-width: 768px)  { .section { padding: 50px 0; } }
@media (min-width: 1024px) { .section { padding: 60px 0; } }

.section__header { margin-bottom: 40px; }
@media (min-width: 768px) { .section__header { margin-bottom: 56px; } }

.section__header--centered { text-align: center; }
.section__header--centered p { margin: 0 auto; }

.section__header h2 {
    font-size: 26px !important;
    margin-bottom: 14px;
}
.section__header p {
    font-size: 16px !important;
    max-width: 600px;
    color: var(--text);
}
@media (min-width: 768px) {
    .section__header h2 { font-size: 32px !important; }
    .section__header p  { font-size: 17px !important; }
}
@media (min-width: 1024px) {
    .section__header h2 { font-size: 38px !important; }
    .section__header p  { font-size: 18px !important; }
}

.section__tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.10);
    color: var(--cta);
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

/* ============================================================
   BADGES & CHECKS
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(22, 163, 74, 0.10);
    color: var(--green);
    font-size: 13px !important;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.check        { color: var(--cta); font-weight: 700; }
.check--green { color: var(--green); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    transition: box-shadow 0.2s;
}
@media (min-width: 768px) { .nav { height: 70px; } }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    font-size: 22px !important;
    font-weight: 900;
    color: var(--heading);
    letter-spacing: -0.03em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 48px 0 60px;
    background: linear-gradient(140deg, #f8fafc 0%, #ffffff 55%, #fff7ed 100%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 1024px) {
    .hero {
        padding: 80px 0 96px;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }
    .hero__inner {
        grid-template-columns: 1fr 400px;
        gap: 64px;
    }
}

.hero__headline {
    font-size: 30px !important;
    line-height: 1.1;
    margin-bottom: 16px;
}
@media (min-width: 768px) {
    .hero__headline { font-size: 40px !important; margin-bottom: 20px; }
}
@media (min-width: 1024px) {
    .hero__headline { font-size: 54px !important; line-height: 1.08; }
}

.hero__sub {
    font-size: 16px !important;
    line-height: 1.72;
    margin-bottom: 24px;
    color: var(--text);
}
@media (min-width: 768px) {
    .hero__sub {
        font-size: 17px !important;
        margin-bottom: 28px;
        max-width: 560px;
    }
}
@media (min-width: 1024px) {
    .hero__sub { font-size: 18px !important; }
}

.hero__bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
@media (min-width: 768px) { .hero__bullets { margin-bottom: 32px; } }

.hero__bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px !important;
    font-weight: 500;
    color: var(--heading);
}
@media (min-width: 768px) { .hero__bullets li { font-size: 16px !important; } }

.hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.hero__ctas .btn { width: 100%; }

@media (min-width: 480px) {
    .hero__ctas { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .hero__ctas .btn { width: auto; }
}

.hero__trust {
    font-size: 13px !important;
    color: var(--muted);
}

/* --- Hero Form Card --- */
.hero__form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px 20px;
    position: static;
    border: 1px solid var(--border);
}
@media (min-width: 768px) {
    .hero__form-card { padding: 28px; max-width: 520px; }
}
@media (min-width: 1024px) {
    .hero__form-card {
        padding: 32px;
        position: sticky;
        top: 90px;
        max-width: none;
    }
}

.form-card__header { margin-bottom: 18px; }
@media (min-width: 768px) { .form-card__header { margin-bottom: 22px; } }

.form-card__badge {
    display: inline-block;
    background: rgba(22, 163, 74, 0.10);
    color: var(--green);
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.form-card__header h3 {
    font-size: 18px !important;
    margin-bottom: 5px;
}
@media (min-width: 768px) { .form-card__header h3 { font-size: 20px !important; } }

.form-card__header p {
    font-size: 13px !important;
    color: var(--text);
}

/* ============================================================
   FORMS
   ============================================================ */
.form__group { margin-bottom: 10px; }

.form__group label {
    display: block;
    font-size: 13px !important;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 6px;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px !important;
    color: var(--heading);
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form textarea {
    height: auto;
    padding: 12px 15px;
    resize: vertical;
    min-height: 90px;
}

.form input::placeholder,
.form textarea::placeholder { color: var(--muted); }

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form input.error,
.form select.error,
.form textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10);
}

.form__micro {
    text-align: center;
    font-size: 12px !important;
    color: var(--muted);
    margin-top: 10px;
}

.form__intro {
    font-size: 14px !important;
    color: var(--text);
    margin-bottom: 20px;
}
@media (min-width: 768px) { .form__intro { font-size: 15px !important; } }

.form--full h3 {
    font-size: 20px !important;
    margin-bottom: 6px;
}
@media (min-width: 768px) { .form--full h3 { font-size: 22px !important; } }

.form__row { display: grid; gap: 12px; }
.form__row--2 { grid-template-columns: 1fr; }
@media (min-width: 480px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.form__row .form__group { margin-bottom: 0; }

.form__trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 12px !important;
    font-weight: 600;
    color: var(--green);
    margin-top: 14px;
}
@media (min-width: 480px) {
    .form__trust-row { gap: 20px; font-size: 13px !important; }
}

/* Form success state */
.form__success {
    text-align: center;
    padding: 40px 24px;
}
@media (min-width: 768px) { .form__success { padding: 56px 32px; } }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.form__success h3 { font-size: 22px !important; margin-bottom: 10px; }
@media (min-width: 768px) { .form__success h3 { font-size: 24px !important; } }
.form__success p { font-size: 15px !important; color: var(--text); }
.success-sub { font-size: 13px !important; color: var(--muted) !important; margin-top: 8px; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--surface); }

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
}
@media (min-width: 600px) {
    .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 1024px) {
    .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
}

.pain-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) { .pain-card { padding: 28px 24px; gap: 16px; } }
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.pain-card__icon { font-size: 24px; flex-shrink: 0; line-height: 1; padding-top: 2px; }
@media (min-width: 768px) { .pain-card__icon { font-size: 26px; } }
.pain-card p {
    font-size: 14px !important;
    font-weight: 500;
    color: var(--heading);
    margin: 0;
}
@media (min-width: 768px) { .pain-card p { font-size: 15px !important; } }

.problem__closing {
    text-align: center;
    font-size: 16px !important;
    font-weight: 600;
    color: var(--heading);
    padding: 18px 20px;
    background: rgba(249, 115, 22, 0.06);
    border-left: 4px solid var(--cta);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    max-width: 700px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .problem__closing { font-size: 18px !important; padding: 22px 32px; }
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 1024px) {
    .solution__inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.solution__copy h2 {
    font-size: 24px !important;
    margin-bottom: 14px;
}
@media (min-width: 768px) { .solution__copy h2 { font-size: 30px !important; } }
@media (min-width: 1024px) { .solution__copy h2 { font-size: 36px !important; } }

.solution__copy > p {
    font-size: 15px !important;
    margin-bottom: 24px;
    line-height: 1.72;
}
@media (min-width: 768px) {
    .solution__copy > p { font-size: 16px !important; margin-bottom: 28px; }
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
@media (min-width: 768px) { .benefit-cards { gap: 14px; margin-bottom: 28px; } }

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) { .benefit-card { gap: 14px; padding: 18px 20px; } }
.benefit-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.07);
}

.benefit-card__icon { font-size: 20px; flex-shrink: 0; line-height: 1; padding-top: 2px; }
@media (min-width: 768px) { .benefit-card__icon { font-size: 22px; } }
.benefit-card strong { display: block; font-size: 14px !important; color: var(--heading); margin-bottom: 3px; }
@media (min-width: 768px) { .benefit-card strong { font-size: 15px !important; } }
.benefit-card p { font-size: 12px !important; margin: 0; line-height: 1.5; }
@media (min-width: 768px) { .benefit-card p { font-size: 13px !important; } }

/* Solution image (legacy fallback) */
.solution__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}

/* ── Alumni Gallery: auto-slider on mobile, grid on tablet+ ── */
.alumni-wrap { position: relative; }

.alumni-window {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Mobile: horizontal flex slider */
.alumni-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.alumni-slide { flex: 0 0 100%; min-width: 0; }

.alumni-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Navigation dots */
.alumni-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}
.alumni-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.alumni-dot.is-active {
    background: var(--cta);
    transform: scale(1.35);
}

/* Tablet+: 3×2 grid, dots hidden */
@media (min-width: 768px) {
    .alumni-window {
        overflow: hidden;
        border-radius: var(--radius-lg);
    }
    .alumni-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        transition: none;
        will-change: auto;
    }
    .alumni-slide { flex: none; }
    .alumni-slide img { aspect-ratio: 1; }
    .alumni-dots { display: none; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--navy); }

.process .section__tag { background: rgba(249, 115, 22, 0.18); color: var(--cta); }
.process .section__header--centered h2 { color: #fff; }
.process .section__header p { color: rgba(255, 255, 255, 0.65); }

/* Base: stacked single-column, arrows hidden */
.process__track {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: stretch;
}

/* ── Card ── */
.process__card {
    flex: 0 0 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
@media (min-width: 768px) {
    .process__card { flex: 0 0 calc(33.333% - 10px); }
}
@media (min-width: 1024px) {
    .process__track { flex-wrap: nowrap; gap: 0; }
    .process__card  { flex: 1; }
}
.process__card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30);
}

/* ── Card image area ── */
.process__card-img {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (min-width: 768px) { .process__card-img { height: 180px; } }

/* Subtle grid-dot overlay for texture */
.process__card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}

/* Per-step gradient themes */
.pci--1 { background: linear-gradient(145deg, #1e3a5f 0%, #2563eb 100%); }
.pci--2 { background: linear-gradient(145deg, #1e1b4b 0%, #7c3aed 100%); }
.pci--3 { background: linear-gradient(145deg, #0c4a6e 0%, #0891b2 100%); }
.pci--4 { background: linear-gradient(145deg, #431407 0%, #c2410c 100%); }
.pci--5 { background: linear-gradient(145deg, #052e16 0%, #15803d 100%); }

/* Step number badge — top-left of image */
.process__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--cta);
    color: #fff;
    font-size: 11px !important;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 11px;
    border-radius: 100px;
    box-shadow: 0 3px 12px var(--cta-glow);
}

/* Real image fills the card image area */
.process__card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.process__card:hover .process__card-img img {
    transform: scale(1.04);
}

/* ── Card body ── */
.process__card-body {
    padding: 16px 14px 20px;
}
@media (min-width: 768px) { .process__card-body { padding: 18px 16px 22px; } }

.process__card-body h3 {
    font-size: 13px !important;
    color: #fff;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) { .process__card-body h3 { font-size: 14px !important; } }

.process__card-body p {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.6;
    margin: 0;
}
@media (min-width: 768px) { .process__card-body p { font-size: 13px !important; } }

/* ── Arrow connector: hidden on mobile/tablet, visible on desktop ── */
.process__arrow { display: none; }
@media (min-width: 1024px) {
    .process__arrow {
        flex: 0 0 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
        padding-bottom: 28px;
    }
}

.process__note {
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px !important;
    margin-top: 36px;
    font-style: italic;
}
@media (min-width: 768px) { .process__note { font-size: 14px !important; margin-top: 40px; } }

/* ============================================================
   TRUST
   ============================================================ */
/* ── Testimonial 3-card grid ── */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
}
@media (min-width: 768px) {
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.testimonial-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

/* ── Video area (fills card width, 16:9) ── */
.testimonial-card__video { width: 100%; flex-shrink: 0; }

.video-placeholder {
    background: rgba(255, 255, 255, 0.06);
    aspect-ratio: 16 / 9;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 11px !important;
    transition: background 0.2s;
}
.video-placeholder:hover { background: rgba(255, 255, 255, 0.10); }
.video-placeholder:hover .video-placeholder__play {
    transform: scale(1.1);
    box-shadow: 0 6px 24px var(--cta-glow);
}

.video-placeholder__play {
    width: 48px;
    height: 48px;
    background: var(--cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px !important;
    color: #fff;
    box-shadow: 0 4px 16px var(--cta-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .video-placeholder__play { width: 52px; height: 52px; font-size: 16px !important; }
}

/* Real video fills the card video area */
.testimonial-card__video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Text body ── */
.testimonial-card__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
@media (min-width: 768px) { .testimonial-card__body { padding: 22px 24px 26px; } }

.testimonial__stars {
    font-size: 14px !important;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
@media (min-width: 768px) { .testimonial__stars { font-size: 15px !important; margin-bottom: 12px; } }

.testimonial-card__body blockquote {
    font-size: 13px !important;
    line-height: 1.72;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    flex: 1;
}
@media (min-width: 768px) { .testimonial-card__body blockquote { font-size: 14px !important; } }

.testimonial-card__body cite {
    display: block;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.40);
    font-style: normal;
    font-weight: 500;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
    .testimonial-card__body cite { font-size: 12px !important; margin-top: 14px; padding-top: 12px; }
}

/* ── Industry tags ── */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
@media (min-width: 768px) { .industry-tags { gap: 10px; } }
.industry-tags span {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px !important;
    font-weight: 500;
    color: var(--heading);
    transition: background 0.2s, border-color 0.2s;
}
@media (min-width: 768px) { .industry-tags span { padding: 8px 18px; font-size: 14px !important; } }
.industry-tags span:hover {
    background: rgba(249, 115, 22, 0.07);
    border-color: rgba(249, 115, 22, 0.3);
}

/* ── Stats grid ── */
.trust__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}
@media (min-width: 1024px) {
    .trust__stats { grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 52px; }
}

.trust__stat {
    text-align: center;
    padding: 24px 14px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) { .trust__stat { padding: 32px 16px; } }
.trust__stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.trust__stat-icon { font-size: 28px; margin-bottom: 10px; }
@media (min-width: 768px) { .trust__stat-icon { font-size: 36px; margin-bottom: 12px; } }
.trust__stat strong { display: block; font-size: 14px !important; color: var(--heading); margin-bottom: 6px; }
@media (min-width: 768px) { .trust__stat strong { font-size: 17px !important; margin-bottom: 8px; } }
.trust__stat p { font-size: 12px !important; line-height: 1.5; }
@media (min-width: 768px) { .trust__stat p { font-size: 13px !important; } }

/* ============================================================
   MID CTA STRIP
   ============================================================ */
.cta-strip {
    background: linear-gradient(130deg, var(--cta) 0%, var(--cta-hover) 100%);
    padding: 48px 0;
}
@media (min-width: 768px)  { .cta-strip { padding: 56px 0; } }
@media (min-width: 1024px) { .cta-strip { padding: 64px 0; } }

.cta-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
@media (min-width: 768px) {
    .cta-strip__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 32px;
    }
}

.cta-strip__copy h2 {
    color: #fff;
    font-size: 22px !important;
    margin-bottom: 6px;
}
@media (min-width: 768px) { .cta-strip__copy h2 { font-size: 26px !important; } }
@media (min-width: 1024px) { .cta-strip__copy h2 { font-size: 30px !important; } }

.cta-strip__copy p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px !important;
}
@media (min-width: 768px) { .cta-strip__copy p { font-size: 16px !important; } }

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.final-cta { background: var(--surface); }

.final-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
@media (min-width: 1024px) {
    .final-cta__inner { grid-template-columns: 1fr 1.25fr; gap: 72px; }
}

.final-cta__copy h2 {
    font-size: 24px !important;
    margin-bottom: 14px;
}
@media (min-width: 768px) { .final-cta__copy h2 { font-size: 30px !important; } }
@media (min-width: 1024px) { .final-cta__copy h2 { font-size: 36px !important; } }

.final-cta__copy > p {
    font-size: 15px !important;
    margin-bottom: 24px;
    line-height: 1.72;
}
@media (min-width: 768px) {
    .final-cta__copy > p { font-size: 16px !important; margin-bottom: 28px; }
}

.final-cta__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
@media (min-width: 768px) { .final-cta__list { gap: 12px; margin-bottom: 28px; } }

.final-cta__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px !important;
    font-weight: 500;
    color: var(--heading);
}
@media (min-width: 768px) { .final-cta__list li { font-size: 16px !important; } }

.scarcity {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(249, 115, 22, 0.07);
    border-left: 3px solid var(--cta);
    padding: 14px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
@media (min-width: 768px) { .scarcity { padding: 16px 20px; } }
.scarcity__icon { font-size: 18px; flex-shrink: 0; }
@media (min-width: 768px) { .scarcity__icon { font-size: 20px; } }
.scarcity p { font-size: 13px !important; font-weight: 600; color: var(--heading); line-height: 1.5; }
@media (min-width: 768px) { .scarcity p { font-size: 14px !important; } }

.final-cta__form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
@media (min-width: 768px)  { .final-cta__form-wrap { padding: 32px; } }
@media (min-width: 1024px) { .final-cta__form-wrap { padding: 40px; } }

.final-cta__form-wrap h4 {
    font-size: 20px !important;
    margin-bottom: 6px;
    color: var(--heading);
}
@media (min-width: 768px) { .final-cta__form-wrap h4 { font-size: 22px !important; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }

.faq__list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq__item[open] {
    background: var(--surface);
    border-color: rgba(249, 115, 22, 0.25);
}

.faq__item summary {
    cursor: pointer;
    padding: 16px 20px;
    font-size: 14px !important;
    font-weight: 600;
    color: var(--heading);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    gap: 12px;
}
@media (min-width: 768px) {
    .faq__item summary { padding: 20px 24px; font-size: 16px !important; gap: 16px; }
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--cta);
    flex-shrink: 0;
    transition: transform 0.2s;
}
@media (min-width: 768px) { .faq__item summary::after { font-size: 22px; } }
.faq__item[open] summary::after { content: '−'; }

.faq__item p {
    padding: 0 20px 16px;
    font-size: 14px !important;
    line-height: 1.7;
    color: var(--text);
}
@media (min-width: 768px) { .faq__item p { padding: 0 24px 20px; font-size: 15px !important; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 40px 0;
}
@media (min-width: 768px) { .footer { padding: 48px 0; } }

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__logo { color: #fff !important; }
.footer__brand p { color: rgba(255, 255, 255, 0.45); font-size: 14px !important; margin-top: 6px; }
.footer__links { display: flex; gap: 20px; justify-content: center; }
@media (min-width: 768px) { .footer__links { gap: 24px; } }
.footer__links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px !important;
    transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 12px 16px env(safe-area-inset-bottom);
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    display: none;
}

/* ============================================================
   FLOATING DESKTOP BUTTON
   ============================================================ */
.float-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 200;
    background: var(--heading);
    color: #fff;
    padding: 14px 22px;
    border-radius: 100px;
    font-size: 14px !important;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s, background 0.2s;
    display: none;
    align-items: center;
    gap: 8px;
}
.float-btn:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
}

/* Show on desktop only via JS .is-visible class */
@media (min-width: 769px) {
    .float-btn.is-visible { display: flex; }
}

/* ============================================================
   ELEMENTOR FORM EMBED — IndiaWorks Design Override
   Targets [elementor-template id="2898"] inside both
   .iw-form-embed--mini  (hero card)
   .iw-form-embed--full  (final CTA card)
   ============================================================ */

/* Strip Elementor's default outer padding/margin on embed */
.iw-form-embed .elementor-section-wrap,
.iw-form-embed .e-con,
.iw-form-embed .elementor-section,
.iw-form-embed .elementor-container,
.iw-form-embed .elementor-row,
.iw-form-embed .elementor-column,
.iw-form-embed .elementor-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
}

/* ── Field groups ── */
.iw-form-embed .elementor-field-group {
    margin-bottom: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Base (mobile): all fields full width */
.iw-form-embed .elementor-form-fields-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}
.iw-form-embed .elementor-field-group.elementor-col-100 { flex: 0 0 100% !important; }
.iw-form-embed .elementor-field-group.elementor-col-50  { flex: 0 0 100% !important; }
.iw-form-embed .elementor-field-group.elementor-col-33  { flex: 0 0 100% !important; }

/* Tablet+: allow multi-column layouts */
@media (min-width: 769px) {
    .iw-form-embed .elementor-field-group.elementor-col-50  { flex: 0 0 calc(50% - 5px) !important; }
    .iw-form-embed .elementor-field-group.elementor-col-33  { flex: 0 0 calc(33.333% - 7px) !important; }
}

/* ── Labels ── */
.iw-form-embed .elementor-field-label {
    display: block !important;
    font-family: var(--font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--heading) !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

/* ── Text / email / tel / number / url inputs ── */
.iw-form-embed .elementor-field-textual {
    width: 100% !important;
    height: 50px !important;
    padding: 0 15px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font) !important;
    font-size: 14px !important;
    color: var(--heading) !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Textarea */
.iw-form-embed textarea.elementor-field-textual {
    height: auto !important;
    min-height: 90px !important;
    padding: 12px 15px !important;
    resize: vertical !important;
}

/* Focus */
.iw-form-embed .elementor-field-textual:focus {
    border-color: var(--cta) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12) !important;
}

/* ── Select ── */
.iw-form-embed .elementor-select-wrapper {
    position: relative !important;
    display: block !important;
}
.iw-form-embed .elementor-select-wrapper::after {
    content: '' !important;
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 12px !important;
    height: 8px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    pointer-events: none !important;
}
.iw-form-embed .elementor-field-select {
    width: 100% !important;
    height: 50px !important;
    padding: 0 36px 0 15px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font) !important;
    font-size: 14px !important;
    color: var(--heading) !important;
    background: #fff !important;
    box-shadow: none !important;
    cursor: pointer !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    outline: none !important;
}
.iw-form-embed .elementor-field-select:focus {
    border-color: var(--cta) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12) !important;
}

/* ── Checkbox & Radio ── */
.iw-form-embed .elementor-field-label.elementor-field-option {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

/* ── Submit button ── */
.iw-form-embed .e-form__buttons {
    margin-top: 6px !important;
}
.iw-form-embed .elementor-button {
    width: 100% !important;
    height: 56px !important;
    background: var(--cta) !important;
    background-color: var(--cta) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    font-family: var(--font) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
    letter-spacing: -0.01em !important;
}
/* Full form gets a taller button on tablet+ */
.iw-form-embed--full .elementor-button {
    height: 60px !important;
    font-size: 17px !important;
}
@media (min-width: 768px) {
    .iw-form-embed--full .elementor-button { height: 64px !important; }
}
.iw-form-embed .elementor-button:hover {
    background: var(--cta-hover) !important;
    background-color: var(--cta-hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px var(--cta-glow) !important;
}
.iw-form-embed .elementor-button .elementor-button-text,
.iw-form-embed .elementor-button .elementor-button-content-wrapper {
    font-family: var(--font) !important;
    font-weight: 700 !important;
}

/* ── Success / error messages ── */
.iw-form-embed .elementor-message {
    font-family: var(--font) !important;
    font-size: 14px !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px !important;
    margin-top: 10px !important;
}
.iw-form-embed .elementor-message-success {
    background: rgba(22, 163, 74, 0.08) !important;
    color: var(--green) !important;
    border: 1px solid rgba(22, 163, 74, 0.20) !important;
}
.iw-form-embed .elementor-message-danger {
    background: rgba(239, 68, 68, 0.07) !important;
    color: #dc2626 !important;
    border: 1px solid rgba(239, 68, 68, 0.18) !important;
}

/* ── Validation error state on individual fields ── */
.iw-form-embed .elementor-field-textual.elementor-field-invalid,
.iw-form-embed .elementor-field-select.elementor-field-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10) !important;
}
.iw-form-embed .elementor-error-message {
    font-size: 12px !important;
    color: #dc2626 !important;
    font-family: var(--font) !important;
    margin-top: 4px !important;
}/* End custom CSS */