/* ═══════════════════════════════════════════════════════════════════
   Refer Car Buyers — style.css
   Brand: #16A34A (green) · #F4B400 (gold) · #111827 (near-black)
   Mobile-first · Fluid typography · WCAG 2.1 AA
═══════════════════════════════════════════════════════════════════ */

/* ─── Reset & Tokens ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:        #16A34A;
    --green-dark:   #15803D;
    --green-light:  #DCFCE7;
    --green-xlight: #F0FDF4;
    --gold:         #F4B400;
    --gold-dark:    #D97706;
    --gold-light:   #FEF9C3;
    --ink:          #111827;
    --ink-muted:    #374151;
    --ink-faint:    #6B7280;
    --surface:      #FFFFFF;
    --surface-alt:  #F9FAFB;
    --border:       #E5E7EB;
    --border-mid:   #D1D5DB;
    --radius-sm:    6px;
    --radius-md:    10px;
    --radius-lg:    16px;
    --radius-xl:    24px;
    --radius-pill:  999px;
    --shadow-xs:    0 1px 3px rgba(0,0,0,0.08);
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.12);
    --shadow-green: 0 4px 20px rgba(22,163,74,0.25);
    --transition:   0.2s ease;
    --max-w:        1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ─── Focus & Accessibility ──────────────────────────────────────── */
:focus-visible {
    outline: 2.5px solid var(--green);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ─── Container ──────────────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
}

em { font-style: normal; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    min-height: 48px;
    white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: var(--shadow-green);
}
.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(22,163,74,0.35);
}

.btn--ghost {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    min-height: 56px;
}

.btn--submit {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    border: none;
    width: 100%;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    padding: 18px 28px;
    min-height: 58px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow-green);
    letter-spacing: 0.01em;
}
.btn--submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #15803D 0%, #166534 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(22,163,74,0.4);
}
.btn--submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ─── Sections ───────────────────────────────────────────────────── */
.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    background: var(--green-light);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}
.section__eyebrow--light {
    color: var(--gold);
    background: rgba(244,180,0,0.18);
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section__title--left { text-align: left; }

.section__desc {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--ink-faint);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 1.5rem;
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }

.nav__links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.nav__links a {
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 600;
    transition: color var(--transition);
}
.nav__links a:hover { color: var(--green); }

.nav__cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ════════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: linear-gradient(150deg, #0D4729 0%, #16A34A 45%, #1D8348 100%);
    padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 11vw, 9rem);
    overflow: hidden;
}

/* Geometric shapes */
.hero__bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.shape--1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #F4B400, transparent 70%);
    top: -200px; right: -150px;
}
.shape--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.8), transparent 70%);
    bottom: -100px; left: -100px;
    opacity: 0.05;
}
.shape--3 {
    width: 200px; height: 200px;
    background: var(--gold);
    bottom: 40px; right: 10%;
    opacity: 0.1;
}

/* Dot pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.92);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.75rem;
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}

.hero__headline {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero__accent {
    color: var(--gold);
    font-family: 'DM Serif Display', Georgia, serif;
    font-style: italic;
}

.hero__sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.hero__sub strong { color: #fff; font-weight: 700; }

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* Proof strip */
.hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: clamp(1rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 3rem);
    max-width: 700px;
    margin: 0 auto;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.proof-card { text-align: center; }

.proof-card__number {
    display: block;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-card__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.2);
}

/* Scroll cue */
.hero__scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: scroll-bounce 2s ease-in-out infinite;
    transition: color var(--transition);
}
.hero__scroll-cue:hover { color: rgba(255,255,255,0.9); }

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════════════════════
   STEPS / HOW IT WORKS
════════════════════════════════════════════════════════════════════ */
.steps-section { background: var(--surface); }

.steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    counter-reset: steps;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.step__num {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: var(--green-xlight);
    border: 2px solid var(--green-light);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green);
    gap: 2px;
    position: relative;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.step:hover .step__num {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: scale(1.05);
}

.step__count {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    opacity: 0.7;
    line-height: 1;
}

.step__connector {
    position: absolute;
    left: 36px;
    top: 72px;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: left center;
    display: none;
}

