/* GRUZOPEVOZKI — премиальный коммерческий лендинг (светлая тема) */

:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-2: #fafafa;
  --text: #0c111d;
  --text-secondary: #344054;
  --muted: #667085;
  --border: rgba(12, 17, 29, 0.08);
  --border-strong: rgba(12, 17, 29, 0.12);
  --accent: #0e3d5c;
  --accent-hover: #0a2f47;
  --accent-soft: rgba(14, 61, 92, 0.08);
  --review-star: #c4a035;
  --warm: #b8732c;
  --warm-hover: #9a6124;
  --success: #027a48;
  --shadow-xs: 0 1px 2px rgba(12, 17, 29, 0.05);
  --shadow-sm: 0 4px 16px rgba(12, 17, 29, 0.06);
  --shadow-md: 0 12px 32px rgba(12, 17, 29, 0.08);
  --shadow-lg: 0 24px 56px rgba(12, 17, 29, 0.1);
  --shadow-img: 0 16px 40px rgba(12, 17, 29, 0.1);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --img-filter: contrast(1.03) saturate(0.97);
  --maxw: 1120px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

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

main {
  text-align: left;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head .section-title {
  margin-bottom: 12px;
}

.section-head .section-lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.link-inline {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.link-inline:hover {
  color: var(--warm);
}

.container {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--maxw));
  }
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft);
}

header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 8px 0;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-sep {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0.06em;
}

.logo-accent {
  color: var(--accent);
}

.logo-graphic {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(280px, 56vw);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-xs);
}

.logo-graphic:focus-visible .logo-img {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .logo-img {
    height: 38px;
    max-width: min(240px, 62vw);
  }

  .logo-img--footer {
    height: 34px;
    max-width: 200px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.22s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-soft);
  opacity: 0.9;
}

.nav-links a.is-active {
  color: var(--text);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
}

@media (min-width: 981px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Buttons */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14, 61, 92, 0.22);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 28px rgba(14, 61, 92, 0.28);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  min-height: 44px;
  padding: 10px 4px 10px 0;
  font-size: 15px;
  box-shadow: none;
}

.btn-ghost::after {
  content: "→";
  font-weight: 700;
  transition: transform 0.25s var(--ease);
}

.btn-ghost:hover {
  color: var(--warm);
  transform: none;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 15px;
}

.pulse-soft {
  animation: pulseSoft 2.8s ease-in-out infinite;
}

@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(14, 61, 92, 0.2);
  }
  50% {
    box-shadow: 0 12px 32px rgba(14, 61, 92, 0.28);
  }
}

/* Hero */

.hero {
  position: relative;
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse 90% 55% at 100% 0%, rgba(14, 61, 92, 0.07), transparent 58%),
    radial-gradient(ellipse 70% 45% at 0% 100%, rgba(184, 115, 44, 0.06), transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 120%, rgba(14, 61, 92, 0.035), transparent 45%),
    linear-gradient(180deg, #e8ebef 0%, var(--bg) 72%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-img);
  aspect-ratio: 4/3;
  max-height: min(440px, 52vh);
  transition:
    box-shadow 0.4s var(--ease-soft),
    transform 0.45s var(--ease-soft),
    border-color 0.3s ease;
}

.hero-visual:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 61, 92, 0.12);
  transform: translateY(-3px);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: var(--img-filter);
  transition: transform 0.65s var(--ease-soft);
}

.hero-visual:hover img {
  transform: scale(1.03);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 17, 29, 0.02) 0%, transparent 40%, rgba(12, 17, 29, 0.16) 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(2, 122, 72, 0.18);
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 14ch;
  text-wrap: balance;
}

