:root {
  --bg: #f6f8fc;
  --bg-soft: #f1f4f9;
  --white: #ffffff;
  --text: #161b24;
  --text-soft: #667084;
  --line: #e5eaf2;
  --dark: #10131a;
  --dark-soft: #1a1f2b;
  --orange: #ff6a00;
  --orange-2: #ffb000;
  --green: #1fb87d;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow: 0 20px 60px rgba(20, 28, 43, 0.08);
  --shadow-lg: 0 34px 90px rgba(20, 28, 43, 0.16);
  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,106,0,.10), transparent 24%),
    radial-gradient(circle at 100% 6%, rgba(255,176,0,.11), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #f8fafd 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
svg { display: block; }

.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-light { background: transparent; }
.section-muted { background: linear-gradient(180deg, #fbfcfe, #f2f5fa); }
.centered { max-width: 840px; margin-inline: auto; text-align: center; }
.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,0,.14);
  background: rgba(255,255,255,.85);
  color: #c34f00;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(25,31,44,.04);
}
.kicker::before,
.eyebrow span {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}
.kicker-dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #ffca90;
}
.section-heading h2,
.hero h1,
.feature-copy h2,
.process-copy h2,
.faq-intro h2,
.contact-copy h2,
.savings-card h2 {
  margin: 18px 0 14px;
  line-height: 1.03;
  letter-spacing: -.05em;
}
.section-heading h2,
.feature-copy h2,
.process-copy h2,
.faq-intro h2,
.contact-copy h2,
.savings-card h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
.section-heading p,
.process-copy > p,
.feature-copy > p,
.faq-intro p,
.contact-copy > p,
.savings-card p { margin: 0; color: var(--text-soft); font-size: 1.03rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 30px rgba(255,106,0,.25);
}
.button-ghost {
  background: rgba(255,255,255,.84);
  border-color: rgba(16,19,26,.10);
}
.button-dark { background: var(--dark); color: white; }
.button-sm { min-height: 44px; padding-inline: 18px; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #cb5400; font-weight: 800; }
.text-link span { transition: transform .22s ease; }
.text-link:hover span { transform: translateX(4px); }

.skip-link {
  position: absolute;
  left: 14px;
  top: -100px;
  z-index: 250;
  padding: 12px 16px;
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 14px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  z-index: 150;
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(10px);
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(247,249,252,.96);
  backdrop-filter: blur(12px);
  transition: opacity .45s ease, visibility .45s ease;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-shell {
  width: min(430px, calc(100% - 28px));
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
}
.loader-brand-row { display: flex; align-items: center; gap: 14px; }
.loader-brand-row img { width: 58px; }
.loader-brand-row strong { display: block; font-size: 1.05rem; }
.loader-brand-row span { color: var(--text-soft); font-size: .9rem; }
.loader-scene {
  position: relative;
  height: 128px;
  margin: 22px 0 18px;
  overflow: hidden;
}
.loader-road {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16,19,26,.14), rgba(16,19,26,.04));
}
.loader-road::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.96) 0 18px, transparent 18px 34px);
}
.loader-truck {
  position: absolute;
  left: 16px;
  bottom: 22px;
  width: 240px;
  height: 86px;
  animation: loaderCruise 3s ease-in-out infinite;
}
.loader-trailer {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 150px;
  height: 54px;
  border-radius: 16px 10px 10px 16px;
  background: linear-gradient(150deg, #fff 0%, #f1f4f9 100%);
  border: 1px solid rgba(16,19,26,.08);
  box-shadow: 0 18px 28px rgba(18,24,36,.10);
  display: grid;
  place-items: center;
}
.loader-trailer img { width: 90px; }
.loader-connector {
  position: absolute;
  left: 146px;
  bottom: 46px;
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: #5f6675;
}
.loader-cab {
  position: absolute;
  left: 166px;
  bottom: 22px;
  width: 58px;
  height: 42px;
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(145deg, #ff8a1e, #ff6900);
  box-shadow: 0 16px 28px rgba(255,106,0,.25);
}
.loader-cab::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 7px;
  width: 22px;
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.34));
}
.loader-wheel {
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #858d9c 0 22%, #181d27 24% 100%);
  box-shadow: inset 0 0 0 4px #2a3140;
  animation: spin .7s linear infinite;
}
.loader-wheel::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #ced3dd;
}
.wheel-one { left: 24px; }
.wheel-two { left: 108px; }
.wheel-three { left: 182px; }
.loader-bar {
  height: 8px;
  border-radius: 999px;
  background: #edf1f7;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  animation: loaderBar 1.8s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(18,24,36,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 58px; flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.03em; }
.brand-copy small { color: var(--text-soft); font-size: .77rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,19,26,.08);
  box-shadow: 0 12px 24px rgba(22,28,40,.04);
}
.site-nav a { color: #414959; font-weight: 700; font-size: .95rem; }
.site-nav a:hover { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,19,26,.08);
  color: #2f3745;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(18,24,36,.08);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle.is-open span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(3) { opacity: 0; }
.menu-toggle.is-open span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: clip;
  padding: 38px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 120px);
}
.hero-blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-blur-left {
  width: 480px;
  height: 480px;
  left: -120px;
  top: 180px;
  background: radial-gradient(circle, rgba(255,176,0,.11), transparent 65%);
}
.hero-blur-right {
  width: 660px;
  height: 660px;
  right: -170px;
  top: -90px;
  background: radial-gradient(circle, rgba(255,106,0,.13), transparent 64%);
}
.hero h1 { font-size: clamp(2.85rem, 5vw, 5.25rem); margin-top: 22px; }
.hero h1 span {
  display: block;
  background: linear-gradient(120deg, var(--text) 0%, #3a4455 45%, #c85300 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-lead { margin: 0; max-width: 640px; color: var(--text-soft); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.hero-proof article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,19,26,.08);
  box-shadow: var(--shadow);
}
.hero-proof strong { display: block; margin-bottom: 6px; font-size: .98rem; }
.hero-proof span { color: var(--text-soft); font-size: .9rem; }

.hero-visual { position: relative; min-height: 720px; }
.hero-scene {
  position: relative;
  height: 100%;
  min-height: 720px;
}
.scene-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,106,0,.14);
  animation: orbit 18s linear infinite;
}
.orbit-one { width: 520px; height: 520px; right: 24px; top: 26px; }
.orbit-two { width: 300px; height: 300px; left: 24px; top: 150px; animation-duration: 20s; animation-direction: reverse; }
.ui-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.90));
  border: 1px solid rgba(255,255,255,.95);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.device-laptop {
  position: absolute;
  right: 24px;
  top: 74px;
  width: min(470px, 88%);
  transform: perspective(1200px) rotateX(14deg) rotateY(-11deg);
  animation: floatLaptop 7s ease-in-out infinite;
}
.laptop-screen {
  padding: 18px;
  border-radius: 26px 26px 14px 14px;
}
.window-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16,19,26,.07);
}
.window-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(16,19,26,.14); }
.window-topbar strong { margin-left: auto; font-size: .84rem; color: #414959; }
.laptop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding-top: 16px; }
.laptop-grid article {
  padding: 14px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(16,19,26,.06);
}
.laptop-grid span { display: block; color: #6d7687; font-size: .72rem; }
.laptop-grid strong { display: block; margin-top: 6px; font-size: 1.26rem; line-height: 1.1; }
.laptop-lower {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 12px;
  margin-top: 14px;
}
.mini-chart,
.mini-route-card {
  padding: 16px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(16,19,26,.06);
}
.mini-chart {
  min-height: 132px;
  display: flex;
  align-items: end;
  gap: 10px;
}
.mini-chart span {
  width: 100%;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(255,176,0,.92), rgba(255,106,0,.96));
  animation: chartPulse 2.2s ease-in-out infinite;
}
.mini-chart span:nth-child(1) { height: 40%; animation-delay: 0s; }
.mini-chart span:nth-child(2) { height: 82%; animation-delay: .15s; }
.mini-chart span:nth-child(3) { height: 58%; animation-delay: .3s; }
.mini-chart span:nth-child(4) { height: 92%; animation-delay: .45s; }
.mini-chart span:nth-child(5) { height: 66%; animation-delay: .6s; }
.mini-route-card strong { display: block; font-size: .98rem; }
.mini-route-card small { display: block; color: #6d7687; margin: 8px 0 14px; }
.mini-route-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #edf1f7;
  overflow: hidden;
}
.mini-route-bar i {
  position: absolute;
  inset: 0 22% 0 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: inherit;
}
.mini-route-bar i::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 4px rgba(255,106,0,.16);
}
.laptop-base {
  width: 104%;
  height: 18px;
  margin: -2px auto 0;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(180deg, #dfe5ee, #bfc8d7);
  box-shadow: 0 16px 28px rgba(16,19,26,.16);
}

.device-phone {
  position: absolute;
  left: 86px;
  top: 74px;
  width: 180px;
  min-height: 304px;
  padding: 18px;
  border-radius: 30px;
  transform: perspective(1000px) rotateX(8deg) rotateY(18deg) rotateZ(-8deg);
  animation: floatPhone 6s ease-in-out infinite;
}
.device-phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 24px;
  border: 1px solid rgba(16,19,26,.06);
}
.phone-notch {
  width: 82px;
  height: 18px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #161b24;
}
.phone-kicker {
  display: inline-block;
  color: #cf5700;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.device-phone strong { display: block; margin: 10px 0 14px; font-size: 1.15rem; line-height: 1.15; }
.device-phone ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.device-phone li {
  position: relative;
  padding: 12px 12px 12px 32px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,19,26,.06);
  color: #4d5667;
  font-size: .84rem;
}
.device-phone li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.truck-stage {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 84px;
  height: 190px;
}
.road-line {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16,19,26,.12), rgba(16,19,26,.03));
}
.road-line::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.95) 0 18px, transparent 18px 36px);
}
.truck-3d {
  position: absolute;
  left: 14px;
  bottom: 34px;
  width: clamp(270px, 40vw, 380px);
  height: 132px;
  transform: perspective(1000px) rotateX(14deg) rotateY(-12deg);
  animation: truckMove 4.6s ease-in-out infinite;
}
.truck-shadow {
  position: absolute;
  left: 30px;
  right: 20px;
  bottom: -6px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,10,14,.24), rgba(8,10,14,0) 70%);
}
.truck-trailer-panel {
  position: absolute;
  left: 0;
  bottom: 36px;
  width: 60%;
  height: 60px;
  border-radius: 16px 10px 10px 16px;
  background: linear-gradient(150deg, #fff 0%, #eef3f8 100%);
  border: 1px solid rgba(16,19,26,.08);
  box-shadow: inset -10px -10px 18px rgba(18,24,36,.04), 0 20px 30px rgba(18,24,36,.12);
  display: grid;
  place-items: center;
}
.truck-trailer-panel img { width: 112px; }
.truck-connector {
  position: absolute;
  left: 57%;
  bottom: 49px;
  width: 22px;
  height: 8px;
  border-radius: 999px;
  background: #586171;
}
.truck-cab {
  position: absolute;
  right: 24px;
  bottom: 34px;
  width: 92px;
  height: 60px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(145deg, #ff8a1d, #ff6900);
  box-shadow: inset -10px -10px 16px rgba(145,49,0,.12), 0 20px 28px rgba(255,106,0,.22);
}
.truck-cab::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 14px;
  top: 8px;
  height: 24px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.36));
}
.truck-window {
  position: absolute;
  right: 50px;
  bottom: 70px;
  width: 20px;
  height: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.58);
}
.wheel {
  position: absolute;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7e8695 0 20%, #171b24 24% 100%);
  box-shadow: inset 0 0 0 4px #2a3140;
  animation: spin .9s linear infinite;
}
.wheel::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #cfd5df;
}
.wheel-front { right: 30px; }
.wheel-mid { left: 96px; }
.wheel-back { left: 28px; }

