/* ═══════════════════════════════════════════════════════════════
   JOE'S CASH FOR CARS — Global Design System v2.0
   Color schema: White bg · #3366FF primary · #0d1117 text
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: #ffffff;
    color: #0d1117;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
    --blue:        #3366FF;
    --blue-dark:   #1a4fd6;
    --blue-deep:   #0f3bb5;
    --blue-light:  #EEF2FF;
    --blue-mid:    #dce5ff;
    --blue-muted:  #8ba3ff;

    --text:        #0d1117;
    --text2:       #374151;
    --text3:       #6b7280;
    --text4:       #9ca3af;

    --white:       #ffffff;
    --bg:          #f8f9fc;
    --bg2:         #f3f4f8;
    --surface:     #ffffff;
    --border:      #e5e7eb;
    --border2:     #d1d5db;

    --green:       #16a34a;
    --green-light: #dcfce7;
    --red:         #dc2626;
    --amber:       #d97706;
    --amber-light: #fef3c7;

    --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow:      0 1px 3px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.05);
    --shadow-lg:   0 4px 20px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.05);
    --shadow-xl:   0 8px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
    --shadow-blue: 0 4px 20px rgba(51,102,255,.25);
    --shadow-blue-lg: 0 8px 32px rgba(51,102,255,.3);

    --r:    8px;
    --r-lg: 14px;
    --r-xl: 20px;

    --nav-h: 68px;
    --max-w: 1180px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.3px;
    color: var(--text);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text2); line-height: 1.75; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--bg); }

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section    { padding: 60px 0; }
    .section-sm { padding: 40px 0; }
}

/* ── SECTION LABELS ──────────────────────────────────────────── */
.eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.eyebrow::before {
    content: '';
    width: 18px; height: 2px;
    background: var(--blue);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: .95rem;
    padding: 12px 24px;
    border-radius: var(--r-lg);
    border: none;
    cursor: pointer;
    transition: background .15s, transform .12s, box-shadow .15s, border-color .15s, color .15s;
    white-space: nowrap;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: var(--shadow-blue-lg);
}

.btn-primary-lg {
    padding: 16px 34px;
    font-size: 1.05rem;
    border-radius: var(--r-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text2);
    border: 2px solid var(--border2);
}
.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}

.btn-outline-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-white {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-ghost {
    background: transparent;
    color: var(--blue);
    padding: 10px 18px;
}
.btn-ghost:hover { background: var(--blue-light); }

.btn-sm {
    padding: 8px 16px;
    font-size: .85rem;
    border-radius: var(--r);
}
.btn-full { width: 100%; justify-content: center; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.site-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-logo-mark {
    background: var(--blue);
    color: #fff;
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 900;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text2);
    padding: 8px 14px;
    border-radius: var(--r);
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { background: var(--blue-light); color: var(--blue); }
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-phone {
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2.2; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--r);
    cursor: pointer;
    background: none;
    border: 1px solid var(--border);
}
.nav-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 989;
    padding: 16px 20px 24px;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text2);
    padding: 12px 16px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .15s, color .15s;
}
.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}
.mobile-menu .btn-primary {
    margin-top: 8px;
    justify-content: center;
    width: 100%;
}

@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
    .nav-inner { padding: 0 20px; }
}