.hero-tagline {
  margin: 0 0 18px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-desc {
  margin: 0 0 28px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 36rem;
}

.hero-desc--note {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 15px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-ctas .btn-primary {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 17px;
  box-shadow: 0 12px 32px rgba(14, 61, 92, 0.3);
}

.hero-ctas .btn-primary:hover {
  box-shadow: 0 14px 36px rgba(14, 61, 92, 0.34);
}

.hero-ctas .btn-secondary {
  min-height: 54px;
  padding: 15px 24px;
  font-weight: 700;
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-micro li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
}

.hero-micro svg {
  flex-shrink: 0;
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-height: 320px;
    order: -1;
    margin: 0 auto;
    width: min(100%, 520px);
  }

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

  .hero-content h1 {
    max-width: none;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-micro {
    justify-content: center;
  }

  .hero-badge {
    margin-inline: auto;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* Glass / cards base */

.glass {
  background: linear-gradient(165deg, var(--surface) 0%, #fafbfc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Trust */

#trust.trust-section {
  padding: 72px 0 88px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.trust-item {
  padding: 24px 22px;
  text-align: left;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.trust-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #0a2a40 100%);
  border-radius: var(--radius);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.stat-item {
  text-align: center;
  padding: 8px 12px;
}

.stat-item strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 6px;
}

.stat-item strong .count-up {
  font: inherit;
}

.stat-item span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }
}

/* Sections general */

section:not(.hero) {
  position: relative;
  padding: 80px 0;
}

.section-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 100%);
  border-block: 1px solid var(--border);
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.034em;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
}

.section-lead {
  margin: 0 auto 40px;
  max-width: 620px;
  text-align: center;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.section-bridge {
  margin: -8px auto 32px;
  max-width: 560px;
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.section-tight-top {
  padding-top: 48px;
}

.section-surface-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, var(--bg) 65%);
}

.section-showcase {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}

.section-reviews-band {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14, 61, 92, 0.04), transparent 70%);
}

/* Driver */

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

.driver-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-img);
  background: var(--surface-2);
  transition:
    box-shadow 0.4s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.driver-photo:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.driver-photo img {
  display: block;
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 58% center;
  filter: var(--img-filter);
  transition: transform 0.65s var(--ease-soft);
}

.driver-photo:hover img {
  transform: scale(1.025);
}

.driver-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.driver-trust {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

.driver-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.driver-copy .driver-line {
  display: block;
  margin-bottom: 0.65em;
}

.driver-copy .driver-line:last-child {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .driver-copy .driver-line-lead {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .driver-split {
    grid-template-columns: 1fr;
  }

  .driver-copy h2,
  .driver-copy p {
    text-align: center;
  }

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

  .driver-photo {
    max-width: 440px;
    margin-inline: auto;
  }
}

/* Grids */

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

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

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

/* Cases cards */

.cases-card {
  padding: 22px 20px;
  text-align: left;
}

.cases-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.case-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.case-ico svg {
  width: 18px;
  height: 18px;
}

.cases-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* Truck photos */

.truck-work-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  width: 100%;
  max-width: min(880px, 100%);
  margin: 0 auto;
  align-items: start;
}

.truck-work-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.truck-work-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: zoom-in;
  text-align: left;
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}

.truck-work-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.truck-work-frame {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-img);
  background: var(--surface-2);
  transition:
    box-shadow 0.4s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.truck-work-shot:hover .truck-work-frame {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.truck-work-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: var(--img-filter);
  transition: transform 0.65s var(--ease-soft);
}

.truck-work-shot:hover .truck-work-frame img {
  transform: scale(1.035);
}

.truck-work-caption {
  margin: 0;
  padding: 10px 12px 0 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: 0.01em;
  border-left: 2px solid rgba(14, 61, 92, 0.22);
  margin-left: 2px;
  max-width: none;
}

/* Lightbox: на весь экран */

.truck-lightbox {
  padding: 0;
  border: none;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  background: transparent;
  box-sizing: border-box;
}

@supports (height: 100dvh) {
  .truck-lightbox {
    height: 100dvh;
    max-height: 100dvh;
  }
}

