/* ============================================================
   VIDANTS LOGISTICS LLC — Brand Styles
   Colors  : Navy #0D1B2A · Orange #F26B1D
   Fonts   : Bebas Neue (headings) · Barlow (body) · Barlow Condensed (UI)
   ============================================================ */

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

:root {
  --navy:         #0D1B2A;
  --navy-mid:     #122136;
  --navy-light:   #1A3050;
  --orange:       #F26B1D;
  --orange-light: #FF8040;
  --white:        #F5F7FA;
  --gray:         #8A9BB0;
  --gray-light:   #C8D4E0;
  --transition:   .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.accent { color: var(--orange); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
}
.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 14px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--orange);
  border: none;
  padding: 18px 44px;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(242,107,29,.35);
}
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  background: transparent;
  border: 1px solid rgba(200,212,224,.25);
  padding: 17px 36px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover { color: var(--white); border-color: rgba(200,212,224,.6); }
.btn-dark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 20px 52px;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-submit { width: 100%; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,27,42,.98) 0%, rgba(13,27,42,0) 100%);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(13,27,42,.97);
  border-bottom: 1px solid rgba(242,107,29,.15);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-hex { width: 42px; height: 42px; flex-shrink: 0; }
.nav-hex svg { width: 100%; height: 100%; }
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.nav-brand span { color: var(--orange); }
.nav-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--orange);
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(242,107,29,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(26,48,80,.8) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0a1520 100%);
}
.hex-grid {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 580px; height: 580px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp .8s ease .2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--orange);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp .9s ease .4s forwards;
}
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3.5vw, 42px);
  letter-spacing: 6px;
  color: var(--gray);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .9s ease .55s forwards;
}
.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp .9s ease .7s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s ease .85s forwards;
}
/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(18,33,54,.92);
  border-top: 1px solid rgba(242,107,29,.2);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}
.stat-item {
  padding: 28px 56px;
  text-align: center;
  border-right: 1px solid rgba(242,107,29,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* ── SERVICES ────────────────────────────────────────────── */
#services { padding: 120px 60px; }
.section-header { margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--navy-mid);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .3s;
  border-top: 3px solid transparent;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,107,29,.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.service-card:hover { background: var(--navy-light); border-top-color: var(--orange); }
.service-card:hover::after { opacity: 1; }
.service-num {
  position: absolute;
  top: 32px; right: 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(242,107,29,.07);
  line-height: 1;
  transition: color .3s;
  pointer-events: none;
}
.service-card:hover .service-num { color: rgba(242,107,29,.14); }
.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--orange);
}
.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}
.service-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

/* ── WHY US ──────────────────────────────────────────────── */
#why {
  padding: 120px 60px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  left: -200px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,107,29,.05) 0%, transparent 70%);
  pointer-events: none;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
/* Hex visual */
.why-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-hex-main {
  position: absolute;
  width: 260px; height: 260px;
}
.why-hex-ring {
  position: absolute;
  width: 380px; height: 380px;
  border: 1px solid rgba(242,107,29,.15);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.why-hex-ring-2 {
  width: 460px; height: 460px;
  border: 1px dashed rgba(242,107,29,.08);
  animation-duration: 50s;
  animation-direction: reverse;
}
.why-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(242,107,29,.6);
}
/* Features */
.why-text .section-header { margin-bottom: 48px; }
.why-features { display: flex; flex-direction: column; gap: 36px; }
.feature-row { display: flex; gap: 24px; align-items: flex-start; }
.feature-icon-wrap {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(242,107,29,.1);
  border: 1px solid rgba(242,107,29,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--orange);
  transition: background .3s;
}
.feature-row:hover .feature-icon-wrap { background: rgba(242,107,29,.2); }
.feature-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
#process {
  padding: 120px 60px;
  background: var(--navy);
}
.container { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--navy-mid);
  border: 1px solid rgba(242,107,29,.08);
  border-top: 3px solid var(--orange);
  padding: 40px 28px 36px;
  text-align: center;
  transition: background .3s, transform .3s;
}
.process-step:hover { background: var(--navy-light); transform: translateY(-4px); }
.process-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(242,107,29,.2);
  line-height: 1;
  margin-bottom: 12px;
}
.process-icon {
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.process-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
}
.process-arrow {
  font-size: 1.5rem;
  color: rgba(242,107,29,.3);
  align-self: center;
  flex-shrink: 0;
  padding: 0 4px;
  margin-top: -16px;
}

