:root {
  --teal-950: #042833;
  --teal-900: #063545;
  --teal-800: #0a4a5c;
  --teal-700: #0d5f75;
  --teal-600: #107a92;
  --teal-500: #1498b0;
  --teal-400: #2bb8cf;
  --teal-300: #6dcfde;
  --teal-100: #d7f1f6;
  --teal-50: #eef8fa;
  --ink: #0b1f26;
  --ink-soft: #3a5560;
  --paper: #f3f7f8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-border: rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 8px 24px rgba(6, 53, 69, 0.08);
  --shadow-md: 0 18px 50px rgba(6, 53, 69, 0.12);
  --shadow-lg: 0 30px 80px rgba(4, 40, 51, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2.5rem));
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(43, 184, 207, 0.18), transparent 55%),
    radial-gradient(900px 500px at 95% 5%, rgba(16, 122, 146, 0.14), transparent 50%),
    linear-gradient(180deg, #e8f3f6 0%, var(--paper) 28%, #eef4f6 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(243, 247, 248, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 10px 40px rgba(6, 53, 69, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-800);
}

.logo-text span {
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.25s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-phone {
  font-weight: 700;
  color: var(--teal-800);
  white-space: nowrap;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 122, 146, 0.2);
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(16, 122, 146, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 122, 146, 0.42);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-800);
  border: 1px solid rgba(16, 122, 146, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-800);
  border: 1px solid rgba(16, 122, 146, 0.28);
}

.btn-ghost:hover {
  background: rgba(16, 122, 146, 0.08);
}

.btn-lg {
  min-height: 56px;
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 5.5rem;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(4, 40, 51, 0.72) 0%, rgba(6, 53, 69, 0.45) 42%, rgba(4, 40, 51, 0.25) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(43, 184, 207, 0.25), transparent 60%),
    linear-gradient(160deg, #063545 0%, #0a4a5c 40%, #107a92 100%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
  background-size: 220% 100%;
  animation: sheen 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background:
    linear-gradient(180deg, transparent, rgba(4, 40, 51, 0.55)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 48px,
      rgba(255, 255, 255, 0.18) 48px,
      rgba(255, 255, 255, 0.18) 76px
    );
  mask-image: linear-gradient(180deg, transparent, #000 40%);
  opacity: 0.55;
  animation: road-move 12s linear infinite;
}

.hero-swoosh {
  position: absolute;
  width: min(70vw, 820px);
  height: min(40vw, 420px);
  right: -4%;
  top: 18%;
  border: 18px solid rgba(43, 184, 207, 0.35);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-bottom: none;
  transform: rotate(-8deg);
  filter: drop-shadow(0 0 40px rgba(43, 184, 207, 0.25));
  animation: float-swoosh 6s ease-in-out infinite;
}

.hero-truck-art {
  position: absolute;
  right: 6%;
  bottom: 18%;
  width: min(46vw, 560px);
  opacity: 0.95;
  animation: truck-in 1.2s var(--ease) both, truck-idle 5s ease-in-out 1.2s infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  margin-top: -2vh;
  color: var(--white);
  text-align: left;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero-cta .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 34ch;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #1498b0, #2bb8cf);
  color: var(--teal-950);
  box-shadow: 0 16px 40px rgba(43, 184, 207, 0.4);
}

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== Sections common ===== */
section {
  padding: 6.5rem 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), transparent);
}

.section-head h2,
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.55rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section-head p,
.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ===== Trust strip ===== */
.trust {
  padding: 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(16, 122, 146, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.trust-item {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal-700);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ===== Advantages ===== */
.advantages {
  background: transparent;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.adv-card {
  position: relative;
  padding: 1.85rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.adv-card.featured {
  grid-row: span 2;
  background:
    linear-gradient(160deg, rgba(13, 95, 117, 0.95), rgba(16, 122, 146, 0.88)),
    var(--teal-800);
  color: var(--white);
  border-color: transparent;
}

.adv-card.featured h3,
.adv-card.featured p {
  color: var(--white);
}

.adv-card.featured p {
  opacity: 0.88;
}

.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: rgba(16, 122, 146, 0.1);
  color: var(--teal-700);
}

.adv-card.featured .adv-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.adv-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  color: var(--teal-900);
}

.adv-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ===== Why us ===== */
.why {
  background:
    linear-gradient(180deg, transparent, rgba(215, 241, 246, 0.55) 20%, rgba(215, 241, 246, 0.55) 80%, transparent);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.why-visual {
  position: relative;
  min-height: 420px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 30%, rgba(43, 184, 207, 0.35), transparent 50%),
    linear-gradient(145deg, var(--teal-800), var(--teal-600));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.why-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--teal-900);
}

.why-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ===== Fleet ===== */
.fleet-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 122, 146, 0.08);
  transition: transform 0.35s var(--ease);
}

