/* Goways LLC — Truck dispatch website */
:root {
  --cream: #f3efe7;
  --cream-2: #ebe6dc;
  --cream-3: #e1dbcc;
  --paper: #faf8f3;
  --ink: #0e0d0b;
  --ink-2: #1c1a16;
  --muted: #6b675e;
  --muted-2: #94907f;
  --line: #d8d2c2;
  --amber: oklch(0.72 0.14 60);
  --amber-strong: oklch(0.65 0.17 55);
  --green: oklch(0.65 0.12 145);
  --red: oklch(0.62 0.18 28);

  --font-display: "Bricolage Grotesque", "Söhne", system-ui, sans-serif;
  --font-sans: "Geist", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: 28px; padding-right: 28px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--cream) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--maxw);
  margin: 0 auto; padding: 0 28px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; color: var(--ink); position: relative;
  padding: 6px 0; letter-spacing: -0.01em;
  font-weight: 600;
}
.nav-link:hover { color: var(--ink); }
.nav-link.has-caret::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px); margin-left: 6px; opacity: 0.6;
}

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: -0.04em;
}
.logo-img {
  height: 44px; width: auto; display: block;
}
.footer-brand .logo-img { height: 56px; }
.logo-mark {
  width: 32px; height: 32px; position: relative;
  background: var(--ink); border-radius: 8px;
  display: grid; place-items: center;
  overflow: hidden;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-llc { font-family: var(--font-mono); font-size: 10px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; margin-top: 6px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: transform .15s, background .15s, color .15s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--amber-strong); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--cream-2); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-strong); }
.btn .arrow {
  width: 14px; height: 14px; transition: transform .2s;
}
.btn:hover .arrow { transform: translateX(3px); }

.lang {
  font-size: 13px; color: var(--muted); font-family: var(--font-mono);
  display: inline-flex; align-items: center; gap: 4px;
}

/* ============ HERO ============ */
.hero { padding: 64px 28px 0; position: relative; max-width: var(--maxw); margin: 0 auto; }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--green) 25%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--green) 25%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--green) 0%, transparent); }
}

h1.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  color: var(--ink);
}
h1.hero-title .it { font-style: italic; font-weight: 500; font-family: "Bricolage Grotesque", serif; }
h1.hero-title .amber { color: var(--amber-strong); }

.hero-sub {
  font-size: 19px; color: var(--ink-2);
  max-width: 540px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px 44px;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .k { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-meta-item .v { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.03em; margin-top: 2px; }

/* Truck stage */
.truck-explainer {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.truck-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: linear-gradient(180deg, #e9ddc6 0%, #d8c8a8 50%, #b9a37c 100%);
}
.truck-stage-half {
  aspect-ratio: 4 / 5;
  min-height: 640px;
  max-height: 760px;
}
.truck-stage-half .truck-img {
  object-position: center center;
}
.truck-stage::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.18), transparent 60%);
  pointer-events: none;
}
.truck-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
}
.truck-overlay {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; z-index: 2;
}
.truck-card {
  background: color-mix(in oklab, var(--ink) 88%, transparent);
  color: var(--cream);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 200px;
  border: 1px solid rgba(255,255,255,0.06);
}
.truck-card .lbl { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); }
.truck-card .val { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-top: 4px; }
.truck-card .sub { font-size: 12px; color: var(--muted-2); margin-top: 2px; }

.live-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--ink); color: var(--cream);
  padding: 8px 12px 8px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.live-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse-red 1.4s ease infinite; }
@keyframes pulse-red { 0%,100%{ opacity:1; } 50%{ opacity: 0.35; } }

/* Truck copy column */
.truck-copy {
  padding: 8px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.truck-copy-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.98; letter-spacing: -0.035em;
  margin: 18px 0 28px;
}
.truck-copy-title .it { font-style: italic; font-weight: 500; color: var(--amber-strong); }
.truck-copy-body {
  font-size: 19px; line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 540px;
  text-wrap: pretty;
}
.truck-copy-body:last-child { margin-bottom: 0; }

/* ============ MARQUEE ============ */
.marquee {
  margin-top: 72px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
}
.marquee-track {
  display: flex; gap: 96px;
  justify-content: center;
  flex-wrap: wrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; letter-spacing: -0.02em;
  color: var(--ink-2);
}
.marquee-item svg { opacity: 0.5; }
.marquee-star {
  width: 18px; height: 18px; color: var(--amber-strong);
}