/* ── CTA BAND ────────────────────────────────────────────── */
#cta {
  padding: 100px 60px;
  background: var(--orange);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z' fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 2px;
  color: var(--navy);
  line-height: .95;
  margin-bottom: 20px;
  position: relative;
}
.cta-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(13,27,42,.75);
  margin-bottom: 48px;
  position: relative;
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  padding: 100px 60px;
  background: var(--navy-mid);
}
.contact-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin: 16px 0 56px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--navy-light);
  padding: 36px 24px;
  text-align: center;
  transition: background .3s;
}
.contact-card:hover { background: rgba(26,48,80,.8); }
.contact-card-icon {
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.contact-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-card-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
}
/* Quote form */
.quote-form {
  background: var(--navy);
  border: 1px solid rgba(242,107,29,.12);
  padding: 48px 44px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-mid);
  border: 1px solid rgba(200,212,224,.15);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-user-select: text;
  user-select: text;
}

/* Mobile touch optimization */
@supports (padding: max(0px)) {
  .btn-primary,
  .btn-secondary,
  .btn-dark,
  .nav-cta,
  .hamburger,
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 44px;
    min-width: 44px;
  }
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(242,107,29,.15);
}
.form-note {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-top: -4px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 64px 60px 40px;
  background: #080f17;
  border-top: 1px solid rgba(242,107,29,.1);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}
.footer-brand-wrap { max-width: 320px; }
.footer-logo { margin-bottom: 12px; }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.footer-blurb {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
}
.footer-links { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-copy span { color: var(--orange); }
.footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(242,107,29,.6);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet & Large Mobile (1100px and down) */
@media (max-width: 1100px) {
  :root { font-size: 15px; }
  
  .why-layout { grid-template-columns: 1fr; gap: 60px; }
  .why-visual { height: 320px; }
  
  nav { padding: 18px 32px; }
  
  .hero-title { font-size: clamp(52px, 8vw, 100px); }
  
  .section-title { font-size: clamp(40px, 5.5vw, 70px); }
}

/* Tablet (1024px and down) */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-brand { font-size: 18px; }

  #hero { padding: 100px 24px 80px; }
  #services { padding: 80px 24px; }
  #why { padding: 80px 24px; }
  #process { padding: 80px 24px; }
  #cta { padding: 80px 24px; }
  #contact { padding: 80px 24px; }
  footer { padding: 48px 24px 32px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .service-card { padding: 40px 24px; }
  .service-num { font-size: 52px; }
  
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 40px; }
  
  .contact-cards { grid-template-columns: repeat(2, 1fr); gap: 1px; }
}