/* ── FLOAT CALL BUTTON ───────────────────────────────────────── */
.float-cta {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 980;
    background: var(--blue);
    color: #fff;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(51,102,255,.45);
    transition: transform .2s, box-shadow .2s;
    animation: pop-in .4s .8s both;
}
.float-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(51,102,255,.55);
}
.float-cta svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2.2; }
@keyframes pop-in {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-wrap {
    overflow: hidden;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.m-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text2);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* /* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
    background: var(--blue);
    padding: 60px 40px;
}
.stats-grid {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
}
.stat-eyebrow {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
}
.stat-n {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.stat-unit {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}
.stat-sub {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    line-height: 1.4;
}
@media (max-width: 600px) {
    .stats-band { padding: 40px 20px; }
    .stats-grid { gap: 28px 24px; max-width: 100%; }
    .stat-n { font-size: 2.2rem; }
    .stat-unit { font-size: 1.4rem; }
    .stat-sub { font-size: .72rem; }
}
/* ── FORM ELEMENTS ───────────────────────────────────────────── */
.form-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border2);
    color: var(--text);
    font-family: inherit;
    font-size: .95rem;
    padding: 11px 14px;
    border-radius: var(--r);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(51,102,255,.1);
}
.form-input::placeholder { color: var(--text4); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
@media (max-width: 480px) {
    .form-grid-2 { grid-template-columns: 1fr; }
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-blue-top { border-top: 3px solid var(--blue); }

/* ── BADGES / PILLS ──────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
}
.badge-blue  { background: var(--blue-light); color: var(--blue); border: 1px solid var(--blue-mid); }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-amber { background: var(--amber-light); color: var(--amber); }
.badge-blink { animation: blink-dot 2s infinite; }
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── HERO SHARED ─────────────────────────────────────────────── */
.hero-section {
    background: #fff;
    padding: 72px 0 0;
    overflow: hidden;
}
.hero-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 56px;
    align-items: center;
}
.hero-eyebrow { margin-bottom: 18px; }
.hero-eyebrow .badge { font-size: .78rem; }
.hero-h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    margin-bottom: 18px;
}
.hero-h1 span { color: var(--blue); }
.hero-sub {
    font-size: 1.05rem;
    color: var(--text2);
    max-width: 480px;
    line-height: 1.78;
    margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.htrust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text2);
}
.htrust-icon {
    width: 24px; height: 24px;
    border-radius: 6px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.htrust-icon svg { width: 12px; height: 12px; stroke: var(--blue); fill: none; stroke-width: 2.5; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
    .hero-section { padding: 48px 0 0; }
}
@media (max-width: 480px) {
    .hero-grid { padding: 0 20px 32px; }
    .hero-h1 { font-size: 2.1rem; }
}

/* ── LEAD FORM CARD ──────────────────────────────────────────── */
.lead-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.lead-card-head {
    background: var(--blue);
    padding: 22px 28px;
}
.lead-card-head h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 3px;
}
.lead-card-head p { color: rgba(255,255,255,.72); font-size: .85rem; }
.lead-card-body { padding: 24px 28px; }
.lead-card-fine {
    font-size: .76rem;
    color: var(--text3);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.lead-card-fine a { color: var(--blue); }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-top: 48px;
}
.step-card {
    background: #fff;
    padding: 38px 30px;
    position: relative;
    transition: background .2s;
}
.step-card:hover { background: var(--blue-light); }
.step-num-badge {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.step-icon-box {
    position: absolute;
    top: 28px; right: 28px;
    width: 40px; height: 40px;
    border-radius: var(--r);
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon-box svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p  { font-size: .9rem; color: var(--text2); line-height: 1.7; }

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* ── CHECK ROWS ──────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-row  { display: flex; align-items: flex-start; gap: 14px; }
.check-circle {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.check-circle svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; }
.check-title { font-weight: 700; font-size: .93rem; color: var(--text); margin-bottom: 2px; }
.check-desc  { font-size: .83rem; color: var(--text2); }

/* ── BUY CHIPS ───────────────────────────────────────────────── */
.buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
    margin-top: 40px;
}
.buy-chip {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 14px 16px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color .15s, color .15s, background .15s;
}
.buy-chip:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
}
.buy-chip-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.buy-chip-check svg { width: 9px; height: 9px; stroke: var(--blue); fill: none; stroke-width: 3; }

/* ── REVIEW CARDS ────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 26px;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.review-stars { color: #f59e0b; font-size: .9rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text  { font-size: .88rem; line-height: 1.75; color: var(--text2); margin-bottom: 18px; }
.reviewer     { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .88rem; color: var(--text); }
.reviewer-loc  { font-size: .75rem; color: var(--text3); margin-top: 1px; }
.reviews-summary {
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
}
.rating-big { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--blue); line-height: 1; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .reviews-summary { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-band {
    background: var(--blue);
    padding: 90px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    top: -300px; left: -150px;
    pointer-events: none;
}
.cta-band::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    bottom: -200px; right: -100px;
    pointer-events: none;
}
.cta-band h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 14px;
    position: relative; z-index: 1;
}
.cta-band p {
    color: rgba(255,255,255,.75);
    max-width: 480px;
    margin: 0 auto 32px;
    font-size: 1rem;
    position: relative; z-index: 1;
}
.cta-phone-big {
    display: block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 24px;
    position: relative; z-index: 1;
    transition: opacity .15s;
}
.cta-phone-big:hover { opacity: .85; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

@media (max-width: 480px) { .cta-band { padding: 64px 20px; } }

/* ── LOCATION CHIPS ──────────────────────────────────────────── */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
    margin-top: 32px;
}
.loc-chip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px 14px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: border-color .15s, color .15s, background .15s;
    cursor: pointer;
}
.loc-chip:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.loc-chip svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }
.loc-chip.featured { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    transition: color .15s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    color: var(--blue);
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s, background .15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding-bottom: 20px; color: var(--text2); line-height: 1.75; font-size: .95rem; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: #0d1117; padding: 64px 0 32px; }
.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 28px;
}
.footer-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
}
.footer-logo-box {
    background: var(--blue);
    width: 28px; height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.footer-brand-phone {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.5px;
}
.footer-col h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .76rem;
    color: rgba(255,255,255,.25);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.25); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.55); }
