:root {
  --bg: #f3f4f8;
  --surface: #ffffff;
  --surface-soft: #f8f9fc;
  --surface-deep: #1a2336;
  --ink: #18161b;
  --ink-soft: #2a2731;
  --muted: #555061;
  --line: #d8dbe4;
  --line-strong: #c8ccd8;
  --brand: #ff641a;
  --brand-dark: #de4f09;
  --brand-ink: #23202a;
  --navy-strong: #111a2c;
  --navy-soft: #223651;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(680px 380px at 100% -120px, rgba(255, 100, 26, 0.2), transparent 68%),
    radial-gradient(540px 320px at -80px -140px, rgba(35, 32, 42, 0.12), transparent 72%),
    var(--bg);
}

body.nav-open {
  overflow: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  z-index: -2;
}

.bg-orb-a {
  width: 360px;
  height: 360px;
  right: -160px;
  top: -120px;
  background: rgba(255, 100, 26, 0.24);
}

.bg-orb-b {
  width: 280px;
  height: 280px;
  left: -140px;
  top: 160px;
  background: rgba(35, 32, 42, 0.18);
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand img {
  width: 178px;
  height: auto;
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-cta {
  white-space: nowrap;
}

.nav-links,
.desktop-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link,
.desktop-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.nav-link:hover,
.desktop-nav a:hover {
  color: var(--ink-soft);
  border-color: var(--line);
  background: #fff;
}

.nav-link.active,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-strong);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-box span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-ink);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-menu-inner {
  display: grid;
  gap: 14px;
  padding: 14px 0 18px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
}

.mobile-menu-cta-row {
  display: grid;
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 100, 26, 0.2);
  background: rgba(255, 100, 26, 0.1);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-content {
  padding: 36px 0 52px;
}

.section {
  margin: 0 0 58px;
}

.anchor-target {
  scroll-margin-top: 108px;
}

.hero {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 242, 0.95)),
    radial-gradient(circle at 86% 24%, rgba(255, 100, 26, 0.15), transparent 48%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.hero-lead {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-primary-actions {
  margin-top: 20px;
}

.hero-secondary-actions {
  margin-top: 10px;
}

.hero-visual {
  min-width: 0;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
}

.hero-proof-card {
  display: grid;
  gap: 7px;
  min-width: 0;
  border-radius: 18px;
  border: 1px solid rgba(17, 26, 44, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.hero-proof-card-accent {
  background:
    linear-gradient(155deg, rgba(255, 100, 26, 0.14), rgba(255, 255, 255, 0.96)),
    #fff;
}

.hero-proof-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 100, 26, 0.1);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-proof-card strong {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.3;
}

.hero-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-trust-stack {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.hero-trust-primary,
.hero-trust-secondary {
  margin: 0;
}

.hero-trust-secondary {
  color: var(--muted);
  font-weight: 600;
}

.hero-showcase {
  display: grid;
  gap: 14px;
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat-card {
  border-radius: 16px;
  border: 1px solid rgba(17, 26, 44, 0.08);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.hero-stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.hero-stat-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
}

.hero-phone-cluster {
  position: relative;
  min-height: 620px;
  padding: 8px 76px 24px 0;
}

.app-module-scene-head,
.journey-scene-head,
.path-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-story-tag,
.journey-stage,
.journey-metric,
.path-tag,
.path-topline,
.app-module-scene-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.journey-stage,
.path-tag,
.app-module-scene-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
}

.hero-device-mode,
.journey-metric,
.path-topline {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-soft);
}

.app-module-scene .icon-chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.app-module-scene .icon-chip svg {
  stroke: #fff;
}

.phone-shot {
  margin: 0;
}

.phone-shot-frame {
  border-radius: 36px;
  padding: 10px;
  background:
    radial-gradient(circle at top right, rgba(255, 100, 26, 0.16), transparent 26%),
    linear-gradient(180deg, #11182a, #0b1120);
  border: 1px solid rgba(17, 26, 44, 0.18);
  box-shadow: 0 22px 42px rgba(17, 26, 44, 0.26);
}

.phone-shot-frame img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.phone-shot-caption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.phone-shot-hero {
  max-width: 300px;
}

.phone-shot-theory {
  max-width: 204px;
}

.hero-phone-float {
  position: absolute;
  right: 0;
  bottom: 12px;
}

.language-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: center;
}

.language-proof-copy > *:last-child {
  margin-bottom: 0;
}

.language-proof-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.78fr);
  gap: 16px;
  align-items: end;
}

.language-proof-side {
  display: grid;
  gap: 12px;
}

.phone-shot-proof {
  max-width: 280px;
}

.phone-shot-proof-sm {
  margin-left: auto;
  max-width: 210px;
}

.language-proof-note {
  border-radius: 16px;
  border: 1px solid rgba(255, 100, 26, 0.18);
  background: rgba(255, 100, 26, 0.08);
  padding: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.hero-story-stack {
  display: grid;
  gap: 12px;
}

.hero-story-card {
  border-radius: 18px;
  border: 1px solid rgba(17, 26, 44, 0.08);
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.hero-story-card-accent {
  background:
    linear-gradient(155deg, rgba(255, 100, 26, 0.12), rgba(255, 255, 255, 0.96)),
    #fff;
}

.hero-story-tag {
  margin-bottom: 10px;
  background: rgba(255, 100, 26, 0.12);
  color: var(--brand-dark);
}

.hero-story-card p,
.hero-legal-note p {
  margin-bottom: 0;
}

.hero-legal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 100, 26, 0.18);
  background: rgba(255, 100, 26, 0.08);
  padding: 14px 16px;
}

.hero-legal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 7px;
  background: var(--brand);
}

