/* ============================================
   АвтоВар Логистика — Design System & Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --primary: #d97b2b;
  --primary-light: #e89545;
  --primary-dark: #b86820;
  --accent: #6b7c5e;
  --accent-hover: #566848;
  --accent-light: #f0f4ec;
  --success: #16a34a;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --text-white: #f5f5f5;
  --bg: #ffffff;
  --bg-alt: #f7f6f4;
  --bg-dark: #2e3528;
  --bg-card: #ffffff;
  --border: #e5e2de;
  --border-light: #f0eeeb;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.12), 0 8px 10px -6px rgba(0,0,0,.08);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,.2);
  --transition: .3s ease;
  --max-width: 1200px;
  --header-h: 80px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: url('../img/logo.png') no-repeat center center;
  background-size: contain;
  opacity: .15;
  z-index: 0;
  pointer-events: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--primary-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { color: var(--text-light); line-height: 1.7; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
  color: #fff;
}
.section-dark p {
  color: #94a3b8;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header p {
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}
.section-header .label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(107,124,94,.4);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,124,94,.5);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary-dark);
}
.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: .9rem;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* --- Header --- */
section, .footer, main {
  position: relative;
  z-index: 1;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}
.footer .logo img {
  height: 46px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .92rem;
  color: var(--text);
  transition: all var(--transition);
}
.nav a:hover, .nav a.active {
  background: var(--bg-alt);
  color: var(--primary);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.header-phone svg {
  color: var(--accent);
}
.header-cta {
  flex-shrink: 0;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow-xl);
  padding: 100px 30px 40px;
  transition: right var(--transition);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu-phones {
  margin-top: 24px;
}
.mobile-menu-phones a {
  font-weight: 700;
  color: var(--primary);
  border: none;
  font-size: 1rem;
  padding: 8px 0;
}
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.show { opacity: 1; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #b86820 0%, #d97b2b 50%, #e89545 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
}
.hero .container {
  max-width: 100%;
  padding: 0 40px;
}
.hero-company {
  position: relative;
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 32px;
  padding: 14px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4a2f0c;
  background: linear-gradient(135deg, #ffd24d 0%, #ffb62e 50%, #ffd24d 100%);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  overflow: hidden;
  animation: brandPulse 2.4s ease-in-out infinite;
}
.hero-company::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: brandShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes brandShine {
  0% { left: -60%; }
  55%, 100% { left: 120%; }
}
@keyframes brandPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(0,0,0,.18); }
  50% { box-shadow: 0 8px 28px rgba(255,184,46,.75); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-company { animation: none; }
  .hero-company::after { animation: none; display: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  width: 100%;
}
.hero h1 .accent {
  color: #fff;
  background: rgba(0,0,0,.2);
  padding: 0 8px;
  border-radius: 6px;
}
.hero-text {
  color: rgba(255,255,255,.85);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 100%;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-item h3 {
  color: #fff;
  font-size: 2rem;
}
.hero-stat-item p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}

/* --- Advantages --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.advantage-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--accent);
}
.advantage-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.advantage-card p {
  font-size: .95rem;
}

/* --- Services / Fleet cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.service-card-img .truck-icon {
  font-size: 5rem;
  color: rgba(255,255,255,.25);
}
.service-card-img--video { padding: 0; }
.service-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.service-card-img--video .service-card-badge { z-index: 2; }
.service-card-img--video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,.35) 100%);
}
.service-card:hover .service-card-video { transform: scale(1.04); }
.service-card-video { transition: transform .5s ease; }
.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fde047;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  animation: badgeBounce 3s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.service-card-badge-new {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #16a34a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.spec-tag-accent {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
}
.stat-badge-new {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: #16a34a;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 10px;
  vertical-align: middle;
  text-transform: uppercase;
}
.service-card-body {
  padding: 28px;
}
.service-card-body h3 {
  margin-bottom: 12px;
}
.service-card-body p {
  font-size: .95rem;
  margin-bottom: 16px;
}
.service-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
}

/* --- Mini Calculator --- */
.calc-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255,255,255,.1), transparent 60%);
}
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.calc-info h2 {
  color: #fff;
  margin-bottom: 16px;
}
.calc-info p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.calc-rates {
  display: grid;
  gap: 12px;
}
.calc-rate-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
}
.calc-rate-item .rate-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.calc-rate-item .rate-text {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  line-height: 1.5;
}
/* --- Home Relocation block --- */
.relocation-wrap {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.relocation-wrap::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: .6;
  pointer-events: none;
}
.relocation-text {
  position: relative;
  max-width: 920px;
}
.relocation-text h2 {
  margin: 10px 0 14px;
}
.relocation-text > p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 820px;
}
.relocation-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  margin-bottom: 32px;
}
.relocation-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.relocation-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  padding: 3px;
  background: var(--accent-light);
  border-radius: 6px;
  box-sizing: content-box;
}
.relocation-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}
.relocation-feature span {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.55;
}