.truck-lightbox::backdrop {
  background: rgba(12, 17, 29, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.truck-lightbox-inner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: calc(56px + env(safe-area-inset-top, 0px))
    max(20px, env(safe-area-inset-right, 0px))
    calc(28px + env(safe-area-inset-bottom, 0px))
    max(20px, env(safe-area-inset-left, 0px));
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@supports (height: 100dvh) {
  .truck-lightbox-inner {
    min-height: 100dvh;
  }
}

.truck-lightbox-close {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: calc(12px + env(safe-area-inset-right, 0px));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.truck-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.truck-lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.truck-lightbox-img {
  display: block;
  flex-shrink: 1;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

@supports (height: 100dvh) {
  .truck-lightbox-img {
    max-height: calc(100dvh - 140px);
  }
}

.truck-lightbox-caption {
  margin: 0;
  flex-shrink: 0;
  max-width: 42rem;
  font-size: clamp(14px, 2.2vw, 17px);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  text-wrap: balance;
}

.truck-lightbox-caption:empty {
  display: none;
}

@media (max-width: 900px) {
  .truck-work-photos {
    grid-template-columns: 1fr;
    max-width: min(400px, 100%);
  }
}

/* Dimensions */

.dimensions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.dim {
  padding: 22px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.dim:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.dim strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: var(--text);
}

.dim span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* Services */

.service-card {
  padding: 28px 24px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 61, 92, 0.15);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.service-card p {
  margin: 0 0 22px;
  flex: 1;
  font-size: 15px;
  line-height: 1.58;
  color: var(--muted);
}

.service-card .btn-sm {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .service-card .btn-sm {
    align-self: stretch;
    width: 100%;
  }
}

/* Advantages */

#advantages.advantages-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  width: 100%;
  max-width: min(960px, 100%);
  margin: 0 auto;
}

.adv-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 22px 22px 20px;
  text-align: left;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.25s ease;
}

.adv-item:hover {
  border-left-color: var(--accent-hover);
}

.adv-index {
  flex-shrink: 0;
  min-width: 2ch;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.adv-item h3 {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--text);
}

.adv-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
  color: var(--muted);
}

.adv-closer {
  margin: 40px auto 0;
  max-width: 540px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (min-width: 721px) {
  .adv-item--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
}

/* Reviews */

.reviews-kicker {
  margin: -6px auto 28px;
  text-align: center;
  max-width: 520px;
  font-size: 16px;
  color: var(--muted);
}

.reviews-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 28px 40px;
  align-items: start;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.reviews-list-col {
  min-width: 0;
}

.reviews-form-col {
  display: block;
  min-width: 0;
}

.reviews-form-col .review-form-wrap {
  position: sticky;
  top: 88px;
}

.reviews-split .review-form-wrap {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.review-form-wrap {
  margin-top: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-form-card {
  padding: clamp(20px, 3.5vw, 26px) clamp(18px, 3vw, 24px) clamp(24px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface) 0%, #fafbfc 100%);
  box-shadow: var(--shadow-md);
  overflow: visible;
}

.review-form-head {
  margin-bottom: 22px;
  text-align: left;
}

.review-form-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-form-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}

.review-form-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.review-form {
  position: relative;
  text-align: left;
}

.review-form-honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.review-form-honey label,
.review-form-honey input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  margin-bottom: 16px;
}

@media (max-width: 520px) {
  .review-form-row {
    grid-template-columns: 1fr;
  }
}

.review-form-field {
  margin-bottom: 16px;
}

.review-form-rating {
  margin-bottom: 14px;
}

.review-form-rating > .review-form-label--upper {
  margin-top: 0;
  margin-bottom: 10px;
}

.review-form-field label,
.review-form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.review-form-label--upper {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.review-form-opt {
  font-weight: 600;
  color: var(--muted);
}

.review-form-hint {
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
}

.review-form-field input[type="text"],
.review-form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.review-form-field input::placeholder,
.review-form-field textarea::placeholder {
  color: rgba(102, 112, 133, 0.75);
}

.review-form-field input:hover,
.review-form-field textarea:hover {
  border-color: rgba(14, 61, 92, 0.22);
}

.review-form-field input:focus,
.review-form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.review-form-field textarea {
  resize: vertical;
  min-height: 108px;
  max-width: 100%;
}

.review-form-field--message {
  margin-bottom: 14px;
}

.review-form-stars {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.review-form-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  color: var(--muted);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  transition:
    transform 0.2s var(--ease),
    background 0.2s ease,
    border-color 0.2s ease;
}

.review-form-star svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: rgba(12, 17, 29, 0.06);
  stroke: rgba(52, 64, 84, 0.35);
  stroke-width: 1.15;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.review-form-star:hover {
  transform: scale(1.06);
  background: var(--accent-soft);
}

.review-form-star.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.review-form-star.is-active svg {
  fill: var(--accent);
  stroke: var(--accent);
}

.review-form-star:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.review-form-field-error {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #b42318;
}

.review-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.review-form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.review-form-consent-label {
  cursor: default;
  font-weight: 500;
  color: var(--text-secondary);
}

.review-form-consent-label .link-inline {
  cursor: pointer;
  font-weight: 600;
}

.review-form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  padding-bottom: 2px;
}

.review-form-submit {
  width: 100%;
  min-height: 50px;
  gap: 10px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  box-shadow: 0 10px 28px rgba(14, 61, 92, 0.22);
  margin: 0;
}

a.review-form-submit,
button.review-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.review-form-submit:hover {
  box-shadow: 0 12px 32px rgba(14, 61, 92, 0.28);
}

.review-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.review-form-max-ico {
  flex-shrink: 0;
}

.review-form-status {
  margin: 0;
  min-height: 1.35em;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  text-align: center;
}

.review-privacy {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  text-align: left;
}

.review-privacy-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.privacy-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.privacy-inner {
  max-width: 720px;
}

.privacy-back {
  margin: 0 0 20px;
}

.privacy-doc.review-privacy {
  margin: 0;
  padding: 28px 24px;
}

.privacy-doc-title {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.review-privacy-text p {
  margin: 0 0 1em;
}

.review-privacy-text p:last-child {
  margin-bottom: 0;
}

.privacy-doc .review-privacy-text {
  font-size: 15px;
  line-height: 1.62;
}

.review-privacy-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.review-form-status.is-error {
  color: #b42318;
}

.review-form-fallback {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-form-fallback .btn {
  width: 100%;
}

.review-form-fallback-ta {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--surface);
  resize: vertical;
  min-height: 120px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.review-dot {
  opacity: 0.4;
}

.review-city {
  color: var(--text);
}

.review-case {
  color: var(--muted);
  font-weight: 600;
}

.review-case-line {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

.review-card-byline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 0;
}

.review-card-byline .review-city {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
  line-height: 1.2;
}

.review-card-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  color: var(--review-star);
  line-height: 0;
}

.review-card-stars svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  opacity: 1;
}

.card-review .review-meta {
  margin-bottom: 8px;
}

.card-review .review-card-byline + .review-case-line {
  margin-top: 2px;
}

.card-review {
  padding: 26px 22px;
  text-align: left;
}

.quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  font-style: normal;
}

.review-author {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--warm);
}

