:root {
  --ink: #071426;
  --navy: #06162d;
  --navy-2: #0b2343;
  --navy-3: #12355f;
  --blue: #1e64f0;
  --blue-bright: #3b82f6;
  --red: #e53935;
  --paper: #f4f6f9;
  --white: #ffffff;
  --silver: #d8e0eb;
  --muted: #66758a;
  --line: rgba(6, 22, 45, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(5, 20, 41, 0.14);
  --shadow-soft: 0 14px 44px rgba(5, 20, 41, 0.08);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1220px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.3vw, 4.45rem);
}

h2 em,
h1 em {
  font-style: normal;
  font-weight: 380;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(90px, 10vw, 150px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--navy-3);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: var(--red);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.accordion button:focus-visible,
.form-tabs button:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.4);
  outline-offset: 4px;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(30, 100, 240, 0.26);
}

.button-primary:hover {
  background: #1558d9;
  box-shadow: 0 16px 36px rgba(30, 100, 240, 0.36);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  background: #edf4ff;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-small {
  min-height: 46px;
  padding-inline: 19px;
  border-radius: 9px;
  font-size: 0.87rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--navy-2);
  font-weight: 750;
}

.text-link.light {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: height 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(6, 22, 45, 0.08);
  box-shadow: 0 10px 40px rgba(5, 20, 41, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.17rem;
  letter-spacing: 0.19em;
}

.brand-copy span {
  margin-top: 5px;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  opacity: 0.67;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.3vw, 38px);
  margin-left: auto;
  margin-right: clamp(14px, 1.7vw, 26px);
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 3px;
  margin-left: 14px;
  padding: 4px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
}

.site-header.scrolled .language-switcher {
  background: transparent;
  border-color: transparent;
}

