:root {
  --ink: #182027;
  --ink-2: #222d36;
  --blue: #2f739d;
  --blue-dark: #1d567a;
  --blue-pale: #e8f1f6;
  --orange: #f05a19;
  --orange-dark: #c94711;
  --paper: #ffffff;
  --paper-2: #f5f7f8;
  --steel: #d7dfe4;
  --muted: #5c6972;
  --line: #cbd5db;
  --shadow: 0 24px 60px rgba(24, 32, 39, 0.16);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 32, 39, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 39, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -5rem;
  padding: 0.75rem 1rem;
  background: var(--orange);
  color: white;
  font-weight: 800;
}

.skip-link:focus { top: 1rem; }

.review-bar {
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 0.38rem 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(24, 32, 39, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 78px;
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy { line-height: 1; }
.brand-name {
  display: block;
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.brand-tagline {
  display: block;
  margin-top: 0.34rem;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.65rem 0.82rem;
  border-radius: 999px;
  color: #3c4850;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--blue-pale);
  color: var(--blue-dark);
}

.site-nav .nav-cta {
  margin-left: 0.4rem;
  background: var(--ink);
  color: white;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--orange);
  color: white;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-weight: 900;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 7rem);
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(47, 115, 157, 0.34), transparent 34%),
    linear-gradient(128deg, #11171c 0%, #1e2931 58%, #17242d 100%);
}

.hero::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 430px;
  height: 430px;
  border: 72px solid rgba(255,255,255,0.035);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.home-hero {
  position: relative;
  z-index: 1;
}

.hero-brand-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-brand-intro .eyebrow {
  justify-content: center;
}

.hero h1.home-title {
  max-width: none;
  font-size: clamp(3.8rem, 9vw, 8rem);
}

.hero-brand-intro .hero-lead {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.hero-journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.journey-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 4px solid white;
  border-radius: 14px;
  background: #d9dee1;
  box-shadow: var(--shadow);
}

.journey-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journey-card.start { transform: rotate(-1.2deg); }
.journey-card.finish { transform: rotate(1.2deg); }

.journey-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  min-width: 148px;
  padding: 0.62rem 0.8rem 0.7rem;
  border-left: 5px solid var(--orange);
  border-radius: 5px;
  background: rgba(17, 23, 28, 0.92);
  color: white;
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.journey-label span {
  display: block;
  margin-bottom: 0.2rem;
  color: #c8d4da;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.13em;
}

.journey-card.finish .journey-label {
  border-left-color: white;
  background: rgba(240, 90, 25, 0.94);
}

.journey-card.finish .journey-label span { color: white; }

.journey-marker {
  display: grid;
  place-items: center;
  color: #b9c8d0;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.journey-marker::before,
.journey-marker::after {
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  content: "";
}

.journey-marker::after {
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.hero-product-intro {
  max-width: 760px;
  margin: clamp(2rem, 5vw, 3.2rem) auto 0;
  text-align: center;
}

.hero-product-intro > p:first-child {
  margin: 0;
}

.hero-product-intro > p:first-child span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-product-intro > p:first-child strong {
  color: white;
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-product-copy {
  margin: 0.75rem auto 0;
  color: #dce4e8;
}

.hero-product-intro .hero-actions {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 3px;
  background: currentColor;
  content: "";
}

h1, h2, h3 {
  margin: 0;
  color: inherit;
  font-family: "Arial Narrow", "Aptos Display", Arial, sans-serif;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -0.058em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 950;
  letter-spacing: -0.048em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.hero h1 span,
.accent { color: var(--orange); }

.hero-lead {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: #dce4e8;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--orange);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(240, 90, 25, 0.25);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(240, 90, 25, 0.32);
}

.button.secondary {
  border-color: rgba(255,255,255,0.35);
  background: transparent;
  color: white;
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.button.dark { background: var(--ink); box-shadow: none; }
.button.dark:hover, .button.dark:focus-visible { background: var(--blue-dark); }

.button.disabled,
button.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.hero-note {
  margin: 1rem 0 0;
  color: #aebbc3;
  font-size: 0.88rem;
}

.transformation {
  position: relative;
  min-height: 470px;
}

.truck-card {
  position: absolute;
  overflow: hidden;
  width: 76%;
  border: 4px solid white;
  border-radius: 12px;
  background: #eee;
  box-shadow: var(--shadow);
}

.truck-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.truck-card.before { left: 0; top: 0; transform: rotate(-3deg); }
.truck-card.after { right: 0; bottom: 0; transform: rotate(3deg); }

.truck-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 5px;
  background: rgba(24, 32, 39, 0.9);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.truck-card.after .truck-label { background: var(--orange); }

.stat-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 18px 42px rgba(24,32,39,0.12);
}

.stat {
  padding: 1.25rem 1.35rem;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  color: var(--blue-dark);
  font-size: 1.1rem;
  font-weight: 950;
}
.stat span { color: var(--muted); font-size: 0.86rem; }

.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section.compact { padding: clamp(3.5rem, 6vw, 5.25rem) 0; }
.section.tinted { background: var(--paper-2); }
.section.dark {
  color: white;
  background:
    linear-gradient(135deg, rgba(47,115,157,0.13), transparent 45%),
    var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section.dark .section-heading p { color: #bec9cf; }

.kicker {
  margin: 0 0 0.75rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section.dark .kicker { color: #70b0d5; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(24,32,39,0.055);
}

.card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  content: "";
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 7px;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-weight: 950;
}

.card p { margin: 0.75rem 0 0; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.feature-panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid #3a4852;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.035);
}

.feature-panel h3 { color: white; }
.feature-panel p { margin: 0.8rem 0 0; color: #c9d3d8; }
.feature-panel ul { margin: 1.1rem 0 0; padding: 0; list-style: none; }
.feature-panel li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  color: #eef2f4;
}
.feature-panel li::before {
  position: absolute;
  left: 0;
  top: 0.92rem;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: var(--orange);
  content: "";
}

.screens-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.screen-frame {
  overflow: hidden;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.screen-frame img {
  width: 100%;
  border-radius: 8px;
  background: white;
}

.screen-copy p { color: var(--muted); }
.check-list { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 0.48rem 0 0.48rem 1.65rem;
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--orange);
  content: "✓";
  font-weight: 950;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.price-card {
  padding: 2rem;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-label {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0.25rem 0 0.75rem;
}
.price strong { font-size: 4.5rem; line-height: 1; letter-spacing: -0.06em; }
.price del { color: var(--muted); font-size: 1.2rem; }
.price-card p { color: var(--muted); }
.price-card .button { width: 100%; margin-top: 1rem; }
.price-card small { display: block; margin-top: 0.75rem; color: var(--muted); text-align: center; }

.package-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}
.package-list li {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,0.06);
}

.faq-list { display: grid; gap: 0.7rem; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 1.15rem 3.2rem 1.15rem 1.25rem;
  font-weight: 850;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  color: var(--blue-dark);
  content: "+";
  font-size: 1.5rem;
  font-weight: 600;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: white;
  background:
    linear-gradient(110deg, rgba(47,115,157,0.24), transparent 55%),
    var(--ink);
}
.page-hero h1 { max-width: 17ch; font-size: clamp(2.8rem, 6vw, 5.6rem); }
.page-hero p { max-width: 720px; margin: 1.3rem 0 0; color: #d5dfe4; font-size: 1.14rem; }

.breadcrumbs {
  margin-bottom: 1.4rem;
  color: #9eb1bc;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumbs a { color: white; text-decoration: none; }

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}
.product-intro h2 { font-size: clamp(2.2rem, 4.5vw, 3.9rem); }
.product-intro .lede { color: var(--muted); font-size: 1.1rem; }
.section-subhead { margin-top: 1.8rem; }

.scenario-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.scenario-row {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  border-bottom: 1px solid var(--line);
}
.scenario-row:last-child { border-bottom: 0; }
.scenario-row > * { padding: 1rem 1.2rem; }
.scenario-row strong { background: var(--blue-pale); color: var(--blue-dark); }
.scenario-row span { color: var(--muted); }

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
}
.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(24,32,39,0.07);
}
.screenshot-card a { display: block; background: #e8ecef; }
.screenshot-card img { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: white; }
.screenshot-card img.wide-shot { object-fit: cover; object-position: left top; }
.screenshot-card figcaption { padding: 1.15rem 1.25rem 1.3rem; }
.screenshot-card h3 { font-size: 1.35rem; }
.screenshot-card p { margin: 0.45rem 0 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.split p { color: var(--muted); }
.story-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.prose { max-width: 820px; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.9rem, 4vw, 3rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.25rem; }
.legal-callout {
  margin: 1.4rem 0;
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--orange);
  background: var(--paper-2);
}

.support-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 1.4rem;
  max-width: 780px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.support-card img { width: 82px; height: 82px; object-fit: contain; }
.support-card p { margin: 0.55rem 0 1rem; color: var(--muted); }
.email-link { color: var(--blue-dark); font-weight: 900; overflow-wrap: anywhere; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.8rem);
  border-radius: 22px;
  color: white;
  background: var(--blue-dark);
}
.cta-band::after {
  position: absolute;
  right: -50px;
  top: -65px;
  width: 210px;
  height: 210px;
  border: 40px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  content: "";
}
.cta-band h2 { max-width: 780px; font-size: clamp(2.1rem, 5vw, 4rem); }
.cta-band p { max-width: 710px; margin: 1rem 0 0; color: #d9e8f0; }

.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid #34414b;
  color: #bdc8ce;
  background: #11171c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.55fr);
  gap: 2.5rem;
}
.footer-brand .brand { color: white; }
.footer-brand .brand-mark {
  width: 68px;
  height: 68px;
  padding: 5px;
  border-radius: 12px;
  background: white;
}
.footer-brand p { max-width: 430px; margin: 1rem 0 0; }
.footer-col h3 { color: white; font-size: 1rem; text-transform: uppercase; }
.footer-col a {
  display: block;
  margin-top: 0.6rem;
  color: #bdc8ce;
  text-decoration: none;
}
.footer-col a:hover, .footer-col a:focus-visible { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1.35rem;
  border-top: 1px solid #34414b;
  color: #87969f;
  font-size: 0.82rem;
}

:focus-visible { outline: 3px solid #ff8a4f; outline-offset: 3px; }

@media (max-width: 920px) {
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    align-items: stretch;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { border-radius: 8px; }
  .site-nav .nav-cta { margin: 0.3rem 0 0; text-align: center; }
  .hero-grid, .product-intro, .price-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 3rem; }
  .transformation { width: min(100%, 650px); min-height: 430px; }
  .hero-journey { grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr); }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 1rem; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  .brand-tagline { letter-spacing: 0.1em; }
  .brand-name { font-size: 0.93rem; }
  .brand-mark { width: 48px; height: 48px; }
  .header-inner { min-height: 68px; gap: 0.6rem; }
  .hero { padding-top: 3.5rem; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.3rem); }
  .transformation { min-height: 330px; }
  .truck-card { width: 79%; border-width: 3px; }
  .hero-journey { grid-template-columns: 1fr; gap: 1.1rem; }
  .journey-marker { display: none; }
  .journey-card.start,
  .journey-card.finish { transform: none; }
  .journey-label { left: 0.75rem; bottom: 0.75rem; }
  .cards, .feature-grid, .screenshot-grid, .split { grid-template-columns: 1fr; }
  .package-list { grid-template-columns: 1fr; }
  .scenario-row { grid-template-columns: 1fr; }
  .scenario-row strong { padding-bottom: 0.35rem; }
  .scenario-row span { padding-top: 0.35rem; }
  .support-card { grid-template-columns: 1fr; }
  .support-card img { width: 68px; height: 68px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