/* How it works */

.how-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.step-card {
  padding: 24px 20px;
  text-align: left;
  position: relative;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  background: var(--accent);
  color: #fff;
  margin-bottom: 16px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 900px) {
  .how-section .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .how-section .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Final CTA */

#final-cta {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 61, 92, 0.03) 40%, transparent 100%);
}

.final-cta-inner {
  position: relative;
  padding: clamp(44px, 6.5vw, 60px) clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(250, 251, 252, 0.95) 100%),
    var(--surface);
  border: 1px solid rgba(14, 61, 92, 0.1);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  overflow: hidden;
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(14, 61, 92, 0.55) 100%);
  border-radius: var(--radius) 0 0 var(--radius);
  opacity: 0.9;
}

.final-cta-kicker {
  position: relative;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.final-cta-inner h2 {
  position: relative;
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
}

.final-cta-inner > p {
  position: relative;
  margin: 0 auto 30px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.final-cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.final-cta-actions .btn-primary {
  min-height: 54px;
  padding: 15px 26px;
  font-size: 17px;
  box-shadow: 0 12px 32px rgba(14, 61, 92, 0.28);
}

.final-cta-actions .btn-secondary {
  min-height: 54px;
  padding: 15px 22px;
  font-weight: 700;
}

@media (max-width: 540px) {
  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions .btn {
    width: 100%;
  }
}

/* Calculator */

.calc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.calculator-section {
  padding-top: 88px;
  padding-bottom: 88px;
  scroll-margin-top: calc(84px + env(safe-area-inset-top, 0px));
}

#calc-card {
  scroll-margin-top: calc(84px + env(safe-area-inset-top, 0px));
}

.calculator-section .section-head {
  margin-bottom: 40px;
}

.calc-card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 32px) clamp(22px, 3.5vw, 28px);
  border-radius: var(--radius);
  transition:
    box-shadow 0.45s var(--ease-soft),
    border-color 0.45s var(--ease-soft);
}

#calculator.calculator-highlight .calc-card {
  border-color: rgba(14, 61, 92, 0.28);
  box-shadow:
    var(--shadow-md),
    0 0 0 4px rgba(14, 61, 92, 0.1);
  animation: calcHighlight 2.2s var(--ease-soft);
}

