/* ===================================================================
   DESIGN SYSTEM & VARIABLES
   =================================================================== */
:root {
  --cream-1: #f9f7f7;        /* primary section background */
  --cream-2: #fbfafa;        /* secondary section background */
  --header-glass: rgba(244, 243, 243, 0.82);
  --dark: #0d0e12;           /* dark section background */
  --accent: #ff4777;         /* buttons, highlights */
  --border: #dddddd;         /* card borders */
  --text: #000000;           /* pure black body text */
  --marquee-border: #e2d9c4;

  --max-width: 1340px;
  --font-family: 'Poppins', sans-serif;
}

/* ===================================================================
   RESET & BASE STYLES
   =================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--cream-1);
  color: var(--text);
}

body {
  font-family: var(--font-family);
  font-weight: 300;
  color: #000000;
  background-color: var(--cream-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Apply Poppins to every element, no fallback family swaps */
button, input, select, textarea, a, p, span, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #000000;
  line-height: 1.2;
}

p {
  font-weight: 300;
  color: #000000;
}

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

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  display: block;
}

/* Eyebrows & Badges */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #555555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--accent);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 60px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  border: 2px solid #000000;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  line-height: 1.2;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Primary (filled) */
.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-primary:hover {
  background-color: transparent;
  color: #000000;
}

/* Secondary (outline) */
.btn-secondary {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Dark outline variant for dark CTA band */
.btn-dark-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-dark-outline:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* ===================================================================
   HEADER (Sticky Glass Nav)
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 100;
  background: var(--header-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Lockup */
.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}

.logo-main {
  font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #013b27;
  line-height: 0.95;
}

.logo-sub {
  font-family: var(--font-family);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #013b27;
  margin-top: 4px;
  padding-left: 0.42em; /* offset letter-spacing on last char */
  text-align: center;
}

.footer-logo .logo-main {
  color: #ffffff;
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.9);
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
}

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

.header-cta-wrapper {
  display: flex;
  align-items: center;
}

/* Hamburger Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
}

/* ===================================================================
   MOBILE FULL-SCREEN OVERLAY MENU
   =================================================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--cream-1);
  z-index: 150;
  display: none;
  flex-direction: column;
  padding: 24px 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  margin-bottom: 40px;
}

.mobile-close-btn {
  background: transparent;
  border: none;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  color: #000000;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-cta {
  margin-top: 20px;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 20%, #fdf6ef 30%, #ffdf9e 60%, #ff9d6b 100%);
  padding-top: 130px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto 36px auto;
}

.hero-eyebrow {
  margin-bottom: 18px;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 6px 14px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  color: #000000;
}

.hero-headline {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #000000;
}

.hero-subhead {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.68;
  margin-bottom: 30px;
  color: #000000;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================================
   HERO CARD CONVEYOR ("vma-fan" effect) — Stretched Cinematic Stage
   =================================================================== */
.conveyor-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  height: 560px;
  margin-top: 24px;
  overflow: hidden;
  user-select: none;
}

.conveyor-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.conveyor-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 440px;
  height: 390px;
  transform-origin: bottom center;
  overflow: hidden;
  background-color: #0e1117;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  user-select: none;
  border-radius: 16px 16px 0 0;
  will-change: transform, z-index;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.conveyor-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background-color: rgba(13, 14, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.card-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 18px 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.94) 100%);
  display: flex;
  flex-direction: column;
  z-index: 5;
  pointer-events: none;
}