/* ============ SECTIONS ============ */
.section { padding-top: 120px; padding-bottom: 120px; position: relative; }
.section + .section { padding-top: 0; }
.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px; align-items: end;
  margin-bottom: 64px;
}
.section-tag {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.section-tag::before {
  content: ""; width: 18px; height: 1px; background: var(--muted);
}
h2.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 58px);
  max-width: 760px;
  text-wrap: balance;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 14px 0 0;
}
h2.section-title .it { font-style: italic; font-weight: 500; }
.section-lede {
  font-size: 21px; color: var(--ink-2); max-width: 560px;
  line-height: 1.5; letter-spacing: -0.005em;
  text-wrap: pretty;
  line-height: 1.5;
}
.section-lede.pricing-lede {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

/* ============ SERVICES ============ */
.services {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.service {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s, background .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.service:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.service:hover .service-num { color: var(--muted-2); }
.service:hover .service-arrow { background: var(--amber); color: var(--ink); transform: translate(2px,-2px); }
.service.featured { grid-column: span 8; background: var(--ink); color: var(--cream); border-color: var(--ink); }
.service.featured .service-num { color: var(--muted-2); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted);
}
.service-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream-2);
  transition: transform .2s, background .2s;
}
.service.featured .service-arrow { background: var(--amber); color: var(--ink); }
.service:hover .service-arrow svg, .service.featured .service-arrow svg { stroke: var(--ink); }
.service-arrow svg { width: 16px; height: 16px; stroke: var(--ink); stroke-width: 1.8; fill: none; }
.service h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; letter-spacing: -0.03em; line-height: 1;
  margin: 24px 0 12px;
}
.service.featured h3 { font-size: 44px; }
.service p { color: inherit; opacity: 0.7; font-size: 14px; max-width: 380px; }
.service.featured p { font-size: 16px; max-width: 460px; }

/* ============ DISPATCH BOARD ============ */
.board {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.board-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2723;
}
.board-title {
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--muted-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.board-title .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--green) 20%, transparent);
}
.board-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.board-filter {
  font-family: var(--font-mono); font-size: 11px;
  padding: 6px 12px; border-radius: 999px;
  color: var(--muted-2); border: 1px solid #2a2723;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.board-filter.active { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.board-filter:hover:not(.active) { color: var(--cream); border-color: #44403a; }

.board-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.board-table th {
  text-align: left; padding: 14px 24px;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted-2); font-weight: 500;
  border-bottom: 1px solid #2a2723;
}
.board-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #1f1c19;
  vertical-align: middle;
}
.board-table tr:last-child td { border-bottom: 0; }
.board-table tr { transition: background .15s; }
.board-table tbody tr:hover { background: #161410; }
.lane { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; }
.lane .arrow-sm { color: var(--amber); }
.pill {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: #2a2723; color: var(--muted-2);
}
.pill.amber { background: color-mix(in oklab, var(--amber) 28%, transparent); color: var(--amber); }
.pill.green { background: color-mix(in oklab, var(--green) 28%, transparent); color: var(--green); }
.rate { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.book-btn {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 8px 14px; border-radius: 999px;
  background: var(--cream); color: var(--ink);
  transition: background .15s;
}
.book-btn:hover { background: var(--amber); }

/* ============ STATS ============ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.stat .v {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 5vw, 76px);
  letter-spacing: -0.05em; line-height: 0.9;
  color: var(--ink);
}
.stat .v .unit { color: var(--amber-strong); }
.stat .k {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-top: 16px;
}
.stat .desc {
  font-size: 14px; color: var(--ink-2); margin-top: 8px; line-height: 1.45;
}

/* ============ PROCESS ============ */
.process-section { text-align: center; }
.process-head { max-width: 640px; margin: 0 auto 64px; }
.process-head .section-tag {
  display: inline-flex;
}
.process-head .section-tag::before { display: none; }
.process-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.035em; line-height: 1;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.process-title .it { font-style: italic; font-weight: 500; color: var(--amber-strong); }
.process-lede {
  font-size: 24px; color: var(--ink);
  font-weight: 500;
  max-width: 680px; margin: 0 auto;
  line-height: 1.4; text-wrap: balance;
  letter-spacing: -0.015em;
}
.process {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  border-top: 0;
  border-bottom: 0;
  align-items: start;
}
.process-step {
  padding: 24px 12px;
  border-right: 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.12em;
}
.process-icon-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px;
}
.process-step h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.025em; line-height: 1.05;
  margin: 0 0 12px;
  max-width: 260px;
}
.process-step p {
  font-size: 15px; color: var(--ink-2); max-width: 260px;
  line-height: 1.5; text-wrap: pretty;
  margin: 0;
}
.process-icon {
  width: 88px; height: 88px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 28px -16px rgba(217,138,28,0.55);
}
.process-step:hover .process-icon {
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 18px 36px -14px rgba(217,138,28,0.65);
}
.process-icon svg { width: 36px; height: 36px; }
.process-step-num {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--ink); color: var(--cream);
  padding: 5px 10px;
  border-radius: 999px;
}
.process-icon-wrap {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px;
}