.footer-bottom-links { display: flex; gap: 16px; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 0 20px 40px; }
    .footer-bottom { padding: 0 20px; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 10px 40px;
}
.breadcrumb-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    font-size: .8rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--text3); transition: color .15s; }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--border2); }
@media (max-width: 480px) { .breadcrumb { padding: 8px 20px; } }

/* ── TWO-COL LAYOUT ──────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col-start { align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── TOAST ───────────────────────────────────────────────────── */
#toast {
    position: fixed;
    bottom: 90px; right: 24px;
    background: var(--green);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
#toast.show { opacity: 1; transform: none; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-blue  { color: var(--blue); }
.text-muted { color: var(--text3); }
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.gap-col { display: flex; flex-direction: column; gap: 16px; }
.hidden-mobile { }
@media (max-width: 640px) { .hidden-mobile { display: none !important; } }
@media (min-width: 641px) { .hidden-desktop { display: none !important; } }
/* ============================================
   SERVICE PAGES
   ============================================ */
.service-hero {
  padding: 80px 0 60px;
  background: #f0f4ff;
  border-bottom: 1px solid rgba(51,102,255,0.1);
}
.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue, #3366FF);
  background: rgba(51,102,255,0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.service-hero__text h1 {
  font-family: var(--font-head, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.15;
  margin: 0 0 20px;
}
.service-hero__lead {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 32px;
}
.service-why { padding: 80px 0; background: #fff; }
.service-why h2, .service-how h2, .service-faq h2 {
  font-family: var(--font-head, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #0a0a0a;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #f8f9ff;
  border: 1px solid rgba(51,102,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
}
.service-card__icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 {
  font-family: var(--font-head, 'Bricolage Grotesque', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a0a0a;
}
.service-card p { font-size: 0.92rem; color: #555; line-height: 1.6; margin: 0; }
.service-how { padding: 80px 0; background: #f8f9ff; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(51,102,255,0.1);
}
.step__num {
  width: 52px;
  height: 52px;
  background: var(--blue, #3366FF);
  color: #fff;
  font-family: var(--font-head, 'Bricolage Grotesque', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { font-family: var(--font-head, 'Bricolage Grotesque', sans-serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #0a0a0a; }
.step p { font-size: 0.92rem; color: #555; line-height: 1.6; margin: 0; }
.service-faq { padding: 80px 0; background: #fff; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #f8f9ff; border: 1px solid rgba(51,102,255,0.1); border-radius: 10px; padding: 24px 28px; }
.faq-item h3 { font-family: var(--font-head, 'Bricolage Grotesque', sans-serif); font-size: 1rem; font-weight: 700; color: #0a0a0a; margin-bottom: 8px; }
.faq-item p { font-size: 0.92rem; color: #555; line-height: 1.6; margin: 0; }
.faq-item a { color: var(--blue, #3366FF); text-decoration: underline; }
.service-cta { padding: 80px 0; background: var(--blue, #3366FF); text-align: center; }
.service-cta h2 { font-family: var(--font-head, 'Bricolage Grotesque', sans-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.service-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.service-cta .btn-primary { background: #fff !important; color: var(--blue, #3366FF) !important; }
.service-cta .btn-primary:hover { background: rgba(255,255,255,0.9) !important; }
@media (max-width: 900px) {
  .service-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-hero { padding: 48px 0 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
