/* Torqline design system */
:root {
  --black: #000000;
  --ink: #131209;
  --surface: #181818;
  --surface-raised: #1f1f1f;
  --surface-hover: #272727;
  --line: #313131;
  --white: #ffffff;
  --muted: #9b9b9b;
  --soft: #d3d0ca;
  --red: #f04432;
  --red-dark: #c92e20;
  --warm: #f3f0e9;
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--red); color: var(--white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p, blockquote { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p, blockquote, a, span { text-wrap: pretty; }

.container { width: min(100% - 48px, 1180px); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-96px);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  padding: 8px 12px;
  font-weight: 700;
  transition: transform 700ms var(--ease-fluid);
}
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; pointer-events: none; }
.nav-island {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 880px);
  min-height: 64px;
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  background: rgba(19, 18, 9, 0.78);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
  transition: background 700ms var(--ease-fluid), transform 700ms var(--ease-fluid), border-color 700ms var(--ease-fluid);
}
.nav-island.scrolled { background: rgba(0, 0, 0, 0.9); border-color: rgba(255, 255, 255, 0.2); }
.brand { display: inline-flex; align-items: center; gap: 8px; padding-left: 4px; font-size: 14px; line-height: 20px; font-weight: 700; letter-spacing: 0.12em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 12px; border-radius: 9999px; color: var(--muted); font-size: 14px; line-height: 20px; font-weight: 600; transition: color 700ms var(--ease-fluid), background 700ms var(--ease-fluid); }
.nav-link:hover, .nav-link.is-current { background: rgba(255, 255, 255, 0.08); color: var(--white); }
.nav-link:active { transform: scale(0.98); }
.header-cta, .primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 0;
  border-radius: 9999px;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 700ms var(--ease-fluid), background 700ms var(--ease-fluid), color 700ms var(--ease-fluid), box-shadow 700ms var(--ease-fluid);
}
.header-cta { background: var(--white); color: var(--black); font-size: 14px; line-height: 20px; }
.header-cta:hover, .primary-button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(240, 68, 50, 0.25); }
.header-cta:active, .primary-button:active, .secondary-button:active { transform: scale(0.98); }
a:focus-visible, button:focus-visible, select:focus-visible, summary:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }
.menu-toggle { display: none; position: relative; width: 40px; height: 40px; border: 0; border-radius: 9999px; background: var(--white); color: var(--black); cursor: pointer; }
.menu-toggle span { position: absolute; left: 12px; width: 16px; height: 2px; border-radius: 9999px; background: currentColor; transition: transform 700ms var(--ease-fluid), top 700ms var(--ease-fluid); }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 22px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: -1; display: grid; place-items: center; background: rgba(0, 0, 0, 0.84); backdrop-filter: blur(32px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 700ms var(--ease-fluid), visibility 700ms var(--ease-fluid); }
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu-inner a { font-size: 36px; line-height: 40px; font-weight: 600; transform: translateY(48px); opacity: 0; transition: transform 700ms var(--ease-fluid), opacity 700ms var(--ease-fluid), color 700ms var(--ease-fluid); }
.mobile-menu.is-open a { transform: translateY(0); opacity: 1; }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 100ms; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 150ms; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 200ms; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 250ms; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 300ms; }
.mobile-menu-cta { margin-top: 24px; color: var(--red); }

