/* ==========================================================================
   VEVOR Logistics — Truck Hauling & Refrigeration Storage
   Global stylesheet
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --navy-950: #052e1b;
  --navy-900: #14532d;
  --navy-800: #166534;
  --navy-700: #15803d;
  --navy-600: #16a34a;
  --navy-500: #22c55e;

  --orange-500: #18a558;
  --orange-600: #128a48;
  --orange-100: #e7f6ec;

  --ice-500: #1e93d6;
  --ice-100: #e8f5fd;

  --grass-500: #1f9d55;
  --grass-100: #e8f7ee;

  --red-500: #d64545;
  --red-100: #fdecec;

  /* Neutrals */
  --white: #ffffff;
  --gray-25: #f9fcfa;
  --gray-50: #f2f8f3;
  --gray-100: #ebf4ed;
  --gray-200: #dbe9de;
  --gray-300: #c4dcca;
  --gray-400: #8fa894;
  --gray-500: #5f7a66;
  --gray-600: #465e4e;
  --gray-700: #2e4636;
  --ink: #052e1b;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--gray-50);
  --text: var(--navy-900);
  --text-muted: var(--gray-500);
  --border: var(--gray-200);
  --border-strong: var(--gray-300);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Space & shape */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(5, 46, 27, 0.06);
  --shadow-sm: 0 2px 8px rgba(5, 46, 27, 0.07);
  --shadow-md: 0 8px 24px rgba(5, 46, 27, 0.09);
  --shadow-lg: 0 18px 48px rgba(5, 46, 27, 0.14);
  --container: 1180px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.5em;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--navy-900);
}

h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}
h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}
h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.02rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--navy-600);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
a:hover {
  color: var(--orange-600);
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}
li {
  margin-bottom: 0.4rem;
}