.video-tag {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.video-subtag {
  font-size: 11px;
  font-weight: 500;
  color: #ffb186;
  line-height: 1.2;
  margin-top: 3px;
}

/* ===================================================================
   LOGO / LOCATION MARQUEE
   =================================================================== */
.marquee-section {
  background-color: #ffffff;
  border-top: 1px solid var(--marquee-border);
  border-bottom: 1px solid var(--marquee-border);
  overflow: hidden;
  height: 54px;
  display: flex;
  align-items: center;
}

.marquee-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.marquee-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0 24px;
  background-color: #ffffff;
  z-index: 2;
  color: #000000;
  white-space: nowrap;
  border-right: 1px solid var(--marquee-border);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

.marquee-container {
  overflow: hidden;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.marquee-track {
  display: flex;
  width: 200%;
  animation: marquee 40s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  white-space: nowrap;
}

.marquee-item {
  font-size: 13.5px;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.01em;
}

.marquee-dot {
  margin: 0 16px;
  font-weight: 700;
  color: #a8a8a8;
}

/* ===================================================================
   COMMON SECTION STYLES & LAYOUT
   =================================================================== */
.section {
  padding-top: 80px;
}

.section-cream-1 {
  background-color: var(--cream-1);
}

.section-cream-2 {
  background-color: var(--cream-2);
}

.section-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px 70px 32px;
}

.section-header {
  margin-bottom: 52px;
  max-width: 820px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 14px;
  color: #000000;
}

.section-intro {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #000000;
}

/* ===================================================================
   CARDS (Outline Style)
   =================================================================== */
.cards-grid {
  display: grid;
  gap: 40px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.feature-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
}

.card-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-index {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #777777;
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: 20px;
  color: #333333;
}

.card-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #000000;
}

.card-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #000000;
}

.team-card {
  padding: 40px 36px;
}

.team-card .card-title {
  font-size: 26px;
  margin-bottom: 14px;
}

/* ===================================================================
   STATS COUNTERS
   =================================================================== */
.stats-section {
  background-color: var(--cream-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 54px;
}

.stats-section .section-wrapper {
  padding-bottom: 54px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #000000;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  max-width: 200px;
}

/* ===================================================================
   3-COLUMN FEATURE LIST (We're not a video vendor)
   =================================================================== */
.features-columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.feature-col {
  display: flex;
  flex-direction: column;
}

.col-indicator {
  width: 32px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 20px;
}

.feature-col-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #000000;
}

.feature-col-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.68;
  color: #000000;
}

/* ===================================================================
   HOW IT WORKS (4-Step Numbered Process)
   =================================================================== */
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.process-track-line {
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background-color: var(--border);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.step-number {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  background-color: var(--cream-2);
  width: 72px;
  height: 72px;
  border: 2px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #000000;
}

.step-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #000000;
}

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #bbbbbb;
}

.faq-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #000000;
  padding-right: 20px;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000000;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-panel {
  max-height: 400px;
  opacity: 1;
}

.faq-content {
  padding: 0 28px 26px 28px;
}

.faq-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #000000;
}

/* ===================================================================
   DARK CTA BAND
   =================================================================== */
.cta-band {
  background-color: var(--dark);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(255, 71, 119, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-band-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-band-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.cta-band-headline {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.25;
  max-width: 860px;
  margin-bottom: 38px;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background-color: var(--dark);
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo .logo-main,
.footer-logo .logo-sub {
  color: #ffffff;
}

.footer-address {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 18px;
}

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

.footer-list a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-coverage-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================================================
   POPUP MODAL
   =================================================================== */
.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-modal.active {
  display: flex;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 14, 18, 0.75);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  padding: 38px 34px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  color: #000000;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #000000;
}

.modal-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #555555;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #000000;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-family);
  font-weight: 300;
  color: #000000;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #000000;
}

.modal-actions {
  margin-top: 10px;
}

.form-success-msg {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}

/* ===================================================================
   RESPONSIVENESS & BREAKPOINTS
   =================================================================== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 42px;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-track-line {
    display: none;
  }

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

  .conveyor-wrapper {
    height: 440px;
  }
}

/* Mobile & Small Tablet (≤860px) */
@media (max-width: 860px) {
  .nav-links, .header-cta-wrapper {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .header-container {
    padding: 0 20px;
  }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subhead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .conveyor-wrapper {
    height: 330px;
  }

  .section-wrapper {
    padding: 0 20px 50px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .services-grid, .teams-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .stat-number {
    font-size: 38px;
  }

  .features-columns-3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-band {
    padding: 70px 0;
  }

  .cta-band-headline {
    font-size: 28px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .modal-card {
    padding: 26px 20px;
  }
}

/* ===================================================================
   ACCESSIBILITY & PREFERS-REDUCED-MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none !important;
  }

  .conveyor-card {
    transition: none !important;
  }
}