.hero { position: relative; min-height: 880px; overflow: hidden; background: var(--black); }
.hero-visual { position: absolute; inset: 0 0 0 42%; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; opacity: 0; animation: heroImageIn 1400ms var(--ease-fluid) 200ms forwards; }
.hero-shade { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.46); }
.hero-visual::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 32%; background: var(--black); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: 880px; padding-top: 96px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 8px; color: var(--soft); font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.eyebrow { margin-bottom: 24px; animation: contentIn 900ms var(--ease-fluid) both; }
.eyebrow span { width: 24px; height: 2px; background: var(--red); }
.hero h1 { max-width: 680px; background: linear-gradient(90deg, #ffffff 0%, #9b9b9b 100%); background-clip: text; -webkit-background-clip: text; color: transparent; font-size: 72px; line-height: 1; font-weight: 600; letter-spacing: -0.04em; animation: contentIn 1000ms var(--ease-fluid) 100ms both; }
.hero-copy { max-width: 680px; width: min(100%, 560px); margin-top: 24px; color: var(--soft); font-size: 18px; line-height: 28px; animation: contentIn 1000ms var(--ease-fluid) 200ms both; }
.vehicle-finder { position: relative; width: min(100%, 760px); margin-top: 40px; padding: 16px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 24px; background: rgba(19, 18, 9, 0.84); box-shadow: var(--shadow); backdrop-filter: blur(24px); animation: contentIn 1100ms var(--ease-fluid) 300ms both; }
.finder-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-inline: 4px; }
.finder-heading > i { color: var(--red); font-size: 24px; }
.finder-label { font-size: 16px; line-height: 24px; font-weight: 700; }
.finder-hint { color: var(--muted); font-size: 12px; line-height: 16px; }
.finder-fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 8px; }
.finder-fields label { position: relative; display: flex; flex-direction: column; gap: 4px; min-width: 0; border-radius: 12px; background: var(--surface-raised); padding: 8px 12px; transition: background 700ms var(--ease-fluid), box-shadow 700ms var(--ease-fluid); }
.finder-fields label:focus-within { background: var(--surface-hover); box-shadow: inset 0 0 0 1px var(--red); }
.finder-fields label span { color: var(--muted); font-size: 12px; line-height: 16px; }
.finder-fields select { min-width: 0; appearance: none; border: 0; outline: 0; background: transparent; color: var(--white); font-size: 14px; line-height: 20px; font-weight: 600; cursor: pointer; }
.finder-fields select:disabled { color: #666666; cursor: not-allowed; }
.finder-fields option { background: var(--surface-raised); color: var(--white); }
.primary-button { background: var(--red); color: var(--white); white-space: nowrap; }
.form-message { display: none; margin-top: 12px; border-radius: 8px; padding: 8px 12px; background: rgba(240, 68, 50, 0.12); color: #ffb4aa; font-size: 14px; line-height: 20px; }
.form-message.is-visible { display: block; }
.form-message.is-success { background: rgba(124, 204, 135, 0.12); color: #b5e9bc; }
.finder-loading { display: none; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 12px; }
.finder-loading span { height: 40px; border-radius: 8px; background: var(--surface-hover); animation: skeletonPulse 1200ms var(--ease-fluid) infinite alternate; }
.vehicle-finder.is-loading .finder-loading { display: grid; }
.vehicle-finder.is-loading .finder-fields { opacity: 0.42; pointer-events: none; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px; color: var(--soft); font-size: 14px; line-height: 20px; animation: contentIn 1100ms var(--ease-fluid) 400ms both; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { color: var(--red); font-size: 18px; }

.brand-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.brand-strip-inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; gap: 32px; }
.brand-strip p { flex: 0 0 auto; color: var(--muted); font-size: 12px; line-height: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.brand-list { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 24px; color: #777777; font-size: 18px; line-height: 28px; font-weight: 700; letter-spacing: 0.06em; }

.section { padding-block: 96px; }
.section-intro { display: grid; grid-template-columns: 1fr 1.1fr; align-items: end; gap: 64px; margin-bottom: 64px; }
.section-intro .section-kicker { grid-column: 1 / -1; margin-bottom: -40px; }
.section-intro h2, .section-heading-row h2, .faq-intro h2, .final-cta h2 { font-size: 48px; line-height: 1; font-weight: 600; letter-spacing: -0.04em; }
.section-intro > p:last-child { max-width: 480px; color: var(--muted); font-size: 18px; line-height: 28px; }
.why-section { background: var(--ink); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.benefit-card { position: relative; min-height: 360px; padding: 24px; background: var(--surface); transition: transform 700ms var(--ease-fluid), background 700ms var(--ease-fluid); }
.benefit-card + .benefit-card { border-left: 1px solid var(--line); }
.benefit-card:hover { z-index: 2; transform: translateY(-8px); background: var(--surface-raised); }
.icon-box, .category-icon, .step-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--surface-hover); color: var(--red); font-size: 24px; }
.card-number { position: absolute; top: 24px; right: 24px; color: #666666; font-size: 12px; line-height: 16px; }
.benefit-card h3 { margin-top: 80px; font-size: 20px; line-height: 28px; font-weight: 600; }
.benefit-card > p:last-child { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 20px; }

.category-section { background: var(--warm); color: var(--black); }
.category-section .section-kicker { color: #666666; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 64px; }
.section-heading-row .section-kicker { margin-bottom: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: 14px; line-height: 20px; font-weight: 700; transition: color 700ms var(--ease-fluid), transform 700ms var(--ease-fluid); }
.text-link:hover { color: var(--red); transform: translateY(-2px); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 280px; overflow: hidden; border: 1px solid #d8d3c9; border-radius: 16px; background: var(--white); padding: 24px; transition: transform 700ms var(--ease-fluid), box-shadow 700ms var(--ease-fluid), border-color 700ms var(--ease-fluid); }
.category-card-large { grid-column: span 2; background: var(--black); color: var(--white); border-color: var(--black); }
.category-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: 0 24px 48px rgba(19, 18, 9, 0.12); }
.category-card:active { transform: scale(0.98); }
.category-card .category-icon { background: #f3f0e9; color: var(--black); }
.category-card-large .category-icon { background: var(--surface-raised); color: var(--red); }
.category-card h3 { font-size: 24px; line-height: 32px; font-weight: 600; }
.category-card div > span { display: block; margin-top: 8px; color: #666666; font-size: 14px; line-height: 20px; }
.category-card-large div > span { color: var(--muted); }
.category-card div > p { margin-bottom: 8px; color: var(--red); font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.card-arrow { position: absolute; top: 24px; right: 24px; font-size: 20px; transition: transform 700ms var(--ease-fluid); }
.category-card:hover .card-arrow { transform: translate(4px, -4px); }

.tagline-section { min-height: 720px; display: flex; align-items: center; background: var(--black); }
.tagline { max-width: 680px; font-size: 60px; line-height: 1; font-weight: 600; letter-spacing: -0.04em; }
.tagline .word { display: inline-block; color: rgba(255, 255, 255, 0.3); transition: color 700ms var(--ease-fluid), transform 700ms var(--ease-fluid); }
.tagline .word.is-active { color: var(--white); transform: translateY(-2px); }

.process-section { background: var(--surface); }
.process-intro { grid-template-columns: 1fr; }
.process-intro .section-kicker { margin-bottom: -40px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 64px 80px 1fr; align-items: center; gap: 24px; min-height: 168px; border-bottom: 1px solid var(--line); padding-block: 24px; transition: background 700ms var(--ease-fluid), padding 700ms var(--ease-fluid); }
.process-item:hover { background: var(--surface-raised); padding-inline: 24px; }
.step-number { color: #666666; font-size: 14px; line-height: 20px; }
.step-icon { width: 64px; height: 64px; border-radius: 16px; font-size: 30px; }
.process-item h3 { font-size: 24px; line-height: 32px; font-weight: 600; }
.process-item p { max-width: 680px; margin-top: 8px; color: var(--muted); }

.proof-section { background: var(--red); color: var(--white); }
.proof-layout { display: grid; grid-template-columns: 0.8fr 1.5fr; gap: 80px; align-items: center; }
.proof-section .section-kicker { color: #ffd3ce; }
.big-stat { margin-top: 24px; font-size: 72px; line-height: 1; font-weight: 600; letter-spacing: -0.04em; }
.big-stat span { font-size: 24px; line-height: 32px; color: #ffd3ce; }
.stars { display: flex; gap: 4px; margin-top: 16px; color: var(--white); font-size: 18px; }
.proof-stat > p:last-child { margin-top: 8px; color: #ffd3ce; font-size: 14px; line-height: 20px; }
.testimonial { border-radius: 24px; background: var(--white); color: var(--black); padding: 40px; }
.testimonial > i { color: var(--red); font-size: 40px; }
.testimonial blockquote { margin-top: 24px; font-size: 30px; line-height: 36px; font-weight: 500; letter-spacing: -0.02em; }
.testimonial footer { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 9999px; background: var(--black); color: var(--white); font-size: 14px; font-weight: 700; }
.testimonial footer strong, .testimonial footer span { display: block; }
.testimonial footer strong { font-size: 14px; line-height: 20px; }
.testimonial footer span { color: #666666; font-size: 12px; line-height: 16px; }

.faq-section { background: var(--ink); }
.faq-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro .section-kicker { margin-bottom: 16px; }
.faq-intro > p:not(.section-kicker) { max-width: 360px; margin-top: 24px; color: var(--muted); }
.faq-intro .text-link { margin-top: 24px; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 24px; cursor: pointer; list-style: none; font-size: 18px; line-height: 28px; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary i { flex: 0 0 auto; color: var(--red); transition: transform 700ms var(--ease-fluid); }
details[open] summary i { transform: rotate(45deg); }
details p { max-width: 680px; padding: 0 48px 24px 0; color: var(--muted); }

.final-cta { background: var(--white); color: var(--black); padding-block: 80px; }
.final-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.final-cta .section-kicker { margin-bottom: 16px; color: #666666; }
.light-button { background: var(--black); color: var(--white); }
.light-button:hover { background: var(--red); }

.site-footer { border-top: 1px solid var(--line); background: var(--black); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; }
.footer-brand p { margin-top: 16px; color: var(--muted); }
.footer-heading { margin-bottom: 16px; color: var(--white); font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { display: block; width: max-content; margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 20px; transition: color 700ms var(--ease-fluid); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 80px; border-top: 1px solid var(--line); color: #777777; font-size: 12px; line-height: 16px; }
.footer-bottom a { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }

.cookie-banner { position: fixed; right: 24px; bottom: 24px; z-index: 150; display: flex; align-items: center; gap: 24px; width: min(calc(100% - 48px), 560px); border: 1px solid var(--line); border-radius: 16px; background: var(--surface-raised); box-shadow: var(--shadow); padding: 16px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; font-size: 14px; line-height: 20px; }
.cookie-banner p { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 16px; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-actions button { font-size: 14px; line-height: 20px; }
.secondary-button { border: 1px solid var(--line); background: var(--surface-hover); color: var(--white); }
.secondary-button:hover { background: var(--line); }

.reveal { transform: translateY(64px); filter: blur(12px); opacity: 0; transition: transform 900ms var(--ease-fluid), filter 900ms var(--ease-fluid), opacity 900ms var(--ease-fluid); }
.reveal.is-visible { transform: translateY(0); filter: blur(0); opacity: 1; }

.legal-page { min-height: 100vh; padding-block: 160px 96px; background: var(--ink); }
.legal-shell { max-width: 760px; }
.legal-shell h1 { font-size: 48px; line-height: 1; font-weight: 600; }
.legal-shell h2 { margin-top: 48px; font-size: 24px; line-height: 32px; }
.legal-shell p { margin-top: 16px; color: var(--soft); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; color: var(--muted); }
.error-page { display: grid; place-items: center; min-height: 100vh; padding: 24px; text-align: center; background: var(--black); }
.error-content { max-width: 680px; }
.error-code { color: var(--red); font-size: 96px; line-height: 1; font-weight: 600; }
.error-page h1 { margin-top: 24px; font-size: 48px; line-height: 1; font-weight: 600; }
.error-page p { margin: 24px auto 32px; color: var(--muted); }

@keyframes heroImageIn { from { opacity: 0; transform: scale(1.05); } to { opacity: 0.88; transform: scale(1); } }
@keyframes contentIn { from { transform: translateY(32px); filter: blur(8px); opacity: 0; } to { transform: translateY(0); filter: blur(0); opacity: 1; } }
@keyframes skeletonPulse { from { opacity: 0.35; } to { opacity: 0.8; } }

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .nav-island { width: min(calc(100% - 48px), 680px); }
  .menu-toggle { display: block; }
  .header-cta { margin-left: auto; margin-right: 8px; }
  .hero-visual { inset: 0 0 0 30%; opacity: 0.72; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .benefit-card:nth-child(4) { border-top: 1px solid var(--line); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-layout, .faq-layout { gap: 48px; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 32px, 680px); }
  .nav-island { width: calc(100% - 32px); margin-top: 16px; }
  .header-cta { display: none; }
  .hero, .hero-content { min-height: 880px; }
  .hero-content { justify-content: flex-end; padding-top: 120px; padding-bottom: 64px; }
  .hero-visual { inset: 0; height: 58%; }
  .hero-shade { background: rgba(0, 0, 0, 0.38); }
  .hero-visual::after { inset: auto 0 0; width: 100%; height: 32%; }
  .hero h1 { font-size: 48px; }
  .hero-copy { font-size: 16px; line-height: 24px; }
  .vehicle-finder { margin-top: 32px; border-radius: 16px; }
  .finder-fields { grid-template-columns: 1fr 1fr; }
  .finder-fields .primary-button { grid-column: 1 / -1; }
  .brand-strip-inner { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 24px; }
  .brand-list { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .section { padding-block: 80px; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .section-intro .section-kicker { margin-bottom: 0; }
  .section-intro h2, .section-heading-row h2, .faq-intro h2, .final-cta h2 { font-size: 36px; line-height: 40px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 280px; }
  .benefit-card + .benefit-card { border-left: 0; border-top: 1px solid var(--line); }
  .section-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 48px; }
  .tagline-section { min-height: 560px; }
  .tagline { font-size: 48px; }
  .process-intro .section-kicker { margin-bottom: 0; }
  .process-item { grid-template-columns: 48px 1fr; }
  .process-item .step-icon { display: none; }
  .proof-layout, .faq-layout { grid-template-columns: 1fr; }
  .proof-layout { gap: 48px; }
  .testimonial { padding: 32px; }
  .testimonial blockquote { font-size: 24px; line-height: 32px; }
  .faq-intro { position: static; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

@media (max-width: 520px) {
  .hero, .hero-content { min-height: 960px; }
  .hero-visual { height: 48%; }
  .hero h1 { font-size: 48px; }
  .finder-fields { grid-template-columns: 1fr; }
  .finder-fields .primary-button { grid-column: auto; }
  .hero-proof { gap: 12px 16px; }
  .brand-list { gap: 16px 24px; font-size: 14px; line-height: 20px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card-large { grid-column: auto; }
  .tagline { font-size: 36px; line-height: 40px; }
  .process-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 24px; }
  .cookie-actions { flex-direction: column; }
}

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