.language-switcher button {
  position: relative;
  display: grid;
  width: 29px;
  height: 27px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-switcher button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.language-switcher button.active {
  background: transparent;
  box-shadow: none;
  opacity: 1;
}

.site-header.scrolled .language-switcher button.active {
  background: transparent;
  box-shadow: none;
}

.language-switcher span {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 1.12rem;
  line-height: 1;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 0.86rem;
  font-weight: 650;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover {
  opacity: 1;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header:not(.scrolled) .header-cta {
  color: var(--navy);
}

.site-header.scrolled .header-cta {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(790px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/dss-truck-hero.webp");
  background-position: center center;
  background-size: cover;
  animation: hero-in 1.6s var(--ease) both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 13, 30, 0.96) 0%, rgba(3, 14, 31, 0.82) 32%, rgba(4, 15, 31, 0.22) 65%, rgba(4, 15, 31, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 15, 31, 0.84) 0%, transparent 32%, rgba(4, 15, 31, 0.2) 100%);
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 700px) 290px;
  gap: 60px;
  align-items: end;
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: 115px;
}

.hero-copy {
  align-self: center;
  padding-top: 20px;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.15rem, 5.7vw, 6.35rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 36px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 620;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  padding: 3px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.hero-card {
  align-self: end;
  padding: 28px;
  background: rgba(7, 24, 47, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-card-kicker {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.license-row {
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
}

.license-row span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 800;
}

.hero-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-card li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hero-card li::before {
  margin-right: 9px;
  color: var(--red);
  content: "—";
}

.hero-card a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-card a svg {
  width: 16px;
  height: 16px;
  margin-left: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.choice-hero {
  min-height: max(760px, 100svh);
}

.choice-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  padding-top: calc(var(--header-height) + 110px);
  padding-bottom: clamp(86px, 10vw, 130px);
}

.choice-copy {
  align-self: center;
}

.choice-copy h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 5.7vw, 6.25rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.choice-copy h1 em {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-weight: 380;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: clamp(28px, 4vw, 42px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--white);
  background: rgba(7, 24, 47, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: transform 0.28s var(--ease), border-color 0.28s ease, background 0.28s ease;
}

.choice-card::before {
  position: absolute;
  inset: auto -60px -90px auto;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.choice-card:hover {
  background: rgba(10, 35, 70, 0.82);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-6px);
}

.choice-card h2 {
  max-width: 410px;
  margin: 0 0 18px;
  font-size: clamp(1.95rem, 2.75vw, 3.05rem);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.choice-card p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.choice-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 48px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.choice-card strong {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 0.88rem;
}

.choice-card strong svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.25s var(--ease);
}

.choice-card:hover strong svg {
  transform: translateX(4px);
}

.choice-company {
  background: rgba(7, 24, 47, 0.78);
}

.choice-driver {
  background: rgba(24, 50, 84, 0.72);
}

.page-hero {
  min-height: 740px;
}

.page-hero .hero-inner {
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  padding-bottom: 98px;
}

.driver-page-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 13, 30, 0.95) 0%, rgba(5, 27, 52, 0.8) 38%, rgba(4, 15, 31, 0.26) 70%),
    linear-gradient(0deg, rgba(4, 15, 31, 0.86) 0%, transparent 34%, rgba(4, 15, 31, 0.18) 100%);
}

.process-grid.compact-process {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid.compact-process li {
  min-height: 250px;
}

.process-grid.compact-process li:nth-child(3n+2),
.process-grid.compact-process li:nth-child(3n+3) {
  padding-left: 0;
  border-left: 0;
}

.process-grid.compact-process li:not(:first-child) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.service-grid.driver-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

/* Signal bar */
.signal-bar {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
  padding: 20px 30px;
}

.signal-grid > div:not(:last-child)::after {
  position: absolute;
  top: 27px;
  right: 0;
  bottom: 27px;
  width: 1px;
  background: var(--line);
  content: "";
}

.signal-grid strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.76rem;
}

/* Intro */
.intro {
  overflow: hidden;
}

.intro::before {
  position: absolute;
  top: 60px;
  right: -160px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(30, 100, 240, 0.08), transparent 68%);
  border-radius: 50%;
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.section-heading h2 {
  max-width: 850px;
}

.section-heading.centered {
  max-width: 900px;
  margin: 0 auto clamp(55px, 7vw, 90px);
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 650px;
  font-size: 1.06rem;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.intro-copy > p {
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.intro-copy > p:first-child {
  color: var(--ink);
  font-size: 1.22rem;
}

.micro-proof {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.micro-proof span {
  display: flex;
  align-items: center;
  padding-block: 15px;
  color: var(--navy-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
  font-weight: 650;
}

.micro-proof b {
  width: 48px;
  color: var(--red);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

/* Audience */
.audience {
  padding-top: 0;
  background: linear-gradient(180deg, var(--white) 0 50%, var(--paper) 50%);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}

.audience-card {
  position: relative;
  min-height: 650px;
  padding: clamp(44px, 6vw, 80px);
  overflow: hidden;
}

.audience-company {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.28), transparent 36%),
    linear-gradient(135deg, #06162d, #0a2c56);
}

.audience-driver {
  color: var(--ink);
  background: var(--white);
}

.audience-number {
  position: absolute;
  top: 22px;
  right: 38px;
  color: currentColor;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.045;
}

.audience-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
}

.audience-driver .audience-icon {
  color: var(--blue);
  background: rgba(30, 100, 240, 0.08);
  border-color: rgba(30, 100, 240, 0.12);
}

.audience-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.audience-card h3 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
}

.audience-card > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
}

.audience-driver > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 14px;
  height: 7px;
  border-bottom: 2px solid var(--blue-bright);
  border-left: 2px solid var(--blue-bright);
  content: "";
  transform: rotate(-45deg);
}

.check-list.dark li {
  color: var(--navy-2);
}

/* Services */
.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 38px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 22, 45, 0.08);
  border-radius: var(--radius-small);
  box-shadow: 0 10px 32px rgba(5, 20, 41, 0.035);
  transition: transform 0.4s var(--ease), border-color 0.3s ease, box-shadow 0.4s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service-card:hover {
  border-color: rgba(30, 100, 240, 0.22);
  box-shadow: 0 22px 54px rgba(5, 20, 41, 0.1);
  transform: translateY(-7px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(6, 22, 45, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.service-icon {
  width: 39px;
  height: 39px;
  margin-bottom: 48px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.27rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.91rem;
}

.service-card .service-detail {
  margin-top: 14px;
  padding-top: 14px;
  color: #526275;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

/* Solutions */
.solutions {
  background: var(--white);
}

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

.solution-card {
  display: flex;
  min-height: 430px;
  padding: 30px;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(6, 22, 45, 0.09);
  border-radius: var(--radius-small);
  box-shadow: 0 12px 34px rgba(5, 20, 41, 0.05);
}

.solution-card:nth-child(1) {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.25), transparent 38%),
    linear-gradient(145deg, var(--navy), #0b2d56);
}

.solution-card:nth-child(1) p,
.solution-card:nth-child(1) .check-list.dark li {
  color: rgba(255, 255, 255, 0.72);
}

.solution-card:nth-child(1) .solution-tag {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.solution-tag {
  width: fit-content;
  margin-bottom: 38px;
  padding: 7px 10px;
  color: var(--navy-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-card h3 {
  margin-bottom: 17px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.solution-card p {
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.solution-card .product-note {
  margin-top: -10px;
  padding-top: 12px;
  color: #657387;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  line-height: 1.5;
}

.solution-card .check-list {
  margin-top: auto;
  margin-bottom: 0;
}

.flex-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 26px;
  background: #fff8f0;
  border: 1px solid rgba(229, 57, 53, 0.18);
  border-radius: var(--radius-small);
}

.flex-note strong {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.flex-note p {
  margin: 0;
  color: #6d5660;
  font-size: 0.9rem;
}

/* Profiles */
.profiles {
  color: var(--white);
  background:
    radial-gradient(circle at 0% 100%, rgba(30, 100, 240, 0.2), transparent 36%),
    linear-gradient(135deg, #07192f, #041121);
  overflow: hidden;
}

.profiles::after {
  position: absolute;
  top: -260px;
  right: -240px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.012);
}

.profiles-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.profiles-copy h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.35rem);
}

.profiles-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.profile-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.profile-pills span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 650;
}

.license-cards {
  display: grid;
  gap: 12px;
}

.license-cards article {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.license-cards article:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.21);
  transform: translateX(5px);
}

.license-cards article > strong {
  color: var(--white);
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}

.license-cards article > strong::after {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 8px;
  background: var(--red);
  content: "";
}

.license-cards h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.license-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.profile-detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.profile-detail-grid article {
  position: relative;
  padding: 25px 26px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.profile-detail-grid .service-index {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.38);
}

.profile-detail-grid h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.profile-detail-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

/* Driver switch */
.driver-switch {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.driver-change {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.driver-switch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.switch-copy h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
}

.switch-copy > p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.02rem;
}

.pay-panel {
  padding: clamp(30px, 4vw, 46px);
  background: var(--white);
  border: 1px solid rgba(6, 22, 45, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pay-panel h3 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 1.4rem;
}

.switch-assurance {
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.16), transparent 38%),
    var(--white);
}

.switch-assurance .check-list {
  margin-bottom: 0;
}

.switch-assurance .check-list li {
  padding-block: 16px;
  font-size: 0.96rem;
}

.driver-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.driver-detail-grid article {
  position: relative;
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.driver-detail-grid .service-index {
  display: inline-block;
  margin-bottom: 18px;
}

.driver-detail-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.driver-detail-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.pay-highlight {
  position: relative;
  margin-bottom: 18px;
  padding: 22px 22px 20px;
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(30, 100, 240, 0.11), rgba(59, 130, 246, 0.035)),
    var(--white);
  border: 1px solid rgba(30, 100, 240, 0.2);
  border-radius: 14px;
}

.pay-highlight::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--red);
  content: "";
}

.pay-highlight-label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-3);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pay-highlight strong {
  display: flex;
  gap: 9px;
  align-items: baseline;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pay-highlight strong small {
  color: var(--navy-3);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.pay-highlight p {
  max-width: 430px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.pay-rows {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.pay-rows-title {
  display: block;
  margin: 22px 0 10px;
  color: var(--navy-3);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pay-rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.pay-rows span {
  color: var(--navy-3);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.pay-rows strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  text-align: right;
}

.pay-rows strong small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.pay-panel > p {
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.bonus-box {
  padding: 19px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0d315c);
  border-radius: 13px;
}

.bonus-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
  line-height: 1;
}

.bonus-box span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

/* Process */
.process {
  background: var(--white);
}

.process .section-heading {
  margin-bottom: 70px;
}

.process-line {
  position: relative;
  height: 1px;
  margin-bottom: -1px;
  background: var(--line);
}

.process-line span {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: width 1.8s var(--ease);
}

.process-line.in-view span {
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 260px;
  padding: 36px 42px 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-grid li:nth-child(3n+2),
.process-grid li:nth-child(3n+3) {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.process-grid li > span {
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-grid h3 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

.process-grid p {
  max-width: 310px;
  margin: 0;
  font-size: 0.88rem;
}

/* Difference */
.difference {
  background: var(--paper);
  overflow: hidden;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.difference-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
}

.route-core {
  position: relative;
  z-index: 2;
  width: 43%;
  padding: 7%;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(5, 20, 41, 0.2);
}

.route-core img {
  width: 100%;
  border-radius: 50%;
}

.route-orbit {
  position: absolute;
  border: 1px solid rgba(6, 22, 45, 0.14);
  border-radius: 50%;
}

.route-orbit-1 {
  inset: 18%;
}

.route-orbit-2 {
  inset: 5%;
  border-style: dashed;
  animation: spin 42s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.route-point {
  position: absolute;
  z-index: 3;
  padding: 8px 13px;
  color: var(--navy-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.route-point::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}

.point-1 { top: 10%; left: 21%; }
.point-2 { top: 30%; right: 2%; }
.point-3 { bottom: 17%; right: 12%; }
.point-4 { bottom: 11%; left: 8%; }

.difference-copy h2 {
  font-size: clamp(2.25rem, 4vw, 4.1rem);
}

.difference-copy > p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.02rem;
}

.difference-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.difference-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  padding-block: 19px;
  border-bottom: 1px solid var(--line);
}

.difference-list > div > span {
  padding-top: 3px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.difference-list p {
  margin: 0;
  font-size: 0.84rem;
}

.difference-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.95rem;
}

/* Founders */
.founders {
  background: var(--white);
}

.founders-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.founders-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 45px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.35), transparent 38%),
    linear-gradient(135deg, var(--navy), #0d315c);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founders-mark span {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  font-weight: 790;
  letter-spacing: -0.07em;
  line-height: 1;
}

.founders-mark i {
  display: block;
  width: 5px;
  height: 5px;
  margin: 0 clamp(12px, 2vw, 26px);
  background: var(--red);
  border-radius: 50%;
}

.founders-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.9rem);
}

.founders-copy > p:not(.eyebrow) {
  max-width: 600px;
  font-size: 1.02rem;
}

.founders-copy blockquote {
  margin: 34px 0 0;
  padding: 20px 0 20px 25px;
  color: var(--navy-2);
  border-left: 3px solid var(--red);
  font-size: 1.05rem;
  font-weight: 650;
}

/* Contact */
.contact {
  padding-block: clamp(90px, 11vw, 160px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(30, 100, 240, 0.3), transparent 38%),
    linear-gradient(135deg, #06162d, #09264a);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.73fr) minmax(520px, 1.27fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro h2 {
  font-size: clamp(2.55rem, 4.3vw, 4.6rem);
}

.contact-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.contact-promise {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-promise > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-promise svg {
  width: 29px;
  height: 29px;
  padding: 7px;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-promise span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.contact-promise strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.form-card {
  padding: clamp(28px, 4vw, 50px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.22);
}

.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 40px;
  padding: 5px;
  background: var(--paper);
  border-radius: 11px;
}

.form-tabs button {
  min-height: 48px;
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 720;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-tabs button[aria-selected="true"] {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 5px 16px rgba(5, 20, 41, 0.08);
}

.lead-form[hidden] {
  display: none;
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h3 {
  margin-bottom: 7px;
  font-size: 1.7rem;
}

.form-heading p {
  margin: 0;
  font-size: 0.88rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form label {
  display: block;
  margin-bottom: 18px;
}

.lead-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-2);
  font-size: 0.75rem;
  font-weight: 690;
}

.lead-form input:not([type="checkbox"]),
.lead-form select,
.lead-form textarea {
  width: 100%;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid rgba(6, 22, 45, 0.13);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input:not([type="checkbox"]),
.lead-form select {
  height: 50px;
  padding-inline: 14px;
}

.lead-form textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 100, 240, 0.1);
}

.lead-form input:user-invalid,
.lead-form select:user-invalid {
  border-color: #c93434;
}

.consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 4px;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.71rem !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-note {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 5px;
  border: 0;
}

.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 12px 14px;
  color: #165d35;
  background: #ebf8f0;
  border-radius: 8px;
  font-size: 0.78rem;
}

.form-status.visible {
  display: block;
}

.form-status[data-type="error"] {
  color: #8a2626;
  background: #fff0f0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 130px);
}

.faq .section-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq .section-heading h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.35rem);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 25px;
  align-items: center;
  width: 100%;
  padding: 27px 0;
  color: var(--ink);
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}

.accordion-item button span {
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: -0.015em;
}

.accordion-item button svg {
  width: 23px;
  height: 23px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  transition: transform 0.35s var(--ease);
}

.accordion-item button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s var(--ease);
}

.accordion-panel p {
  min-height: 0;
  margin: 0;
  padding-right: 58px;
  font-size: 0.9rem;
}

.accordion-item button[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item button[aria-expanded="true"] + .accordion-panel p {
  padding-bottom: 27px;
}

/* Closing CTA */
.closing-cta {
  position: relative;
  padding-block: 80px;
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.closing-cta::after {
  position: absolute;
  top: -210px;
  right: 5%;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.035), 0 0 0 160px rgba(255, 255, 255, 0.02);
}

.closing-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.closing-inner .eyebrow {
  margin-bottom: 16px;
}

.closing-inner h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
}

.closing-inner .button {
  flex: 0 0 auto;
}

/* Footer */
.site-footer {
  padding-top: 80px;
  color: var(--white);
  background: #030d1b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
  padding-bottom: 65px;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
}

.footer-grid h3 {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) a,
.contact-placeholder {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--white);
}

.contact-placeholder {
  opacity: 0.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(5, 20, 41, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease), background 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Reveal animations */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay,
.js .reveal-delay-1 { transition-delay: 0.12s; }
.js .reveal-delay-2 { transition-delay: 0.22s; }

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (max-width: 1050px) {
  :root { --header-height: 74px; }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .language-switcher {
    margin-right: 12px;
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    width: 45px;
    height: 45px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    color: currentColor;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    cursor: pointer;
  }

  .site-header.scrolled .menu-toggle {
    background: var(--paper);
    border-color: var(--line);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s var(--ease), opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 25px 24px 34px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(5, 20, 41, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.3s var(--ease);
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 13px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    font-weight: 650;
  }

  .mobile-nav .button {
    margin-top: 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 105px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-card {
    position: absolute;
    right: 0;
    bottom: 100px;
    width: 270px;
  }

  .hero-copy {
    padding-right: 250px;
  }

  .choice-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .choice-grid {
    max-width: 760px;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid > div:nth-child(2)::after { display: none; }
  .signal-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profiles-grid,
  .driver-switch-grid,
  .difference-grid {
    gap: 60px;
  }

  .contact-shell {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 35px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
  }

  .brand img {
    width: 47px;
    height: 47px;
  }

  .brand-copy strong { font-size: 1.02rem; }
  .brand-copy span { font-size: 0.58rem; }

  .hero {
    min-height: 850px;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(3, 13, 30, 0.92), rgba(3, 13, 30, 0.45)),
      linear-gradient(0deg, rgba(3, 13, 30, 0.97) 0%, rgba(3, 13, 30, 0.42) 56%, rgba(3, 13, 30, 0.45) 100%);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    padding-top: 140px;
    padding-bottom: 72px;
  }

  .hero-copy {
    align-self: stretch;
    padding: 0;
  }

  .hero .eyebrow {
    margin-bottom: 18px;
    font-size: 0.64rem;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.05rem, 14vw, 4.55rem);
  }

  .hero-lead {
    max-width: 560px;
    margin-bottom: 26px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 9px 18px;
    margin-top: 25px;
  }

  .hero-trust span {
    font-size: 0.72rem;
  }

  .hero-card,
  .scroll-cue {
    display: none;
  }

  .choice-hero {
    min-height: auto;
  }

  .choice-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .choice-copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.55rem);
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 285px;
    padding: 26px;
  }

  .choice-kicker {
    margin-bottom: 34px;
  }

  .page-hero {
    min-height: 780px;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signal-grid > div {
    min-height: 90px;
    padding: 16px 14px;
  }

  .signal-grid > div::after { display: none !important; }
  .signal-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .signal-grid strong { font-size: 0.82rem; }
  .signal-grid span { font-size: 0.66rem; }

  .intro-grid,
  .profiles-grid,
  .difference-grid,
  .founders-grid,
  .contact-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 30px;
  }

  .audience {
    padding-bottom: 0;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .audience-card {
    min-height: auto;
    padding: 64px 26px;
  }

  .audience-icon {
    margin-bottom: 35px;
  }

  .audience-card h3 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
    padding: 32px;
  }

  .service-icon {
    margin-bottom: 36px;
  }

  .solution-grid,
  .driver-switch-grid,
  .profile-detail-grid,
  .driver-detail-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
    padding: 28px;
  }

  .solution-tag {
    margin-bottom: 28px;
  }

  .flex-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .profiles-grid {
    gap: 48px;
  }

  .license-cards article {
    grid-template-columns: 75px 1fr;
    gap: 17px;
    padding: 22px 20px;
  }

  .license-cards article > strong {
    font-size: 2rem;
  }

  .process .section-heading {
    margin-bottom: 48px;
  }

  .process-line {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid.compact-process {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid li:nth-child(3n+2),
  .process-grid li:nth-child(3n+3),
  .process-grid.compact-process li:not(:first-child) {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .process-grid li > span {
    margin-bottom: 22px;
  }

  .difference-grid {
    gap: 55px;
  }

  .founders-grid {
    gap: 48px;
  }

  .founders-mark {
    min-height: 270px;
  }

  .difference-visual {
    order: 2;
  }

  .route-point {
    font-size: 0.6rem;
  }

  .contact-intro,
  .faq .section-heading {
    position: static;
  }

  .contact-shell {
    gap: 52px;
  }

  .contact-promise {
    grid-template-columns: 1fr 1fr;
  }

  .form-card {
    margin-inline: -6px;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .form-tabs {
    margin-bottom: 32px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-grid {
    gap: 52px;
  }

  .accordion-item button {
    padding-block: 23px;
  }

  .accordion-panel p {
    padding-right: 20px;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .brand-copy { display: none; }
  .language-switcher { gap: 1px; margin-right: 7px; }
  .language-switcher button { width: 27px; }
  .pay-highlight strong { flex-wrap: wrap; gap: 4px 8px; }
  .hero { min-height: 880px; }
  .hero h1 { font-size: 2.85rem; }
  .hero-trust span:last-child { display: none; }
  .contact-promise { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* Print */
@media print {
  .site-header,
  .hero-card,
  .scroll-cue,
  .back-to-top,
  .closing-cta,
  .form-card {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .section {
    padding-block: 45px;
  }
}

/* Legal subpages */
.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  color: var(--white);
  background: var(--navy);
}

.legal-header .header-inner {
  min-height: 82px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
}

.legal-back svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.legal-main {
  padding-block: 80px 120px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 70px;
  justify-content: center;
}

.legal-aside {
  align-self: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}

.legal-aside strong {
  display: block;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-aside p {
  margin: 0;
  font-size: 0.78rem;
}

.legal-content {
  padding: clamp(32px, 6vw, 68px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.legal-content .legal-intro {
  margin-bottom: 45px;
  font-size: 1.02rem;
}

.legal-content h2 {
  margin: 38px 0 12px;
  color: var(--navy-2);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  margin: 25px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-placeholder {
  padding: 16px 18px;
  color: #7e4a08 !important;
  background: #fff6df;
  border: 1px solid #f2d58c;
  border-radius: 9px;
}

@media (max-width: 760px) {
  .legal-header .header-inner {
    min-height: 72px;
  }

  .legal-header .brand-copy {
    display: none;
  }

  .legal-main {
    padding-block: 45px 80px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .legal-aside {
    order: 2;
  }

  .legal-content {
    padding: 30px 23px;
  }
}
