/* =============================================
   DRIVE RIGHT — Mid-Market, Warm & Modern
   Trusted advisor feel with modern tech elements
   ============================================= */

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

:root {
    /* Modern Cool Palette */
    --primary:        #0F172A;       /* Slate / Deep Charcoal */
    --primary-hover:  #1E293B;
    --primary-light:  #F8FAFC;
    --primary-subtle: rgba(15, 23, 42, 0.05);

    /* Accents */
    --accent:         #2563EB;       /* Cobalt / Modern Blue */
    --accent-light:   #EFF6FF;

    /* Semantic */
    --success:        #10B981;
    --success-light:  #ECFDF5;
    --success-border: #A7F3D0;
    --danger:         #EF4444;
    --danger-light:   #FEF2F2;
    --danger-border:  #FECACA;

    /* Crisp Neutrals */
    --bg-page:        #FFFFFF;       /* Crisp white */
    --bg-white:       #FFFFFF;
    --bg-warm:        #F8FAFC;       /* Slight cool gray */
    --bg-cream:       #F1F5F9;       /* Slate 100 */
    --bg-dark:        #020617;       /* Very dark slate */
    --text-dark:      #0F172A;       /* Slate 900 */
    --text-body:      #334155;       /* Slate 700 */
    --text-muted:     #64748B;       /* Slate 500 */
    --text-light:     #94A3B8;       /* Slate 400 */
    --border:         #E2E8F0;       /* Slate 200 */
    --border-hover:   #CBD5E1;

    /* Typography */
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad:     80px;
    --section-pad-mob: 48px;
    --radius:          12px;
    --radius-sm:       8px;
    --radius-lg:       16px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-page);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.section-label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