.hero h1,
.section h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.16;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
}

.section h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(24px, 2.8vw, 36px);
}

.section h3 {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 18px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
}

.section-intro {
  max-width: 780px;
}

.hero p {
  max-width: 920px;
}

.trust {
  margin: 6px 0 2px;
  color: #1f2d44;
  font-size: 14px;
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 100, 26, 0.22);
  background: rgba(255, 100, 26, 0.08);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 700;
}

.tab-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-chip {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 100, 26, 0.25);
  background: rgba(255, 100, 26, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon-chip svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--brand-ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grid {
  display: grid;
  gap: 16px;
}

.two-up {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.three-up {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.compact-grid {
  gap: 12px;
}

.card,
.panel,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.card {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 100, 26, 0.28);
  box-shadow: 0 16px 34px rgba(24, 22, 27, 0.09);
}

.card-photo {
  margin: -6px -6px 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 145px;
}

.card-photo img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.panel {
  background: var(--surface-soft);
}

.panel-title {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

.coverage-stat-grid,
.coverage-letter-grid {
  display: grid;
  gap: 16px;
}

.coverage-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 16px;
}

.coverage-letter-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.coverage-stat-value,
.coverage-route-count {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
}

.coverage-summary-note {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.coverage-filter-panel {
  display: grid;
  gap: 16px;
}

#centre-directory {
  scroll-margin-top: 92px;
}

.coverage-filter-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.coverage-generated-at {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.coverage-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.coverage-field {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.coverage-control {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.coverage-control:focus-visible {
  outline: 2px solid rgba(255, 100, 26, 0.35);
  outline-offset: 2px;
  border-color: rgba(255, 100, 26, 0.55);
}

.coverage-filter-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.access-request-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  align-items: start;
}

.access-request-form-card,
.access-request-form,
.access-request-side {
  display: grid;
  gap: 16px;
}

.access-request-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.access-request-textarea {
  min-height: 150px;
  padding: 12px 14px;
  resize: vertical;
}

.access-request-centre-note,
.access-request-status,
.access-request-copy-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.access-request-preview {
  display: grid;
  gap: 12px;
}

.access-request-preview-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #fffaf6, #ffffff);
}

.access-request-preview-box pre {
  margin: 0;
  color: var(--ink-soft);
  font: 600 13px/1.65 "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: pre-wrap;
  word-break: break-word;
}

.coverage-letter-card {
  padding-top: 16px;
}

.coverage-letter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.coverage-letter-head h3 {
  margin-bottom: 0;
}

.coverage-centre-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coverage-centre-item {
  padding: 0;
  border-top: 1px solid var(--line);
}

.coverage-centre-item:first-child {
  border-top: 0;
}

.coverage-centre-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
}

.coverage-centre-link:hover span {
  color: var(--brand-dark);
}

.coverage-centre-item span,
.coverage-centre-item strong,
.coverage-centre-link span,
.coverage-centre-link strong {
  font-size: 14px;
}

.coverage-centre-item strong,
.coverage-centre-link strong {
  color: var(--ink-soft);
  white-space: nowrap;
}

.centre-link,
.text-link {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
}

.centre-link:hover,
.text-link:hover {
  text-decoration: underline;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 8px;
}

.detail-subsection + .detail-subsection {
  margin-top: 18px;
}

.detail-subsection h3 {
  margin-bottom: 10px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: var(--surface-soft);
}

.module-tile p {
  margin-bottom: 0;
  font-size: 14px;
}

.module-tile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.tile-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 100, 26, 0.12);
  border: 1px solid rgba(255, 100, 26, 0.2);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-proof-card {
  display: grid;
  grid-template-columns: minmax(150px, 188px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  overflow: hidden;
}

.product-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.product-proof-phone {
  justify-self: center;
  max-width: 188px;
}

.product-proof-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.product-proof-copy h3,
.product-proof-copy p:last-child {
  margin-bottom: 0;
}

.proof-carousel {
  display: grid;
  gap: 14px;
}

.proof-carousel-track {
  min-width: 0;
}

.proof-carousel-controls {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.proof-carousel-nav {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f8fb);
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17, 26, 44, 0.08);
}

.proof-carousel-nav:disabled {
  opacity: 0.38;
  box-shadow: none;
  cursor: default;
}

.proof-carousel-meta {
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  justify-items: center;
}

.proof-carousel-status {
  display: inline-grid;
  gap: 4px;
  justify-items: center;
  min-width: min(100%, 260px);
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 100, 26, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 188, 121, 0.18), transparent 60%),
    #fff7f2;
}