.scene-card {
  position: absolute;
  width: min(240px, 70%);
  padding: 18px;
  border-radius: 22px;
  animation: floatCard 5.2s ease-in-out infinite;
}
.scene-card strong { display: block; font-size: 1rem; line-height: 1.22; margin-bottom: 8px; }
.scene-card small { display: block; color: #697284; }
.scene-card-top { left: 18px; bottom: 292px; }
.scene-card-bottom { right: 14px; bottom: 16px; animation-delay: .4s; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255,106,0,.11);
  color: #bf4e00;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pill-amber { background: rgba(255,176,0,.15); color: #936500; }

.trust-strip {
  padding: 22px 0;
  background: rgba(255,255,255,.74);
  border-top: 1px solid rgba(16,19,26,.06);
  border-bottom: 1px solid rgba(16,19,26,.06);
  backdrop-filter: blur(10px);
}
.trust-grid {
  display: grid;
  grid-template-columns: auto repeat(4,1fr);
  align-items: center;
  gap: 16px;
}
.trust-grid p {
  margin: 0;
  color: #6d7687;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust-grid span {
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(16,19,26,.06);
  text-align: center;
  font-weight: 700;
  color: #424b5b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-top: 56px;
}
.service-card,
.plan-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-card::after,
.plan-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.10), transparent 68%);
}
.service-card { min-height: 360px; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff3eb, #fff9f4);
  border: 1px solid rgba(255,106,0,.14);
}
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-number {
  position: absolute;
  right: 28px;
  top: 22px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.08em;
  color: #edf1f7;
}
.service-card h3,
.plan-card h3 { margin: 22px 0 12px; font-size: 1.42rem; line-height: 1.2; letter-spacing: -.035em; }
.service-card p,
.plan-card > p { margin: 0 0 18px; color: var(--text-soft); }
.service-card ul,
.plan-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.service-card li,
.plan-card li {
  position: relative;
  padding-left: 18px;
  color: #4c5566;
  font-size: .94rem;
}
.service-card li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.process-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 76px; align-items: start; }
.process-copy { position: sticky; top: 116px; }
.control-card {
  margin-top: 30px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(16,19,26,.08);
  box-shadow: var(--shadow);
}
.control-label { color: #6b7385; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.control-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.control-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(16,19,26,.08);
  font-weight: 700;
  color: #4b5465;
}
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding-bottom: 34px; }
.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 58px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,106,0,.68), rgba(255,176,0,.14));
}
.timeline li > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,106,0,.12), rgba(255,176,0,.07));
  border: 1px solid rgba(255,106,0,.18);
  color: #d05a00;
  font-weight: 900;
}
.timeline h3 { margin: 4px 0 8px; font-size: 1.14rem; }
.timeline p { margin: 0; color: var(--text-soft); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.benefit-list { display: grid; border-top: 1px solid var(--line); margin-top: 26px; }
.benefit-list article { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.benefit-list article > span { color: #cb5500; font-weight: 900; font-size: .76rem; }
.benefit-list h3 { margin: 0 0 4px; font-size: 1rem; }
.benefit-list p { margin: 0; color: var(--text-soft); }
.report-card {
  padding: 24px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(180deg, #10131a, #181c24);
  box-shadow: var(--shadow-lg);
}
.report-head,
.report-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.report-head { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.report-head div { display: flex; flex-direction: column; }
.report-head span:first-child { color: #8f98a8; font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.report-head strong { margin-top: 4px; font-size: 1rem; }
.report-badge {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
  font-size: .74rem;
}
.report-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.report-kpis > div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
.report-kpis span { display: block; color: #9ba4b4; font-size: .68rem; }
.report-kpis strong { display: block; margin-top: 6px; font-size: 1.18rem; }
.report-kpis small { color: #778091; font-size: .65rem; }
.chart-wrap { display: grid; grid-template-columns: 34px 1fr; gap: 10px; height: 248px; margin-top: 20px; }
.chart-y-labels { display: flex; flex-direction: column; justify-content: space-between; color: #6d7687; font-size: .62rem; }
.chart-area { position: relative; }
.grid-line { position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.06); }
.grid-line:nth-child(1) { top: 0; }
.grid-line:nth-child(2) { top: 32%; }
.grid-line:nth-child(3) { top: 64%; }
.grid-line:nth-child(4) { bottom: 0; }
.chart-area svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart-fill { fill: url(#chartFill); }
.chart-line { fill: none; stroke: #ff7a00; stroke-width: 4; stroke-linecap: round; }
.report-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.report-footer span { display: inline-flex; align-items: center; gap: 8px; color: #8f98a8; font-size: .72rem; }
.report-footer span i { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-2)); }
.report-footer button { border: 0; padding: 0; background: transparent; color: #ffb355; font-weight: 800; cursor: pointer; }

.savings-section { padding-top: 0; }
.savings-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
  padding: 52px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,176,0,.22), transparent 22%),
    radial-gradient(circle at 16% 24%, rgba(255,106,0,.18), transparent 20%),
    linear-gradient(135deg, #12161f, #1a1f29);
  box-shadow: var(--shadow-lg);
}
.savings-card p { color: #b4bbc7; }
.savings-metric {
  min-height: 250px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.savings-metric span { color: #c4cad4; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.savings-metric strong {
  display: block;
  margin: 8px 0 6px;
  font-size: clamp(3rem, 6vw, 5.1rem);
  line-height: 1;
  letter-spacing: -.08em;
  background: linear-gradient(105deg, #ff7a00, #ffd35c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.savings-metric small { color: #a2acba; }

.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 54px; }
.plan-card { display: flex; flex-direction: column; }
.plan-label { color: #7b8394; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.plan-featured {
  transform: translateY(-8px);
  color: white;
  background: linear-gradient(180deg, #11151d, #1a1f28);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.plan-featured .plan-label,
.plan-featured > p,
.plan-featured li { color: #b7bdc9; }
.plan-featured::after { background: radial-gradient(circle, rgba(255,176,0,.18), transparent 68%); }
.popular-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #1b1f28;
  background: linear-gradient(135deg, #ff8f16, #ffcc56);
  font-size: .64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.plan-card .text-link,
.plan-card .button { margin-top: auto; }

.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 68px; align-items: start; }
.faq-intro { position: sticky; top: 116px; }
.faq-intro .button { margin-top: 28px; }
.accordion { border-top: 1px solid #dbe2ed; }
.accordion-item { border-bottom: 1px solid #dbe2ed; }
.accordion-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}
.accordion-item button i { position: relative; width: 24px; height: 24px; flex: 0 0 auto; }
.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--text);
  transition: transform .22s ease;
}
.accordion-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.accordion-panel { overflow: hidden; }
.accordion-panel p { margin: 0 40px 24px 0; color: var(--text-soft); }

.contact-section { background: linear-gradient(180deg, #fbfcfe, #f3f6fb); }
.contact-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  padding: 38px;
  border-radius: 34px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #414a5a;
  background: #f7f9fc;
  border: 1px solid var(--line);
}
.contact-points i { color: #cf5700; font-style: normal; }
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.contact-direct a {
  min-width: 230px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px solid var(--line);
}
.contact-direct span { display: block; color: #717a8b; font-size: .8rem; margin-bottom: 6px; }
.contact-direct strong { font-size: 1rem; }
.contact-form {
  padding: 24px;
  border-radius: 28px;
  background: #fbfcfe;
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 14px; }
.contact-form label > span { color: #3f4757; font-weight: 700; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #d7deea;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.contact-form textarea { min-height: 130px; padding: 14px 16px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255,106,0,.5);
  box-shadow: 0 0 0 4px rgba(255,106,0,.10);
}
.form-note { margin: 14px 0 0; color: var(--text-soft); font-size: .88rem; }

.site-footer {
  padding: 40px 0 24px;
  background: white;
  border-top: 1px solid var(--line);
}
.footer-main {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p { margin: 18px 0 0; color: var(--text-soft); max-width: 420px; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.footer-links strong { display: block; margin-bottom: 12px; }
.footer-links a { display: block; color: #5f6778; margin-bottom: 10px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: #7b8394;
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}
.floating-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  color: white;
  background: rgba(16,19,26,.94);
  box-shadow: 0 20px 40px rgba(9,12,17,.18);
}
.floating-contact a:last-child { background: linear-gradient(135deg, var(--orange), #ff8d1e); }
.floating-contact svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.floating-contact span { font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s var(--ease);
}
.reveal[data-reveal="left"] { transform: translateX(30px); }
.reveal[data-reveal="right"] { transform: translateX(-30px); }
.reveal[data-reveal="zoom"] { transform: scale(.96); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes loaderCruise {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(18px); }
}
@keyframes loaderBar {
  0% { transform: translateX(-40%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(-40%); }
}
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes truckMove {
  0%, 100% { transform: perspective(1000px) rotateX(14deg) rotateY(-12deg) translateX(0); }
  50% { transform: perspective(1000px) rotateX(14deg) rotateY(-12deg) translateX(18px); }
}
@keyframes floatLaptop {
  0%, 100% { transform: perspective(1200px) rotateX(14deg) rotateY(-11deg) translateY(0); }
  50% { transform: perspective(1200px) rotateX(14deg) rotateY(-11deg) translateY(-10px); }
}
@keyframes floatPhone {
  0%, 100% { transform: perspective(1000px) rotateX(8deg) rotateY(18deg) rotateZ(-8deg) translateY(0); }
  50% { transform: perspective(1000px) rotateX(8deg) rotateY(18deg) rotateZ(-8deg) translateY(-10px); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes chartPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.88); }
}

@media (max-width: 1180px) {
  .hero-grid,
  .process-grid,
  .split-section,
  .savings-card,
  .faq-grid,
  .contact-card,
  .footer-main { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .process-copy,
  .faq-intro { position: static; }
  .hero-proof,
  .plans-grid,
  .report-kpis,
  .footer-links,
  .trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-visual { min-height: 760px; }
}

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    display: grid;
    justify-items: start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-contact { display: none; }
  .nav-wrap { flex-wrap: wrap; }
  .hero-copy { text-align: center; }
  .hero-actions,
  .contact-direct,
  .contact-points { justify-content: center; }
  .hero-proof,
  .services-grid,
  .plans-grid,
  .footer-links,
  .trust-grid,
  .report-kpis,
  .form-row { grid-template-columns: 1fr; }
  .hero-proof article { text-align: left; }
  .trust-grid p { grid-column: 1 / -1; text-align: center; }
  .hero-visual { min-height: 760px; }
  .hero-scene { min-height: 760px; }
  .device-phone { left: 14px; top: 56px; width: 150px; min-height: 270px; }
  .device-laptop { right: 0; top: 110px; width: min(440px, 88%); }
  .truck-3d { left: 0; }
  .scene-card-top { left: 0; bottom: 302px; }
  .scene-card-bottom { right: 0; }
  .contact-card { padding: 28px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 700px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .site-header { padding: 14px 0; }
  .brand img,
  .loader-brand-row img { width: 50px; }
  .brand-copy strong { font-size: .93rem; }
  .hero { padding: 28px 0 60px; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3.9rem); }
  .hero-lead { font-size: 1rem; }
  .hero-visual { min-height: 690px; margin-top: 8px; }
  .hero-scene { min-height: 690px; }
  .orbit-one { width: 300px; height: 300px; right: 0; top: 56px; }
  .orbit-two { width: 190px; height: 190px; left: 18px; top: 150px; }
  .device-phone {
    left: 0;
    top: 24px;
    width: 118px;
    min-height: 220px;
    padding: 12px;
  }
  .device-phone strong { font-size: .92rem; }
  .device-phone li { font-size: .74rem; padding: 9px 10px 9px 24px; }
  .phone-notch { width: 56px; height: 13px; margin-bottom: 10px; }
  .device-laptop {
    right: 0;
    top: 126px;
    width: min(100%, 330px);
    transform: perspective(1000px) rotateX(12deg) rotateY(-8deg);
  }
  .laptop-screen { padding: 12px; border-radius: 18px 18px 12px 12px; }
  .window-topbar { padding-bottom: 10px; }
  .window-topbar strong { font-size: .72rem; }
  .laptop-grid { gap: 8px; }
  .laptop-grid article { padding: 10px; border-radius: 14px; }
  .laptop-grid span { font-size: .58rem; }
  .laptop-grid strong { font-size: .95rem; }
  .laptop-lower { grid-template-columns: 1fr; gap: 8px; }
  .mini-chart,
  .mini-route-card { padding: 12px; border-radius: 16px; }
  .mini-chart { min-height: 100px; }
  .truck-stage { bottom: 86px; height: 180px; }
  .truck-3d {
    width: 235px;
    height: 110px;
    left: -6px;
    bottom: 36px;
    transform: perspective(900px) rotateX(12deg) rotateY(-10deg) scale(.96);
  }
  .truck-trailer-panel { height: 52px; }
  .truck-trailer-panel img { width: 86px; }
  .truck-cab { width: 74px; height: 52px; }
  .truck-window { right: 40px; bottom: 63px; }
  .wheel { width: 26px; height: 26px; }
  .wheel-front { right: 24px; }
  .wheel-mid { left: 78px; }
  .wheel-back { left: 18px; }
  .scene-card {
    width: min(208px, calc(100% - 18px));
    padding: 14px;
    border-radius: 18px;
  }
  .scene-card strong { font-size: .92rem; }
  .scene-card small { font-size: .8rem; }
  .scene-card-top { left: 0; bottom: 246px; }
  .scene-card-bottom { right: 0; bottom: 0; }
  .road-line { bottom: 14px; }
  .service-card,
  .plan-card,
  .contact-card,
  .contact-form,
  .savings-card,
  .report-card,
  .loader-shell { padding: 22px; border-radius: 24px; }
  .section-heading h2,
  .feature-copy h2,
  .process-copy h2,
  .faq-intro h2,
  .contact-copy h2,
  .savings-card h2 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .floating-contact a { justify-content: center; padding-inline: 10px; }
}

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

/* Final layout, brand placement, and responsive polish */
.mobile-nav-contact { display: none; }
.hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "copy visual"
    "proof visual";
  align-items: center;
  column-gap: 48px;
  row-gap: 24px;
}
.hero-copy { grid-area: copy; align-self: end; }
.hero-visual { grid-area: visual; }
.hero-proof {
  grid-area: proof;
  align-self: start;
  margin-top: 0;
}
.panel-logo {
  width: 54px;
  height: auto;
  margin-right: 4px;
  flex: 0 0 auto;
}
.phone-logo {
  position: relative;
  z-index: 1;
  width: 66px;
  height: auto;
  margin: 0 auto 12px;
}
.loader-brand-row img,
.loader-trailer img,
.brand img,
.truck-trailer-panel img,
.panel-logo,
.phone-logo { object-fit: contain; }
.brand img { width: 60px; }
.truck-trailer-panel img { width: 126px; filter: drop-shadow(0 7px 8px rgba(11,14,19,.09)); }
.loader-trailer img { width: 96px; filter: drop-shadow(0 5px 6px rgba(11,14,19,.08)); }
.window-topbar strong { white-space: nowrap; }

/* Keep the hero illustration balanced and readable on wide screens. */
@media (min-width: 1181px) {
  .hero-copy { padding-top: 52px; }
  .hero-proof article { min-height: 138px; }
  .device-phone { left: 42px; top: 92px; }
  .device-laptop { right: 0; top: 58px; }
  .scene-card-top { left: 4px; bottom: 288px; }
  .scene-card-bottom { right: 0; bottom: 12px; }
  .truck-stage { bottom: 86px; }
  .truck-3d { left: 40px; width: 390px; }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "proof";
    row-gap: 28px;
  }
  .hero-copy { align-self: auto; }
  .hero-proof { margin-top: 0; }
}

@media (max-width: 980px) {
  .nav-actions { display: none; }
  .site-nav {
    align-content: start;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
  }
  .mobile-nav-contact {
    display: grid;
    width: 100%;
    gap: 10px;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav-contact > a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    background: #f5f7fb;
    border: 1px solid var(--line);
    color: #303847;
    font-weight: 800;
  }
  .hero-copy { max-width: 760px; margin-inline: auto; }
  .hero-visual { width: min(700px, 100%); margin-inline: auto; }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .site-header {
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16,19,26,.05);
  }
  .nav-wrap { flex-wrap: nowrap; }
  .brand { gap: 9px; }
  .brand img { width: 54px; }
  .brand-copy strong { font-size: .92rem; }
  .brand-copy small { font-size: .7rem; }
  .menu-toggle { width: 46px; height: 46px; flex: 0 0 auto; }
  .site-nav { top: 74px; }

  .hero {
    padding-top: 30px;
    background:
      radial-gradient(circle at 50% 18%, rgba(255,126,24,.16), transparent 38%),
      linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,248,240,.82) 58%, rgba(255,255,255,0));
  }
  .hero-grid { row-gap: 20px; }
  .hero-copy { text-align: left; }
  .eyebrow {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 13px;
    white-space: normal;
    line-height: 1.35;
    font-size: .68rem;
  }
  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
    line-height: .98;
    text-align: left;
  }
  .hero h1 span { display: inline; }
  .hero-lead {
    font-size: .98rem;
    line-height: 1.72;
    text-align: left;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .hero-actions .button { width: 100%; min-height: 54px; }

  .hero-visual {
    min-height: 570px;
    margin-top: 0;
    overflow: hidden;
    border-radius: 28px;
    background:
      radial-gradient(circle at 72% 22%, rgba(255,106,0,.12), transparent 30%),
      linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.20));
    border: 1px solid rgba(16,19,26,.05);
  }
  .hero-scene { min-height: 570px; }
  .orbit-one { width: 290px; height: 290px; right: -36px; top: 34px; }
  .orbit-two { width: 180px; height: 180px; left: -28px; top: 132px; }
  .device-laptop {
    width: 312px;
    max-width: calc(100% - 22px);
    top: 46px;
    right: 6px;
    transform: perspective(1000px) rotateX(9deg) rotateY(-6deg);
  }
  .laptop-screen { padding: 11px; }
  .panel-logo { width: 34px; margin-right: 2px; }
  .window-topbar { gap: 5px; }
  .window-dot { width: 7px; height: 7px; }
  .window-topbar strong { font-size: .66rem; }
  .laptop-grid { gap: 6px; padding-top: 10px; }
  .laptop-grid article { padding: 9px 7px; }
  .laptop-grid span { font-size: .52rem; line-height: 1.2; }
  .laptop-grid strong { font-size: .88rem; }
  .laptop-lower { grid-template-columns: .82fr 1.18fr; gap: 6px; margin-top: 7px; }
  .mini-chart,
  .mini-route-card { padding: 9px; }
  .mini-chart { min-height: 88px; gap: 5px; }
  .mini-route-card strong { font-size: .72rem; }
  .mini-route-card small { margin: 5px 0 9px; font-size: .58rem; line-height: 1.4; }

  .device-phone {
    z-index: 3;
    left: 8px;
    top: 168px;
    width: 118px;
    min-height: 224px;
    padding: 11px;
    transform: perspective(900px) rotateX(7deg) rotateY(13deg) rotateZ(-6deg);
  }
  .phone-notch { width: 52px; height: 11px; margin-bottom: 8px; }
  .phone-logo { width: 44px; margin-bottom: 7px; }
  .phone-kicker { font-size: .56rem; }
  .device-phone strong { margin: 6px 0 8px; font-size: .84rem; }
  .device-phone ul { gap: 6px; }
  .device-phone li {
    padding: 7px 7px 7px 20px;
    border-radius: 9px;
    font-size: .62rem;
    line-height: 1.35;
  }
  .device-phone li::before { left: 8px; width: 6px; height: 6px; }

  .truck-stage { bottom: 26px; height: 190px; overflow: visible; }
  .road-line { left: 4%; right: 4%; bottom: 18px; height: 20px; }
  .truck-3d {
    z-index: 4;
    left: 44px;
    bottom: 34px;
    width: 260px;
    height: 114px;
    transform: perspective(900px) rotateX(10deg) rotateY(-8deg);
  }
  .truck-trailer-panel { width: 61%; height: 54px; bottom: 34px; }
  .truck-trailer-panel img { width: 92px; }
  .truck-connector { left: 58%; bottom: 46px; }
  .truck-cab { right: 14px; bottom: 32px; width: 75px; height: 52px; }
  .truck-window { right: 38px; bottom: 61px; }
  .wheel { width: 25px; height: 25px; bottom: 10px; }
  .wheel-front { right: 20px; }
  .wheel-mid { left: 76px; }
  .wheel-back { left: 18px; }

  .scene-card-top { display: none; }
  .scene-card-bottom {
    z-index: 5;
    right: 8px;
    bottom: 6px;
    width: 166px;
    padding: 11px;
    border-radius: 15px;
  }
  .scene-card-bottom .pill { min-height: 22px; padding-inline: 7px; margin-bottom: 6px; font-size: .54rem; }
  .scene-card-bottom strong { margin-bottom: 4px; font-size: .78rem; }
  .scene-card-bottom small { font-size: .62rem; line-height: 1.35; }

  .hero-proof {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, 82vw);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 2px 2px 12px;
  }
  .hero-proof::-webkit-scrollbar { display: none; }
  .hero-proof article {
    min-height: 112px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .trust-strip { padding: 16px 0; overflow: hidden; }
  .trust-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 74vw);
    grid-template-columns: none;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }
  .trust-grid::-webkit-scrollbar { display: none; }
  .trust-grid p,
  .trust-grid span { grid-column: auto; scroll-snap-align: start; }
  .trust-grid p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: #fff7ef;
    border: 1px solid rgba(255,106,0,.12);
  }
  .trust-grid span { min-height: 54px; display: grid; place-items: center; padding: 10px 14px; }

  .floating-contact {
    height: 58px;
    gap: 8px;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .floating-contact a { min-height: 54px; border-radius: 15px; }
  .site-footer { padding-bottom: 32px; }
}

@media (max-width: 700px) {
  .scene-card-bottom { display: none; }
  .truck-3d { left: 54px; bottom: 42px; width: 268px; }
  .truck-stage { bottom: 18px; }
}

/* Progressive enhancement: content remains visible without JavaScript. */
.site-loader { display: none; }
html.js .site-loader { display: grid; }
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
html.js .reveal[data-reveal="left"] { transform: translateX(30px); }
html.js .reveal[data-reveal="right"] { transform: translateX(-30px); }
html.js .reveal[data-reveal="zoom"] { transform: scale(.96); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .floating-contact {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .floating-contact.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

/* Final UI fix pack: compact hero, corrected logos, and cleaner mobile floating actions */
html, body { overflow-x: clip; }
.hero {
  padding-top: 20px;
  padding-bottom: 72px;
}
.hero-grid {
  min-height: auto !important;
  align-items: start !important;
  row-gap: 18px !important;
}
.hero-copy { padding-top: 22px; }
.hero-proof { margin-top: 24px !important; }
.loader-brand-row img,
.brand img,
.panel-logo,
.phone-logo,
.loader-trailer img,
.truck-trailer-panel img {
  object-fit: contain;
  background: transparent;
}
.loader-brand-row img,
.brand img { width: 58px; }
.loader-trailer,
.truck-trailer-panel { overflow: hidden; }
.loader-trailer img {
  width: 82px !important;
  max-width: 76%;
  height: auto;
  margin: 0 auto;
}
.truck-trailer-panel img {
  width: 106px !important;
  max-width: 78%;
  height: auto;
  margin: 0 auto;
}
.panel-logo {
  width: 42px;
  margin-right: 2px;
}
.phone-logo {
  width: 48px;
  margin: 0 auto 8px;
}
.window-topbar {
  gap: 6px;
}
.window-topbar strong {
  margin-left: auto;
  white-space: nowrap;
}
.device-laptop {
  top: 32px;
  right: 0;
}
.device-phone {
  left: 28px;
  top: 108px;
}
.truck-stage { bottom: 60px; }
.truck-3d {
  left: 22px;
  width: 350px;
}
.scene-card-bottom { right: 4px; bottom: 18px; }
.site-header { z-index: 140; }
.floating-contact {
  left: auto !important;
  right: 18px !important;
  bottom: 18px !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  height: auto;
}
.floating-contact a {
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
.floating-contact span { display: none; }
.floating-contact svg { width: 20px; height: 20px; }

@media (min-width: 1181px) {
  .hero-grid { padding-top: 12px; }
  .hero-copy { padding-top: 10px; }
  .hero h1 { max-width: 620px; }
  .hero-lead { max-width: 590px; }
  .hero-proof article { min-height: 128px; }
}

@media (max-width: 980px) {
  .hero-grid { row-gap: 20px !important; }
  .hero-copy { padding-top: 10px; }
  .hero-visual { margin-inline: auto; }
}

@media (max-width: 700px) {
  body { padding-bottom: 0 !important; }
  .hero {
    padding-top: 18px;
    padding-bottom: 52px;
  }
  .hero-grid { row-gap: 16px !important; }
  .hero h1 {
    font-size: clamp(2.1rem, 10.3vw, 2.85rem) !important;
    line-height: 1.02;
    letter-spacing: -.05em;
  }
  .hero-lead {
    font-size: .95rem;
    line-height: 1.62;
  }
  .hero-actions .button { min-height: 52px; }
  .hero-visual {
    min-height: 500px !important;
    border-radius: 24px;
  }
  .hero-scene { min-height: 500px !important; }
  .orbit-one { right: -46px; top: 40px; }
  .orbit-two { left: -36px; top: 150px; }
  .device-laptop {
    width: 286px;
    max-width: calc(100% - 20px);
    top: 42px;
    right: -2px;
  }
  .laptop-screen { padding: 10px; }
  .panel-logo { width: 30px; }
  .window-topbar strong { font-size: .62rem; }
  .laptop-grid article { padding: 8px 7px; }
  .laptop-grid strong { font-size: .82rem; }
  .laptop-lower { gap: 6px; }
  .mini-route-card strong { font-size: .68rem; }
  .mini-route-card small { font-size: .56rem; }
  .device-phone {
    width: 104px;
    min-height: 204px;
    left: 8px;
    top: 146px;
    padding: 10px;
  }
  .phone-logo {
    width: 38px;
    margin-bottom: 6px;
  }
  .device-phone strong { font-size: .78rem; }
  .device-phone li {
    font-size: .58rem;
    padding: 6px 6px 6px 18px;
  }
  .truck-stage {
    bottom: 12px !important;
    height: 148px;
  }
  .road-line {
    left: 5%;
    right: 5%;
    bottom: 12px;
    height: 18px;
  }
  .truck-3d {
    left: 26px !important;
    bottom: 22px !important;
    width: 220px !important;
    height: 94px;
    transform: perspective(900px) rotateX(9deg) rotateY(-7deg);
  }
  .truck-trailer-panel {
    width: 62% !important;
    height: 46px !important;
    bottom: 28px !important;
    border-radius: 14px 9px 9px 14px;
  }
  .truck-trailer-panel img {
    width: 76px !important;
    max-width: 76%;
  }
  .truck-connector {
    left: 57%;
    bottom: 39px;
    width: 18px;
  }
  .truck-cab {
    right: 10px;
    bottom: 26px;
    width: 66px;
    height: 46px;
  }
  .truck-window {
    right: 34px;
    bottom: 53px;
  }
  .wheel {
    width: 22px;
    height: 22px;
    bottom: 6px;
  }
  .wheel-front { right: 18px; }
  .wheel-mid { left: 66px; }
  .wheel-back { left: 14px; }
  .scene-card-bottom,
  .scene-card-top { display: none !important; }
  .hero-proof {
    grid-auto-columns: minmax(220px, 80vw);
    gap: 10px;
    padding-bottom: 8px;
  }
  .hero-proof article {
    min-height: 104px;
    padding: 16px;
  }
  .trust-strip { padding: 14px 0; }
  .floating-contact {
    right: 10px !important;
    bottom: calc(14px + env(safe-area-inset-bottom)) !important;
    gap: 8px;
  }
  .floating-contact a {
    width: 48px;
    height: 48px;
    min-height: 48px;
    border-radius: 50%;
  }
  .floating-contact svg { width: 18px; height: 18px; }
}

/* Mobile hero correction: prevent grid min-content overflow and keep the full 3D scene in frame */
@media (max-width: 700px) {
  .hero .container,
  .hero-grid,
  .hero-copy,
  .hero-actions,
  .hero-proof,
  .hero-visual,
  .hero-scene {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero-copy {
    overflow: hidden;
    padding-top: 4px;
  }

  .eyebrow {
    width: fit-content !important;
    max-width: 100% !important;
    padding: 9px 12px;
    font-size: .62rem;
    line-height: 1.28;
    letter-spacing: .065em;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 18px 0 14px;
    font-size: clamp(2rem, 9.2vw, 2.65rem) !important;
    line-height: 1.04;
    letter-spacing: -.055em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 span {
    display: block !important;
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: .92rem;
    line-height: 1.58;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: 16px;
    font-size: .88rem;
    white-space: normal;
    text-align: center;
  }

  .hero-actions .button svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .hero-proof {
    display: grid !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
    padding: 0 !important;
    margin-top: 10px !important;
  }

  .hero-proof article {
    width: 100%;
    min-width: 0;
    min-height: 106px;
    padding: 16px;
    border-radius: 18px;
  }

  .hero-proof article:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 92px;
  }

  .hero-proof strong {
    font-size: .9rem;
  }

  .hero-proof span {
    font-size: .8rem;
    line-height: 1.48;
  }

  .hero-visual {
    min-height: 440px !important;
    margin-top: 2px;
    overflow: hidden !important;
    border-radius: 24px;
  }

  .hero-scene {
    min-height: 440px !important;
    overflow: hidden;
  }

  .orbit-one {
    width: 250px;
    height: 250px;
    right: -36px;
    top: 24px;
  }

  .orbit-two {
    width: 160px;
    height: 160px;
    left: -24px;
    top: 144px;
  }

  .device-laptop {
    width: 274px;
    max-width: calc(100% - 22px) !important;
    top: 28px;
    right: 4px;
    transform: perspective(1000px) rotateX(8deg) rotateY(-5deg);
  }

  .device-phone {
    width: 102px;
    min-height: 198px;
    left: 8px;
    top: 142px;
    padding: 9px;
    transform: perspective(900px) rotateX(6deg) rotateY(10deg) rotateZ(-5deg);
  }

  .truck-stage {
    left: 0;
    right: 0;
    bottom: 8px !important;
    height: 132px;
  }

  .road-line {
    left: 6%;
    right: 6%;
    bottom: 10px;
    height: 17px;
  }

  .truck-3d {
    left: 42px !important;
    bottom: 18px !important;
    width: 210px !important;
    height: 90px;
  }

  .floating-contact {
    right: 10px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(1.9rem, 9.7vw, 2.35rem) !important;
  }

  .hero-proof {
    grid-template-columns: 1fr !important;
  }

  .hero-proof article:nth-child(3) {
    grid-column: auto;
  }

  .device-laptop {
    width: 252px;
    right: 2px;
  }

  .device-phone {
    width: 94px;
    left: 6px;
  }

  .truck-3d {
    left: 26px !important;
    width: 196px !important;
  }
}

/* Mobile header and hero refinement */
@media (max-width: 700px) {
  body {
    padding-top: 74px !important;
  }

  .site-header {
    position: fixed !important;
    inset: 0 0 auto 0;
    width: 100%;
    min-height: 74px;
    padding: 10px 0 !important;
    background: rgba(255,255,255,.96) !important;
    border-bottom: 1px solid rgba(16,19,26,.07);
    box-shadow: 0 8px 28px rgba(18,24,36,.06);
    backdrop-filter: blur(18px);
    z-index: 180 !important;
  }

  .site-header.is-scrolled {
    padding: 10px 0 !important;
  }

  .nav-wrap {
    min-height: 54px;
  }

  .brand img {
    width: 56px !important;
  }

  .brand-copy strong {
    font-size: .92rem;
  }

  .brand-copy small {
    font-size: .68rem;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(16,19,26,.08);
    background: #fff;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 74px 0 0;
    z-index: 150;
    background: rgba(16,19,26,.34);
    backdrop-filter: blur(3px);
  }

  .site-nav {
    position: fixed !important;
    top: 82px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 170 !important;
    width: auto !important;
    max-height: calc(100dvh - 96px) !important;
    padding: 18px !important;
    gap: 0 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(16,19,26,.08) !important;
    box-shadow: 0 24px 70px rgba(16,19,26,.20) !important;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav > a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-bottom: 1px solid var(--line);
    color: #293140;
    font-size: 1rem;
    font-weight: 800;
  }

  .site-nav > a:last-of-type {
    border-bottom: 0;
  }

  .mobile-nav-contact {
    margin-top: 10px;
    padding-top: 14px;
    gap: 10px;
  }

  .mobile-nav-contact > a:first-child,
  .mobile-nav-contact .button {
    min-height: 50px;
    border-radius: 14px;
  }

  .hero .container {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-inline: auto !important;
  }

  .hero {
    padding-top: 22px !important;
    padding-bottom: 54px !important;
  }

  .hero-grid {
    width: 100% !important;
    row-gap: 16px !important;
  }

  .hero-copy {
    width: 100% !important;
    padding-top: 0 !important;
    overflow: visible !important;
  }

  .eyebrow {
    width: 100% !important;
    justify-content: flex-start;
    padding: 9px 11px;
    border-radius: 16px;
    font-size: .6rem;
    line-height: 1.3;
    letter-spacing: .055em;
  }

  .hero h1 {
    margin: 18px 0 14px !important;
    max-width: 100% !important;
    font-size: clamp(2rem, 9vw, 2.55rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.055em !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .hero h1 span {
    display: block !important;
  }

  .hero-lead {
    max-width: 100% !important;
    font-size: .92rem !important;
    line-height: 1.58 !important;
  }

  .hero-actions {
    margin-top: 22px !important;
    gap: 10px !important;
  }

  .hero-actions .button {
    min-height: 50px !important;
    padding-inline: 14px !important;
    border-radius: 14px !important;
    font-size: .84rem !important;
    white-space: normal !important;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 10px !important;
    margin-top: 2px !important;
  }

  .hero-proof article {
    min-height: 104px !important;
    padding: 15px !important;
    border-radius: 18px !important;
  }

  .hero-proof article:nth-child(3) {
    grid-column: 1 / -1 !important;
    min-height: 90px !important;
  }

  .hero-proof strong {
    font-size: .88rem !important;
  }

  .hero-proof span {
    font-size: .78rem !important;
    line-height: 1.45 !important;
  }

  .hero-visual {
    min-height: 420px !important;
    margin-top: 2px !important;
    border-radius: 24px !important;
  }

  .hero-scene {
    min-height: 420px !important;
  }

  .device-laptop {
    width: 258px !important;
    max-width: calc(100% - 24px) !important;
    top: 24px !important;
    right: 10px !important;
  }

  .device-phone {
    width: 96px !important;
    min-height: 188px !important;
    top: 140px !important;
    left: 10px !important;
  }

  .truck-stage {
    height: 126px !important;
    bottom: 6px !important;
  }

  .truck-3d {
    width: 196px !important;
    height: 84px !important;
    left: 34px !important;
    bottom: 16px !important;
  }

  .truck-trailer-panel {
    height: 42px !important;
    bottom: 26px !important;
  }

  .truck-trailer-panel img {
    width: 68px !important;
  }

  .truck-cab {
    width: 60px !important;
    height: 42px !important;
    bottom: 24px !important;
  }

  .truck-window {
    right: 31px !important;
    bottom: 49px !important;
  }

  .wheel {
    width: 20px !important;
    height: 20px !important;
    bottom: 5px !important;
  }

  .wheel-front { right: 16px !important; }
  .wheel-mid { left: 58px !important; }
  .wheel-back { left: 12px !important; }

  .floating-contact {
    right: 10px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.9rem !important;
  }

  .hero-proof {
    grid-template-columns: 1fr !important;
  }

  .hero-proof article:nth-child(3) {
    grid-column: auto !important;
  }

  .device-laptop {
    width: 236px !important;
    right: 6px !important;
  }

  .truck-3d {
    left: 22px !important;
    width: 182px !important;
  }
}

/* Contact form submission polish */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.contact-form [data-submit-button].is-sending {
  pointer-events: none;
  opacity: .78;
}
.contact-form [data-submit-button].is-sending svg {
  animation: submitArrow 1s ease-in-out infinite;
}
@keyframes submitArrow {
  0%, 100% { transform: translateX(0); opacity: .65; }
  50% { transform: translateX(5px); opacity: 1; }
}

/* Contact form AJAX success and error states */
[hidden] { display: none !important; }
.form-status {
  min-height: 0;
  margin: 12px 0 0;
  font-size: .9rem;
  line-height: 1.5;
}
.form-status.is-error {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #9f2f22;
  background: #fff1ef;
  border: 1px solid #ffd2cc;
}
.form-success-card {
  align-self: stretch;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,176,0,.16), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfcfe);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.success-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 30px rgba(255,106,0,.24);
  font-size: 1.65rem;
  font-weight: 900;
}
.form-success-card h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.form-success-card p {
  margin: 0;
  color: var(--text-soft);
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.button.is-sending {
  opacity: .78;
  cursor: wait;
}

@media (max-width: 700px) {
  .form-success-card { padding: 24px; border-radius: 24px; }
  .success-actions { display: grid; grid-template-columns: 1fr; }
  .success-actions .button { width: 100%; }
}

/* Generic multi-industry positioning */
.loader-network {
  position: relative;
  width: 280px;
  height: 170px;
  margin: 22px auto 18px;
}
.loader-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 108px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f1f4f8);
  border: 1px solid rgba(16,19,26,.08);
  box-shadow: 0 20px 42px rgba(16,19,26,.14);
  animation: genericCoreFloat 2.8s ease-in-out infinite;
}
.loader-core img { width: 78px; }
.loader-node {
  position: absolute;
  z-index: 2;
  min-width: 58px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255,106,0,.14);
  color: #bf4e00;
  box-shadow: 0 12px 28px rgba(16,19,26,.08);
  font-size: .72rem;
  font-weight: 800;
  animation: genericNodePulse 2.4s ease-in-out infinite;
}
.loader-node.node-one { left: 0; top: 10px; }
.loader-node.node-two { right: 0; top: 16px; animation-delay: .2s; }
.loader-node.node-three { left: 6px; bottom: 8px; animation-delay: .4s; }
.loader-node.node-four { right: 4px; bottom: 4px; animation-delay: .6s; }
.loader-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255,106,0,.18), rgba(255,176,0,.65));
}
.loader-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #ff8a1e;
  box-shadow: 0 0 0 5px rgba(255,106,0,.10);
}
.loader-line.line-one { left: 54px; top: 48px; width: 96px; transform: rotate(18deg); }
.loader-line.line-two { left: 132px; top: 78px; width: 98px; transform: rotate(-24deg); }
.loader-line.line-three { left: 50px; top: 132px; width: 102px; transform: rotate(-20deg); }
.loader-line.line-four { left: 136px; top: 92px; width: 102px; transform: rotate(26deg); }

.generic-scene { min-height: 700px; }
.generic-laptop { top: 54px !important; right: 0 !important; }
.generic-phone { left: 30px !important; top: 118px !important; }
.ops-core-stage {
  position: absolute;
  left: 6px;
  right: 12px;
  bottom: 52px;
  height: 210px;
  isolation: isolate;
}
.ops-core-platform {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  width: 260px;
  min-height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 18px 24px;
  transform: translateX(-50%) perspective(900px) rotateX(12deg);
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #edf2f8);
  border: 1px solid rgba(16,19,26,.08);
  box-shadow: 0 28px 44px rgba(16,19,26,.15);
}
.ops-core-platform::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -14px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,17,25,.22), transparent 70%);
  filter: blur(3px);
}
.ops-core-platform img { width: 106px; }
.ops-core-platform strong {
  position: relative;
  z-index: 1;
  color: #414959;
  font-size: .8rem;
  letter-spacing: -.01em;
}
.ops-core-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.ops-core-lines span {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,106,0,.15), rgba(255,176,0,.55));
  transform-origin: center;
}
.ops-core-lines span:nth-child(1) { left: 20%; top: 60px; width: 34%; transform: rotate(16deg); }
.ops-core-lines span:nth-child(2) { right: 18%; top: 62px; width: 34%; transform: rotate(-16deg); }
.ops-core-lines span:nth-child(3) { left: 18%; bottom: 54px; width: 36%; transform: rotate(-10deg); }
.ops-core-lines span:nth-child(4) { right: 17%; bottom: 54px; width: 36%; transform: rotate(10deg); }
.industry-chip {
  position: absolute;
  z-index: 4;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(16,19,26,.07);
  color: #3f4757;
  box-shadow: 0 14px 30px rgba(16,19,26,.10);
  font-size: .74rem;
  font-weight: 800;
  animation: genericChipFloat 5s ease-in-out infinite;
}
.industry-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ffb000);
}
.chip-it { left: 0; top: 44px; }
.chip-fiber { right: 0; top: 44px; animation-delay: .5s; }
.chip-sales { left: 16px; bottom: 16px; animation-delay: 1s; }
.chip-insurance { right: 8px; bottom: 14px; animation-delay: 1.5s; }

.industry-trust-grid {
  grid-template-columns: auto repeat(3, 1fr);
}
.generic-services-grid .service-card { min-height: 355px; }
.savings-metric strong {
  max-width: 380px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: .98;
}

@keyframes genericCoreFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}
@keyframes genericNodePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes genericChipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (min-width: 1181px) {
  .generic-scene { min-height: 690px; }
  .generic-laptop { top: 42px !important; }
  .generic-phone { left: 18px !important; top: 126px !important; }
  .scene-card-top { left: 0; bottom: 278px; }
  .scene-card-bottom { right: 0; bottom: 8px; }
}

@media (max-width: 1180px) {
  .industry-trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .industry-trust-grid p { grid-column: 1 / -1; text-align: center; }
  .generic-scene { min-height: 720px; }
  .ops-core-stage { bottom: 50px; }
}

@media (max-width: 980px) {
  .generic-laptop { width: min(440px, 88%) !important; top: 86px !important; }
  .generic-phone { left: 8px !important; top: 106px !important; width: 150px !important; }
  .ops-core-stage { left: 0; right: 0; bottom: 30px; }
  .industry-trust-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72vw);
    grid-template-columns: none;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
    scroll-snap-type: inline mandatory;
  }
  .industry-trust-grid::-webkit-scrollbar { display: none; }
  .industry-trust-grid p,
  .industry-trust-grid span { grid-column: auto; scroll-snap-align: start; }
}

