/* ═══════════════════════════════════════════════════════════════
   WEE PAY CASH FOR CARS — Global Design System v2.0
   Color schema: Light bg #F4F7F9 · #0090C0 logo blue · #FF7800 orange CTA · #10222B navy
   ═══════════════════════════════════════════════════════════════ */

/* ── 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: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Keep AdSense units from causing horizontal scroll on mobile — clip the ad
   container itself instead of html/body (which would break sticky nav). */
.wpcfc-ad-bar, ins.adsbygoogle { overflow: hidden !important; max-width: 100% !important; }
.wpcfc-ad-bar { text-align: center; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
video, iframe, table, pre { max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── CSS VARIABLES ───────────────────────────────────────────── */
:root {
    --blue:        #0090C0;
    --blue-dark:   #0078A8;
    --blue-deep:   #005E85;
    --blue-light:  #E6F4FA;
    --blue-mid:    #C5E8F2;
    --blue-muted:  #5BB0D8;
    --gold-ink:    #0078A8;
    --cta:         #FF7800;
    --cta-dark:    #E56A00;
    --cta-deep:    #CC5E00;
    --charcoal:    #10222B;
    --font-head:   'Sora', sans-serif;
    --font-body:   'Hanken Grotesk', sans-serif;
    --font-mono:   'JetBrains Mono', ui-monospace, monospace;

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

    --white:       #ffffff;
    --bg:          #F4F7F9;
    --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(255,120,0,.25);
    --shadow-blue-lg: 0 8px 32px rgba(255,120,0,.3);

    --r:    3px;
    --r-lg: 5px;
    --r-xl: 8px;

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

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    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(--gold-ink);
    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: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
    padding: 12px 24px;
    border-radius: 999px;
    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(--cta);
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
    background: var(--cta-dark);
    box-shadow: var(--shadow-blue-lg);
}

.btn-primary-lg {
    padding: 16px 34px;
    font-size: 1.05rem;
    border-radius: 999px;
}

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

.btn-outline-lg {
    padding: 16px 34px;
    font-size: 1.05rem;
}

.btn-white {
    background: #fff;
    color: var(--gold-ink);
    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(--gold-ink);
    padding: 10px 18px;
}
.btn-ghost:hover { background: var(--blue-light); }

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

/* NAVIGATION + mobile menu styles now live in nav.php (self-contained, single source). */

/* ── 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(255,120,0,.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(255,120,0,.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: var(--font-head);
    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(--gold-ink);
    box-shadow: 0 0 0 3px rgba(0,144,192,.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(--gold-ink); 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(--gold-ink); }
.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(--gold-ink); 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 — styled in the HOME-HERO PORT section below ── */

/* ── 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(--gold-ink); 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; }
}

/* Services interlinking grid (location pages) */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    margin-top: 40px;
}
.svc-card {
    background: #fff;
    padding: 28px 22px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: background .2s;
}
.svc-card:hover { background: var(--blue-light); }
.svc-icon-box {
    width: 42px; height: 42px;
    border-radius: var(--r);
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.svc-card:hover .svc-icon-box { background: #fff; }
.svc-icon-box svg { width: 22px; height: 22px; stroke: var(--gold-ink); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.svc-card p  { font-size: .85rem; color: var(--text2); line-height: 1.6; margin: 0; }
.svc-card .svc-arrow {
    margin-top: auto;
    padding-top: 14px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--gold-ink);
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .svc-grid { grid-template-columns: 1fr;
 }
}

/* 4-column variant for grids with 4 items (e.g. trust-signal section) */
.svc-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
    .svc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .svc-grid-4 { 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(--gold-ink);
    color: var(--gold-ink);
    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(--gold-ink); 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: var(--font-head); font-size: 3.2rem; font-weight: 800; color: var(--gold-ink); 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: var(--font-head);
    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(--gold-ink); color: var(--gold-ink); 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(--gold-ink); color: var(--gold-ink); background: var(--blue-light); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: #fff; }
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    transition: color .15s;
}
.faq-q:hover { color: var(--gold-ink); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    color: var(--gold-ink);
    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-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 22px 20px; color: var(--text2); line-height: 1.75; font-size: .95rem; }

/* FOOTER + social-in-footer styles now live in footer.php (self-contained, single source). */

/* ── 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(--gold-ink); }
.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; }
/* two-col-intro overrides the column ratio; it has its own 900px breakpoint in location-template.php */
@media (max-width: 768px) {
    .two-col:not(.two-col-intro) { 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; }

/* ── SOCIAL ICON ROW ─────────────────────────────────────────── */
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    transition: background .15s, color .15s, transform .12s;
}
.social-icon:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; }
/* Light variant — dark icons on light bg (for use on white sections) */
.social-row-light .social-icon { background: var(--bg); color: var(--text2); }
.social-row-light .social-icon:hover { background: var(--blue); color: #fff; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-blue  { color: var(--gold-ink); }
.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(0,144,192,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, var(--font-body));
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-ink);
  background: rgba(0,144,192,0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.service-hero__text h1 {
  font-family: var(--font-head, var(--font-head));
  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, var(--font-head));
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  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(0,144,192,0.1);
  border-radius: 12px;
  padding: 28px 24px;
}
.service-card__icon { font-size: 2rem; margin-bottom: 14px; line-height: 1; }
.service-card__icon .tow-truck-icon { width: 46px; height: 46px; display: inline-block; vertical-align: middle; }
.service-card h3 {
  font-family: var(--font-head, var(--font-head));
  font-size: 1.2rem;
  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(0,144,192,0.1);
}
.step__num {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head, var(--font-head));
  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, var(--font-head)); font-size: 1.2rem; 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; }