.calc-label-highlight {
  display: inline-block;
  background: #fde047;
  color: #1a1a1a !important;
  padding: 4px 14px;
  border-radius: 6px;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  font-size: .85rem !important;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.calc-rate-item .rate-text strong {
  display: inline-block;
  color: #1a1a1a;
  background: #fde047;
  font-weight: 800;
  font-size: 1.1em;
  padding: 2px 10px;
  margin-left: 4px;
  border-radius: 6px;
  letter-spacing: .01em;
}
.calc-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.calc-form-card h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(217,123,43,.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.calc-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  text-align: center;
  display: none;
}
.calc-result.show { display: block; }
.calc-result .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.calc-result .price-note {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
  padding: 30px;
}
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Trust / Reviews --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.trust-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.trust-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #fff;
}
.trust-card h3 { margin-bottom: 10px; }

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, #6b7c5e 0%, #4a5b40 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 60%);
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}
.cta-section p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 30px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-section .btn-outline:hover {
  background: #fff;
  color: var(--accent);
}
.cta-section .btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.cta-section .btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* --- Geography --- */
.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.geo-map {
  background: var(--bg-alt);
  border-radius: var(--radius);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.geo-routes {
  display: grid;
  gap: 14px;
}
.route-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.route-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.route-flag {
  font-size: 2rem;
  flex-shrink: 0;
}
.route-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.route-info p {
  font-size: .85rem;
}

/* --- Fleet Page --- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.fleet-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.fleet-card-img {
  height: 220px;
  background: linear-gradient(135deg, #6b7c5e 0%, #8a9c7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.fleet-card-img--photo { overflow: hidden; }
.fleet-card-img--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.fleet-card-img .vehicle-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}
.fleet-card-body {
  padding: 24px;
}
.fleet-card-body h3 {
  margin-bottom: 12px;
}
.fleet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
}
.fleet-spec-label {
  color: var(--text-light);
}
.fleet-spec-value {
  font-weight: 600;
  color: var(--text);
}
.fleet-loading {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover {
  background: var(--bg-alt);
}
.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-list {
  display: grid;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  color: var(--text-light);
  font-size: .95rem;
}
.contact-detail a:hover {
  color: var(--accent);
}
.contact-form-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  margin-bottom: 24px;
  text-align: center;
}

/* --- About page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.2);
}
.about-img-placeholder--logo {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 48px;
}
.about-img-placeholder--logo img {
  max-width: 100%;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.about-text h2 {
  margin-bottom: 16px;
}
.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-features {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-feature .check {
  width: 28px;
  height: 28px;
  background: #dcfce7;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  font-weight: 700;
}
.about-feature span {
  font-weight: 500;
}

/* --- Page Header (for inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 130px 0 60px;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  margin-bottom: 10px;
}
.page-header p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .9rem;
}
.breadcrumbs a {
  color: rgba(255,255,255,.6);
}
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255,255,255,.4); }
.breadcrumbs .current { color: var(--accent); }

/* --- Footer --- */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-about .logo {
  margin-bottom: 16px;
}
.footer-about p {
  color: #94a3b8;
  font-size: .9rem;
  line-height: 1.7;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-links a {
  display: block;
  color: #94a3b8;
  font-size: .9rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: .9rem;
  margin-bottom: 12px;
}
.footer-contact-item a { color: #94a3b8; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .85rem;
  color: #64748b;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  color: #fff;
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.floating-btn:hover { transform: scale(1.1); }
.floating-whatsapp { background: #25d366; color: #fff; }
.floating-telegram { background: #0088cc; color: #fff; }
.floating-phone { background: var(--accent); color: #fff; }

/* --- Callback Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.show {
  display: flex;
}
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 460px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-light);
  transition: all var(--transition);
}
.modal-close:hover {
  background: var(--bg-alt);
  color: var(--text);
}
.modal h3 {
  margin-bottom: 8px;
  text-align: center;
}
.modal p {
  text-align: center;
  margin-bottom: 24px;
  font-size: .95rem;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- SVG icons inside generic containers --- */
.advantage-icon svg,
.trust-icon svg,
.rate-icon svg {
  width: 28px;
  height: 28px;
}
.service-card-img .truck-svg {
  width: 90px;
  height: 90px;
  color: rgba(255,255,255,.4);
  stroke-width: 1.2;
}

/* --- WhatsApp button --- */
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-wa:hover {
  background: #1ebd5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  color: #fff;
}
.btn-wa svg { flex-shrink: 0; }

/* --- How it works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.step-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1;
}
.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.step-card p {
  font-size: .9rem;
  line-height: 1.5;
  margin: 0;
}

/* --- Directions table --- */
.directions-table-wrap {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.directions-table {
  width: 100%;
  border-collapse: collapse;
}
.directions-table thead th {
  text-align: left;
  padding: 18px 24px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 2px solid var(--border);
  background: var(--bg-alt);
}
.directions-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: .98rem;
  color: var(--text);
  vertical-align: middle;
}
.directions-table tbody tr:last-child td { border-bottom: none; }
.directions-table tbody tr:hover { background: var(--accent-light); }
.directions-table td:nth-child(4) strong {
  color: var(--accent);
  font-size: 1.05rem;
}
.directions-table td:last-child { text-align: right; }
.directions-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}
.directions-note p { margin: 0; color: var(--text); }
.directions-note strong { color: var(--accent); }
.directions-note a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px dashed var(--accent);
}

/* --- Reviews / Testimonials --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  display: flex;
  gap: 2px;
}
.review-text {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin: 0;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 2px;
}
.review-author span {
  font-size: .82rem;
  color: var(--text-light);
}

/* --- Loyalty --- */
.loyalty-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.loyalty-text h2 { margin: 12px 0 16px; }
.loyalty-text > p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.loyalty-bullets {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.loyalty-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: .98rem;
}
.loyalty-bullet svg {
  color: var(--accent);
  flex-shrink: 0;
}
.loyalty-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.loyalty-percent {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.loyalty-percent span {
  font-size: 2.5rem;
  vertical-align: top;
  margin-left: 4px;
}
.loyalty-card-label {
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  font-weight: 600;
}
.loyalty-steps {
  display: grid;
  gap: 8px;
  text-align: left;
}
.loyalty-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}
.loyalty-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.loyalty-step.done { color: rgba(255,255,255,.95); }
.loyalty-step.done span { background: rgba(255,255,255,.35); }
.loyalty-step.active {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.loyalty-step.active span {
  background: var(--accent);
  color: #fff;
}

/* --- Legal text (privacy) --- */
.legal-text h2 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--primary-dark);
}
.legal-text p {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.legal-text ul {
  margin: 0 0 18px 24px;
  list-style: disc;
}
.legal-text ul li {
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.65;
}
.legal-text a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px dashed var(--accent);
}

/* --- Form consent --- */
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 8px 0 18px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-consent a {
  color: var(--accent);
  text-decoration: underline;
}

/* --- Mobile sticky CTA bar (bottom) --- */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
  }
  .mobile-cta-bar .mcta-wa { background: #25D366; }
  .mobile-cta-bar .mcta-call { background: var(--accent); }
  .mobile-cta-bar svg { flex-shrink: 0; }

  /* Hide floating-cta on mobile when sticky bar present */
  .floating-cta { display: none; }
  /* Body bottom padding for sticky bar */
  body { padding-bottom: 60px; }
  .footer { padding-bottom: 80px; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }

  .calc-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .geo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .loyalty-wrap { grid-template-columns: 1fr; gap: 40px; }
  .relocation-wrap { padding: 36px 28px; }
  .relocation-features { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .hero { min-height: auto; padding: 90px 0 50px; }
  .hero .container { padding: 0 20px; }
  .hero h1 { font-size: clamp(1.35rem, 5vw, 1.85rem); line-height: 1.2; }
  .hero-text { font-size: 1rem; line-height: 1.6; margin-bottom: 24px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-item { padding: 20px 10px; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .directions-note { padding: 16px 18px; font-size: .9rem; }
  .directions-table thead { display: none; }
  .directions-table tbody td {
    display: block;
    padding: 6px 18px;
    border: none;
  }
  .directions-table tbody tr {
    display: block;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
  }
  .directions-table td:last-child { text-align: left; padding-top: 10px; }

  /* Loyalty */
  .loyalty-percent { font-size: 4rem; }
  .loyalty-percent span { font-size: 1.8rem; }
  .loyalty-card { padding: 28px 22px; }

  /* Relocation */
  .relocation-wrap { padding: 32px 22px; border-radius: var(--radius); }
  .relocation-text h2 { font-size: 1.4rem; }
  .relocation-text > p { font-size: 1rem; margin-bottom: 24px; }
  .relocation-feature strong { font-size: .95rem; }
  .relocation-feature span { font-size: .85rem; }

  /* Service card badges */
  .service-card-badge { padding: 6px 12px; font-size: .8rem; }
  .service-card-badge-new { padding: 5px 10px; font-size: .7rem; }

  /* Calculator section */
  .calc-section { padding: 50px 0; }
  .calc-form-card { padding: 24px 20px; }
  .calc-info h2 { font-size: 1.5rem; }

  /* Sections headers */
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: .95rem; }
  .section-header { margin-bottom: 32px; }

  /* Header */
  .header { padding: 12px 0; }
  .header.scrolled { padding: 8px 0; }
  .logo img { max-height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 80px 0 40px; }
  .hero h1 { font-size: 1.3rem; }
  .hero-text { font-size: .95rem; }
  .hero-badge { font-size: .75rem; padding: 6px 12px; }
  .hero-stats { flex-direction: column; gap: 14px; border: none; padding-top: 0; margin-top: 24px; }
  .hero-stat-item { text-align: left; display: flex; align-items: baseline; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 12px; }
  .hero-stat-item:last-child { border-bottom: none; }
  .hero-stat-item h3 { font-size: 1.4rem; margin: 0; min-width: 80px; }
  .hero-stat-item p { font-size: .85rem; margin: 0; }
  .advantages-grid { grid-template-columns: 1fr; gap: 14px; }
  .advantage-card { padding: 22px 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .reviews-grid { gap: 16px; }
  .review-card { padding: 22px 20px; }

  /* Service cards */
  .service-card-img { height: 160px; }
  .service-card-img .truck-svg { width: 72px; height: 72px; }
  .service-card-body { padding: 22px 20px; }
  .service-card-body h3 { font-size: 1.15rem; }

  /* CTAs */
  .cta-section h2 { font-size: 1.4rem; }
  .cta-section p { font-size: .95rem; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }

  /* Calc rate items */
  .calc-rate-item { padding: 12px 14px; gap: 10px; }
  .calc-rate-item .rate-text { font-size: .85rem; }
  .calc-rate-item .rate-icon { width: 36px; height: 36px; }

  /* Step cards */
  .step-card { padding: 22px 20px; }
  .step-num { font-size: 1.6rem; }

  /* Loyalty steps */
  .loyalty-card { padding: 24px 18px; }
  .loyalty-step { padding: 8px 12px; font-size: .85rem; }

  /* Mini calc form */
  .calc-info h2 { font-size: 1.35rem; line-height: 1.3; }
  .calc-info > p { font-size: .95rem; }

  /* Page header */
  .page-header h1 { font-size: 1.7rem; }
  .page-header { padding: 80px 0 30px; }
}