@media (max-width: 700px) {
  .generic-scene,
  .hero-visual { min-height: 560px !important; }
  .generic-laptop {
    width: 292px !important;
    max-width: calc(100% - 16px) !important;
    top: 38px !important;
    right: -2px !important;
  }
  .generic-phone {
    left: 4px !important;
    top: 162px !important;
    width: 108px !important;
    min-height: 210px !important;
  }
  .ops-core-stage {
    left: 4px;
    right: 4px;
    bottom: 16px;
    height: 176px;
  }
  .ops-core-platform {
    bottom: 30px;
    width: 190px;
    min-height: 78px;
    padding: 13px 18px;
    border-radius: 22px;
  }
  .ops-core-platform img { width: 76px; }
  .ops-core-platform strong { font-size: .64rem; }
  .industry-chip {
    min-height: 30px;
    padding: 0 9px;
    font-size: .58rem;
  }
  .industry-chip::before {
    width: 6px;
    height: 6px;
    margin-right: 5px;
  }
  .chip-it { left: 0; top: 36px; }
  .chip-fiber { right: 0; top: 34px; }
  .chip-sales { left: 6px; bottom: 6px; }
  .chip-insurance { right: 0; bottom: 4px; }
  .ops-core-lines span:nth-child(1) { left: 18%; top: 52px; width: 34%; }
  .ops-core-lines span:nth-child(2) { right: 18%; top: 52px; width: 34%; }
  .ops-core-lines span:nth-child(3) { left: 17%; bottom: 42px; width: 34%; }
  .ops-core-lines span:nth-child(4) { right: 16%; bottom: 42px; width: 34%; }
  .scene-card-top,
  .scene-card-bottom { display: none !important; }
  .generic-services-grid { grid-template-columns: 1fr !important; }
  .generic-services-grid .service-card { min-height: auto; }
  .industry-trust-grid {
    grid-auto-columns: minmax(208px, 74vw);
  }
  .savings-metric strong { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .loader-network { transform: scale(.88); margin-block: 8px; }
}
