/* ===== Variables ===== */
:root {
  --black:       #070d18;
  --navy:        #0a1628;
  --navy-mid:    #0f2040;
  --orange:      #f95c00;
  --orange-hover:#e05000;
  --orange-light:#fff3ee;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --text:        #111827;
  --star:        #fbbf24;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:   0 10px 40px rgba(0,0,0,0.13);
  --shadow-orange: 0 8px 32px rgba(249,92,0,0.28);
  --t:           0.22s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 88px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: var(--orange-light);
  border-radius: 100px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-white { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(249,92,0,0.38); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--t);
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-toggle {
  padding: 6px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.06em;
  transition: all var(--t);
}
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 28px 24px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border: none; margin-top: 12px; justify-content: center; }

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(circle at 70% 50%, rgba(249,92,0,0.12) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,92,0,0.15);
  border: 1px solid rgba(249,92,0,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #ffb085;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title .accent {
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.hero-chip-star { color: var(--star); font-size: 12px; }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-truck-svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: truckFloat 4s ease-in-out infinite;
}

@keyframes truckFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--white);
  padding: 0 0 56px;
}

.trust-strip-inner {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-chip-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,92,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-chip-text strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.trust-chip-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.trust-strip-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--off-white);
  padding: 88px 0;
}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 56px;
}

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
  opacity: 0.5;
}

.hiw-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: all var(--t);
}
.hiw-step:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.hiw-ghost {
  position: absolute;
  top: -16px;
  right: -8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 110px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hiw-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hiw-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hiw-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== Services ===== */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.service-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--orange);
  transition: width var(--t);
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { width: 100%; }

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--t);
}
.service-card-link:hover { gap: 10px; }

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--orange);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(0,0,0,0.04) 30px,
    rgba(0,0,0,0.04) 31px
  );
  padding: 60px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-bar-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-bar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.stat-bar-val {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.stat-bar-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Recent Moves ===== */
.moves-section { background: var(--off-white); }

.moves-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.carousel-controls { display: flex; gap: 8px; }

.carousel-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy);
  transition: all var(--t);
  font-weight: 700;
}
.carousel-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.moves-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.moves-carousel::-webkit-scrollbar { display: none; }

.move-card {
  flex: 0 0 264px;
  scroll-snap-align: start;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px;
  transition: all var(--t);
}
.move-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }

.move-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.move-city { font-weight: 800; font-size: 15px; color: var(--navy); }
.move-arrow { color: var(--orange); font-size: 18px; flex-shrink: 0; font-weight: 900; }
.move-type { font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.move-stars { color: var(--star); font-size: 13px; letter-spacing: 1px; }
.move-date { font-size: 11px; color: var(--gray-400); margin-top: 6px; }

/* ===== Testimonials ===== */
.testimonials-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 400px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-section .section-label { background: rgba(249,92,0,0.2); color: #ffb085; }
.testimonials-section .section-title { color: var(--white); }

.featured-review {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin: 40px 0 32px;
  position: relative;
}

.featured-review-stars { color: var(--star); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }

.featured-review-text {
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
}

.featured-review-author {
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
}
.featured-review-meta { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
  transition: all var(--t);
}
.review-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); }

.review-stars { color: var(--star); font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 14px; }
.review-author { font-weight: 700; font-size: 13px; color: var(--white); }
.review-date { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ===== Partners ===== */
.partners-section { background: var(--white); padding: 52px 0; }

.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--gray-200);
  transition: color var(--t);
  letter-spacing: -0.04em;
}
.partner-logo:hover { color: var(--navy); }

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }

.faq-list {
  max-width: 780px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--orange); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  transition: color var(--t);
}
.faq-question:hover { color: var(--orange); }

.faq-chevron {
  font-size: 18px;
  color: var(--gray-400);
  transition: transform var(--t), color var(--t);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 320px; }

.faq-answer-inner {
  padding: 16px 24px 22px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,92,0,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(249,92,0,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner .section-title { color: var(--white); margin-bottom: 12px; }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto 36px; }
.cta-banner .btn-primary { font-size: 16px; padding: 16px 40px; }

/* ===== Footer ===== */
.footer { background: var(--black); padding: 64px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-brand-mark {
  width: 34px;
  height: 34px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  align-items: flex-start;
}
.footer-contact-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--orange);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text { font-size: 12px; color: rgba(255,255,255,0.25); }

.footer-socials { display: flex; gap: 10px; }

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: all var(--t);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: rgba(249,92,0,0.1); }

/* ===== Page Header ===== */
.page-header {
  background: var(--navy);
  background-image: radial-gradient(circle at 80% 50%, rgba(249,92,0,0.1) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-header-content { position: relative; z-index: 1; }
.page-header .section-label { background: rgba(249,92,0,0.18); color: #ffb085; }
.page-header .section-title { color: var(--white); }
.page-header .section-subtitle { color: rgba(255,255,255,0.65); }

/* ===== Services Page ===== */
.services-detail { background: var(--white); }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-detail-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 4px;
  background: var(--orange);
  transition: width var(--t);
}
.service-detail-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-detail-card:hover::before { width: 100%; }

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-detail-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--t);
}
.service-detail-link:hover { gap: 10px; }

/* ===== About Page ===== */
.about-story { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(249,92,0,0.2) 0%, transparent 70%);
}

.about-visual-truck { font-size: 80px; position: relative; z-index: 1; }
.about-visual-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.about-text p { font-size: 15.5px; color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; }

.stats-section { background: var(--off-white); padding: 72px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  border: 2px solid var(--gray-200);
  transition: all var(--t);
}
.stat-item:hover { border-color: var(--orange); transform: translateY(-3px); }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label { font-weight: 800; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.stat-desc { font-size: 13px; color: var(--gray-400); }

.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.team-card {
  text-align: center;
  padding: 36px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--t);
}
.team-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 18px;
  border: 3px solid var(--orange);
}

.team-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.team-bio { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

.values-section { background: var(--navy); padding: 88px 0; }
.values-section .section-title { color: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--t);
  border-top: 4px solid var(--orange);
}
.value-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.value-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); margin-bottom: 12px; }
.value-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== Contact Page ===== */
.contact-section { background: var(--white); padding: 0 0 88px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  margin-top: 52px;
}

.contact-info-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.contact-info-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label { font-size: 11px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-item-value { font-size: 15px; color: var(--navy); font-weight: 600; }
.contact-item-sub { font-size: 12.5px; color: var(--gray-500); }

.contact-hours {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 28px;
  border: 2px solid var(--gray-200);
}

.contact-hours-title { font-weight: 800; font-size: 13px; color: var(--navy); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-hours-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-500); padding: 6px 0; }
.contact-hours-row:not(:last-child) { border-bottom: 1px solid var(--gray-200); }

.form-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px;
  border: 2px solid var(--gray-200);
}

.form-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.form-label span { color: var(--orange); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }

.form-submit-row { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--gray-400); }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14.5px;
  color: #166534;
  font-weight: 600;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 16px; }
  .hiw-connector { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 72px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .trust-strip-inner { flex-direction: column; align-items: flex-start; }
  .trust-strip-divider { display: none; }

  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item:nth-child(2)::after { display: none; }

  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 52px auto 0; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .moves-header { flex-direction: column; align-items: flex-start; }
  .featured-review { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-ctas .btn-lg { width: 100%; justify-content: center; }
  .partners-grid { gap: 28px; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar-item::after { display: none; }
}