.proof-carousel-count {
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-carousel-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.proof-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.proof-carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(17, 26, 44, 0.14);
  background: rgba(17, 26, 44, 0.14);
  cursor: pointer;
}

.proof-carousel-dot.active {
  background: var(--brand);
  border-color: var(--brand);
}

.safety-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  margin-bottom: 16px;
}

.safety-proof-card {
  display: grid;
  grid-template-columns: minmax(150px, 188px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  overflow: hidden;
}

.safety-proof-phone {
  justify-self: center;
  max-width: 188px;
}

.safety-proof-copy {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.safety-proof-copy h3,
.safety-proof-copy p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  color: var(--muted);
  margin-bottom: 8px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  border-color: #c24a14;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 10px 18px rgba(255, 100, 26, 0.24);
}

.btn-secondary {
  color: var(--ink-soft);
  background: #fff;
}

.nav-link:focus-visible,
.desktop-nav a:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.doc-back:focus-visible,
.proof-carousel-nav:focus-visible,
.proof-carousel-dot:focus-visible,
.footer-links a:focus-visible,
.footer-contact a:focus-visible {
  outline: 3px solid rgba(255, 100, 26, 0.35);
  outline-offset: 3px;
}

.price {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
}

.pricing-hero-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.pricing-hero-copy .eyebrow,
.pricing-hero-copy .hero-lead,
.pricing-hero-copy .trust {
  margin: 0;
}

.pricing-pill-row {
  margin-top: 0;
}

.pricing-pill-row .pill {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 26, 44, 0.08);
}

.pricing-hero-side {
  min-width: 0;
}

.pricing-summary-panel {
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 100, 26, 0.12), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 242, 0.96));
}

.pricing-summary-panel .panel-title {
  margin-bottom: 14px;
}

.pricing-summary-stack {
  display: grid;
  gap: 12px;
}

.pricing-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 14px;
}

.pricing-summary-row > div {
  min-width: 0;
}

.pricing-summary-row strong {
  display: block;
  color: var(--ink-soft);
  font-size: 15px;
}

.pricing-summary-row p {
  margin: 4px 0 0;
  font-size: 13px;
}