strong {
  font-weight: 700;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

:focus-visible {
  outline: 3px solid rgba(24, 165, 88, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--orange-100);
  color: var(--navy-900);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.container-narrow {
  max-width: 820px;
}

.section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section--tight {
  padding: clamp(40px, 5vw, 64px) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--navy {
  background:
    linear-gradient(rgba(5, 46, 27, 0.94), rgba(5, 46, 27, 0.9)),
    var(--band-img, none) center 40% / cover no-repeat,
    var(--navy-900);
  color: #e2f5e9;
}
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: #fff;
}
.section--navy .lead {
  color: #bfe8cd;
}

.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.split {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.split--wide {
  grid-template-columns: 1.25fr 0.75fr;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

/* ---------- Typography widgets ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.section--navy .eyebrow {
  color: var(--orange-500);
}

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
  color: var(--text-muted);
  max-width: 62ch;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .lead {
  margin-inline: auto;
}

.muted {
  color: var(--text-muted);
}
.small {
  font-size: 0.875rem;
}
.tiny {
  font-size: 0.79rem;
  line-height: 1.5;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange-500);
  --btn-fg: #fff;
  --btn-bd: var(--orange-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease),
    background 0.16s var(--ease), color 0.16s var(--ease);
  white-space: nowrap;
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  --btn-bg: var(--orange-500);
  --btn-bd: var(--orange-500);
}
.btn--primary:hover {
  --btn-bg: var(--orange-600);
  --btn-bd: var(--orange-600);
}

.btn--navy {
  --btn-bg: var(--navy-800);
  --btn-bd: var(--navy-800);
}
.btn--navy:hover {
  --btn-bg: var(--navy-700);
  --btn-bd: var(--navy-700);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  --btn-bd: var(--border-strong);
}
.btn--ghost:hover {
  --btn-bg: var(--white);
  --btn-bd: var(--navy-600);
  color: var(--navy-800);
}

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, 0.42);
}
.btn--ghost-light:hover {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-fg: #fff;
}

.btn--sm {
  padding: 9px 16px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-700);
}
.link-arrow::after {
  content: "→";
  transition: transform 0.18s var(--ease);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-950);
  color: #bfe8cd;
  font-size: 0.8rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a {
  color: #e2f5e9;
  font-weight: 600;
}
.topbar a:hover {
  color: var(--orange-500);
}
.topbar .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  margin-right: 6px;
  box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy-900);
}
.brand:hover {
  color: var(--navy-900);
}
.brand-name {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}
.nav a:hover {
  background: var(--gray-100);
  color: var(--navy-900);
}
.nav a[aria-current="page"] {
  color: var(--navy-900);
  background: var(--gray-100);
}
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-500);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.93rem;
  color: var(--navy-900);
  white-space: nowrap;
}
.nav-phone svg {
  width: 17px;
  height: 17px;
  color: var(--orange-500);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 14px 0 22px;
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 11px 4px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav .btn {
  margin-top: 18px;
}

/* ---------- Photo backgrounds ----------
   URLs resolve relative to this stylesheet, hence ../img/ */
.bg-home { --hero-img: url("../img/hero-home.jpg"); }
.bg-trucking { --hero-img: url("../img/hero-truck-hauling.jpg"); }
.bg-coldstorage { --hero-img: url("../img/hero-refrigeration.jpg"); }
.bg-services { --hero-img: url("../img/hero-services.jpg"); }
.bg-about { --hero-img: url("../img/hero-about.jpg"); }
.bg-contact { --hero-img: url("../img/hero-contact.jpg"); }
.bg-quote { --hero-img: url("../img/hero-quote.jpg"); }
.bg-night { --band-img: url("../img/band-night.jpg"); }
.bg-coldchain { --band-img: url("../img/band-coldchain.jpg"); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(5, 46, 27, 0.96) 0%, rgba(10, 61, 36, 0.87) 46%, rgba(20, 83, 45, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 46, 27, 0.22) 0%, rgba(5, 46, 27, 0.74) 100%),
    var(--hero-img, none) center 42% / cover no-repeat,
    linear-gradient(155deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #e2f5e9;
  padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 8vw, 96px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 70% 30%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 70% 30%, #000 25%, transparent 78%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(24, 165, 88, 0.28), transparent 62%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
}
.hero h1 .hl {
  color: #4ade80;
}
.hero .lead {
  color: #cfe7d8;
  font-size: clamp(1.03rem, 1.4vw, 1.19rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero--compact {
  padding: clamp(44px, 6vw, 74px) 0;
}
.hero--compact .hero-grid {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e8f4ec;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stats .n {
  display: block;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-stats .l {
  font-size: 0.79rem;
  color: #a5d9b4;
  letter-spacing: 0.02em;
}

/* Hero side card */
.hero-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.hero-card .small {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero-card .btn {
  margin-top: 4px;
}
.hero-card-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 14px;
  line-height: 1.45;
}
.hero-card-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--grass-500);
}

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(100deg, rgba(5, 46, 27, 0.96) 0%, rgba(20, 83, 45, 0.87) 52%, rgba(22, 101, 52, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 46, 27, 0.2) 0%, rgba(5, 46, 27, 0.7) 100%),
    var(--hero-img, none) center 45% / cover no-repeat,
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: #e6f6eb;
  padding: clamp(40px, 5.5vw, 68px) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -140px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(24, 165, 88, 0.22), transparent 65%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  max-width: 66ch;
  color: #ccefd8;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: #8ba1bb;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: #ccefd8;
}
.breadcrumb a:hover {
  color: var(--orange-500);
}
.breadcrumb span.sep {
  opacity: 0.5;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card-icon svg {
  width: 24px;
  height: 24px;
}
.card-icon--ice {
  background: var(--ice-100);
  color: var(--ice-500);
}
.card-icon--navy {
  background: var(--gray-100);
  color: var(--navy-700);
}
.card-icon--grass {
  background: var(--grass-100);
  color: var(--grass-500);
}

/* Numbered feature card */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.feature h4 {
  margin-bottom: 4px;
}
.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Service overview card */
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-visual {
  height: 156px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.service-visual--haul {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
}
.service-visual--cold {
  background: linear-gradient(135deg, #0b4a6f, #1e93d6);
}
.service-visual--supply {
  background: linear-gradient(135deg, #14532d, #1f9d55);
}
.service-visual svg {
  width: 82px;
  height: 82px;
  opacity: 0.95;
}
.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.service-body .link-arrow {
  margin-top: auto;
  padding-top: 12px;
}

/* ---------- Lists ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  font-size: 0.94rem;
  color: var(--gray-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grass-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d55' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.section--navy .check-list li {
  color: #d9f2e1;
}
.section--navy .check-list li::before {
  background-color: rgba(61, 220, 132, 0.16);
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: 0.9rem;
}
table.data caption {
  text-align: left;
  padding: 16px 20px 0;
  font-weight: 800;
  color: var(--navy-900);
}
table.data thead th {
  background: var(--gray-50);
  text-align: left;
  padding: 13px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-600);
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  white-space: nowrap;
}
table.data td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: top;
}
table.data tbody tr:last-child td {
  border-bottom: 0;
}
table.data tbody tr:hover {
  background: var(--gray-25);
}
table.data td:first-child {
  font-weight: 700;
  color: var(--navy-900);
}

/* ---------- Stats band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-band .stat {
  background: #fff;
  padding: 26px 22px;
  text-align: center;
}
.stat-band .n {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 900;
  color: var(--navy-900);
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.stat-band .n em {
  font-style: normal;
  color: var(--orange-500);
}
.stat-band .l {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 22px;
  border-top: 2px solid var(--border);
  counter-increment: step;
}
.step::before {
  content: "Step " counter(step);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 8px;
}
.step h4 {
  margin-bottom: 6px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.section--navy .step {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.section--navy .step p {
  color: #bfe8cd;
}

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.accordion details {
  border-bottom: 1px solid var(--gray-100);
}
.accordion details:last-child {
  border-bottom: 0;
}
.accordion summary {
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  color: var(--navy-900);
  position: relative;
  list-style: none;
  font-size: 0.97rem;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gray-500);
  border-bottom: 2px solid var(--gray-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.accordion details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.accordion summary:hover {
  background: var(--gray-25);
}
.accordion .acc-body {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.accordion .acc-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.quote-card blockquote {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.quote-who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex: 0 0 auto;
}
.quote-who .name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-900);
  line-height: 1.3;
}
.quote-who .role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Logos / coverage ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}
.section--navy .chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #d9f2e1;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(115deg, rgba(5, 46, 27, 0.94) 0%, rgba(20, 83, 45, 0.84) 55%, rgba(22, 101, 52, 0.62) 100%),
    var(--band-img, none) center 45% / cover no-repeat,
    linear-gradient(120deg, var(--navy-900), var(--navy-700) 70%, var(--navy-600));
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4.5vw, 54px);
  color: #e2f5e9;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(24, 165, 88, 0.26), transparent 65%);
}
.cta-band > * {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  color: #ccefd8;
  margin-bottom: 0;
  max-width: 56ch;
}
.cta-band .btn-row {
  justify-content: flex-end;
}

/* ---------- Forms ---------- */
.form-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
}
.form-shell--flat {
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.005em;
}
.field label .req {
  color: var(--orange-600);
  margin-left: 3px;
}
.field .hint {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: -3px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--text);
  background: var(--gray-25);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 13px;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease),
    background 0.16s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 118px;
  line-height: 1.55;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7a8f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-400);
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--border-strong);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3.5px rgba(234, 88, 12, 0.13);
}

.field .error-msg {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-500);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--red-500);
  background: var(--red-100);
}
.field.is-invalid .error-msg {
  display: block;
}
.field.is-invalid .choice {
  border-color: rgba(214, 69, 69, 0.55);
}
.field.is-invalid .choice-group {
  border-radius: var(--radius);
}

/* Radio / checkbox cards */
.choice-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--gray-25);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.choice:hover {
  border-color: var(--border-strong);
  background: #fff;
}
.choice input {
  width: 17px;
  height: 17px;
  accent-color: var(--orange-500);
  margin: 0;
  flex: 0 0 auto;
}
.choice:has(input:checked) {
  border-color: var(--orange-500);
  background: var(--orange-100);
  color: var(--navy-900);
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 15px 16px;
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--orange-500);
  flex: 0 0 auto;
}
.consent.is-invalid {
  border-color: var(--red-500);
  background: var(--red-100);
}
.consent-wrap.is-invalid .consent {
  border-color: var(--red-500);
  background: var(--red-100);
}
.consent-wrap.is-invalid > .error-msg {
  display: block;
}

