/* ==========================================================================
   AgentBrandHQ — editorial "sold sign" aesthetic
   Paper + ink + terracotta. Fraunces display, Hanken Grotesk body.
   ========================================================================== */
:root {
  --paper: #F6F1E8;
  --paper-2: #EDE6D8;
  --ink: #0F1B2D;
  --ink-2: #1B2A42;
  --ink-soft: #3C4A60;
  --muted: #6B7383;
  --line: rgba(15, 27, 45, .12);
  --brick: #E4572E;
  --brick-deep: #C2431F;
  --gold: #D9A441;
  --sage: #7FA07E;
  --white: #FFFDF9;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 18px;
  --shadow-lg: 0 30px 60px -20px rgba(15, 27, 45, .35), 0 12px 24px -12px rgba(15, 27, 45, .2);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--brick); color: var(--paper); }
a { color: inherit; }
img, svg { max-width: 100%; }
h1, h2, h3 { margin: 0; font-weight: 500; }
p { margin: 0 0 1em; }
b { font-weight: 700; }

/* Grain overlay — the paper texture */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: .35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Type scale */
.display {
  font-family: var(--display); font-weight: 400; letter-spacing: -.02em; line-height: .98;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem); font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display em, .display-md em { font-style: italic; font-weight: 400; color: var(--brick); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.display-md {
  font-family: var(--display); font-weight: 400; letter-spacing: -.015em; line-height: 1.05;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem); font-variation-settings: "opsz" 96;
}
.eyebrow {
  font-family: var(--body); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700;
  color: var(--brick); margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; display: inline-block; width: 22px; height: 2px; background: currentColor; vertical-align: middle; margin-right: 10px; }
.eyebrow.light { color: var(--gold); }
.light { color: var(--paper); }
.light-copy { color: rgba(246, 241, 232, .82); max-width: 54ch; }
.light-copy a { color: var(--paper); text-decoration-color: var(--gold); text-underline-offset: 3px; }
.light-copy.small { font-size: .95rem; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em; padding: .95em 1.5em; border-radius: 999px;
  font-weight: 700; font-size: .98rem; text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease; font-family: var(--body);
}
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--brick); color: var(--white); box-shadow: 0 10px 24px -10px rgba(228, 87, 46, .7); }
.btn-primary:hover { background: var(--brick-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--white); transform: translateY(-1px); }
.btn-sm { padding: .7em 1.15em; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px var(--gutter); background: rgba(246, 241, 232, .82); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-size: 1.35rem; letter-spacing: -.01em; font-variation-settings: "opsz" 48; }
.wordmark b { font-weight: 700; font-style: italic; color: var(--brick); }
.wordmark .mark { width: 30px; height: 30px; color: var(--ink); }
.wordmark.small { font-size: 1.15rem; gap: 8px; }
.wordmark.small .mark { width: 24px; height: 24px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink-soft); }
.nav-links a:hover { color: var(--brick); }