/* ============ TRUSTED / GET STARTED ============ */
.trusted-head {
  max-width: 900px; margin: 0 auto 64px; text-align: center;
}
.trusted-head .section-tag { display: inline-flex; }
.trusted-head .section-tag::before { display: none; }
.trusted-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.035em; line-height: 1.02;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.trusted-title .it { font-style: italic; font-weight: 500; color: var(--amber-strong); }
.trusted-sub {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.015em;
  color: var(--ink-2); margin: 0;
}
.trusted-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.trusted-copy p {
  font-size: 18px; line-height: 1.65;
  color: var(--ink-2); margin: 0 0 22px;
  max-width: 560px; text-wrap: pretty;
}
.trusted-copy p:last-child { margin-bottom: 0; }
.trusted-outro {
  border-left: 2px solid var(--amber);
  padding-left: 18px;
  color: var(--ink) !important;
  font-weight: 500;
}

.trusted-card {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  position: relative; overflow: hidden;
  align-self: start;
}
.trusted-card::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--amber); opacity: 0.18;
  border-radius: 50%; filter: blur(20px);
  pointer-events: none;
}
.trusted-card-label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 8px;
}
.trusted-card-label::before {
  content: ""; width: 18px; height: 1px; background: var(--amber);
}
.trusted-card-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.025em; line-height: 1.05;
  margin: 14px 0 28px;
  color: var(--cream);
}
.trusted-docs {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.trusted-docs li {
  display: flex; align-items: center; gap: 16px;
  font-size: 15px; color: #e4dccb;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.08);
}
.trusted-docs li:last-child { border-bottom: 0; padding-bottom: 0; }
.trusted-docs-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--amber); letter-spacing: 0.06em;
  min-width: 24px;
}
.trusted-phone {
  background: rgba(243, 239, 231, 0.06);
  border: 1px solid rgba(243, 239, 231, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.trusted-phone-label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}
.trusted-phone-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.025em;
  color: var(--amber) !important;
  display: inline-flex; align-items: center; gap: 12px;
  transition: color .2s;
}
.trusted-phone-num:hover { color: var(--cream) !important; }
.trusted-phone-num svg { color: var(--amber); }
@media (max-width: 900px) {
  .trusted-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ PRICING / CALCULATOR ============ */
.calc {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  align-items: stretch;
}
.calc-left h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; letter-spacing: -0.035em; line-height: 1;
  margin: 0 0 16px;
}
.calc-left p { color: var(--muted); margin: 0 0 32px; max-width: 360px; }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 10px;
}
.field-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.field-row .val { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 4px;
  background: var(--line); border-radius: 999px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; background: var(--ink);
  border-radius: 50%; cursor: grab;
  border: 3px solid var(--paper); box-shadow: 0 0 0 1px var(--ink);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; background: var(--ink);
  border-radius: 50%; cursor: grab; border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--ink);
}
.seg { display: flex; gap: 6px; flex-wrap: wrap; }
.seg button {
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px; background: var(--cream);
  transition: all .15s;
}
.seg button.on { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.calc-right {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.calc-result-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); }
.calc-result {
  font-family: var(--font-display); font-weight: 800;
  font-size: 84px; line-height: 0.9; letter-spacing: -0.05em;
  margin: 14px 0 4px;
}
.calc-result .unit { color: var(--amber); font-size: 36px; font-weight: 600; }
.calc-sub { font-size: 14px; color: var(--muted-2); margin-bottom: 24px; }
.calc-bd { display: grid; gap: 10px; }
.calc-bd-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted-2); }
.calc-bd-row strong { color: var(--cream); font-weight: 500; }
.calc-cta { margin-top: 24px; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.testimonial .stars {
  display: flex; gap: 2px; color: var(--amber-strong);
}
.testimonial blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0; color: var(--ink);
}
.testimonial .by {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px;
}
.by-name { font-weight: 500; font-size: 14px; }
.by-co { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* ============ CTA ============ */
.cta {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  align-items: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, color-mix(in oklab, var(--amber) 35%, transparent), transparent 70%);
  pointer-events: none;
}
.cta h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.2vw, 68px);
  letter-spacing: -0.035em; line-height: 0.98;
  margin: 0 0 18px;
}
.cta h2 .it { font-style: italic; font-weight: 500; color: var(--amber); }
.cta p { font-size: 17px; color: var(--muted-2); max-width: 440px; }