.pricing-summary-row span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-summary-row-featured {
  border-color: rgba(255, 100, 26, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 100, 26, 0.12), rgba(255, 255, 255, 0.92)),
    #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.price-card-featured {
  border-color: rgba(255, 100, 26, 0.26);
  box-shadow: 0 18px 36px rgba(255, 100, 26, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.98), rgba(255, 255, 255, 1)),
    #fff;
}

.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.price-card-top h3 {
  margin: 0;
}

.price-plan-tag {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-featured-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 100, 26, 0.12);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card .price {
  margin-bottom: 0;
}

.price-billing {
  margin: -6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.price-summary {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.price-subline {
  margin: 0;
  font-size: 14px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
}

.price-card li + li {
  margin-top: 8px;
}

.price-card-actions {
  margin-top: auto;
  padding-top: 4px;
}

.note {
  margin-top: 16px;
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.journey-scene {
  display: grid;
  gap: 14px;
  margin: -6px -6px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 26, 44, 0.08);
  padding: 16px;
  min-height: 150px;
}

.journey-scene-theory {
  background:
    radial-gradient(circle at top right, rgba(255, 100, 26, 0.25), transparent 36%),
    linear-gradient(155deg, #1c2841, #162033);
}

.journey-scene-practice {
  background:
    radial-gradient(circle at top right, rgba(255, 188, 121, 0.18), transparent 34%),
    linear-gradient(155deg, #17253e, #111a2d);
}

.journey-scene-navigation {
  background:
    radial-gradient(circle at top right, rgba(72, 187, 255, 0.18), transparent 34%),
    linear-gradient(155deg, #13233d, #11192c);
}

.journey-chip-row,
.app-module-scene-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-chip,
.app-module-scene-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.path-card {
  display: grid;
  gap: 12px;
}

.path-card-top {
  align-items: flex-start;
}

.path-tag {
  background: rgba(255, 100, 26, 0.12);
  color: var(--brand-dark);
}

.path-topline {
  text-align: right;
}

.path-step-list {
  display: grid;
  gap: 10px;
}

.path-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: flex-start;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  padding: 12px;
}

.path-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 100, 26, 0.14);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
}

.path-step p {
  margin: 0;
  font-size: 14px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 16, 23, 0.68), rgba(18, 16, 23, 0.08));
}

.photo-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.mini-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 14px;
}

.mini-photo {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 170px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.mini-photo img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}