/* ================= HERO ================= */
.hero {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vw, 110px) var(--gutter) clamp(40px, 6vw, 80px);
  position: relative;
}
main { overflow-x: clip; }
.hero::before {
  content: ""; position: absolute; inset: -120px -20vw auto auto; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; z-index: -1;
  background: radial-gradient(closest-side, rgba(228, 87, 46, .16), rgba(217, 164, 65, .08) 55%, transparent 72%);
  filter: blur(10px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.9rem 0 1.2rem; }
.hero-fine { color: var(--muted); font-size: .92rem; }
.hero-fine b { color: var(--ink); font-family: var(--display); font-size: 1.25em; font-weight: 600; }

.made-in { margin-top: .4rem; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.leaf { display: inline-block; margin-right: 4px; filter: saturate(.9); }
.cad-note { margin: .4rem 0 0; font-size: .9rem; color: var(--ink); font-weight: 600; background: var(--paper); border-radius: 10px; padding: 8px 12px; display: inline-block; }

/* Reveal animation on load */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .9s cubic-bezier(.2, .7, .2, 1) forwards; }
.reveal.d1 { animation-delay: .08s } .reveal.d2 { animation-delay: .2s } .reveal.d3 { animation-delay: .32s } .reveal.d4 { animation-delay: .44s }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Browser mockup */
.hero-visual { position: relative; }
.browser {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line);
  transform: rotate(-1.2deg); transform-origin: 60% 40%;
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d8cfc0; }
.browser-bar i:first-child { background: var(--brick); }
.browser-bar .url { margin-left: 10px; font-size: .72rem; color: var(--muted); background: var(--white); padding: 4px 12px; border-radius: 6px; flex: 1; font-weight: 600; }
.browser-body { display: grid; grid-template-columns: 1.15fr .85fr; height: 340px; }
.map { position: relative; background: #E8E2D4; overflow: hidden; }
.roads { position: absolute; inset: 0; width: 100%; height: 100%; }
.roads path { fill: none; stroke: #F6F1E8; stroke-width: 6; }
.roads .hwy { stroke: #F0C9A4; stroke-width: 9; }
.roads .water { fill: #C9D9DE; stroke: none; }
.pin {
  position: absolute; background: var(--ink); color: var(--paper); font-size: .68rem; font-weight: 700; padding: 4px 8px; border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(15, 27, 45, .6); transform: translate(-50%, -50%); animation: pop .6s cubic-bezier(.2, .8, .2, 1.3) both;
}
.pin::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 8px; height: 8px; background: inherit; transform: translateX(-50%) rotate(45deg); }
.pin.sold { background: var(--brick); }
.p1 { left: 28%; top: 30%; animation-delay: .6s } .p2 { left: 62%; top: 46%; animation-delay: .75s } .p3 { left: 44%; top: 62%; animation-delay: .9s }
.p4 { left: 78%; top: 22%; animation-delay: 1.05s } .p5 { left: 18%; top: 70%; animation-delay: 1.2s } .p6 { left: 70%; top: 74%; animation-delay: 1.35s }
@keyframes pop { from { opacity: 0; transform: translate(-50%, -30%) scale(.6); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.poly {
  position: absolute; left: 12%; top: 18%; width: 46%; height: 58%; border: 2px dashed var(--brick); border-radius: 38% 62% 55% 45% / 45% 40% 60% 55%;
  background: rgba(228, 87, 46, .09); animation: draw 1.2s ease .3s both;
}
@keyframes draw { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: none; } }
.cards { display: flex; flex-direction: column; gap: 10px; padding: 12px; background: var(--white); overflow: hidden; }
.card { display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: center; padding: 8px; border: 1px solid var(--line); border-radius: 10px; }
.card .ph { height: 54px; border-radius: 7px; background: linear-gradient(135deg, #C9B99A, #8E7B5C); }
.card .ph2 { background: linear-gradient(135deg, #9FB7C6, #556E80); }
.card .ph3 { background: linear-gradient(135deg, #B8B0A3, #6E675C); }
.card .meta { display: flex; flex-direction: column; line-height: 1.25; }
.card .meta b { font-size: .86rem; } .card .meta span { font-size: .72rem; color: var(--ink-soft); } .card .meta small { font-size: .66rem; color: var(--brick); font-weight: 700; }
.card.muted .meta small { color: var(--sage); }
.alert-toast {
  position: absolute; right: -6%; bottom: 8%; display: flex; gap: 10px; align-items: center; background: var(--ink); color: var(--paper);
  padding: 12px 16px; border-radius: 14px; box-shadow: var(--shadow-lg); max-width: 280px; animation: slidein .7s cubic-bezier(.2, .8, .2, 1) 1.5s both;
}
.alert-toast .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brick); box-shadow: 0 0 0 0 rgba(228, 87, 46, .7); animation: pulse 1.8s infinite 2.2s; flex: none; }
.alert-toast b { display: block; font-size: .82rem; } .alert-toast small { font-size: .72rem; color: rgba(246, 241, 232, .7); }
@keyframes slidein { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: none } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(228, 87, 46, .6) } 70% { box-shadow: 0 0 0 10px rgba(228, 87, 46, 0) } 100% { box-shadow: 0 0 0 0 rgba(228, 87, 46, 0) } }
.rider {
  position: absolute; left: -4%; top: -6%; background: var(--brick); color: var(--paper); font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: .04em;
  padding: 10px 18px 8px; transform: rotate(-6deg); box-shadow: 0 14px 30px -12px rgba(194, 67, 31, .8); line-height: 1; animation: rise .8s ease 1s both;
}
.rider small { display: block; font-family: var(--body); font-size: .62rem; font-weight: 600; letter-spacing: .02em; opacity: .9; margin-top: 4px; }

/* Marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.track { display: flex; gap: 0; width: max-content; animation: scroll 40s linear infinite; }
.track span { font-family: var(--display); font-style: italic; font-size: 1.1rem; padding: 12px 28px; white-space: nowrap; color: var(--ink-soft); position: relative; }
.track span::after { content: "·"; position: absolute; right: -6px; color: var(--brick); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Sections */
section { padding: clamp(56px, 8vw, 120px) var(--gutter); }
.section-head { max-width: var(--maxw); margin: 0 auto clamp(30px, 4vw, 56px); }
.section-head h2 { max-width: 20ch; }

/* Problem */
.problem { background: var(--paper); }
.problem-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 5vw, 80px); align-items: start; }
.problem-grid h2 s { text-decoration-color: var(--brick); text-decoration-thickness: 3px; }
.problem-copy { font-size: 1.08rem; color: var(--ink-soft); border-left: 3px solid var(--brick); padding-left: 22px; }

/* Features */
.features { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature { background: var(--white); padding: clamp(22px, 3vw, 36px); position: relative; transition: background .25s ease; }
.feature:hover { background: var(--paper); }
.feature.big { grid-column: span 2; background: var(--ink); color: var(--paper); }
.feature.big:hover { background: var(--ink-2); }
.feature.big .num { color: var(--gold); }
.feature .num { font-family: var(--display); font-style: italic; color: var(--brick); font-size: 1rem; display: block; margin-bottom: 2.6rem; }
.feature h3 { font-family: var(--display); font-size: 1.45rem; font-weight: 500; letter-spacing: -.01em; margin-bottom: .5rem; font-variation-settings: "opsz" 40; }
.feature p { color: inherit; opacity: .78; font-size: .98rem; margin: 0; }

/* Proof (dark band) */
.proof { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.proof::before { content: ""; position: absolute; right: -10%; top: -30%; width: 55vw; height: 55vw; max-width: 700px; max-height: 700px; border-radius: 50%; background: radial-gradient(closest-side, rgba(217, 164, 65, .18), transparent 70%); }
.proof-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.proof-inner h2 { max-width: 22ch; margin-bottom: 1rem; }
.proof-stats { max-width: var(--maxw); margin: clamp(30px, 5vw, 64px) auto 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(246, 241, 232, .12); border: 1px solid rgba(246, 241, 232, .12); position: relative; }
.proof-stats li { background: var(--ink); padding: 22px 24px; display: flex; flex-direction: column; }
.proof-stats b { font-family: var(--display); font-size: 2rem; font-weight: 500; color: var(--gold); line-height: 1; }
.proof-stats span { font-size: .9rem; color: rgba(246, 241, 232, .75); margin-top: 6px; }

/* Pricing */
.pricing { background: var(--paper); }
.price-wrap { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.price-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); padding: clamp(24px, 3.5vw, 44px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.price-card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(closest-side, rgba(228, 87, 46, .18), transparent 70%); }
.plan { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; color: var(--muted); }
.amount { font-family: var(--display); font-size: clamp(4rem, 9vw, 6.5rem); line-height: .9; letter-spacing: -.04em; margin: .35rem 0 .6rem; font-variation-settings: "opsz" 144; }
.amount sup { font-size: .4em; vertical-align: top; margin-top: .35em; display: inline-block; color: var(--brick); }
.amount small { font-family: var(--body); font-size: 1rem; letter-spacing: 0; color: var(--muted); margin-left: 8px; font-weight: 600; }
.price-note { color: var(--ink-soft); }
.includes { list-style: none; padding: 0; margin: 1.6rem 0 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.includes li { padding-left: 26px; position: relative; font-size: .96rem; }
.includes li::before { content: ""; position: absolute; left: 0; top: .42em; width: 14px; height: 14px; border-radius: 50%; background: var(--brick); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3C/svg%3E"); }
.includes li::after { content: ""; position: absolute; left: 4px; top: .62em; width: 6px; height: 3px; border-left: 2px solid var(--white); border-bottom: 2px solid var(--white); transform: rotate(-45deg); }
.compare { background: transparent; border: 1.5px dashed var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); margin-top: 28px; }
.compare h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 500; margin-bottom: 1rem; color: var(--ink-soft); }
.compare ul { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 10px; color: var(--ink-soft); }
.compare s { text-decoration-color: var(--brick); text-decoration-thickness: 2px; color: var(--ink); }
.compare-foot { font-family: var(--display); font-style: italic; font-size: 1.1rem; color: var(--ink); margin: 0; }

/* How */
.how { background: var(--white); border-top: 1px solid var(--line); }
.steps { max-width: var(--maxw); margin: 0 auto; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 40px); counter-reset: step; }
.steps li { position: relative; padding-top: 22px; border-top: 2px solid var(--ink); }
.step-no { position: absolute; top: -22px; left: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--brick); color: var(--paper); display: grid; place-items: center; font-family: var(--display); font-weight: 600; font-size: 1.2rem; box-shadow: 0 0 0 6px var(--white); }
.steps h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 500; margin: 1.6rem 0 .5rem; letter-spacing: -.01em; }
.steps p { color: var(--ink-soft); margin: 0; }

/* FAQ */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 20px 44px 20px 0; font-family: var(--display); font-size: 1.25rem; position: relative; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--brick); font-size: 1.6rem; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--ink-soft); padding: 0 0 22px; max-width: 62ch; }