.fleet-card:hover {
  transform: translateY(-6px);
}

.fleet-visual {
  height: 180px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 80%, rgba(43, 184, 207, 0.25), transparent 55%),
    linear-gradient(180deg, var(--teal-50), #dff0f4);
  padding: 1.5rem;
}

.fleet-visual svg {
  width: 80%;
  max-width: 220px;
  height: auto;
}

.fleet-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.fleet-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}

.fleet-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--teal-700);
  font-size: 0.95rem;
}

/* ===== Services / waste types ===== */
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.service-tile {
  grid-column: span 4;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.service-tile:nth-child(1) {
  grid-column: span 5;
  background: linear-gradient(145deg, var(--teal-800), var(--teal-600));
  color: var(--white);
  border: none;
}

.service-tile:nth-child(2) {
  grid-column: span 7;
}

.service-tile:nth-child(1) h3,
.service-tile:nth-child(1) p {
  color: var(--white);
}

.service-tile:nth-child(1) p {
  opacity: 0.88;
}

.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0.85rem 0 0.4rem;
  color: var(--teal-900);
}

.service-tile p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-tile .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(16, 122, 146, 0.1);
  color: var(--teal-700);
}

.service-tile:nth-child(1) .icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ===== Cargo services band ===== */
.cargo-band {
  padding: 0;
}

.cargo-band-inner {
  border-radius: 36px;
  padding: 3.5rem 3rem;
  background:
    linear-gradient(120deg, rgba(4, 40, 51, 0.92), rgba(13, 95, 117, 0.88)),
    var(--teal-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cargo-band-inner::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  border: 40px solid rgba(43, 184, 207, 0.12);
  pointer-events: none;
}

.cargo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.cargo-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}

.cargo-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cargo-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.cargo-item p {
  font-size: 0.9rem;
  opacity: 0.82;
}

.cargo-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--teal-300);
}

/* ===== Process ===== */
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-300), var(--teal-600), var(--teal-300));
  opacity: 0.5;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process-dot {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal-700), var(--teal-500));
  box-shadow: 0 12px 30px rgba(16, 122, 146, 0.3);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.05rem;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ===== Calculator ===== */
.calc-section {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(43, 184, 207, 0.15), transparent),
    transparent;
}

.calc-shell {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.calc-form,
.calc-result {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  padding: 1.75rem;
}

.calc-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-800);
}

.field select,
.field input {
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 122, 146, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field select:focus,
.field input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(43, 184, 207, 0.18);
}

.toggle-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.toggle {
  flex: 1;
  min-width: 110px;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(16, 122, 146, 0.2);
  background: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}

.toggle.is-active {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(16, 122, 146, 0.25);
}

.calc-result {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.calc-result .label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.calc-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal-800);
  line-height: 1.1;
}

.calc-price span {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--ink-soft);
}

.calc-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.calc-breakdown {
  text-align: left;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 1rem;
  border-radius: 14px;
  background: var(--teal-50);
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(16, 122, 146, 0.15);
}

.calc-breakdown li:last-child {
  border-bottom: none;
  font-weight: 800;
  color: var(--teal-800);
}

/* ===== Reviews ===== */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 122, 146, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stars {
  color: #e6a817;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}

.review-card blockquote {
  font-size: 0.98rem;
  color: var(--ink);
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-400));
}

.review-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--teal-900);
}

.review-meta span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  color: var(--teal-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--teal-600);
  font-weight: 400;
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .answer {
  padding: 0 1.35rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.85rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, var(--teal-700), var(--teal-400));
  box-shadow: var(--shadow-sm);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(4, 40, 51, 0.75));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== Contacts + Form ===== */