.photo-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.app-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-module-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.app-module-scene {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(160deg, #1a2336, #11192b);
}

.module-scene-theory {
  background:
    radial-gradient(circle at top right, rgba(255, 166, 0, 0.22), transparent 30%),
    linear-gradient(160deg, #23314b, #121a2d);
}

.module-scene-practice {
  background:
    radial-gradient(circle at top right, rgba(255, 100, 26, 0.25), transparent 30%),
    linear-gradient(160deg, #1d2941, #10192b);
}

.module-scene-navigation {
  background:
    radial-gradient(circle at top right, rgba(89, 191, 255, 0.24), transparent 30%),
    linear-gradient(160deg, #16324d, #101a2c);
}

.module-scene-parking {
  background:
    radial-gradient(circle at top right, rgba(132, 214, 86, 0.22), transparent 30%),
    linear-gradient(160deg, #23364c, #131d2f);
}

.module-scene-instructor {
  background:
    radial-gradient(circle at top right, rgba(255, 120, 74, 0.22), transparent 30%),
    linear-gradient(160deg, #2c304c, #181d33);
}

.module-scene-bookings {
  background:
    radial-gradient(circle at top right, rgba(225, 152, 255, 0.2), transparent 30%),
    linear-gradient(160deg, #222a4a, #151a30);
}

.app-module-scene-title {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.app-module-body {
  padding: 16px;
}

.app-module-body p {
  margin-bottom: 0;
}

.feature-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: linear-gradient(130deg, #ffffff, #fff8f3);
}

.feature-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: center;
}

.feature-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 190px;
  box-shadow: var(--shadow-soft);
}

.feature-hero-actions {
  margin-top: 18px;
}

.feature-hero-link {
  min-width: 220px;
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 800;
}

.faq-item p {
  margin: 10px 0 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.mobile-cta-bar {
  display: none;
}

.mobile-cta-wrap {
  display: grid;
  gap: 10px;
}

.mobile-cta-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.mobile-cta-link {
  width: 100%;
}

.footer-wrap {
  padding: 26px 0 22px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: start;
}

.footer-brand-col,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 178px;
  height: auto;
}

.footer-summary {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.footer-muted {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-col h4 {
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.footer-list {
  margin: 0;
  padding-left: 16px;
}

.footer-list li {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact a {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--ink-soft);
}

.footer-contact,
small {
  color: var(--muted);
}

.pre-reveal {
  opacity: 0;
  transform: translateY(16px);
}

.pre-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.doc-page {
  background: var(--bg);
}

.doc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px min(4vw, 28px);
}

.doc-back {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 600;
  font-size: 13px;
}

.doc-hero {
  padding: 30px 0 10px;
}

.doc-wrap {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.doc-meta {
  color: var(--muted);
}

.doc {
  margin: 18px 0 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}

@media (min-width: 1400px) {
  body[data-page="home"] .main-content {
    width: min(1380px, 94vw);
  }

  body[data-page="home"] .hero {
    padding: 30px 32px;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 30px;
  }

  body[data-page="home"] .hero-showcase-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.82fr);
    gap: 18px;
  }

  body[data-page="home"] .hero-phone-cluster {
    min-height: 560px;
    padding: 0 58px 12px 0;
  }

  body[data-page="home"] .phone-shot-hero {
    max-width: 280px;
  }

  body[data-page="home"] .phone-shot-theory {
    max-width: 188px;
  }

  body[data-page="home"] .hero-story-card {
    padding: 16px;
  }

  body[data-page="home"] .hero-legal-note {
    padding: 12px 14px;
  }
}

@media (min-width: 981px) and (max-height: 1280px) {
  body[data-page="home"] .hero {
    padding: 22px 24px;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 20px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.08;
  }

  body[data-page="home"] .hero-lead {
    font-size: 15px;
    line-height: 1.5;
  }

  body[data-page="home"] .hero-showcase {
    gap: 10px;
  }

  body[data-page="home"] .hero-primary-actions {
    margin-top: 16px;
  }

  body[data-page="home"] .hero-secondary-actions {
    margin-top: 8px;
  }

  body[data-page="home"] .hero-stat-card {
    padding: 10px 12px;
  }

  body[data-page="home"] .hero-stat-card strong {
    font-size: 18px;
  }

  body[data-page="home"] .hero-showcase-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  body[data-page="home"] .hero-phone-cluster {
    min-height: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 180px;
  }

  body[data-page="home"] .phone-shot-hero {
    max-width: 180px;
  }

  body[data-page="home"] .phone-shot-theory {
    max-width: 140px;
  }

  body[data-page="home"] .hero-phone-float {
    display: none;
  }

  body[data-page="home"] .phone-shot-caption {
    margin-top: 8px;
    font-size: 12px;
  }

  body[data-page="home"] .hero-proof-grid {
    gap: 10px;
    margin-top: 14px;
  }

  body[data-page="home"] .hero-proof-card {
    padding: 12px;
  }

  body[data-page="home"] .hero-proof-card strong {
    font-size: 15px;
  }

  body[data-page="home"] .hero-proof-card p {
    font-size: 12px;
  }

  body[data-page="home"] .hero-trust-stack {
    margin-top: 8px;
    gap: 2px;
  }

  body[data-page="home"] .trust {
    font-size: 12px;
  }

  body[data-page="home"] .pill-row {
    display: none;
  }

  body[data-page="home"] .hero-story-card {
    padding: 12px;
  }

  body[data-page="home"] .hero-story-card h3 {
    font-size: 16px;
  }

  body[data-page="home"] .hero-story-card p,
  body[data-page="home"] .hero-legal-note p {
    font-size: 13px;
  }

  body[data-page="home"] .hero-legal-note {
    padding: 10px 12px;
  }
}

@media (min-width: 981px) and (max-height: 1080px) {
  body[data-page="home"] .main-content {
    padding-top: 22px;
  }

  body[data-page="home"] .hero.section {
    margin-bottom: 36px;
  }

  body[data-page="home"] .hero {
    padding: 18px 20px;
  }

  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 16px;
  }

  body[data-page="home"] .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(24px, 2.8vw, 34px);
  }

  body[data-page="home"] .hero-lead {
    font-size: 14px;
    line-height: 1.42;
  }

  body[data-page="home"] .hero-primary-actions {
    margin-top: 12px;
  }

  body[data-page="home"] .hero-secondary-actions,
  body[data-page="home"] .hero-proof-grid,
  body[data-page="home"] .hero-trust-stack,
  body[data-page="home"] .hero-story-card-accent,
  body[data-page="home"] .hero-legal-note {
    display: none;
  }

  body[data-page="home"] .hero-showcase {
    gap: 8px;
  }

  body[data-page="home"] .hero-stat-strip {
    gap: 8px;
  }

  body[data-page="home"] .hero-stat-card {
    padding: 10px 12px;
  }

  body[data-page="home"] .hero-stat-card strong {
    font-size: 17px;
  }

  body[data-page="home"] .hero-showcase-grid {
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 10px;
  }

  body[data-page="home"] .hero-phone-cluster {
    width: 148px;
  }

  body[data-page="home"] .phone-shot-hero {
    max-width: 148px;
  }

  body[data-page="home"] .phone-shot-home .phone-shot-frame {
    border-radius: 28px;
    padding: 8px;
  }

  body[data-page="home"] .phone-shot-home .phone-shot-frame img {
    height: 320px;
    object-fit: cover;
    object-position: top;
  }

  body[data-page="home"] .phone-shot-caption {
    display: none;
  }

  body[data-page="home"] .hero-story-stack {
    gap: 10px;
  }

  body[data-page="home"] .hero-story-card {
    padding: 12px 14px;
  }

  body[data-page="home"] .hero-story-card h3 {
    font-size: 15px;
    line-height: 1.28;
  }

  body[data-page="home"] .hero-story-card p {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 981px) and (max-height: 1180px) {
  body[data-page="home"] .section {
    margin-bottom: 44px;
  }

  body[data-page="home"] .section h2 {
    margin-bottom: 12px;
    font-size: clamp(25px, 2.4vw, 34px);
  }

  body[data-page="home"] .section-intro {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.58;
  }

  body[data-page="home"] .proof-carousel {
    gap: 12px;
  }

  body[data-page="home"] .product-proof-grid,
  body[data-page="home"] .safety-proof-grid {
    gap: 14px;
  }

  body[data-page="home"] .product-proof-card,
  body[data-page="home"] .safety-proof-card {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
  }

  body[data-page="home"] .product-proof-phone,
  body[data-page="home"] .safety-proof-phone {
    max-width: 132px;
    align-self: center;
    justify-self: center;
  }

  body[data-page="home"] .product-proof-phone .phone-shot-frame,
  body[data-page="home"] .safety-proof-phone .phone-shot-frame,
  body[data-page="home"] .language-proof-visual > .phone-shot-proof .phone-shot-frame {
    border-radius: 30px;
    padding: 8px;
  }

  body[data-page="home"] .product-proof-phone .phone-shot-frame img,
  body[data-page="home"] .safety-proof-phone .phone-shot-frame img {
    height: 228px;
    object-fit: cover;
    object-position: top;
  }

  body[data-page="home"] .product-proof-card .phone-shot-caption,
  body[data-page="home"] .safety-proof-card .phone-shot-caption {
    display: none;
  }

  body[data-page="home"] .product-proof-copy,
  body[data-page="home"] .safety-proof-copy {
    gap: 6px;
    align-content: center;
  }

  body[data-page="home"] .product-proof-copy h3,
  body[data-page="home"] .safety-proof-copy h3 {
    font-size: 15px;
    line-height: 1.28;
  }

  body[data-page="home"] .product-proof-copy p,
  body[data-page="home"] .safety-proof-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  body[data-page="home"] .language-proof {
    grid-template-columns: minmax(0, 1fr) 312px;
    gap: 20px;
    align-items: start;
  }

  body[data-page="home"] .language-proof-visual {
    grid-template-columns: 184px 118px;
    gap: 10px;
    align-items: start;
    justify-content: start;
    justify-items: start;
  }

  body[data-page="home"] .language-proof-visual > .phone-shot-proof {
    max-width: 184px;
  }

  body[data-page="home"] .language-proof-visual > .phone-shot-proof .phone-shot-frame img {
    height: 300px;
    object-fit: cover;
    object-position: top;
  }

  body[data-page="home"] .language-proof-side {
    display: grid;
    gap: 10px;
    align-content: start;
  }

  body[data-page="home"] .language-proof-side .phone-shot-proof-sm {
    margin-left: 0;
    max-width: 118px;
  }

  body[data-page="home"] .language-proof-side .phone-shot-proof-sm .phone-shot-frame img {
    height: 144px;
    object-fit: cover;
    object-position: top;
  }

  body[data-page="home"] .language-proof .phone-shot-caption {
    display: none;
  }

  body[data-page="home"] .language-proof .pill-row {
    margin-top: 8px;
    max-width: 760px;
  }

  body[data-page="home"] .language-proof .pill {
    padding: 6px 9px;
    font-size: 11px;
  }

  body[data-page="home"] .language-proof-note {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 22px;
  }

  .hero-grid,
  .feature-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-phone-cluster {
    min-height: 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    gap: 14px;
  }

  .hero-phone-float {
    position: static;
  }

  .language-proof {
    grid-template-columns: 1fr;
  }

  .product-proof-grid {
    grid-template-columns: 1fr;
  }

  .product-proof-card {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-proof-phone {
    max-width: 260px;
  }

  .safety-proof-grid {
    grid-template-columns: 1fr;
  }

  .safety-proof-card {
    grid-template-columns: 1fr;
  }

  .safety-proof-phone {
    max-width: 240px;
  }

  .language-proof-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .access-request-grid {
    grid-template-columns: 1fr;
  }

  .app-module-grid,
  .photo-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .desktop-nav {
    display: none;
  }

  body[data-page="home"] .hero-secondary-actions {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  .main-content {
    padding: 24px 0 38px;
  }

  .feature-hero {
    padding: 20px;
  }

  .feature-hero-grid {
    gap: 14px;
  }

  .feature-photo {
    min-height: 0;
  }

  .feature-hero-actions .btn {
    width: 100%;
  }

  .section {
    margin-bottom: 42px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-cta-bar {
    display: none;
  }

  body[data-page="home"] .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: block;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
  }

  body[data-page="home"] .main-content {
    padding-bottom: 96px;
  }

  .proof-carousel-controls {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
  }

  .proof-carousel-track.product-proof-grid,
  .proof-carousel-track.safety-proof-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .proof-carousel-track.product-proof-grid::-webkit-scrollbar,
  .proof-carousel-track.safety-proof-grid::-webkit-scrollbar {
    display: none;
  }

  .proof-carousel-track.product-proof-grid > .product-proof-card,
  .proof-carousel-track.safety-proof-grid > .safety-proof-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hero-proof-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .mini-photo-row,
  .app-module-grid,
  .photo-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-stat-strip {
    grid-template-columns: 1fr;
  }

  .hero-phone-cluster,
  .language-proof-visual {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-proof-phone {
    max-width: none;
  }

  .safety-proof-phone {
    max-width: 240px;
  }

  .phone-shot-hero,
  .phone-shot-proof,
  .phone-shot-proof-sm,
  .phone-shot-theory {
    max-width: none;
  }

  .hero-phone-float {
    position: static;
  }

  .coverage-filter-head {
    flex-direction: column;
  }

  .access-request-field-grid {
    grid-template-columns: 1fr;
  }

  .journey-scene-head,
  .app-module-scene-head,
  .path-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-card-top,
  .pricing-summary-row {
    flex-direction: column;
  }

  .price-featured-chip {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pre-reveal,
  .pre-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .btn,
  .nav-link,
  .nav-toggle-box span {
    transition: none;
  }
}