.form {
  display: grid; gap: 12px;
  position: relative; z-index: 2;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.input {
  background: #1c1a16; color: var(--cream);
  border: 1px solid #2a2723;
  padding: 14px 16px;
  border-radius: 12px; font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
}
.input:focus { border-color: var(--amber); }
.input::placeholder { color: var(--muted); }
.form .btn { justify-content: center; padding: 14px 18px; }
.form-success {
  background: color-mix(in oklab, var(--green) 18%, var(--ink));
  border: 1px solid var(--green);
  padding: 16px; border-radius: 12px;
  text-align: center;
  font-size: 14px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.footer-glow {
  position: absolute;
  top: -120px; right: -100px;
  width: 420px; height: 420px;
  background: var(--amber);
  filter: blur(160px);
  opacity: 0.18;
  border-radius: 50%;
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.1);
  margin-bottom: 28px;
}

.footer-brand .logo-img {
  height: 56px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 15px; line-height: 1.6;
  color: #c8c2b3;
  max-width: 360px;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.footer-brand p strong {
  color: var(--cream);
  font-weight: 600;
}

.footer-socials {
  display: flex; gap: 10px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(243, 239, 231, 0.08);
  border: 1px solid rgba(243, 239, 231, 0.12);
  display: grid; place-items: center;
  color: var(--cream);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.footer-socials a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px; letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--cream);
}

.footer-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 14px; line-height: 1.5;
  color: #c8c2b3;
  text-wrap: pretty;
}
.footer-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.footer-bullets li a {
  color: #c8c2b3;
  transition: color .15s;
}
.footer-bullets li a:hover { color: var(--amber); }
.footer-bullets li.footer-hours {
  padding-left: 0;
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cream);
  font-weight: 500;
}
.footer-bullets li.footer-hours::before { display: none; }
.footer-bullets li.footer-hours .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4a8a52;
  box-shadow: 0 0 0 4px rgba(74, 138, 82, 0.25);
}

.footer-phone-cta {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--amber);
  color: var(--ink) !important;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: -0.015em;
  transition: transform .2s, background .2s;
}
.footer-phone-cta:hover {
  transform: translateY(-2px);
  background: #f4b860;
}

.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #8a8273;
}
.footer-bottom a {
  color: #8a8273;
  transition: color .15s;
}
.footer-bottom a:hover { color: var(--amber); }

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column; gap: 8px; align-items: flex-start;
  }
}