@keyframes calcHighlight {
  0% {
    box-shadow:
      var(--shadow-md),
      0 0 0 0 rgba(14, 61, 92, 0.22);
  }
  35% {
    box-shadow:
      var(--shadow-lg),
      0 0 0 6px rgba(14, 61, 92, 0.14);
  }
  100% {
    box-shadow:
      var(--shadow-md),
      0 0 0 4px rgba(14, 61, 92, 0.08);
  }
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.calc-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.calc-autocomplete {
  position: relative;
}

.calc-field input[type="text"] {
  width: 100%;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.calc-field input::placeholder {
  color: rgba(102, 112, 133, 0.75);
}

.calc-field input:hover {
  border-color: rgba(14, 61, 92, 0.22);
}

.calc-field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.calc-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 240px;
  overflow-y: auto;
}

.calc-suggestions[hidden] {
  display: none;
}

.calc-suggestion {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius-xs);
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.calc-suggestion:hover,
.calc-suggestion.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.calc-suggestion-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.calc-submit {
  width: 100%;
  min-height: 54px;
  font-size: 17px;
  box-shadow: 0 10px 28px rgba(14, 61, 92, 0.24);
}

.calc-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.calc-status {
  margin: 0;
  min-height: 1.35em;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.calc-status.is-error {
  color: #b42318;
}

.calc-result {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.calc-result[hidden] {
  display: none;
}

.calc-result-card {
  padding: 22px 20px 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, rgba(14, 61, 92, 0.04) 0%, var(--surface-2) 100%);
  border: 1px solid rgba(14, 61, 92, 0.1);
}

.calc-result-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 14px;
}

.calc-result-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.calc-result-route,
.calc-result-distance {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.calc-result-price-block {
  margin: 20px 0 16px;
  padding: 18px 16px;
  border-radius: var(--radius-xs);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.calc-result-price-block .calc-result-label {
  display: block;
  margin-bottom: 8px;
}

.calc-result-price {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.calc-result-note {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.calc-trust-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.calc-trust-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.45;
}

.calc-trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.calc-result-cta {
  width: 100%;
  min-height: 54px;
  font-size: 17px;
  box-shadow: 0 12px 32px rgba(14, 61, 92, 0.28);
}

@media (max-width: 640px) {
  .calc-fields {
    grid-template-columns: 1fr;
  }

  .calculator-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #calculator.calculator-highlight .calc-card {
    animation: none;
  }
}

/* Contacts */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.contact-box {
  padding: 32px 28px;
  text-align: center;
}

.contact-box .section-title {
  font-size: clamp(24px, 2.8vw, 32px);
  text-align: center;
}

h3.contact-side-title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}

.contact-intro {
  margin: 0 auto 12px;
  max-width: 520px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact-note {
  margin: 0 auto 16px;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone a:hover {
  color: var(--warm);
}

.contact-now {
  margin: 0 auto 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  max-width: 420px;
}

.contact-list {
  display: grid;
  gap: 12px;
  text-align: left;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.contact-actions .btn-primary {
  min-height: 52px;
  padding: 14px 24px;
  font-size: 16px;
  box-shadow: 0 10px 28px rgba(14, 61, 92, 0.24);
}

.contact-actions .btn-secondary {
  min-height: 52px;
  font-weight: 700;
}

.contact-actions-sub {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  font-size: 14px;
  color: var(--muted);
}

.contact-actions-sub a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-actions-sub a:hover {
  color: var(--warm);
}

.contact-actions-sub .dot {
  opacity: 0.35;
}

/* Card generic hover */

.card,
.contact-box {
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.25s ease;
}

.card:hover,
.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  transform: translateY(-6px);
}

/* Reveal animations */

.reveal-up {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.d-1 { transition-delay: 0.06s; }
.d-2 { transition-delay: 0.12s; }
.d-3 { transition-delay: 0.18s; }
.d-4 { transition-delay: 0.24s; }
.d-5 { transition-delay: 0.3s; }

/* Footer */

.footer {
  padding: 0;
  text-align: left;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, #f6f7f9 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 32px;
  padding: 48px 0 36px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo-link {
  align-self: flex-start;
}

.footer-logo-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo-img--footer {
  height: 40px;
  max-width: 220px;
}

.footer-tagline {
  margin: 0;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-phone {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.footer-phone a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone a:hover {
  color: var(--warm);
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.footer-contact-links a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-links a:hover {
  color: var(--warm);
}

.footer-bottom {
  padding: 20px 0 calc(28px + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
  }

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

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
}

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

.footer--simple .footer-simple-inner {
  padding: 44px 0 52px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--muted);
}

/* Sticky mobile CTA */

.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  margin: 0;
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0));
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 28px rgba(12, 17, 29, 0.08);
}

.sticky-cta .btn {
  flex: 1;
  min-height: 48px;
  padding: 12px 12px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0));
  }
}

@media (min-width: 901px) {
  .sticky-cta {
    display: none !important;
  }
}

/* Responsive breakpoints */

@media (max-width: 1100px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .reviews-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .reviews-form-col .review-form-wrap {
    position: static;
  }

  .reviews-split .review-form-wrap {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-3,
  .grid-2,
  .grid-4,
  .dimensions,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  section:not(.hero) {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

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

  .card,
  .contact-box {
    padding: 22px 18px;
  }
}

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

  .reveal-up,
  .reveal-scale,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-visual:hover,
  .driver-photo:hover,
  .truck-work-shot:hover .truck-work-frame {
    transform: none !important;
  }

  .hero-visual:hover img,
  .driver-photo:hover img,
  .truck-work-shot:hover .truck-work-frame img {
    transform: none !important;
  }
}