/* Small Tablet & Large Mobile (768px and down) */
@media (max-width: 768px) {
  html { font-size: 15px; }
  
  nav { padding: 14px 16px; }
  .nav-logo { gap: 10px; }
  .nav-hex { width: 36px; height: 36px; }
  .nav-brand { font-size: 16px; }
  .nav-cta { padding: 10px 20px; font-size: 12px; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(13,27,42,.98);
    padding: 24px;
    border-bottom: 1px solid rgba(242,107,29,.15);
    gap: 16px;
    backdrop-filter: blur(12px);
  }
  .nav-links.open a { font-size: 14px; }

  #hero { padding: 80px 16px 120px; }
  .hero-title { font-size: clamp(42px, 7vw, 80px); }
  .hero-tagline { font-size: clamp(18px, 3vw, 32px); }
  .hero-desc { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn-primary { padding: 14px 28px; font-size: 13px; }
  .hero-actions .btn-secondary { padding: 14px 24px; font-size: 13px; }
  
  .hex-grid { display: none; }
  
  .hero-stats { flex-direction: column; }
  .stat-item { padding: 16px; border-right: none; border-bottom: 1px solid rgba(242,107,29,.1); }
  .stat-item:last-child { border-bottom: none; }
  
  #services { padding: 60px 16px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(32px, 5vw, 60px); }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card { padding: 32px 20px; }
  .service-num { font-size: 44px; top: 16px; right: 16px; }
  .service-icon { width: 44px; height: 44px; }
  .service-name { font-size: 22px; }
  .service-desc { font-size: 14px; }
  
  #why { padding: 60px 16px; }
  #why::before { display: none; }
  .why-visual { height: 240px; margin-bottom: 32px; }
  .why-hex-ring { width: 280px; height: 280px; }
  .why-hex-ring-2 { width: 340px; height: 340px; }
  .why-hex-main { width: 180px; height: 180px; }
  .feature-row { gap: 16px; }
  .feature-icon-wrap { width: 44px; height: 44px; }
  .feature-text h4 { font-size: 18px; }
  .feature-text p { font-size: 13px; }
  
  #process { padding: 60px 16px; }
  .process-steps { 
    flex-direction: column; 
    align-items: stretch;
    gap: 0;
  }
  .process-arrow { 
    transform: rotate(90deg); 
    margin: 0;
    padding: 0;
    order: 5;
  }
  .process-step { 
    max-width: 100%; 
    width: 100%;
    text-align: center;
    border-bottom: 3px solid var(--orange);
    border-top: none;
  }
  .process-step:last-child { border-bottom: none; }
  .process-step h3 { font-size: 20px; }
  
  #cta { padding: 60px 16px; }
  .cta-title { font-size: clamp(36px, 6vw, 72px); margin-bottom: 16px; }
  .cta-sub { font-size: 16px; margin-bottom: 32px; }
  .btn-dark { padding: 16px 36px; font-size: 13px; }
  
  #contact { padding: 60px 16px; }
  .contact-cards { grid-template-columns: 1fr; gap: 1px; }
  .contact-card { padding: 28px 16px; }
  .contact-card-title { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .quote-form { padding: 24px 16px; gap: 16px; }
  .form-group label { font-size: 11px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 14px; padding: 12px 12px; }
  .btn-primary { width: 100%; }
  .form-note { font-size: 12px; }
  
  footer { padding: 40px 16px 24px; }
  .footer-top { gap: 24px; }
  .footer-brand-wrap { max-width: 100%; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-col { gap: 8px; }
  .footer-col h5 { font-size: 11px; }
  .footer-col a { font-size: 13px; }
  .footer-copy { font-size: 12px; }
}

/* Mobile (640px and down) */
@media (max-width: 640px) {
  html { font-size: 14px; }
  
  nav { padding: 12px 12px; }
  .nav-hex { width: 32px; height: 32px; }
  .nav-brand { font-size: 14px; }
  .nav-cta { padding: 8px 16px; font-size: 11px; }
  
  .nav-links.open { top: 56px; padding: 16px; gap: 12px; }
  
  #hero { padding: 60px 12px 140px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 16px; }
  .hero-eyebrow::before { width: 24px; }
  .hero-title { font-size: clamp(32px, 6vw, 60px); margin-bottom: 12px; }
  .hero-tagline { font-size: clamp(14px, 2.5vw, 24px); margin-bottom: 20px; }
  .hero-desc { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
  .hero-actions { 
    gap: 8px; 
    flex-direction: column; 
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { 
    width: 100%; 
    text-align: center;
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .stat-item { padding: 12px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 10px; }
  
  #services { padding: 40px 12px; }
  .section-label { font-size: 11px; margin-bottom: 12px; }
  .section-label::before { width: 16px; }
  .section-title { font-size: clamp(28px, 4vw, 48px); }
  .section-desc { font-size: 14px; margin-top: 12px; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card { padding: 24px 16px; }
  .service-num { font-size: 36px; top: 12px; right: 12px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 16px; }
  .service-name { font-size: 18px; margin-bottom: 10px; }
  .service-desc { font-size: 13px; line-height: 1.6; }
  
  #why { padding: 40px 12px; }
  .why-visual { height: 200px; margin-bottom: 24px; }
  .why-hex-ring { width: 240px; height: 240px; }
  .why-hex-ring-2 { width: 290px; height: 290px; }
  .why-hex-main { width: 140px; height: 140px; }
  .why-text .section-header { margin-bottom: 32px; }
  .why-features { gap: 24px; }
  .feature-row { gap: 12px; }
  .feature-icon-wrap { width: 40px; height: 40px; }
  .feature-text h4 { font-size: 16px; margin-bottom: 4px; }
  .feature-text p { font-size: 12px; line-height: 1.5; }
  
  #process { padding: 40px 12px; }
  .process-steps { gap: 0; }
  .process-step { border-bottom: 3px solid var(--orange); }
  .process-step:last-child { border-bottom: none; }
  .process-num { font-size: 40px; margin-bottom: 8px; }
  .process-step h3 { font-size: 18px; margin-bottom: 8px; }
  .process-step p { font-size: 12px; }
  
  #cta { padding: 40px 12px; }
  .cta-title { font-size: clamp(28px, 5vw, 52px); margin-bottom: 12px; }
  .cta-sub { font-size: 14px; margin-bottom: 24px; }
  .btn-dark { padding: 14px 28px; font-size: 12px; width: 100%; }
  
  #contact { padding: 40px 12px; }
  .contact-wrap { max-width: 100%; }
  .contact-intro { font-size: 14px; line-height: 1.6; margin: 12px 0 32px; }
  .contact-cards { grid-template-columns: 1fr; gap: 1px; margin-bottom: 32px; }
  .contact-card { padding: 20px 12px; }
  .contact-card-icon { width: 24px; height: 24px; margin-bottom: 10px; }
  .contact-card-title { font-size: 14px; }
  .contact-card-sub { font-size: 12px; }
  .quote-form { padding: 20px 12px; gap: 12px; }
  .form-row { gap: 12px; }
  .form-group { gap: 6px; }
  .form-group label { font-size: 10px; }
  .form-group input,
  .form-group select,
  .form-group textarea { 
    font-size: 13px; 
    padding: 10px;
  }
  .form-group textarea { min-height: 100px; }
  .btn-primary { padding: 12px 16px; font-size: 12px; }
  .form-note { font-size: 11px; }
  
  footer { padding: 32px 12px 20px; }
  .footer-brand-wrap { max-width: 100%; }
  .footer-logo { margin-bottom: 10px; }
  .footer-tagline { font-size: 10px; margin-bottom: 10px; }
  .footer-blurb { font-size: 13px; }
  .footer-links { flex-direction: column; gap: 20px; }
  .footer-col { gap: 6px; }
  .footer-col h5 { font-size: 10px; }
  .footer-col a { font-size: 12px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-copy { text-align: center; font-size: 11px; }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
  html { font-size: 13px; }
  
  nav { padding: 10px; }
  .nav-logo { flex-direction: row; }
  .nav-hex { width: 28px; height: 28px; }
  .nav-brand { font-size: 12px; letter-spacing: 1px; }
  .nav-sub { font-size: 8px; }
  .nav-cta { padding: 8px 12px; font-size: 10px; letter-spacing: 1px; }
  
  .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }
  .hero-title { font-size: clamp(28px, 5vw, 48px); }
  .hero-tagline { font-size: clamp(12px, 2vw, 18px); letter-spacing: 3px; }
  .hero-desc { font-size: 13px; }
  .hero-actions { gap: 6px; }
  
  .stat-num { font-size: 20px; }
  
  .section-title { font-size: clamp(24px, 3.5vw, 40px); }
  .service-num { font-size: 28px; }
  .service-card { padding: 20px 12px; }
  
  .feature-icon-wrap { width: 36px; height: 36px; }
  .feature-text h4 { font-size: 14px; }
  .feature-text p { font-size: 11px; }
  
  .process-num { font-size: 32px; }
  
  .cta-title { font-size: clamp(24px, 4vw, 40px); }
  
  .contact-cards { margin-bottom: 24px; }
  .quote-form { padding: 16px; gap: 12px; }
  
  footer { padding: 24px 12px 16px; }
}