.form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
}
.form-foot .note {
  font-size: 0.79rem;
  color: var(--gray-500);
  max-width: 42ch;
  margin: 0;
}

.form-alert {
  display: none;
  gap: 11px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.87rem;
  margin-bottom: 20px;
  line-height: 1.55;
}
.form-alert.is-visible {
  display: flex;
}
.form-alert--success {
  background: var(--grass-100);
  border: 1px solid rgba(31, 157, 85, 0.3);
  color: #14532d;
}
.form-alert--error {
  background: var(--red-100);
  border: 1px solid rgba(214, 69, 69, 0.3);
  color: #7a1f1f;
}
.form-alert svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

/* Submit button spinner state */
.btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}
.btn.is-loading::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Contact side panel */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.contact-block h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
.contact-block h4 svg {
  width: 18px;
  height: 18px;
  color: var(--orange-500);
}
.contact-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-block a.strong {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.contact-block a.strong:hover {
  color: var(--orange-600);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #a5d9b4;
  padding: clamp(44px, 5vw, 68px) 0 0;
  font-size: 0.89rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
}
.site-footer h5 {
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 14px;
}
.site-footer a {
  color: #bfe8cd;
}
.site-footer a:hover {
  color: var(--orange-500);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.brand--footer {
  color: #fff;
  margin-bottom: 18px;
}
.brand--footer:hover {
  color: #fff;
}
.brand--footer .brand-name {
  font-size: 3.7rem;
  color: #fff;
}
.footer-about {
  max-width: 34ch;
  line-height: 1.6;
  color: #9cd3ad;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 20px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #8cc9a1;
}
.footer-bottom nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Utility bits ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--orange {
  background: var(--orange-100);
  color: var(--orange-600);
}
.badge--ice {
  background: var(--ice-100);
  color: #0b6ea8;
}
.badge--grass {
  background: var(--grass-100);
  color: #15703c;
}
.badge--gray {
  background: var(--gray-100);
  color: var(--gray-600);
}

.callout {
  border-left: 3px solid var(--orange-500);
  background: var(--orange-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #7a3d0a;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout--ice {
  border-left-color: var(--ice-500);
  background: var(--ice-100);
  color: #0b4a6f;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.prose h2 {
  margin-top: 2.2em;
  font-size: 1.5rem;
}
.prose h3 {
  margin-top: 1.7em;
}
.prose > :first-child {
  margin-top: 0;
}
.prose {
  color: var(--gray-700);
}
.prose li {
  font-size: 0.94rem;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 940px) {
  .nav,
  .nav-phone {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .split,
  .split--wide {
    grid-template-columns: 1fr;
  }
  .cta-band {
    grid-template-columns: 1fr;
  }
  .cta-band .btn-row {
    justify-content: flex-start;
  }
  .site-header {
    position: sticky;
  }
}

@media (max-width: 700px) {
  .topbar-items {
    gap: 14px;
  }
  .brand-name {
    font-size: 2.05rem;
  }
  .topbar .hide-sm {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .form-foot {
    flex-direction: column;
    align-items: stretch;
  }
  .form-foot .btn {
    width: 100%;
  }
  .btn-row .btn {
    flex: 1 1 auto;
  }
  .section {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.85rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .container {
    padding-inline: 18px;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .topbar,
  .site-footer,
  .cta-band,
  .nav-toggle {
    display: none !important;
  }
  body {
    font-size: 12pt;
  }
  .hero,
  .page-hero {
    background: none !important;
    color: #000 !important;
  }
}
