/* Traffic Ticket Guru — home page styles (ported from Next.js preview) */
.ttg-blank-canvas {
  margin: 0;
}
.ttg-blank-canvas .alignwide,
.ttg-blank-canvas .alignfull,
.ttg-blank-canvas .entry-content,
.ttg-blank-canvas .wp-block-post-content {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

:root {
  --ink: #0c0c0e;
  --ink-2: #151518;
  --paper: #f4f1ec;
  --white: #ffffff;
  --red: #e01b2f;
  --red-dark: #b8081d;
  --line: #d8d3cc;
  --grey: #6f6c69;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist Sans", var(--font-geist), Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 100px;
  padding-right: 100px;
  box-sizing: border-box;
}
.section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #77726c;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: var(--red); }
.eyebrow.light { color: #bcb9b5; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h2 { font-size: clamp(42px, 5.1vw, 72px); line-height: .98; margin-bottom: 0; }
p { line-height: 1.72; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: end; margin-bottom: 36px; }
.section-intro { align-self: end; font-size: 18px; color: #56514c; }
.section-intro p { margin-bottom: 22px; }
.section-intro.muted { color: #9d9994; }
.text-link { display: inline-flex; gap: 9px; border-bottom: 1px solid var(--ink); padding-bottom: 5px; font-weight: 700; }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  height: 92px;
  color: white;
  font-family: "Barlow", "Geist Sans", Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, rgba(7,7,9,.72) 0%, rgba(7,7,9,.28) 70%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 20px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 5px 16px rgba(0,0,0,.2));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.brand-text-top {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.brand-text-bottom {
  font-size: 20px;
  color: #fff;
}
.desktop-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 22px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.82);
  transition: color .2s ease;
  padding-bottom: 2px;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }
.nav-call {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-left: 10px;
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.18);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .01em;
}
.nav-call span {
  color: #aaa7a3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.mobile-nav { display: none; margin-left: auto; position: relative; font-family: "Barlow", sans-serif; }
.mobile-nav summary { list-style: none; width: 43px; height: 43px; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.25); cursor: pointer; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary i { width: 18px; height: 1px; background: white; }
.mobile-nav nav { position: absolute; right: 0; top: 52px; width: 280px; padding: 22px; background: #111114; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.mobile-nav nav a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}
.mobile-nav nav a:last-child { color: white; background: var(--red); border: 0; margin-top: 13px; padding: 13px; text-align: center; font-weight: 700; letter-spacing: .04em; }

/* Home hero */
.home-hero { position: relative; min-height: 835px; height: 100svh; max-height: 980px; display: flex; align-items: center; overflow: hidden; background: #111; color: white; padding-top: 70px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: saturate(.52) contrast(1.12); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,9,.96) 0%, rgba(7,7,9,.84) 39%, rgba(7,7,9,.31) 73%, rgba(7,7,9,.5) 100%), linear-gradient(0deg, rgba(0,0,0,.6), transparent 45%); }
.road-lines { position: absolute; width: 52vw; height: 140%; right: -13vw; top: -23%; border-left: 1px solid rgba(255,255,255,.1); transform: rotate(18deg); }
.road-lines::before, .road-lines::after { content: ""; position: absolute; inset: 0 auto 0 18%; width: 1px; background: rgba(255,255,255,.08); }
.road-lines::after { left: 41%; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: end; padding-bottom: 70px; }
.hero-copy { max-width: 745px; }
.hero-copy h1 { font-size: clamp(55px, 6.1vw, 94px); line-height: .9; margin-bottom: 30px; max-width: 850px; }
.hero-copy h1 em { display: block; color: var(--red); font-style: normal; }
.hero-lead { max-width: 650px; color: #c5c2be; font-size: clamp(17px, 1.45vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid transparent; cursor: pointer; font-size: 14px; font-weight: 760; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-red { color: white; background: var(--red); }
.button-red:hover { background: var(--red-dark); }
.button-ghost { color: white; border-color: rgba(255,255,255,.46); background: rgba(0,0,0,.15); backdrop-filter: blur(6px); }
.button-ghost:hover { background: white; color: var(--ink); }
.hero-note { display: flex; align-items: center; gap: 8px; margin: 20px 0 0; color: #aba8a4; font-size: 12px; }
.hero-note span { color: var(--red); }
.hero-statement { align-self: end; justify-self: end; margin-bottom: 14px; padding: 26px 0 26px 34px; border-left: 2px solid var(--red); display: flex; flex-direction: column; text-transform: uppercase; }
.hero-statement span { color: #d7d3ce; font-size: 15px; letter-spacing: .16em; }
.hero-statement strong { font-size: clamp(28px, 3vw, 43px); line-height: 1; }
.hero-statement em { color: var(--red); font-size: clamp(30px, 3.3vw, 48px); line-height: 1; font-style: normal; font-weight: 900; }
.hero-trust { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,.15); background: rgba(8,8,10,.62); backdrop-filter: blur(10px); }
.trust-row { min-height: 104px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-row p, .trust-row a { margin: 0; display: flex; justify-content: center; flex-direction: column; gap: 4px; padding: 20px 32px; border-left: 1px solid rgba(255,255,255,.13); }
.trust-row > :first-child { border-left: 0; padding-left: 0; }
.trust-row > :last-child { padding-right: 0; }
.trust-row strong { font-size: 18px; }
.trust-row span { color: #a7a39f; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.hero-enter { animation: rise .8s cubic-bezier(.2,.75,.2,1) both; }
.delay-1 { animation-delay: .16s; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* Home body */
.consequence-section { background: var(--paper); }
.consequence-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.consequence-card { min-height: auto; padding: 32px 28px 26px; border-left: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.consequence-card:first-child { border-left: 0; }
.consequence-card:hover { background: white; transform: translateY(-6px); }
.card-number { display: block; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .14em; margin-bottom: 28px; }
.consequence-card h3 { font-size: 24px; margin-bottom: 14px; }
.consequence-card p { margin: 0; color: #66615c; font-size: 14px; }
.services-section { background: var(--ink); color: white; }
.services-heading { align-items: end; }
.services-heading h2 { max-width: 700px; }
.service-list { border-top: 1px solid rgba(255,255,255,.18); }
.service-row { display: grid; grid-template-columns: 70px 1.05fr 1.45fr 42px; gap: 28px; align-items: center; min-height: 150px; border-bottom: 1px solid rgba(255,255,255,.15); transition: background .24s ease, padding .24s ease; }
.service-row:hover { background: var(--red); padding-inline: 22px; }
.service-number { color: #7f7c78; font-size: 11px; letter-spacing: .15em; }
.service-row:hover .service-number, .service-row:hover .service-meta, .service-row:hover p { color: white; }
.service-row h3 { font-size: clamp(24px, 2.5vw, 36px); margin: 0 0 5px; }
.service-meta { color: #8e8b87; font-size: 11px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.service-row p { max-width: 570px; margin: 0; color: #aaa6a2; font-size: 14px; }
.service-arrow { justify-self: end; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.24); display: grid; place-items: center; }
.evidence-section { background: #17171a; color: white; overflow: hidden; }
.evidence-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.evidence-visual { position: relative; min-height: 580px; background: radial-gradient(circle at center, #25252a 0, #121214 68%); overflow: hidden; }
.radar-ring { position: absolute; border: 1px solid rgba(224,27,47,.55); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 70%; aspect-ratio: 1; }
.ring-two { width: 43%; aspect-ratio: 1; }
.radar-cross { position: absolute; background: rgba(255,255,255,.12); }
.radar-cross.horizontal { height: 1px; width: 100%; left: 0; top: 50%; }
.radar-cross.vertical { width: 1px; height: 100%; top: 0; left: 50%; }
.evidence-chip { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 180px; aspect-ratio: 1; border-radius: 50%; background: var(--red); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 25px; }
.evidence-chip span { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.evidence-chip strong { margin-top: 8px; font-size: 21px; line-height: 1.05; }
.evidence-copy h2 { margin-bottom: 34px; }
.evidence-copy > p { color: #aaa6a2; font-size: 17px; }
.credential-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; border-top: 1px solid rgba(255,255,255,.15); margin-top: 42px; padding-top: 32px; }
.credential-row div { display: flex; flex-direction: column; gap: 7px; }
.credential-row strong { font-size: 20px; }
.credential-row span { color: #8e8a86; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.center-heading { max-width: 800px; margin: 0 auto 40px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-grid article { position: relative; min-height: auto; padding: 38px; background: white; border-top: 4px solid transparent; box-shadow: 0 15px 50px rgba(20,17,14,.05); transition: border-color .25s ease, transform .25s ease; }
.process-grid article:hover { transform: translateY(-7px); border-color: var(--red); }
.process-grid article > span { display: block; margin-bottom: 28px; color: var(--red); font-size: 12px; font-weight: 800; }
.process-grid h3 { font-size: 28px; margin-bottom: 13px; }
.process-grid p { color: #68635d; font-size: 14px; }
.guarantee-section { padding: 70px 0; background: var(--red); color: white; }
.guarantee-grid { display: grid; grid-template-columns: 120px 1.15fr .85fr; gap: 55px; align-items: center; }
.guarantee-mark { width: 110px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }
.guarantee-mark span { display: grid; place-items: center; width: 70px; aspect-ratio: 1; border: 2px solid white; border-radius: 50%; font-size: 34px; font-weight: 900; }
.guarantee-section .eyebrow { color: rgba(255,255,255,.7); margin-bottom: 14px; }
.guarantee-section .eyebrow span { background: white; }
.guarantee-section h2 { font-size: clamp(38px, 4.2vw, 60px); }
.guarantee-copy p { font-size: 18px; line-height: 1.55; }
.guarantee-copy small { color: rgba(255,255,255,.7); }
.contact-section { background: #ebe7e1; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.contact-copy h2 { margin-bottom: 28px; }
.contact-copy > p { color: #5d5954; font-size: 18px; }
.phone-link { display: inline-flex; flex-direction: column; margin-top: 34px; font-size: 28px; font-weight: 820; letter-spacing: -.03em; }
.phone-link span { margin-bottom: 5px; color: #77716c; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.ticket-form { padding: 44px; background: white; box-shadow: 0 25px 70px rgba(18,15,12,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ticket-form label { display: block; margin-bottom: 19px; color: #4d4944; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ticket-form input[type="text"], .ticket-form input[type="tel"], .ticket-form input[type="email"] { display: block; width: 100%; height: 50px; margin-top: 8px; padding: 0 14px; border: 1px solid #d9d4ce; background: #faf9f7; outline: none; color: var(--ink); text-transform: none; }
.ticket-form input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,27,47,.08); }
.upload-box { position: relative; display: flex !important; flex-direction: column; align-items: center; justify-content: center; min-height: 145px; border: 1px dashed #c9c2ba; background: #f8f6f3; text-align: center; cursor: pointer; }
.upload-box input { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; }
.upload-icon { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 7px; border-radius: 50%; background: var(--ink); color: white; font-size: 19px; }
.upload-box small { margin-top: 6px; color: #99938e; font-size: 9px; letter-spacing: .06em; }
.form-submit { width: 100%; border: 0; }
.form-privacy { display: block; margin-top: 12px; color: #8b8681; text-align: center; font-size: 10px; }

/* Speeding page */
.speed-hero { position: relative; padding: 110px 0 70px; overflow: hidden; background: var(--ink); color: white; }
.speed-hero::after { content: ""; position: absolute; width: 760px; height: 760px; right: -180px; top: -170px; border: 1px solid rgba(224,27,47,.22); border-radius: 50%; box-shadow: 0 0 0 120px rgba(224,27,47,.035), 0 0 0 240px rgba(224,27,47,.025); }
.speed-lines { position: absolute; inset: auto 0 0; height: 42%; opacity: .16; background: repeating-linear-gradient(115deg, transparent 0 160px, white 161px 162px); }
.speed-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; color: #8f8c88; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs b { color: white; }
.speed-hero h1 { margin: 0 0 27px; font-size: clamp(58px, 7vw, 100px); line-height: .88; }
.speed-hero h1 em { color: var(--red); font-style: normal; }
.speed-hero-copy > p:not(.hero-note) { max-width: 650px; color: #b7b3af; font-size: 19px; }
.speed-gauge { justify-self: end; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.gauge-ring { width: min(330px, 32vw); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 10px solid var(--red); border-radius: 50%; background: rgba(16,16,18,.65); box-shadow: 0 0 0 1px rgba(255,255,255,.13) inset, 0 25px 80px rgba(0,0,0,.3); }
.gauge-ring strong { font-size: clamp(80px, 10vw, 130px); line-height: .78; letter-spacing: -.09em; }
.gauge-ring span { margin-top: 10px; color: #b9b5b1; font-size: 13px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.gauge-ring .gauge-small { margin: 0 0 12px; color: white; font-size: 10px; }
.gauge-copy { text-align: center; display: flex; flex-direction: column; }
.gauge-copy strong { font-size: 18px; }
.gauge-copy span { margin-top: 5px; color: #918d89; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.speed-intro { padding: 70px 0; background: var(--red); color: white; }
.speed-intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 40px; align-items: center; }
.speed-intro h2 { max-width: 440px; font-size: clamp(38px, 4vw, 56px); }
.speed-intro p { max-width: 690px; font-size: 18px; }
.cost-equation { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cost-equation span, .cost-equation strong { padding: 10px 13px; border: 1px solid rgba(255,255,255,.43); font-size: 13px; }
.cost-equation strong { background: white; color: var(--red); border-color: white; }
.cost-equation i { font-style: normal; font-weight: 800; }
.content-with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 48px; align-items: start; }
.article-content h2 { max-width: 790px; margin-bottom: 25px; }
.lead-paragraph { max-width: 720px; color: #625d58; font-size: 18px; }
.table-wrap { margin-top: 45px; overflow-x: auto; border: 1px solid var(--line); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 650px; }
th, td { padding: 18px 22px; border-bottom: 1px solid #e5e0da; text-align: left; }
th { background: #151518; color: white; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
td { font-size: 14px; }
td:nth-child(2) { color: var(--red); font-weight: 800; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #faf7f3; }
.table-note { margin-top: 15px; color: #847f79; font-size: 11px; }
.urgent-box { display: grid; grid-template-columns: 135px 1fr auto; gap: 28px; align-items: center; margin-top: 46px; padding: 30px; border-left: 5px solid var(--red); background: #17171a; color: white; }
.urgent-box > span { color: var(--red); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.urgent-box h3 { margin: 0 0 7px; font-size: 23px; }
.urgent-box p { margin: 0; color: #aaa6a2; font-size: 13px; }
.urgent-box a { white-space: nowrap; font-weight: 800; }
.sticky-review { position: sticky; top: 28px; padding: 30px; background: white; border-top: 4px solid var(--red); box-shadow: 0 17px 55px rgba(24,20,15,.08); }
.mini-label { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.sticky-review h3 { margin: 17px 0 14px; font-size: 27px; line-height: 1.08; }
.sticky-review p { color: #706b66; font-size: 14px; }
.sticky-review .button { width: 100%; margin-top: 9px; }
.aside-phone { display: block; margin-top: 18px; text-align: center; font-size: 12px; font-weight: 700; }
.demerit-section { background: #17171a; color: white; }
.demerit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.demerit-grid article { display: flex; flex-direction: column; min-height: 270px; padding: 29px; background: #17171a; }
.demerit-grid article.danger { background: var(--red); }
.demerit-grid article > span { color: #aaa6a2; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.demerit-grid .danger > span { color: white; }
.demerit-grid strong { margin-top: auto; font-size: 86px; line-height: .8; letter-spacing: -.08em; }
.demerit-grid small { margin-top: 13px; color: #8f8b87; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.demerit-grid .danger small { color: white; }
.threshold-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.threshold-row p { display: flex; justify-content: space-between; align-items: center; margin: 0; padding: 24px 28px; border: 1px solid rgba(255,255,255,.15); }
.threshold-row span { color: #aaa6a2; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.threshold-row strong { font-size: 24px; }
.insurance-section { background: white; }
.insurance-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.insurance-copy > p { color: #59544f; font-size: 19px; }
.insurance-copy blockquote { margin: 45px 0 0; padding-left: 25px; border-left: 4px solid var(--red); font-size: clamp(26px, 3vw, 40px); font-weight: 820; letter-spacing: -.04em; }
.fight-section { background: var(--paper); }
.fight-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.fight-heading { position: sticky; top: 30px; align-self: start; }
.fight-heading h2 { margin-bottom: 28px; }
.fight-heading p { color: #625d57; font-size: 17px; }
.fight-points { border-top: 1px solid var(--line); }
.fight-points article { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.fight-points article > span { color: var(--red); font-size: 11px; font-weight: 800; }
.fight-points h3 { margin: 0 0 8px; font-size: 27px; }
.fight-points p { margin: 0; color: #6a655f; }
.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; }
.faq-heading { position: sticky; top: 30px; align-self: start; }
.faq-heading h2 { margin-bottom: 26px; }
.faq-heading p { color: #69645f; }
.faq-list { border-top: 1px solid #d7d2cc; }
.faq-list details { border-bottom: 1px solid #d7d2cc; }
.faq-list summary { display: flex; justify-content: space-between; gap: 25px; padding: 27px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 750; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 31px; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #c6c0b9; font-size: 20px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); border-color: var(--red); color: var(--red); }
.faq-list details p { max-width: 760px; margin: -8px 45px 29px 0; color: #66615c; }
.speed-contact { background: #ebe7e1; }
.other-services { padding: 34px 0; background: var(--red); color: white; }
.other-row { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.other-row > span { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.other-row div { display: flex; flex-wrap: wrap; gap: 24px; font-size: 13px; font-weight: 700; }

/* Footer */
.site-footer { padding-top: 70px; background: #0d0d0f; color: white; }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-brand { min-width: 0; }
.footer-brand .brand-logo { width: 150px; height: 150px; }
.footer-main > div:first-child > p { margin: 24px 0 0; color: #8e8a86; }
.footer-links { display: flex; flex-direction: column; gap: 12px; color: #9b9792; font-size: 13px; }
.footer-links strong { margin-bottom: 8px; color: white; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a:hover { color: white; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: #77736f; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }

@media (max-width: 1100px) {
  .brand-text { display: none; }
  .desktop-nav { gap: 14px 16px; font-size: 11px; }
  .nav-call { font-size: 14px; padding-left: 16px; margin-left: 4px; }
}

@media (max-width: 980px) {
  .desktop-nav, .nav-call { display: none; }
  .mobile-nav { display: block; }
  .brand-text { display: flex; }
  .site-header {
    height: 80px;
    background: linear-gradient(180deg, rgba(7,7,9,.82) 0%, rgba(7,7,9,.35) 100%);
  }
  .hero-layout, .speed-hero-grid { grid-template-columns: 1fr; }
  .hero-statement { display: none; }
  .hero-copy { max-width: 750px; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,7,9,.94), rgba(7,7,9,.62)); }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-row p, .trust-row a { border-bottom: 1px solid rgba(255,255,255,.12); }
  .home-hero { min-height: 760px; height: auto; padding: 96px 0 70px; }
  .hero-layout { padding-bottom: 70px; }
  .split-heading, .evidence-grid, .contact-grid, .insurance-grid, .fight-grid, .faq-grid, .speed-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .consequence-grid, .demerit-grid { grid-template-columns: 1fr 1fr; }
  .consequence-card:nth-child(3) { border-left: 0; }
  .service-row { grid-template-columns: 48px 1fr 36px; }
  .service-row p { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .process-grid article > span { margin-bottom: 28px; }
  .guarantee-grid { grid-template-columns: 100px 1fr; }
  .guarantee-copy { grid-column: 2; }
  .evidence-visual { min-height: 420px; }
  .contact-grid { align-items: start; }
  .speed-gauge { display: none; }
  .speed-hero { padding: 96px 0 70px; }
  .speed-hero-grid { display: block; }
  .content-with-aside { grid-template-columns: 1fr; gap: 28px; }
  .sticky-review { position: static; }
  .fight-heading, .faq-heading { position: static; }
  .footer-main { grid-template-columns: 1.2fr .8fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container {
    width: 100%;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
  .section {
    padding: 20px 0;
  }
  h2 { font-size: 42px; }
  .site-header { height: 76px; }
  .brand-text { display: none; }
  .brand { min-width: 0; }
  .brand-logo { width: 66px; height: 66px; }
  .footer-brand .brand-logo { width: 132px; height: 132px; }
  .home-hero { min-height: auto; padding: 96px 0 20px; align-items: start; }
  .hero-layout { padding-bottom: 20px; gap: 28px; }
  .hero-copy h1 { font-size: clamp(51px, 15vw, 66px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-trust { backdrop-filter: blur(8px); }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-row p, .trust-row a { min-height: 86px; padding: 14px 12px; border-left: 1px solid rgba(255,255,255,.12); }
  .trust-row > :first-child { padding-left: 12px; }
  .trust-row strong { font-size: 14px; }
  .trust-row span { font-size: 8px; }
  .split-heading { margin-bottom: 28px; gap: 20px; }
  .consequence-grid, .demerit-grid { grid-template-columns: 1fr; }
  .consequence-card { min-height: auto; border-left: 0; border-bottom: 1px solid var(--line); }
  .consequence-card:last-child { border-bottom: 0; }
  .card-number { margin-bottom: 20px; }
  .service-row { min-height: 124px; grid-template-columns: 36px 1fr 34px; gap: 16px; }
  .service-row h3 { font-size: 25px; }
  .service-meta { font-size: 9px; }
  .evidence-visual { min-height: 280px; }
  .evidence-grid { gap: 28px; }
  .credential-row { grid-template-columns: 1fr; }
  .process-grid article { padding: 24px; }
  .guarantee-section { padding: 20px 0; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 20px; }
  .guarantee-mark { width: 90px; }
  .guarantee-copy { grid-column: auto; }
  .ticket-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .speed-hero { padding: 96px 0 20px; }
  .breadcrumbs { margin-bottom: 24px; }
  .speed-hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .speed-hero-copy > p:not(.hero-note) { font-size: 16px; }
  .speed-intro { padding: 20px 0; }
  .speed-intro-grid { gap: 20px; }
  .cost-equation { gap: 7px; }
  .cost-equation span, .cost-equation strong { font-size: 11px; }
  .content-with-aside { gap: 20px; }
  .urgent-box { grid-template-columns: 1fr; gap: 14px; }
  .demerit-grid article { min-height: auto; }
  .demerit-grid strong { font-size: 70px; }
  .threshold-row { grid-template-columns: 1fr; }
  .threshold-row p { align-items: flex-start; flex-direction: column; gap: 9px; }
  .fight-grid, .faq-grid, .contact-grid { gap: 28px; }
  .other-services { padding: 20px 0; }
  .other-row { align-items: flex-start; flex-direction: column; }
  .other-row div { flex-direction: column; gap: 12px; }
  .site-footer { padding-top: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding-bottom: 20px; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
}
