/* Fenton Car Buyers — styles */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --ink: #0b0d12;
  --ink-2: #2a2f3a;
  --muted: #5d6472;
  --line: #e7e9ee;
  --line-2: #f0f2f5;
  --brand: #0a7cff;
  --brand-ink: #0558c4;
  --brand-soft: #eaf3ff;
  --cash: #16a34a;
  --cash-soft: #e9f8ef;
  --warn: #f97316;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(11, 13, 18, .05), 0 1px 1px rgba(11, 13, 18, .03);
  --shadow: 0 1px 2px rgba(11, 13, 18, .04), 0 8px 24px -8px rgba(11, 13, 18, .12);
  --shadow-lg: 0 2px 4px rgba(11, 13, 18, .04), 0 24px 60px -20px rgba(11, 13, 18, .25);
  --max: 1200px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --display: "Inter Tight", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.015em; line-height: 1.25; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 8px; }
.i { flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 100; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .wrap { padding: 0 32px; } }
.section { padding: 88px 0; }
@media (max-width: 767px) { .section { padding: 64px 0; } }
.section--white { background: var(--surface); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line); padding: 6px 12px 6px 10px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cash); box-shadow: 0 0 0 4px rgba(22, 163, 74, .15); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,.18); } 50% { box-shadow: 0 0 0 7px rgba(22,163,74,.05); } }
.kicker { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: 14px; display: block; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.head { max-width: 720px; margin-bottom: 48px; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head--center .lead { margin-left: auto; margin-right: auto; }
.head h2 + .lead { margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15.5px; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 6px 20px -8px rgba(11,13,18,.6); }
.btn--dark:hover { background: #20242e; }
.btn--brand { background: var(--brand); color: #fff; box-shadow: 0 8px 24px -10px rgba(10,124,255,.8); }
.btn--brand:hover { background: var(--brand-ink); }
.btn--ghost { background: var(--surface); border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: #cfd4dc; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #eef0f3; }
.btn--outline-light { border-color: rgba(255,255,255,.25); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.08); }
.btn--sm { height: 42px; padding: 0 16px; font-size: 14.5px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.topbar { background: var(--ink); color: #c9ced8; font-size: 13.5px; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar span { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 640px) { .topbar .hide-sm { display: none; } .topbar .wrap { justify-content: center; } }

.header { position: sticky; top: 0; z-index: 50; background: rgba(250,250,250,.82); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px -12px rgba(11,13,18,.15); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 17px; line-height: 1.1; }
.logo small { display: block; font-family: var(--font); font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: 0; }
.logo-mark { width: 40px; height: 40px; flex: none; display: block; }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 8px 14px; border-radius: 999px; font-size: 15px; font-weight: 500; color: var(--ink-2); transition: background .15s; }
.nav a:hover, .nav a[aria-current="page"] { background: #eef0f3; color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); align-items: center; justify-content: center; cursor: pointer; }
@media (max-width: 980px) {
  .nav, .header-cta .btn--ghost { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 480px) { .header-cta .btn--dark .btn-label { display: none; } .header-cta .btn--dark { width: 44px; padding: 0; height: 44px; } }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--surface); }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line-2); font-weight: 500; }

/* Hero */
.hero { position: relative; padding: 56px 0 80px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -30% -10% auto; height: 700px; background: radial-gradient(50% 50% at 30% 30%, rgba(10,124,255,.12), transparent 70%), radial-gradient(40% 40% at 80% 20%, rgba(22,163,74,.08), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding-top: 32px; } }
.hero h1 { margin: 22px 0 20px; font-size: clamp(2.05rem, 3.9vw, 3.35rem); }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .lead { margin-bottom: 30px; }
.ticks { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.ticks li { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; color: var(--ink-2); }
.ticks .i { color: var(--cash); }
.hero-review { margin-top: 36px; display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; max-width: 520px; box-shadow: var(--shadow-sm); }
.hero-review p { margin: 4px 0 0; font-size: 14.5px; color: var(--ink-2); }
.hero-review cite { display: block; font-style: normal; font-size: 13px; color: var(--muted); margin-top: 6px; }
.stars { display: flex; gap: 2px; color: #f5a524; }
.stars .i { fill: currentColor; }

/* Quote form card */
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 28px; position: relative; }
.quote-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.quote h2, .quote .h2 { font-size: 1.5rem; letter-spacing: -0.02em; font-family: var(--display); font-weight: 700; margin: 0; line-height: 1.2; }
.quote-head p { margin: 6px 0 0; font-size: 14.5px; color: var(--muted); }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: var(--cash-soft); color: #0f7a37; white-space: nowrap; }
.badge--blue { background: var(--brand-soft); color: var(--brand-ink); }
.fields { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.f { grid-column: span 6; display: flex; flex-direction: column; gap: 6px; }
.f--2 { grid-column: span 2; } .f--3 { grid-column: span 3; }
@media (max-width: 480px) { .f--2 { grid-column: span 3; } .f--2:first-child { grid-column: span 6; } }
.f label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.f input, .f select, .f textarea {
  width: 100%; height: 48px; border-radius: 12px; border: 1px solid var(--line); background: #fbfbfc;
  padding: 0 14px; font-size: 16px; transition: border-color .15s, box-shadow .15s, background .15s; appearance: none; -webkit-appearance: none;
}
.f select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235d6472' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.f textarea { height: 84px; padding: 12px 14px; resize: vertical; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(10,124,255,.12); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; pointer-events: none; }
.chip-radio span { display: inline-flex; align-items: center; height: 38px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); background: #fbfbfc; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .15s; }
.chip-radio input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip-radio input:focus-visible + span { outline: 3px solid var(--brand); outline-offset: 2px; }
.form-foot { margin-top: 16px; display: grid; gap: 12px; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin: 0; }
.form-note a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.form-success { display: none; text-align: center; padding: 28px 8px; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--cash-soft); color: var(--cash); display: grid; place-items: center; margin: 0 auto 16px; }
.quote.is-sent form { display: none; }
.quote.is-sent .form-success { display: block; }
.form-error { display: none; color: #b42318; background: #fef3f2; border: 1px solid #fecdca; border-radius: 12px; padding: 10px 14px; font-size: 14px; }
.form-error.is-on { display: block; }

/* Strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.strip-track { display: flex; gap: 48px; padding: 18px 0; width: max-content; animation: marquee 40s linear infinite; }
.strip-track span { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--ink-2); white-space: nowrap; letter-spacing: -0.01em; }
.strip-track span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Cards / grids */
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
a.card:hover, .card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #dde1e7; }
.card h3 { margin: 18px 0 8px; }
.card p { color: var(--muted); margin: 0; font-size: 15.5px; }
.ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); }
.ico--green { background: var(--cash-soft); color: var(--cash); }
.ico--dark { background: var(--ink); color: #fff; }
.ico--orange { background: #fff1e6; color: var(--warn); }

/* Steps */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; overflow: hidden; }
.step-num { font-family: var(--display); font-size: 64px; font-weight: 700; line-height: 1; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1.5px #cfd5de; margin-bottom: 20px; }
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--muted); margin: 0; }
.step-time { margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-2); background: #f3f4f6; padding: 6px 10px; border-radius: 999px; }

/* Photos */
.photos { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
@media (max-width: 800px) { .photos { grid-template-columns: 1fr; } }
.photo { position: relative; border-radius: var(--radius); overflow: hidden; background: #e9ebef; border: 1px solid var(--line); aspect-ratio: 4 / 3; margin: 0; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo:hover img { transform: scale(1.03); }
.photo figcaption { position: absolute; left: 14px; bottom: 14px; right: 14px; display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.photo figcaption span { background: rgba(255,255,255,.92); backdrop-filter: blur(8px); padding: 8px 12px; border-radius: 999px; font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-sm); }
.photo-stack { display: grid; gap: 16px; grid-template-rows: 1fr auto; }
.photo-stack .photo { aspect-ratio: auto; min-height: 240px; }
.stat-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-card b { display: block; font-family: var(--display); font-size: 1.9rem; letter-spacing: -0.03em; line-height: 1.1; }
.stat-card span { font-size: 13.5px; color: #a9b0bd; }

/* Compare table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 15px; }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line-2); }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 500; }
.compare thead th { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--muted); background: #fbfbfc; }
.compare thead th.us { color: #fff; background: var(--ink); }
.compare td.us { background: #f5f9ff; font-weight: 600; }
.compare tr:last-child td { border-bottom: 0; }
.yes { color: var(--cash); } .no { color: #c0c5ce; }
.compare .i { vertical-align: middle; }
.compare small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 400; }

/* Review */
.review-band { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 880px) { .review-band { grid-template-columns: 1fr; } }
.big-quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.big-quote blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.35; letter-spacing: -0.02em; font-weight: 500; }
.big-quote footer { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14.5px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-ink); display: grid; place-items: center; font-weight: 700; }
.promise { background: var(--brand); color: #fff; border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; }
.promise::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); }
.promise h3 { font-size: 1.6rem; margin-bottom: 14px; }
.promise p { color: rgba(255,255,255,.85); }
.promise ul { display: grid; gap: 10px; margin-top: 18px; }
.promise li { display: flex; gap: 10px; align-items: flex-start; }

/* Areas */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 880px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .areas { grid-template-columns: 1fr; } }
.area { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; transition: all .2s; }
.area:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.area b { font-weight: 600; display: block; }
.area small { color: var(--muted); font-size: 13.5px; }
.area .i { color: var(--muted); transition: transform .2s, color .2s; }
.area:hover .i { transform: translateX(3px); color: var(--ink); }
.zips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.zip { display: inline-flex; align-items: center; gap: 6px; height: 38px; padding: 0 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 600; font-size: 14px; transition: all .15s; }
.zip:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.also { margin-top: 24px; color: var(--muted); font-size: 15px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq-side { position: sticky; top: 110px; }
@media (max-width: 880px) { .faq-side { position: static; } }
.faq { display: grid; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; transition: border-color .2s, box-shadow .2s; }
.faq details[open] { border-color: #d6dbe2; box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 600; font-size: 16.5px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 28px; height: 28px; flex: none; border-radius: 50%; background: #f1f3f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b0d12' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center no-repeat; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .ans { padding: 0 22px 20px; color: var(--muted); }
.faq .ans p:last-child { margin: 0; }

/* CTA band */
.cta { background: var(--ink); color: #fff; border-radius: 28px; padding: clamp(36px, 6vw, 72px); position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; }
.cta::before { content: ""; position: absolute; inset: auto -10% -60% auto; width: 560px; height: 560px; background: radial-gradient(circle, rgba(10,124,255,.35), transparent 65%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: #b8bfcb; font-size: 1.1rem; margin: 16px 0 0; max-width: 52ch; }
.cta .btn-row { justify-content: flex-end; }
.cta-hours { margin-top: 14px; font-size: 14px; color: #8b93a1; text-align: right; }
@media (max-width: 880px) { .cta { grid-template-columns: 1fr; } .cta .btn-row { justify-content: flex-start; } .cta-hours { text-align: left; } }

/* Page hero (inner pages) */
.page-hero { padding: 40px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: -40% -10% auto; height: 600px; background: radial-gradient(45% 50% at 25% 30%, rgba(10,124,255,.10), transparent 70%); pointer-events: none; }
.crumbs { list-style: none; padding: 0; margin: 0; position: relative; display: flex; flex-wrap: wrap; gap: 6px; font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: #c0c5ce; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); margin: 18px 0 18px; }

/* Prose */
.prose { font-size: 17px; color: var(--ink-2); max-width: 70ch; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 48px 0 16px; }
.prose h3 { margin: 32px 0 10px; font-size: 1.25rem; }
.prose p { margin-bottom: 1.1em; }
.prose ul { margin: 0 0 1.2em; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .6em; width: 10px; height: 10px; border-radius: 3px; background: var(--brand); transform: rotate(45deg) scale(.8); }
.prose a { color: var(--brand-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.two-col { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.two-col > aside { position: sticky; top: 100px; }
@media (max-width: 980px) { .two-col { grid-template-columns: 1fr; } .two-col > aside { position: static; } }
.info-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 16px; }
.info-list li { background: var(--surface); padding: 14px 18px; display: flex; gap: 12px; align-items: center; font-size: 15px; }
.info-list .i { color: var(--brand); }
.note { background: #fffaf0; border: 1px solid #fde7c2; border-radius: 16px; padding: 18px 20px; font-size: 15.5px; color: #6b4e16; }

/* Footer */
.footer { background: var(--ink); color: #a9b0bd; padding: 72px 0 32px; margin-top: 88px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 14px; font-family: var(--font); letter-spacing: .02em; font-weight: 600; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer .logo { color: #fff; }
.footer .logo small { color: #8b93a1; }
.footer .logo-mark svg { border-radius: 12px; box-shadow: 0 0 0 1px #2e333d; }
.footer-phone { display: inline-block; color: #fff; font-family: var(--display); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; margin: 20px 0 6px; }
.footer-bottom { border-top: 1px solid #22262f; margin-top: 56px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #7c8492; }

/* Sticky mobile call bar */
.callbar { display: none; }
@media (max-width: 767px) {
  .callbar { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 60; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 8px; border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .callbar .btn { height: 50px; }
  body { padding-bottom: 84px; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track, .dot { animation: none; }
}