.contacts-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-card,
.lead-form-card {
  border-radius: 28px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.contact-card {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  color: var(--white);
  border: none;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-card > p {
  opacity: 0.85;
  margin-bottom: 1.75rem;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-lines a,
.contact-lines div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.contact-lines svg {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.geo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.geo-pills span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lead-form {
  display: grid;
  gap: 0.9rem;
}

.lead-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(20, 152, 176, 0.12);
  color: var(--teal-800);
  font-weight: 700;
  text-align: center;
}

.form-success.is-show {
  display: block;
}

.form-error {
  color: #b42318;
  font-size: 0.85rem;
  display: none;
}

.form-error.is-show {
  display: block;
}

.privacy-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ===== CTA banner ===== */
.final-cta {
  padding-top: 2rem;
}

.final-cta-inner {
  border-radius: 32px;
  padding: 3rem;
  text-align: center;
  background:
    radial-gradient(circle at 20% 50%, rgba(43, 184, 207, 0.25), transparent 45%),
    linear-gradient(120deg, var(--teal-800), var(--teal-600));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.final-cta-inner p {
  opacity: 0.88;
  margin-bottom: 1.5rem;
  max-width: 42ch;
  margin-inline: auto;
}

.final-cta .btn-primary {
  background: var(--white);
  color: var(--teal-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

/* ===== Footer ===== */
.site-footer {
  padding: 3rem 0 7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 122, 146, 0.12);
}

.footer-brand strong {
  font-family: var(--font-display);
  color: var(--teal-800);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-800);
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal-700);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 122, 146, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-legal {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 122, 146, 0.08);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.footer-legal p {
  margin: 0 0 0.25rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.55rem !important;
}

.footer-legal-links a {
  color: var(--teal-700);
  font-weight: 600;
}

.footer-legal-links a:hover {
  color: var(--teal-800);
}

/* ===== Mobile call FAB ===== */
.mobile-call {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal-600), var(--teal-400));
  color: var(--white);
  box-shadow: 0 12px 32px rgba(16, 122, 146, 0.45);
  align-items: center;
  justify-content: center;
  animation: pulse-call 2.4s ease-in-out infinite;
}

.mobile-call svg {
  width: 26px;
  height: 26px;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(4, 40, 51, 0.55);
  backdrop-filter: blur(6px);
}

.modal.is-open {
  display: flex;
}

.modal-panel {
  width: min(460px, 100%);
  background: var(--white);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-800);
  cursor: pointer;
  font-size: 1.25rem;
}

.modal-panel h3 {
  font-family: var(--font-display);
  color: var(--teal-900);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal-panel > p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
}

/* ===== Mobile nav ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(243, 247, 248, 0.96);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal-900);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(16, 122, 146, 0.1);
}

/* ===== Animations ===== */
@keyframes sheen {
  0%,
  100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0 0;
  }
}

@keyframes road-move {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 0, 180px 0;
  }
}

@keyframes float-swoosh {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(-12px);
  }
}

@keyframes truck-in {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 0.95;
    transform: none;
  }
}

@keyframes truck-idle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-call {
  0%,
  100% {
    box-shadow: 0 12px 32px rgba(16, 122, 146, 0.45);
  }
  50% {
    box-shadow: 0 12px 32px rgba(16, 122, 146, 0.45), 0 0 0 14px rgba(43, 184, 207, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .burger {
    display: grid;
  }

  .header-phone {
    display: none;
  }

  .trust-panel {
    grid-template-columns: 1fr 1fr;
  }

  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .adv-card.featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .why-layout,
  .calc-shell,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .calc-result {
    position: static;
  }

  .process-rail {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .process-rail::before {
    display: none;
  }

  .fleet-track,
  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .cargo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-truck-art {
    opacity: 0.35;
    right: -8%;
    width: 55vw;
  }

  .mobile-call {
    display: flex;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 1.5rem, 1180px);
    --header-h: 68px;
  }

  .logo-text span {
    display: none;
  }

  .hero {
    align-items: center;
    padding-bottom: 3rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-swoosh {
    opacity: 0.4;
  }

  section {
    padding: 4.5rem 0;
  }

  .trust-panel,
  .adv-grid,
  .calc-form,
  .lead-form .row-2,
  .process-rail,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .services-mosaic .service-tile,
  .service-tile:nth-child(1),
  .service-tile:nth-child(2) {
    grid-column: span 12;
  }

  .cargo-band-inner,
  .final-cta-inner,
  .contact-card,
  .lead-form-card {
    padding: 1.5rem;
    border-radius: 24px;
  }

  .why-visual {
    min-height: 280px;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}