.step__body { flex: 1; padding-top: 4px; }

.step__title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.step__desc {
    font-size: 0.97rem;
    color: var(--ink-faint);
    line-height: 1.7;
}

.steps-guarantee {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--ink-muted);
    background: var(--gold-light);
    border: 1px solid rgba(244,180,0,0.35);
    border-radius: var(--radius-pill);
    padding: 12px 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.steps-guarantee strong { color: var(--ink); }

/* ════════════════════════════════════════════════════════════════════
   ABOUT / TRUST
════════════════════════════════════════════════════════════════════ */
.about-section {
    background: var(--surface-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.about__text { padding-top: 1rem; }

.about__body {
    font-size: clamp(0.97rem, 2vw, 1.08rem);
    color: var(--ink-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

.trust-item__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.trust-item strong { color: var(--ink); font-weight: 700; }

/* Testimonials */
.testimonials__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-faint);
    margin-bottom: 1.25rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.testimonial-card:last-child { margin-bottom: 0; }

.testimonial-card__stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.testimonial-card__quote {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 1rem;
    border: none;
}
.testimonial-card__quote::before { content: '"'; }
.testimonial-card__quote::after { content: '"'; }

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: normal;
}

.author__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author__name { font-size: 0.88rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.author__location { font-size: 0.78rem; color: var(--ink-faint); }

/* ════════════════════════════════════════════════════════════════════
   REFERRAL FORM SECTION
════════════════════════════════════════════════════════════════════ */
.form-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.form-section__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(22,163,74,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(244,180,0,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.form-section__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
}

.form-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.form-section__sub {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.pitch-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pitch-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pitch-stat__num {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.pitch-stat__label {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* Form card */
.form-wrapper {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}

.referral-form fieldset {
    border: none;
    margin-bottom: 2rem;
}

.form__legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--border);
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 4px;
}

.required { color: var(--green); }

.form-label--optional {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-faint);
}

.form-input {
    padding: 12px 14px;
    border: 1.5px solid var(--border-mid);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--ink);
    background: var(--surface);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    min-height: 46px;
}
.form-input::placeholder { color: var(--ink-faint); opacity: 0.7; }
.form-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
    outline: none;
}
.form-input.is-error { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.08); }
.form-input.is-valid { border-color: var(--green); }

.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }

.form-error {
    font-size: 0.78rem;
    color: #EF4444;
    font-weight: 600;
    min-height: 16px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--ink-faint);
    line-height: 1.55;
    padding: 12px 14px;
    background: var(--surface-alt);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}
.form-privacy svg { flex-shrink: 0; margin-top: 2px; color: var(--ink-faint); }
.form-privacy a { color: var(--green); font-weight: 600; text-underline-offset: 2px; }

.form-error-global {
    margin-top: 1rem;
    padding: 12px 16px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-md);
    color: #991B1B;
    font-size: 0.88rem;
    font-weight: 600;
}

/* Spinner in submit button */
.btn__spinner {
    position: absolute;
    right: 20px;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-arc { transform-origin: center; animation: spin-arc 1.5s ease-in-out infinite; }
@keyframes spin-arc { 0% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -60; } }

/* Form success */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}
.form-success__icon { margin-bottom: 1.5rem; }
.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0.75rem;
}
.form-success p {
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.97rem;
}

/* ════════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════════ */
.faq-section { background: var(--surface-alt); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover,
.faq-item:has([aria-expanded="true"]) {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.08);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    transition: background var(--transition);
}
.faq-item__question:hover { background: var(--surface-alt); }
.faq-item__question[aria-expanded="true"] { color: var(--green); }

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--ink-faint);
    transition: transform 0.25s ease, color 0.2s ease;
}
.faq-item__question[aria-expanded="true"] .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
}
.faq-item__answer p {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.75;
    padding-top: 1rem;
}
.faq-item__answer a { color: var(--green); font-weight: 600; }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: 3rem;
}

.footer__logo { display: inline-flex; }

.footer__tagline {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin: 0.75rem 0 0.5rem;
}

.footer__desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer__nav-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer__nav a, .footer__contact a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold); }