.section-heading {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-subtext {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    max-width: 560px;
    margin: 14px auto 0;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    color: #FFFFFF;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
    transform: translateY(-1px);
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    color: var(--primary);
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn--outline:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.btn__text { position: relative; z-index: 1; }
.btn__icon {
    display: flex;
    align-items: center;
    transition: transform 0.25s ease;
}
.btn--primary:hover .btn__icon {
    transform: translateX(3px);
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ---------- Announcement Banner ---------- */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: linear-gradient(90deg, #1e1b4b 0%, #2563eb 50%, #1e1b4b 100%);
    color: #ffffff;
    z-index: 1100;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.announcement-banner__track {
    display: flex;
    white-space: nowrap;
    animation: banner-scroll 40s linear infinite;
    will-change: transform;
}

.announcement-banner__item {
    display: inline-flex;
    align-items: center;
    padding-right: 40px;
    flex-shrink: 0;
}

.announcement-banner__item b {
    color: #fbbf24; /* Amber/Yellow for importance */
    font-weight: 700;
    margin: 0 4px;
}

@keyframes banner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   1. NAVIGATION
   ============================================= */
.nav {
    position: fixed;
    top: 38px; /* Height of the banner */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease, top 0.3s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
}

.nav__wordmark {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav__links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav__links a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s ease;
}

.nav__links a:hover {
    color: var(--primary);
}

.nav__links a::after { display: none; }

/* Nav CTA */
.nav__cta {
    padding: 9px 22px !important;
    font-size: 13px !important;
    border-radius: 8px;
    color: #fff !important;
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: background 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 246, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 32px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu__links a {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.mobile-menu__links a:hover {
    color: var(--primary);
}


/* =============================================
   2. HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--bg-warm);
    padding: 140px 32px 64px; /* Adjusted for 38px banner + original 120px, then tightened */
    overflow: hidden;
}

/* Subtle warm gradient orb */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(27, 107, 90, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 112, 75, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero__text {
    max-width: 520px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--primary-subtle);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(27, 107, 90, 0.12);
}

.hero__label::before { display: none; }
.hero__label::after { display: none; }

.hero__headline {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero__headline span {
    display: block;
    color: var(--primary);
    font-style: normal;
}

.hero__subtext {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 460px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 26px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.01em;
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero CTA Card */
.hero__card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.hero__card-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.hero__card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero__card-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__card-input {
    font-family: var(--sans);
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}

.hero__card-input::placeholder {
    color: var(--text-light);
}

.hero__card-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 107, 90, 0.08);
}

.hero__card .btn--primary {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 4px;
}



/* =============================================
   3b. VALUE PROPOSITION / BRAND STATEMENT
   ============================================= */
.brand-statement {
    background: var(--bg-cream);
    padding: 56px 32px;
}

.brand-statement__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.brand-statement__quote {
    font-family: var(--serif);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(22px, 3.2vw, 32px);
    line-height: 1.4;
    color: var(--text-dark);
    border: none;
    margin-bottom: 0;
}


/* =============================================
   3c. COMPARISON SECTION
   ============================================= */
.comparison {
    background: var(--bg-warm);
    padding: var(--section-pad) 32px;
}

.comparison__inner {
    max-width: 960px;
    margin: 0 auto;
}

.comparison__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.comparison__card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1.5px solid var(--border);
}

.comparison__card--bad {
    border-color: var(--danger-border);
    background: var(--danger-light);
}

.comparison__card--good {
    border-color: var(--success-border);
    background: var(--success-light);
}

.comparison__card-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.comparison__card--bad .comparison__card-title {
    border-bottom-color: var(--danger-border);
}

.comparison__card--good .comparison__card-title {
    border-bottom-color: var(--success-border);
}

.comparison__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
}

.comparison__item + .comparison__item {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.comparison__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.comparison__icon--bad {
    background: rgba(239, 68, 68, 0.12);
    color: var(--danger);
}

.comparison__icon--good {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.comparison__item-text h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.comparison__item-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* =============================================
   4. HOW IT WORKS (Process)
   ============================================= */
.process {
    background: var(--bg-white);
    padding: var(--section-pad) 32px;
}

.process__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.process__step {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-subtle);
    border: 1.5px solid var(--primary);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

.process__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.process__desc {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.process__pricing {
    background: var(--bg-cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    margin: 40px auto 16px;
    max-width: 520px;
    text-align: center;
}

.process__pricing-badge {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--success);
    background: var(--success-light);
    border: 1px solid var(--success-border);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.process__pricing-amount {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.process__pricing-note {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text-muted);
}

.process__divider { display: none; }


/* =============================================
   5. SERVICES
   ============================================= */
.services {
    background: var(--bg-page);
    padding: var(--section-pad) 32px;
}

.services__inner {
    max-width: 980px;
    margin: 0 auto;
}

.services__header {
    margin-bottom: 40px;
}

.services__editorial {
    max-width: 980px;
    margin: 0 auto;
}

.services__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-row {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
    padding-left: 28px;
}

.service-row::before { display: none; }


.service-row__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: var(--primary-subtle);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    padding-top: 0;
}

.service-row__content {
    flex: 1;
}

.service-row__title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-row__desc {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: none;
}

.service-row__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 14px;
    transition: gap 0.25s ease;
    white-space: nowrap;
    align-self: flex-start;
}

.service-row__link:hover {
    gap: 10px;
    color: var(--primary-hover);
}

.services__exotic {
    text-align: center;
    margin-top: 24px;
}

.exotic-link {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
    text-decoration: underline;
    opacity: 0.8;
}

.exotic-link:hover {
    color: var(--primary);
    opacity: 1;
}



/* =============================================
   6. TESTIMONIALS
   ============================================= */
.testimonials {
    background: var(--bg-white);
    padding: var(--section-pad) 32px;
}

.testimonials__inner {
    max-width: 980px;
    margin: 0 auto;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.testimonial-card__stars {
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.testimonial-card__role {
    font-size: 12px;
    color: var(--text-muted);
}


/* =============================================
   7. ABOUT
   ============================================= */
.about {
    background: var(--bg-dark);
    padding: var(--section-pad) 32px;
    overflow: hidden;
}

.about__inner {
    max-width: 960px;
    margin: 0 auto;
}

.about__top {
    text-align: center;
    margin-bottom: 52px;
}

.about__label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.about__headline {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 0;
}

.about__headline-accent {
    color: var(--accent);
    display: inline;
}

.about__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about__col--left {
    display: flex;
    gap: 18px;
    align-items: stretch;
    padding-top: 4px;
}

.about__accent-line {
    width: 3px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(15, 23, 42, 0.2) 100%);
    border-radius: 2px;
}

.about__col--left:hover .about__accent-line {
    background: linear-gradient(180deg, var(--primary) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.about__pullquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    border: none;
    margin: 0;
    padding: 0;
}

.about__col--right {
    padding-top: 4px;
}

.about__body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.about__link {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.about__link:hover {
    gap: 10px;
    color: #D9896B;
}


/* =============================================
   8. FAQ
   ============================================= */
.faq {
    background: var(--bg-page);
    padding: var(--section-pad) 32px;
}

.faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq__top {
    text-align: center;
    margin-bottom: 40px;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq__summary {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 24px;
    cursor: pointer;
    list-style: none; /* remove default arrow */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__summary::-webkit-details-marker {
    display: none;
}

.faq__summary::after {
    content: '+';
    font-family: var(--sans);
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq__item[open] .faq__summary::after {
    content: '−';
    color: var(--accent);
}

.faq__content {
    padding: 0 24px 24px;
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    border-top: 1px solid transparent;
}

.faq__item[open] .faq__content {
    border-top-color: var(--border);
    padding-top: 20px;
    margin-top: -4px;
}

/* =============================================
   9. CONTACT
   ============================================= */
.contact {
    background: var(--bg-white);
    padding: var(--section-pad) 32px;
}

.contact__inner {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact__headline {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(24px, 3.5vw, 34px);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact__subtext {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact__fee-note {
    font-family: var(--sans);
    font-size: 13px;
    font-style: normal;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 28px;
    background: var(--success-light);
    border: 1px solid var(--success-border);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.contact__input,
.contact__textarea {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    background: var(--bg-warm);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: var(--radius-sm);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: var(--text-light);
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.contact__textarea {
    resize: vertical;
    min-height: 96px;
}

.contact__form .btn--outline,
.contact__form .btn--primary {
    align-self: center;
    width: 100%;
}

.contact__alt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact__alt a {
    color: var(--primary);
    font-weight: 500;
}

.contact__alt a:hover {
    color: var(--primary-hover);
}

.contact__channels {
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.02em;
}


/* =============================================
   10. FOOTER
   ============================================= */
.footer {
    background: var(--bg-dark);
    padding: 48px 32px;
    text-align: center;
}

.footer__inner {
    max-width: 960px;
    margin: 0 auto;
}

.footer__wordmark {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer__links a {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}


/* =============================================
   RESPONSIVE — Tablet & Mobile
   ============================================= */
@media (max-width: 960px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__text {
        max-width: 100%;
        text-align: center;
    }

    .hero__subtext {
        margin-inline: auto;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__card {
        max-width: 460px;
        margin: 0 auto;
    }

    .comparison__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services__list {
        grid-template-columns: 1fr;
    }

    .about__columns {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about__top {
        margin-bottom: 36px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: var(--section-pad-mob);
    }

    body {
        font-size: 15px;
    }

    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__inner {
        padding: 14px 20px;
    }

    .hero {
        padding: 100px 20px 56px;
        min-height: auto;
    }

    .hero__headline {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero__subtext {
        font-size: 16px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__card {
        padding: 24px;
    }

    .brand-statement {
        padding: 56px 20px;
    }

    .brand-statement__quote {
        font-size: clamp(19px, 5vw, 26px);
    }

    .comparison {
        padding: var(--section-pad-mob) 20px;
    }

    .comparison__card {
        padding: 24px;
    }

    .process {
        padding: var(--section-pad-mob) 20px;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services,
    .about,
    .faq {
        padding: var(--section-pad-mob) 20px;
    }

    .testimonials {
        padding: var(--section-pad-mob) 20px;
    }

    .contact {
        padding: var(--section-pad-mob) 20px;
    }

    .contact__input,
    .contact__textarea {
        width: 100%;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .section-heading {
        font-size: clamp(22px, 5vw, 30px);
    }

    .service-row {
        padding: 24px;
    }

    .service-row:hover {
        padding-left: 24px;
    }
}

/* =============================================
   12. CTA CONTAINERS
   ============================================= */
.section-cta-container {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.faq__cta-heading {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(20px, 4vw, 26px);
    color: var(--text-dark);
    margin-bottom: 20px;
}