.service-faq .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.service-faq .faq-item { background: #f8f9ff; border: 1px solid rgba(0,144,192,0.1); border-radius: 10px; padding: 24px 28px; }
.service-faq .faq-item h3 { font-family: var(--font-head, var(--font-head)); font-size: 1rem; font-weight: 700; color: #0a0a0a; margin-bottom: 8px; }
.service-faq .faq-item p { font-size: 0.92rem; color: #555; line-height: 1.6; margin: 0; }
.service-faq .faq-item a { color: var(--gold-ink); text-decoration: underline; }
.service-intro { padding: 72px 0; background: #fff; }
.service-intro__inner { max-width: 800px; margin: 0 auto; }
.service-intro h2 { font-family: var(--font-head, var(--font-head)); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; color: #0a0a0a; margin-bottom: 22px; text-align: center; }
.service-intro p { font-size: 1.02rem; color: #444; line-height: 1.8; margin: 0 0 18px; }
.service-intro p:last-child { margin-bottom: 0; }
.service-intro a { color: var(--gold-ink); font-weight: 700; text-decoration: none; white-space: nowrap; }
.service-intro a:hover { text-decoration: underline; }
.service-card__icon svg:not(.tow-truck-icon) { width: 44px; height: 44px; color: var(--gold-ink); }
.service-related { padding: 80px 0; background: #f6f8fc; }
.service-related h2 { font-family: var(--font-head, var(--font-head)); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; color: #0a0a0a; margin-bottom: 36px; text-align: center; }
.service-related .svc-grid { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-related .svc-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid rgba(0,144,192,0.12); border-radius: 12px; padding: 20px 22px; text-decoration: none; transition: border-color .15s, transform .12s, box-shadow .15s; }
.service-related .svc-card:hover { border-color: var(--gold-ink); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,144,192,.1); }
.service-related .svc-icon-box { flex: 0 0 auto; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: #eef3ff; border-radius: 10px; }
.service-related .svc-icon-box svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-related .svc-card__text { flex: 1 1 auto; min-width: 0; }
.service-related .svc-card__text h3 { font-family: var(--font-head, var(--font-head)); font-size: 1rem; font-weight: 700; color: #0a0a0a; margin: 0 0 4px; }
.service-related .svc-card__text p { font-size: 0.86rem; color: #666; line-height: 1.5; margin: 0; }
.service-related .svc-arrow { flex: 0 0 auto; color: var(--gold-ink); font-size: 1.3rem; font-weight: 700; }
.service-cta { padding: 80px 0; background: var(--blue); text-align: center; }
.service-cta h2 { font-family: var(--font-head, var(--font-head)); font-size: clamp(1.9rem, 4vw, 2.6rem); 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(--gold-ink) !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; }
  .service-related .svc-grid { grid-template-columns: 1fr; }
}


/* ════════ WEE PAY BRAND OVERRIDES — charcoal + gold ════════ */
.stats-band, .cta-band, .service-cta, .float-cta { background: var(--charcoal) !important; }
.float-cta svg { stroke: #FF7800 !important; color: #FF7800 !important; }
.step-num-badge, .reviewer-avatar, .nav-logo-mark { color: #1a1205 !important; }
/* primary CTA buttons use WHITE text (matching the home page hero button) */
.btn-primary { color: #fff !important; }
.service-cta .btn-primary { background: var(--cta) !important; color: #fff !important; }
/* any accent text sitting on the dark bands -> bright gold for contrast */
.stats-band [class*="num"], .stats-band [class*="stat"], .cta-band [class*="accent"], .lead-card-head [class*="accent"] { color: #0090C0 !important; }


/* ════════════ WEE PAY — CASH OFFER TICKET DESIGN SYSTEM ════════════ */

/* Mono numerals on all the money/numbers — the signature */
.stat-n, .rating-big, .step-num-badge,
.lead-card-fine .num { font-family: var(--font-mono) !important; letter-spacing: -.02em; }
a[href^="tel:"]:not(.btn) { font-family: var(--font-body) !important; letter-spacing: normal; }
a[href^="tel:"].btn { font-family: var(--font-head) !important; }
.stat-n { font-weight: 800; }

/* Tighter, more deliberate headline tracking */
.hero-h1, .section h2, .sec-head h2 { letter-spacing: -.025em; }
.eyebrow, .hero-eyebrow, .stat-eyebrow, .sec-eyebrow {
  font-family: var(--font-mono) !important; font-weight: 700;
  letter-spacing: .18em !important; text-transform: uppercase; font-size: .68rem !important;
}

/* Hairline rules instead of soft shadows on cards (Joe's = pillowy, Wee Pay = crisp) */
.card, .svc-card, .review-card, .step-card {
  box-shadow: none !important;
  border: 1px solid rgba(31,41,51,.14) !important;
}
.btn { border-radius: 999px; }
.btn-primary { box-shadow: 0 2px 0 rgba(31,41,51,.18) !important; }

/* ════════════════════════════════════════════════════════════════
   HOME-HERO PORT — location & service heroes use the EXACT same
   styling as the home page hero. Variables resolved to real values
   so it renders identically regardless of page-level vars.
   ════════════════════════════════════════════════════════════════ */

/* the dark hero section (= home .hero) */
.loc-hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(0,144,192,.16), transparent 60%),
    linear-gradient(180deg, #10222B 0%, #16303B 100%);
  color: #fff;
  overflow: hidden;
}
.loc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
/* the grid (= home .hero-in) */
.loc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 40px 86px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
/* eyebrow pill (= home .hero-eyebrow) — override the generic .badge look */
.loc-hero .badge-blue,
.loc-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3CA8D0;
  background: rgba(0,144,192,.1);
  border: 1px solid rgba(0,144,192,.22);
  padding: 7px 14px;
  border-radius: 999px;
}
.loc-hero .badge-blink { background: #0090C0 !important; box-shadow: 0 0 0 4px rgba(0,144,192,.18); }
/* headline (= home .hero h1) */
.loc-hero h1, .loc-hero-h1 {
  font-family: var(--hero-h1-font);
  font-size: var(--hero-h1-size);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.loc-hero h1 span, .loc-hero-h1 span { font-style: normal; color: #0090C0; }
/* sub text (= home .hero-sub) */
.loc-hero-sub {
  font-size: 1.16rem;
  color: #C3CDD7;
  max-width: 34em;
  margin-bottom: 30px;
  line-height: 1.6;
}
/* trust row (= home .hero-trust, styled as pills for the checkmark items) */
.loc-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.loc-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: #D6DEE6;
  font-size: .82rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 999px;
}
.loc-trust-pill svg { width: 13px; height: 13px; stroke: #0090C0; fill: none; stroke-width: 2.4; flex-shrink: 0; }
/* CTA buttons on the dark hero — sized to match the homepage hero exactly */
.loc-hero .btn-primary-lg, .loc-hero .btn-outline-lg {
  padding: 16px 30px;
}
.loc-hero .btn-outline, .loc-hero .btn-outline-lg {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.loc-hero .btn-outline:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.06); }

/* ── the form card (= home .offer-card) ── */
.lead-card {
  background: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  overflow: hidden;
  color: #10222B;
  border: 1px solid rgba(255,255,255,.14);
}
.lead-card-head {
  background: #0A171E;
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px 30px 0 0;
  position: relative;
}
.lead-card-head h3, .lead-card-head h2.lead-card-head-t { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.06rem; color: #fff; margin-bottom: 2px; }
.lead-card-head p { font-size: .8rem; color: #9FB0C0; margin-top: 2px; }
.lead-card-body { padding: 22px 24px 26px; }
.lead-card-fine { text-align: center; font-size: .8rem; color: #5E6E7E; margin-top: 14px; line-height: 1.5; }
.lead-card-fine a, .lead-card-fine b { color: #10222B; }
.lead-card-badge {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .1em;
  color: #fff;
  background: #0090C0;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── HERO MOBILE (= home @media 920px + 560px, exactly) ── */
@media (max-width: 920px) {
  .loc-hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0 60px; }
}
@media (max-width: 560px) {
  .loc-hero-inner { padding: 34px 0 44px; }
  .loc-hero h1, .loc-hero-h1 { font-size: 2.15rem; }
  .loc-hero-sub { font-size: 1.05rem; }
  .loc-trust { gap: 12px; }
  .loc-hero .btn { width: 100%; justify-content: center; }
  .lead-card-head .lead-card-head-t, .lead-card-head h3 { font-size: .98rem; }
}

/* ── STATS as a receipt strip: mono numbers + hairline dividers ── */
.stats-grid { gap: 0 !important; }
.stats-grid > * { padding: 6px 26px; border-left: 1px solid rgba(255,255,255,.14); }
.stats-grid > *:first-child { border-left: none; }
.stat-n { font-size: 2.4rem !important; }

/* Section rhythm: hairline top border to separate bands cleanly */
.section { border-top: 1px solid rgba(31,41,51,.08); }
.section-alt { background: #F4F7F9; }   /* cool blue-grey — alternating section tone */

/* Sharpen the small chips/badges */
.eyebrow, .badge, .pill, .step-num-badge { border-radius: 3px !important; }

/* Floating call button removed site-wide per request */
.float-cta{display:none!important}
/* checker section: extra air so the dark card reads as a distinct moment */
#tlc { margin: 18px 0; }

/* ══════════════════════════════════════════════════
   SECTION STRIPING — self-healing white/grey alternation
   ------------------------------------------------
   Sections are direct children of <body>. The hero
   (.loc-hero) and the closing CTA (.cta-band) carry their
   own backgrounds and deliberately lack the .section class,
   so they're excluded automatically.

   Using :nth-of-type means the rhythm repairs itself if a
   section is added, removed, or moved — no class to forget.
   Overrides the older per-section classes (.section-alt,
   .faq-section, .county-section, .history-section,
   .title-guide-section) which had drifted out of sync.
══════════════════════════════════════════════════ */
section.section:nth-of-type(even) { background: var(--white); }
section.section:nth-of-type(odd)  { background: #F4F7F9; }

/* ══════════════════════════════════════════════════
   TITLE & LIEN CHECKER  (location pages) — dark card
   Surface language matches .lead-card-head (#0A171E)
   and the hero. Works with JS off.
══════════════════════════════════════════════════ */
.tlc-wrap {
  background: #12252F;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  padding: 32px 40px;
  max-width: 760px;
  margin: 26px 0 0;
  position: relative;
  overflow: hidden;
}
.tlc-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.tlc-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.tlc-kicker svg { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.tlc-wrap > h2,
.tlc-wrap h2#tlc-h {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 8px;
}
.tlc-sub { font-size: .96rem; color: #93A7B4; margin: 0 0 28px; line-height: 1.55; }

.tlc-q > p { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 5px; font-family: var(--font-body); }
.tlc-hint { font-size: .86rem; color: #7C90A0; margin: 0 0 14px !important; font-weight: 400 !important; }

.tlc-opts { display: flex; gap: 12px; flex-wrap: wrap; }
.tlc-btn {
  flex: 1 1 160px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: #10222B;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 14px;
  padding: 15px 18px;
  cursor: pointer;
  transition: transform .12s ease, background .15s, color .15s, box-shadow .15s;
  text-align: center;
  line-height: 1.3;
}
.tlc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,144,192,.28);
}
.tlc-btn:active { transform: translateY(0); }
.tlc-btn:focus-visible { outline: 3px solid var(--blue-muted); outline-offset: 3px; }

/* ---- outcome cards: translucent tints, luminous heads ---- */
.tlc-card {
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid;
}
.tlc-card svg { width: 21px; height: 21px; flex: none; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tlc-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; margin: 0 0 7px; line-height: 1.3; color: inherit; }
.tlc-card p { font-size: .94rem; line-height: 1.7; color: #fff; margin: 0; }

.tlc-ok   { background: rgba(52,199,123,.09);  border-color: rgba(52,199,123,.30);  color: #4ADE94; }
.tlc-warn { background: rgba(245,166,35,.10);  border-color: rgba(245,166,35,.32);  color: #F5B544; }
.tlc-info { background: rgba(0,144,192,.11);   border-color: rgba(91,176,216,.32);  color: #6FC5E6; }
.tlc-card.tlc-ok   h3 { color: #4ADE94; }
.tlc-card.tlc-warn h3 { color: #F5B544; }
.tlc-card.tlc-info h3 { color: #6FC5E6; }

.tlc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 16px;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .93rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: 999px;
  transition: background .15s, transform .12s ease;
}
.tlc-cta:hover { background: var(--cta-dark); color: #fff; transform: translateY(-1px); }
.tlc-cta:focus-visible { outline: 3px solid var(--blue-muted); outline-offset: 3px; }

.tlc-restart {
  display: none;
  margin-top: 12px;
  background: none;
  border: none;
  padding: 13px 2px;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: .87rem;
  font-weight: 600;
  color: #8FA3B1;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s;
}
.tlc-restart:hover { color: #fff; }
.tlc-restart:focus-visible { outline: 2px solid var(--blue-muted); outline-offset: 3px; border-radius: 3px; }
.tlc-restart[data-idle="1"] { color: #62778A; cursor: default; text-decoration: none; }
.tlc-restart[data-idle="1"]:hover { color: #62778A; }

/* ---- JS ON: hide steps until needed ---- */
.tlc-js .tlc-q2,
.tlc-js .tlc-card { display: none; }
.tlc-js .tlc-q2.tlc-show,
.tlc-js .tlc-card.tlc-show { display: flex; }
.tlc-js .tlc-q2.tlc-show { display: block; }
.tlc-js .tlc-restart { display: inline-flex; align-items: center; }
.tlc-js .tlc-q1.tlc-hide { display: none; }

/* ---- JS OFF: all outcomes readable, labelled ---- */
.tlc-nojs-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7C90A0;
  margin: 26px 0 9px;
  font-weight: 700;
}
.tlc-js .tlc-nojs-label { display: none; }
.tlc-stack { margin-top: 4px; }
.tlc-js .tlc-stack { margin-top: 26px; }
.tlc-stack > .tlc-card { margin-bottom: 12px; }
.tlc-js .tlc-stack > .tlc-card { margin-bottom: 0; }

@media (max-width: 560px) {
  .tlc-wrap { padding: 26px 22px; border-radius: 20px; margin-top: 20px; }
  .tlc-wrap::after { border-radius: 20px; }
  .tlc-btn { flex: 1 1 100%; }
  .tlc-card { padding: 20px; gap: 12px; }
}
@media (max-width: 380px) {
  .tlc-wrap { padding: 22px 18px; }
  .tlc-card { padding: 18px 16px; }
  .tlc-cta { width: 100%; padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .tlc-btn, .tlc-cta, .tlc-restart { transition: none; }
  .tlc-btn:hover, .tlc-cta:hover { transform: none; }
}