.footer__contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer__contact p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

.footer__legal-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}
.footer__legal-links a { font-size: 0.8rem; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}
.footer__bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer__bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}
.modal-overlay[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.25s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
}

.modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-alt);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink-faint);
    transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: var(--border); color: var(--ink); }

.modal__body {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.75;
}
.modal__body h3 { font-size: 1rem; color: var(--green); margin: 1.25rem 0 0.5rem; font-weight: 700; }
.modal__body h3:first-child { margin-top: 0; }
.modal__body p { margin-bottom: 0.75rem; }
.modal__body ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.modal__body li { margin-bottom: 0.35rem; }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════════ */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
    .about__inner { grid-template-columns: 1fr; }
    .form-section__inner { grid-template-columns: 1fr; }
    .form-section__pitch { max-width: 600px; }
    .pitch-stats { flex-direction: row; gap: 2rem; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: 1 / -1; }
    .faq-grid { grid-template-columns: 1fr; }
}

/* Tablets portrait (≤768px) */
@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }

    .nav__links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid var(--border);
        border-bottom: 2px solid var(--border);
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-md);
    }

    .nav__links.is-open a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }
    .nav__links.is-open li:last-child a {
        border-bottom: none;
        margin-top: 0.5rem;
        display: inline-flex;
        justify-content: center;
        width: 100%;
        padding: 14px;
    }

    .nav { position: sticky; }

    .hero__proof { flex-direction: column; gap: 1.25rem; }
    .proof-divider { width: 60px; height: 1px; }

    .form-row { grid-template-columns: 1fr; }

    .footer__inner { grid-template-columns: 1fr; }
    .footer__brand { grid-column: auto; }
    .pitch-stats { flex-direction: column; gap: 1.25rem; }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .step { flex-direction: column; gap: 1rem; }
    .step__num { width: 60px; height: 60px; }
    .hero__actions { flex-direction: column; width: 100%; }
    .hero__actions .btn { width: 100%; text-align: center; }
    .steps-guarantee { text-align: center; flex-direction: column; gap: 6px; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --surface: #111827;
        --surface-alt: #1F2937;
        --border: #374151;
        --border-mid: #4B5563;
        --ink: #F9FAFB;
        --ink-muted: #D1D5DB;
        --ink-faint: #9CA3AF;
        --green-xlight: rgba(22,163,74,0.12);
        --green-light: rgba(22,163,74,0.25);
        --gold-light: rgba(244,180,0,0.12);
        --shadow-xs: 0 1px 3px rgba(0,0,0,0.3);
        --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
        --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    }

    .nav { background: rgba(17,24,39,0.97); }
    .form-wrapper { background: #1F2937; }
    .form-input { background: #111827; color: #F9FAFB; border-color: var(--border-mid); }
    .form-input::placeholder { color: #6B7280; }
    .form-privacy { background: #111827; }
    .testimonial-card { background: #1F2937; }
    .faq-item { background: #1F2937; }
    .modal { background: #1F2937; }
    .modal__close { background: #374151; }
    .modal__close:hover { background: #4B5563; }
    .step__num { background: rgba(22,163,74,0.15); }
    .author__avatar { background: var(--green-dark); }
}

/* ════════════════════════════════════════════════════════════════════
   HERO IMAGE SUPPORT
════════════════════════════════════════════════════════════════════ */
.hero.has-image {
    background-image: url('img/hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.hero.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(13,71,41,0.88) 0%, rgba(22,163,74,0.75) 50%, rgba(29,131,72,0.85) 100%);
    z-index: 0;
}
.hero.has-image .hero__bg-shapes,
.hero.has-image .hero__inner,
.hero.has-image .hero__scroll-cue {
    z-index: 1;
    position: relative;
}

/* ════════════════════════════════════════════════════════════════════
   SERVICE AREA (SEO city links)
════════════════════════════════════════════════════════════════════ */
.service-area {
    padding: 2.5rem 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.service-area__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-bottom: 1rem;
}

.service-area__cities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

.service-area__cities a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}
.service-area__cities a:hover {
    color: var(--gold);
}