/* Claim */
.claim { background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); max-width: none; align-items: center; position: relative; overflow: hidden; }
.claim::before { content: ""; position: absolute; left: -10%; bottom: -40%; width: 50vw; height: 50vw; border-radius: 50%; background: radial-gradient(closest-side, rgba(228, 87, 46, .22), transparent 70%); }
.claim-copy { max-width: 560px; justify-self: end; width: 100%; position: relative; }
.claim-copy h2 { margin-bottom: 1rem; }
.lead-form { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); max-width: 560px; width: 100%; box-shadow: var(--shadow-lg); position: relative; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.field label span { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted); }
.field input, .field textarea { font: inherit; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brick); box-shadow: 0 0 0 4px rgba(228, 87, 46, .15); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { margin: 12px 0 0; font-size: .92rem; min-height: 1.4em; }
.form-status.ok { color: #2F6B3A; } .form-status.err { color: var(--brick-deep); }

/* Footer */
.footer { padding: 40px var(--gutter); display: grid; grid-template-columns: 1fr auto; gap: 18px 40px; align-items: start; max-width: var(--maxw); margin: 0 auto; }
.foot-brand p { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { text-decoration: none; font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.foot-links a:hover { color: var(--brick); }
.foot-legal { grid-column: 1 / -1; font-size: .74rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 18px; max-width: 90ch; }

/* Scroll reveal */
.will-reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.will-reveal.in { opacity: 1; transform: none; }
.feature:nth-child(2).will-reveal, .steps li:nth-child(2).will-reveal, .proof-stats li:nth-child(2).will-reveal { transition-delay: .08s }
.feature:nth-child(3).will-reveal, .steps li:nth-child(3).will-reveal, .proof-stats li:nth-child(3).will-reveal { transition-delay: .16s }
.feature:nth-child(4).will-reveal, .proof-stats li:nth-child(4).will-reveal { transition-delay: .24s }
.feature:nth-child(5).will-reveal { transition-delay: .32s } .feature:nth-child(6).will-reveal { transition-delay: .4s }

/* 404 */
.page-404 .notfound { min-height: 80vh; display: grid; place-content: center; text-align: center; padding: 40px var(--gutter); gap: 20px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .will-reveal, .pin, .poly, .alert-toast, .rider { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
  .track { animation: none; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature.big { grid-column: span 2; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-visual { margin-top: 24px; }
  .browser { transform: none; }
  .rider { left: auto; right: -2%; top: -18px; font-size: 1.3rem; }
  .alert-toast { right: 2%; bottom: -14px; }
  .problem-grid, .price-wrap, .claim { grid-template-columns: 1fr; }
  .claim-copy { justify-self: start; }
  .compare { margin-top: 0; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .includes { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .browser-body { grid-template-columns: 1fr; height: auto; }
  .map { height: 220px; }
  .cards { flex-direction: row; overflow-x: auto; }
  .card { min-width: 210px; }
  .row { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature.big { grid-column: span 1; }
  .alert-toast { display: none; }
}