/* ============ HOME FAQ ============ */
.home-faq-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.home-faq-head .section-tag { display: inline-flex; }
.home-faq-head .section-tag::before { display: none; }
.home-faq-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.035em; line-height: 1;
  margin: 14px 0 18px; text-wrap: balance;
}
.home-faq-title .it { font-style: italic; font-weight: 500; color: var(--amber-strong); }
.home-faq-lede {
  font-size: 18px; color: var(--ink-2);
  max-width: 560px; margin: 0 auto;
  line-height: 1.5; text-wrap: pretty;
}
.home-faq-list {
  max-width: 920px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.home-faq-item {
  border-bottom: 1px solid var(--line);
}
.home-faq-summary {
  width: 100%;
  background: none; border: 0; cursor: pointer;
  padding: 26px 0;
  display: grid; grid-template-columns: 48px 1fr 32px;
  gap: 20px; align-items: center;
  text-align: left;
  font: inherit;
  transition: color .15s;
}
.home-faq-summary:hover .home-faq-q { color: var(--amber-strong); }
.home-faq-num {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--amber-strong); letter-spacing: 0.06em;
  font-weight: 500;
}
.home-faq-q {
  font-family: var(--font-display); font-weight: 600;
  font-size: 21px; letter-spacing: -0.02em; line-height: 1.25;
  color: var(--ink);
  transition: color .15s;
  text-wrap: balance;
}
.home-faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .25s, border-color .25s, color .25s, transform .35s;
}
.home-faq-toggle svg { width: 13px; height: 13px; transition: transform .35s; }
.home-faq-item.open .home-faq-toggle {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.home-faq-item.open .home-faq-toggle svg { transform: rotate(45deg); }
.home-faq-a-wrap {
  display: grid;
  transition: grid-template-rows .35s ease;
  grid-template-rows: 0fr;
}
.home-faq-a-inner {
  overflow: hidden;
  padding-left: 68px;
  padding-right: 52px;
}
.home-faq-a-inner p {
  margin: 0;
  padding-bottom: 22px;
  font-size: 16px; line-height: 1.65;
  color: var(--ink-2); max-width: 720px;
  text-wrap: pretty;
}
@media (max-width: 700px) {
  .home-faq-summary { grid-template-columns: 36px 1fr 28px; gap: 14px; }
  .home-faq-q { font-size: 17px; }
  .home-faq-a-inner { padding-left: 0; padding-right: 0; }
}


/* ============ STAR RATINGS ============ */
.star-wrap {
  position: relative;
  display: inline-block;
  width: 14px; height: 14px;
  line-height: 0;
}
.star-bg, .star-fg {
  position: absolute; top: 0; left: 0;
  line-height: 0;
  display: block;
}
.star-bg { color: rgba(41, 38, 27, 0.18); }
.star-fg { color: var(--amber); overflow: hidden; }
.stars-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-left: 6px;
  align-self: center;
}


/* Stacked section head — title full-width on top, lede below */
.section-head.section-head-stack {
  display: block;
}
.section-head.section-head-stack > div {
  margin-bottom: 24px;
}
.section-head.section-head-stack .section-title {
  max-width: none;
}
.section-head.section-head-stack .services-title {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
}
.section-head.section-head-stack .services-title .it {
  color: var(--ink);
}
.section-head.section-head-stack .section-lede {
  max-width: 720px;
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}


/* Smaller phone CTA in Contact column */
.footer-phone-cta.footer-phone-cta-sm {
  margin-top: 18px;
  padding: 10px 16px;
  font-size: 14px;
  gap: 8px;
}
.footer-hours-row {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8c2b3;
}
.footer-hours-row .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4a8a52;
  box-shadow: 0 0 0 4px rgba(74, 138, 82, 0.22);
}


/* Form error state */
.form-error {
  color: #c84a4a;
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: -0.005em;
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }


/* ============================================================
   SMOOTH SCROLL + ANCHOR OFFSET
   ============================================================ */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
.hero, .section, .footer { scroll-margin-top: 92px; }

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav.nav-open .nav-toggle .icon-open { display: none; }
.nav.nav-open .nav-toggle .icon-close { display: block; }

/* ============================================================
   RESPONSIVE — HOME PAGE
   ============================================================ */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service { grid-column: span 1; min-height: 240px; }
  .service.featured { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-inner { height: 68px; }
  .nav-right {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 28px 22px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px -22px rgba(14,13,11,0.4);
    display: none;
  }
  .nav.nav-open .nav-right { display: flex; }
  .nav-right .nav-link {
    font-size: 16px;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
  }
  .nav-right .lang {
    padding: 16px 2px 4px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .section { padding-top: 88px; padding-bottom: 88px; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }
  .truck-explainer {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 64px;
  }
  .truck-stage-half { min-height: 0; max-height: none; aspect-ratio: 4 / 3; }
  .calc {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }
  .calc-left h3 { font-size: 36px; }
  .calc-result { font-size: 68px; }
  .testimonials { grid-template-columns: 1fr; }
  .cta {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .hero { padding-top: 44px; }
  .process { grid-template-columns: 1fr; gap: 14px; }
  .process-step { padding: 16px 12px; }
  .marquee { margin-top: 56px; }
  .marquee-track { gap: 24px 44px; }
  .marquee-item { font-size: 16px; }
}

@media (max-width: 620px) {
  .section { padding-top: 68px; padding-bottom: 68px; }
  .services { grid-template-columns: 1fr; }
  .service.featured h3 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .cta { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav-inner { padding-left: 20px; padding-right: 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .nav-right { padding-left: 20px; padding-right: 20px; }
  .calc { padding: 22px 20px; }
  .calc-right { padding: 24px 22px; }
  .trusted-card { padding: 28px 24px; }
}
