/* 
  DIRT SITES - Category-Leading Specialist Website Platform System
  Strict Color System:
  - Dark Charcoal & Almost Black: #0D0C0A, #151411
  - Warm Off-White / Bone: #F4F1E9, #EAE5D8, #FFFFFF
  - Dark Earth Brown: #1B1915, #24211C
  - Steel Earth Rules & Borders: #332F28, #D8D2C5
  - Caterpillar Yellow Accent: #F2C500, #D6A900
*/

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

:root {
  /* Dark Backgrounds */
  --bg-almost-black: #0D0C0A;
  --bg-black-panel: #151411;
  --bg-black-card: #1B1915;
  
  /* Light Warm Bone Backgrounds */
  --bg-warm-bone: #F4F1E9;
  --bg-warm-card: #EAE5D8;
  --bg-white: #FFFFFF;
  
  /* Dark Earth Brown */
  --bg-brown-earth: #1B1915;
  --bg-brown-card: #24211C;
  
  /* Borders */
  --steel-border: #332F28;
  --steel-border-light: #D8D2C5;
  --steel-border-gold: rgba(242, 197, 0, 0.4);
  
  /* Typography Colors */
  --text-dark-primary: #11100D;
  --text-dark-secondary: #3E3A33;
  --text-light-primary: #F8F6F0;
  --text-light-secondary: #D8D2C5;
  --text-muted: #968C7D;

  /* Accent */
  --yellow-accent: #F2C500;
  --yellow-dark: #D6A900;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --font-headline: 'Bebas Neue', sans-serif;
  --font-body: 'Instrument Sans', 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-almost-black);
  color: var(--text-light-primary);
  line-height: 1.5;
  width: 100%;
}

body {
  background-color: var(--bg-almost-black);
  color: var(--text-light-primary);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

main, #main-content {
  flex: 1 0 auto;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.text-center { text-align: center; }
.text-dark { color: var(--text-dark-primary) !important; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--yellow-accent);
  color: var(--bg-almost-black);
  font-weight: 800;
  padding: 8px 16px;
  z-index: 10000;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus { top: 10px; }

/* BRAND LOGO IMAGE */
.brand-logo-wrapper { display: flex; align-items: center; }
.brand-logo-img, .footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-headline);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  gap: 10px;
  min-height: 48px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 20px;
  min-height: 54px;
}

.btn-primary {
  background: var(--yellow-accent);
  color: var(--bg-almost-black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn .fa-phone {
  margin-right: 6px;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(242, 197, 0, 0.3);
}

.btn-outline-glass {
  background: transparent;
  color: var(--text-light-primary);
  border: 1px solid var(--steel-border);
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--yellow-accent);
  color: var(--yellow-accent);
  transform: translateY(-1px);
}

.full-width { width: 100%; }

/* HEADER & NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 18px 0;
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(13, 12, 10, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel-border);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-headline);
  font-size: 19px;
  letter-spacing: 0.5px;
  color: var(--text-light-secondary);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* HEADER CTA SCROLL-ONLY BEHAVIOR */
.header-scroll-only {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.site-header.scrolled .header-scroll-only {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN MENU */
.nav-item-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  width: 240px;
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-md);
  padding: 12px 0;
  list-style: none;
  display: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  z-index: 2000;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light-secondary);
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: rgba(242, 197, 0, 0.1);
  color: var(--yellow-accent);
}

.dropdown-arrow { font-size: 11px; opacity: 0.8; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light-primary);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* MOBILE DRAWER & BACKDROP */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-almost-black);
  z-index: 3000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: left 0.3s ease;
  border-right: 1px solid var(--steel-border);
}

.mobile-drawer.active { left: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-light-primary);
  font-size: 32px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.drawer-nav a {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--text-light-secondary);
}

.drawer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 2. REFINED CLEAN BOLD HERO SECTION */
.hero-section {
  padding-top: 140px;
  padding-bottom: 70px;
  background: linear-gradient(180deg, #0d0c0a 0%, #0d0c0a 120px, rgba(13, 12, 10, 0.88) 55%, rgba(13, 12, 10, 0.98) 100%), url('./assets/dirt-site-hero.webp') center/cover no-repeat;
  border-bottom: 1px solid var(--steel-border);
  position: relative;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-content-center {
  max-width: 1080px;
  margin: 0 auto 8px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-headline);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--yellow-accent);
  margin-bottom: 16px;
}

.hero-giant-headline {
  font-family: var(--font-headline);
  font-size: clamp(90px, 8.5vw, 132px);
  line-height: 0.88;
  letter-spacing: 1px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title-white { color: var(--text-light-primary); }
.title-yellow { color: var(--yellow-accent); }

.hero-supporting-sub {
  font-size: 18px;
  color: var(--text-light-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-actions-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-bottom: 28px;
}

.hero-media-center {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--steel-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  background: #000;
  aspect-ratio: 16 / 9;
}

.hero-machinery-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: #000;
}

.hero-image-frame.is-playing .hero-video-embed {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(13, 12, 10, 0.75) 100%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.hero-platform-preview-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 12, 10, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.preview-badge-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.badge-dot.yellow { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow-accent); }

.badge-title {
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--yellow-accent);
}

.preview-badge-text {
  font-size: 11px;
  color: var(--text-light-secondary);
  font-weight: 700;
  font-family: var(--font-headline);
  letter-spacing: 0.5px;
}

.play-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.25s ease;
}

.hero-image-frame:hover .play-button-wrapper {
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--yellow-accent);
  color: #0d0c0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

.play-button-circle i {
  margin-left: 4px;
}

.hero-image-frame.is-playing .play-button-wrapper,
.hero-image-frame.is-playing .hero-overlay-vignette {
  opacity: 0;
  pointer-events: none;
}

.play-button-img { width: 100%; height: auto; }

/* 3. CORE SERVICE STRIP (CONTINUOUS MARQUEE SCROLL ON DESKTOP & MOBILE) */
.industry-strip-section {
  padding: 16px 0;
  background: var(--bg-black-panel);
  border-bottom: 1px solid var(--steel-border);
  overflow: hidden;
  position: relative;
}

.strip-header-row { margin-bottom: 10px; text-align: center; }

.strip-title {
  font-family: var(--font-headline);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--yellow-accent);
}

.industry-strip-overflow {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.industry-strip-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
  will-change: transform;
}

.industry-strip-section:hover .industry-strip-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.8px;
  color: var(--text-light-primary);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.industry-item:hover {
  border-color: var(--yellow-accent);
  background: #221f18;
  color: var(--yellow-accent);
}

.strip-icon { color: var(--yellow-accent); font-size: 14px; }


/* 4. RESEARCH DATA SECTION (DIRECT FACEOFF CARDS) */
.operator-understanding-section {
  padding: 90px 0;
  background: var(--bg-warm-bone);
  color: var(--text-dark-primary);
  border-bottom: 1px solid var(--steel-border-light);
}

.faceoff-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 50px;
  text-align: left;
}

.faceoff-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 4px solid var(--yellow-dark);
  padding: 28px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faceoff-card-header {
  font-family: var(--font-headline);
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--text-dark-primary);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 8px;
}

.faceoff-vs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
  position: relative;
}

.vs-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 12px;
  border-radius: 4px;
}

.vs-box-most {
  background: #eae5de;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.vs-box-dirt {
  background: #191815;
  border: 2px solid var(--yellow-accent);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.vs-badge {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  background: var(--yellow-accent);
  color: #111;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  flex-shrink: 0;
}

.vs-label {
  font-family: var(--font-headline);
  font-size: 12px;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 6px;
  font-weight: 700;
}

.gold-label {
  color: var(--yellow-accent);
}

.vs-number {
  font-family: var(--font-headline);
  font-size: 34px;
  line-height: 0.95;
  color: #222;
  margin-bottom: 6px;
  font-weight: 800;
}

.fail-text {
  color: #a32b2b;
}

.gold-number {
  color: var(--yellow-accent);
}

.vs-subtext {
  font-size: 11px;
  color: #555;
  font-weight: 600;
  line-height: 1.3;
}

.gold-subtext {
  color: var(--text-light-secondary);
}

.faceoff-footer-line {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark-primary);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 12px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .faceoff-cards-container {
    grid-template-columns: 1fr;
  }
}

.research-closing-banner {
  background: #1b1915;
  border: 1px solid var(--steel-border);
  border-left: 4px solid var(--yellow-accent);
  padding: 36px 28px;
  border-radius: 4px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.research-closing-title {
  font-family: var(--font-headline);
  font-size: 28px;
  color: var(--text-light-primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0;
}

.research-attribution-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.research-report-link {
  font-family: var(--font-headline);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
  font-weight: 700;
}

.research-report-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .research-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 5. REAL DIRT-INDUSTRY OPERATOR PROOF */
.operator-proof-section {
  padding: 90px 0;
  background: var(--bg-white);
  color: var(--text-dark-primary);
  border-bottom: 1px solid var(--steel-border-light);
}

.proof-header { margin-bottom: 48px; }

.section-title {
  font-family: var(--font-headline);
  font-size: 48px;
  letter-spacing: 0.5px;
  color: var(--text-light-primary);
  margin-bottom: 12px;
  line-height: 0.98;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.verified-clients-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.client-brand-card {
  background: var(--bg-warm-bone);
  border: 1px solid var(--steel-border-light);
  border-top: 4px solid var(--yellow-accent);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.client-img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.client-preview-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--steel-border-light);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.client-img-link:hover .client-preview-img {
  transform: scale(1.03);
  border-color: var(--yellow-dark);
}

.client-name {
  font-family: var(--font-headline);
  font-size: 22px;
  color: var(--text-dark-primary);
  letter-spacing: 0.5px;
}

.client-type {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark-secondary);
}

.client-web-link {
  font-family: var(--font-headline);
  font-size: 15px;
  color: var(--yellow-dark);
  letter-spacing: 0.5px;
}

.client-web-link:hover { text-decoration: underline; }

/* 6. QUALIFIED HISTORICAL FOCUS EXPERIENCE */
.focus-experience-section {
  padding: 90px 0;
  background: var(--bg-brown-earth);
  border-bottom: 1px solid var(--steel-border);
}

.focus-experience-box {
  background: var(--bg-brown-card);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  text-align: center;
}

.experience-badge {
  display: inline-block;
  background: rgba(242, 197, 0, 0.15);
  color: var(--yellow-accent);
  font-family: var(--font-headline);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.experience-title {
  font-family: var(--font-headline);
  font-size: 42px;
  color: var(--text-light-primary);
  margin-bottom: 16px;
  line-height: 1;
}

.experience-copy {
  font-size: 16px;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.stat-card-box {
  background: rgba(13, 12, 10, 0.6);
  border: 1px solid var(--steel-border);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-big-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 40px;
  color: var(--yellow-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light-secondary);
}

.experience-system-block {
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--steel-border);
}

.experience-system-title {
  font-family: var(--font-headline);
  font-size: 34px;
  color: var(--yellow-accent);
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.experience-system-copy {
  font-size: 16px;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.experience-system-question {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--text-light-primary);
  background: rgba(242, 197, 0, 0.12);
  border: 1px solid var(--steel-border);
  border-left: 3px solid var(--yellow-accent);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  margin: 4px auto 24px;
}

/* 7. THREE-STEP BUILD PROCESS */
.three-steps-section {
  padding: 90px 0 56px;
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
}

.steps-header { margin-bottom: 48px; }

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

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

.step-card {
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.step-card:hover {
  border-color: var(--yellow-accent);
  transform: translateY(-4px);
}

.step-card-num {
  font-family: var(--font-headline);
  font-size: 54px;
  color: var(--yellow-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card-title {
  font-family: var(--font-headline);
  font-size: 24px;
  color: var(--text-light-primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.step-card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.how-it-works-portal-note {
  max-width: 800px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light-secondary);
}

.hero-actions-center.how-it-works-actions {
  margin-top: 28px;
  margin-bottom: 0;
}

/* 8. PLATFORM TOUR (OPERATOR OUTCOMES) */
.platform-tour-section {
  padding: 100px 0;
  background: var(--bg-black-panel);
  border-bottom: 1px solid var(--steel-border);
}

.tour-section-header { margin-bottom: 70px; }

.feature-full-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--steel-border);
}

.feature-full-row:last-child { border-bottom: none; }
.feature-full-row.reverse-row { grid-template-columns: 1fr 1fr; }
.feature-full-row.reverse-row .feature-text-col { order: 2; }
.feature-full-row.reverse-row .feature-visual-col { order: 1; }

.feature-num-tag {
  font-family: var(--font-headline);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--yellow-accent);
  margin-bottom: 10px;
}

.feature-headline {
  font-family: var(--font-headline);
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: var(--text-light-primary);
  margin-bottom: 18px;
}

.feature-body-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light-secondary);
  margin-bottom: 28px;
  font-weight: 600;
}

.check-gold { color: var(--yellow-accent); margin-right: 8px; }

.feature-text-link {
  font-family: var(--font-headline);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-text-link:hover { text-decoration: underline; }

.feature-image-card {
  position: relative;
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
}

.feature-screenshot-card {
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.85);
}

.feature-screenshot-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(1.05);
}

/* MID-FEATURE CONVERSION BLOCK (AFTER FEATURE 03) */
.feature-cta-mid-block {
  background: linear-gradient(180deg, #1b1915 0%, #151411 100%);
  border: 1px solid var(--steel-border);
  border-top: 3px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.feature-cta-title {
  font-family: var(--font-headline);
  font-size: 32px;
  color: var(--text-light-primary);
  max-width: 800px;
  line-height: 1.05;
  letter-spacing: 0.5px;
}

.visual-card-caption {
  background: rgba(13, 12, 10, 0.95);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-headline);
  color: var(--yellow-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--steel-border);
}

.intake-card-bg, .tracking-card-bg, .speed-card-bg, .territory-card-bg {
  padding: 32px;
  background: #0d0c14;
  position: relative;
}

/* SPEED METRIC CARD */
.speed-metric-box {
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-left: 4px solid var(--yellow-accent);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.speed-badge-tag {
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
}

.pagespeed-score {
  background: rgba(39, 174, 96, 0.2);
  color: #2ECC71;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.big-speed-num {
  font-family: var(--font-headline);
  font-size: 64px;
  color: var(--yellow-accent);
  line-height: 0.9;
}

.speed-num-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.speed-progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.speed-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow-accent) 0%, #2ECC71 100%);
  border-radius: 4px;
}

.speed-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light-secondary);
  font-weight: 600;
  margin-top: 4px;
}

/* TERRITORY MAP CARD */
.territory-map-box {
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  padding: 20px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.territory-node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--steel-border);
}

.territory-node.active-node {
  border-left-color: var(--yellow-accent);
  background: rgba(242, 197, 0, 0.08);
}

.node-icon {
  font-size: 18px;
  color: var(--yellow-accent);
}

.node-info {
  font-size: 13px;
  color: var(--text-light-secondary);
}

.node-info strong {
  color: var(--text-light-primary);
}

.fake-form-box {
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  padding: 20px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.fake-label {
  font-family: var(--font-headline);
  font-size: 16px;
  color: var(--yellow-accent);
  letter-spacing: 0.5px;
}

.fake-input {
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-light-secondary);
  padding: 10px;
  border-radius: 4px;
}

.fake-btn {
  background: var(--yellow-accent);
  color: var(--bg-almost-black);
  font-family: var(--font-headline);
  font-size: 15px;
  padding: 12px;
  border: none;
  font-weight: 900;
  cursor: pointer;
}

.sample-report-badge {
  display: inline-block;
  background: rgba(242, 197, 0, 0.2);
  color: var(--yellow-accent);
  font-family: var(--font-headline);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.tracking-stats-row {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 16px;
}

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

.mini-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
}

.mini-num {
  font-family: var(--font-headline);
  font-size: 32px;
  color: var(--yellow-accent);
  line-height: 1;
}

/* 9. SEARCH GROWTH SYSTEM (REACH & TERRITORY) */
.growth-system-section {
  padding: 100px 0;
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
}

.growth-header { margin-bottom: 56px; }

.growth-headline-sub {
  font-size: 26px;
  line-height: 1.3;
  color: var(--text-light-primary);
  margin: 0 auto 24px;
}

.gold-em {
  color: var(--yellow-accent);
  font-family: var(--font-headline);
  letter-spacing: 1px;
}

.growth-big-statement {
  font-family: var(--font-headline);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
  max-width: 800px;
  margin: 12px auto 0;
  text-transform: uppercase;
}

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

.growth-phase-card {
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-top: 3px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.growth-phase-card:hover {
  border-color: var(--yellow-accent);
  transform: translateY(-4px);
}

.growth-phase-num {
  font-family: var(--font-headline);
  font-size: 40px;
  color: var(--yellow-accent);
  line-height: 1;
  margin-bottom: 14px;
}

.growth-phase-title {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--text-light-primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.growth-phase-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.growth-loop-line {
  font-family: var(--font-headline);
  font-size: 20px;
  letter-spacing: 3px;
  text-align: center;
  color: var(--yellow-accent);
  margin-bottom: 56px;
}

.growth-story-box {
  background: var(--bg-black-panel);
  border: 1px solid var(--steel-border);
  border-top: 3px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 56px 40px;
  text-align: center;
}

.growth-story-title {
  font-family: var(--font-headline);
  font-size: 30px;
  color: var(--text-light-primary);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.growth-story-copy {
  font-size: 16px;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.growth-story-kicker {
  font-family: var(--font-headline);
  font-size: 26px;
  color: var(--yellow-accent);
  letter-spacing: 1px;
  margin: 12px 0 30px;
}

.growth-hook-banner {
  background: rgba(13, 12, 10, 0.85);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.growth-hook-line {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light-secondary);
}

.growth-hook-em {
  font-family: var(--font-headline);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
}

/* FREE SCAN BANNER SECTION */
.free-scan-banner-section {
  padding: 60px 0;
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
}

.scan-banner-box {
  background: var(--bg-black-panel);
  border: 1px solid var(--steel-border);
  border-left: 5px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.scan-badge {
  display: inline-block;
  background: rgba(242, 197, 0, 0.15);
  color: var(--yellow-accent);
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.scan-title {
  font-family: var(--font-headline);
  font-size: 32px;
  color: var(--text-light-primary);
  margin-bottom: 6px;
  line-height: 1;
}

.scan-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .scan-banner-box { flex-direction: column; text-align: center; padding: 28px 20px; }
  .scan-title { font-size: 26px; }
  .scan-right { width: 100%; }
  .scan-right .btn { width: 100%; box-sizing: border-box; }
}

/* 9. MID-PAGE CTA SECTION */
.mid-conversion-section {
  padding: 90px 0;
  background: var(--bg-brown-earth);
  border-bottom: 1px solid var(--steel-border);
}

.mid-conversion-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-brown-card);
  border: 1px solid var(--steel-border);
  border-top: 4px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 50px 40px;
}

.mid-title {
  font-family: var(--font-headline);
  font-size: 46px;
  line-height: 0.95;
  color: var(--text-light-primary);
  margin-bottom: 16px;
}

.mid-subtitle {
  font-size: 16px;
  color: var(--text-light-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.mid-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mid-mockup-img {
  border-radius: var(--radius-sm);
  border: 1px solid var(--steel-border);
  box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

/* 10. REAL OPERATOR CASE STUDIES */
.case-studies-section {
  padding: 100px 0;
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
}

.case-header { margin-bottom: 50px; }

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

.case-study-card {
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.case-study-card:hover {
  border-color: var(--yellow-accent);
  transform: translateY(-4px);
}

.case-study-card.featured-case {
  border: 2px solid var(--yellow-accent);
  background: #1d1a13;
}

.case-study-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.case-study-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-media img {
  transform: scale(1.04);
}

.case-number-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-almost-black);
  color: var(--text-light-primary);
  font-family: var(--font-headline);
  font-size: 13px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--steel-border);
}

.case-number-badge.gold-badge {
  background: var(--yellow-accent);
  color: var(--bg-almost-black);
  font-weight: 900;
  border: none;
}

.case-study-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.case-header-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}

.case-industry-tag {
  font-family: var(--font-headline);
  font-size: 13px;
  color: var(--yellow-accent);
  letter-spacing: 0.5px;
}

.case-territory-line {
  font-size: 13px;
  color: var(--text-light-secondary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--steel-border);
}

.case-story-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.story-step-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  position: relative;
}

.story-step-box.step-before { border-left: 3px solid #ff5555; }
.story-step-box.step-build { border-left: 3px solid var(--yellow-accent); }
.story-step-box.step-result { border-left: 3px solid #00cc88; }

.story-badge {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 4px;
}

.step-before .story-badge { background: rgba(255, 85, 85, 0.2); color: #ff7777; }
.step-build .story-badge { background: rgba(242, 197, 0, 0.2); color: var(--yellow-accent); }
.step-result .story-badge { background: rgba(0, 204, 136, 0.2); color: #33ffa0; }

.story-desc {
  font-size: 13px;
  color: var(--text-light-secondary);
  line-height: 1.45;
  margin: 0;
}

.case-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--text-light-secondary);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--yellow-accent);
  padding: 12px 16px;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
}

.feature-subtext-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: normal;
}

/* 11. PRICING & PACKAGE COMPARISON */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-brown-earth);
  border-bottom: 1px solid var(--steel-border);
}

.pricing-header { margin-bottom: 50px; }

.pricing-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-brown-card);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--yellow-accent);
  transform: translateY(-4px);
}

.pricing-card.featured-pricing {
  border: 2px solid var(--yellow-accent);
  background: #242018;
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--yellow-accent);
  color: var(--bg-almost-black);
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
}

.plan-name {
  font-family: var(--font-headline);
  font-size: 28px;
  color: var(--text-light-primary);
  margin-bottom: 8px;
}

.gold-text { color: var(--yellow-accent); }

.plan-sub {
  font-size: 14px;
  color: var(--text-light-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.price-display { margin-bottom: 28px; }

.price-amount {
  font-family: var(--font-headline);
  font-size: 52px;
  color: var(--text-light-primary);
  line-height: 1;
}

.price-subtext {
  font-family: var(--font-headline);
  font-size: 18px;
  color: var(--yellow-accent);
  margin-left: 6px;
}

.monthly-price {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--yellow-accent);
  margin-top: 4px;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light-secondary);
  margin-bottom: 32px;
  font-weight: 600;
}

.pricing-features-list strong { color: var(--yellow-accent); }

/* MONTHLY COVERAGE BOX */
.monthly-coverage-box {
  background: rgba(13, 12, 10, 0.7);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 60px;
}

.coverage-title {
  font-family: var(--font-headline);
  font-size: 26px;
  color: var(--yellow-accent);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light-primary);
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* COMPARISON TABLE REDESIGN */
.pricing-comparison-table-wrapper {
  background: var(--bg-black-panel);
  border: 1px solid var(--steel-border);
  border-top: 4px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  overflow-x: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.table-header-block {
  margin-bottom: 36px;
}

.table-heading {
  font-family: var(--font-headline);
  font-size: 38px;
  color: var(--text-light-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.table-subheading {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-size: 14px;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--steel-border);
  vertical-align: middle;
}

.comparison-table th {
  font-family: var(--font-headline);
  font-size: 19px;
  color: var(--text-light-primary);
  letter-spacing: 0.5px;
  background: #0f0e0b;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* DIRT SITES HIGHLIGHTED COLUMN */
.col-dirt-highlight {
  background: rgba(242, 197, 0, 0.07) !important;
  border-left: 2px solid var(--yellow-accent) !important;
  border-right: 2px solid var(--yellow-accent) !important;
  position: relative;
}

th.col-dirt-highlight {
  border-top: 2px solid var(--yellow-accent) !important;
  color: var(--yellow-accent) !important;
  font-size: 22px !important;
  text-align: center;
}

td.col-dirt-highlight {
  text-align: center;
}

tr:last-child td.col-dirt-highlight {
  border-bottom: 2px solid var(--yellow-accent) !important;
}

.dirt-col-badge {
  display: inline-block;
  background: var(--yellow-accent);
  color: var(--bg-almost-black);
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* WIN BADGE VS MUTED BADGE */
.badge-win {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-accent);
  font-weight: 800;
  font-size: 14px;
}

.badge-win i {
  font-size: 16px;
}

.badge-muted {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
}

.badge-muted i {
  font-size: 14px;
}

.col-feature {
  color: var(--text-light-primary);
  font-weight: 700;
  width: 32%;
}

.col-platform {
  color: var(--text-muted);
  width: 23%;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* 12. FAQ SECTION (WARM BONE BG) */
.faq-section {
  padding: 100px 0;
  background: var(--bg-warm-bone);
  color: var(--text-dark-primary);
  border-bottom: 1px solid var(--steel-border-light);
}

.faq-header { margin-bottom: 48px; }

.faq-accordion-container {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--steel-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 52px;
}

.faq-arrow {
  font-size: 14px;
  color: var(--yellow-dark);
  transition: transform 0.3s;
}

.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px 24px;
  display: none;
  font-size: 15px;
  color: var(--text-dark-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer { display: block; }

/* 13. FINAL CONVERSION SECTION */
.final-conversion-section {
  padding: 100px 0;
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
}

.final-conversion-box {
  background: var(--bg-black-panel);
  border: 1px solid var(--steel-border);
  border-top: 4px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 60px 40px;
}

.final-title {
  font-family: var(--font-headline);
  font-size: 52px;
  line-height: 0.95;
  color: var(--text-light-primary);
  margin-bottom: 16px;
}

.final-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.confidence-strip {
  font-family: var(--font-headline);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
}

/* 14. FOOTER */
.site-footer {
  margin-top: auto;
  background: #070605;
  padding: 80px 0 0 0;
  position: relative;
  z-index: 10;
}

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

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-call-line {
  margin-top: 16px;
  font-family: var(--font-headline);
  font-size: 28px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.footer-call-line a {
  color: var(--yellow-accent);
}

.footer-call-line a:hover {
  color: var(--yellow-dark);
}

.footer-call-note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.nav-cta-primary {
  white-space: nowrap;
}

.cta-call-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.footer-col-title {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--text-light-primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links-col a:hover { color: var(--yellow-accent); }

.footer-bottom {
  border-top: 1px solid var(--steel-border);
  padding: 24px 0 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-experience-note { color: var(--text-light-secondary); }
.footer-experience-note strong { color: var(--yellow-accent); }

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
}
.footer-powered a {
  display: inline-flex;
  align-items: center;
  color: inherit;
}
.footer-powered img {
  height: 14px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.9;
}
.footer-powered a:hover { opacity: 0.85; }

/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.active { display: flex !important; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.video-modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  border: 1px solid var(--steel-border);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
}

.video-wrapper { width: 100%; height: 100%; }

/* SECTION LABEL DIVIDER */
.section-label-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.divider-line {
  height: 1px;
  width: 60px;
  background: var(--steel-border);
}

.divider-line.light-mode-line { background: var(--steel-border-light); }

.divider-text {
  font-family: var(--font-headline);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--yellow-accent);
}

.divider-text-dark {
  font-family: var(--font-headline);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--yellow-dark);
}

/* SECTION 2: PICK YOUR VERSION */
#full-system { scroll-margin-top: 90px; }
#results { scroll-margin-top: 90px; }

.pick-version-section {
  padding: 80px 0;
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
}

.pick-version-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pick-version-card {
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-top: 4px solid var(--steel-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.pick-version-card:hover {
  border-color: var(--yellow-accent);
  transform: translateY(-4px);
}

.pick-version-card.simple-option {
  background: #1D1A14;
  border-top: 4px solid var(--yellow-accent);
}

.pick-version-opt {
  font-family: var(--font-headline);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--yellow-accent);
  margin-bottom: 10px;
}

.pick-version-title {
  font-family: var(--font-headline);
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: var(--text-light-primary);
  margin-bottom: 14px;
}

.pick-version-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pick-version-actions {
  margin-top: auto;
}

/* ============================================================
   SIMPLE VERSION PAGE - PREMIUM INDUSTRIAL REDESIGN
   ============================================================ */

/* HERO */
.sv3-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
}

.sv3-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
}

.sv3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-headline);
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--yellow-accent);
  margin-bottom: 20px;
}

.sv3-eyebrow-bar {
  width: 42px;
  height: 3px;
  background: var(--yellow-accent);
  display: inline-block;
}

.sv3-hero-title {
  font-family: var(--font-headline);
  font-size: clamp(64px, 8.2vw, 102px);
  letter-spacing: 1px;
  line-height: 0.9;
  color: var(--text-light-primary);
  margin-bottom: 24px;
}

.sv3-hero-title .sv3-gold {
  color: var(--yellow-accent);
}

.sv3-hero-lead {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.sv3-hero-sub {
  font-size: 17px;
  color: var(--text-light-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

.sv3-hero-line {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--yellow-accent);
  font-family: var(--font-headline);
  font-size: clamp(23px, 2.4vw, 28px);
  letter-spacing: 2px;
  color: var(--yellow-accent);
  line-height: 1.15;
}

.sv3-hero-note {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.6;
}

/* WATCH PANEL */
.sv3-watch-panel {
  position: relative;
  background: var(--bg-black-panel);
  border: 1px solid var(--steel-border);
  border-top: 3px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.sv3-watch-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headline);
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--text-light-primary);
  margin-bottom: 18px;
}

.sv3-watch-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow-accent);
  box-shadow: 0 0 0 0 rgba(242, 197, 0, 0.6);
  animation: sv3-pulse 1.8s infinite;
}

@keyframes sv3-pulse {
  0% { box-shadow: 0 0 0 0 rgba(242, 197, 0, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(242, 197, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 197, 0, 0); }
}

.sv3-watch-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.sv3-watch-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--steel-border);
  font-family: var(--font-headline);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-light-primary);
}

.sv3-watch-list li:last-child {
  border-bottom: none;
}

.sv3-watch-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: var(--yellow-accent);
  background: rgba(242, 197, 0, 0.1);
  border: 1px solid rgba(242, 197, 0, 0.35);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.sv3-watch-foot {
  margin-top: 6px;
  border-top: 2px solid var(--yellow-accent);
  padding-top: 16px;
  font-family: var(--font-headline);
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--yellow-accent);
}

/* HAZARD STRIPE DIVIDER */
.sv3-hazard {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow-accent) 0 18px,
    var(--bg-almost-black) 18px 36px
  );
  width: 100%;
}

/* SECTION LABELS & HEADINGS */
.sv3-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headline);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--yellow-accent);
  margin-bottom: 16px;
}

.sv3-section-label::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--yellow-accent);
}

.sv3-section-title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: 1px;
  line-height: 0.95;
  color: var(--text-light-primary);
  margin-bottom: 18px;
}

.sv3-section-title.sv3-section-title-gold {
  color: var(--yellow-accent);
}

.sv3-section-intro {
  font-size: 18px;
  color: var(--text-light-secondary);
  line-height: 1.75;
  margin-bottom: 0;
}

/* SECTION 2 - THEY'RE ALREADY LOOKING */
.sv3-looking {
  background: var(--bg-black-panel);
  border-bottom: 1px solid var(--steel-border);
  padding: 84px 0;
}

.sv3-looking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.sv3-looking-title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: 1px;
  line-height: 0.95;
  color: var(--text-light-primary);
  margin-bottom: 14px;
}

.sv3-looking-sub {
  font-family: var(--font-headline);
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--yellow-accent);
}

.sv3-scenarios {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv3-scenario-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-black-card);
  border: 1px solid var(--steel-border);
  border-left: 4px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 15px 22px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light-primary);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sv3-scenario-card:hover {
  border-color: var(--yellow-accent);
  transform: translateX(4px);
}

.sv3-scenario-num {
  font-family: var(--font-headline);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
  min-width: 28px;
}

.sv3-where {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--steel-border);
  padding-top: 44px;
}

.sv3-where-lead {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-light-primary);
  text-align: center;
}

.sv3-where-may {
  font-family: var(--font-headline);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

.sv3-where-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 28px;
}

.sv3-where-chip {
  font-family: var(--font-headline);
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--yellow-accent);
  border-bottom: 3px solid rgba(242, 197, 0, 0.35);
  padding: 0 0 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.sv3-where-chip:hover {
  color: var(--text-light-primary);
  border-color: var(--yellow-accent);
}

/* MID-PAGE CALLOUT */
.sv3-callout {
  background: var(--yellow-accent);
  border-top: 1px solid var(--steel-border);
  border-bottom: 1px solid var(--steel-border);
  padding: 88px 24px;
  text-align: center;
}

.sv3-callout h2 {
  font-family: var(--font-headline);
  font-size: clamp(46px, 7vw, 84px);
  letter-spacing: 2px;
  line-height: 0.94;
  color: var(--bg-almost-black);
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 1000px;
}

/* SECTION 3 - FEATURE GRID */
.sv3-features {
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
  padding: 84px 0;
}

.sv3-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.sv3-feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-black-panel);
  border: 1px solid var(--steel-border);
  border-top: 3px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sv3-feature-card:hover {
  border-color: rgba(242, 197, 0, 0.5);
  transform: translateY(-3px);
}

.sv3-feature-num {
  font-family: var(--font-headline);
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.sv3-feature-icon {
  font-size: 28px;
  color: var(--yellow-accent);
}

.sv3-feature-title {
  font-family: var(--font-headline);
  font-size: 27px;
  letter-spacing: 1px;
  line-height: 1.02;
  color: var(--text-light-primary);
}

.sv3-feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: auto;
}

.sv3-feature-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  margin-top: 22px;
}

.sv3-feature-strip i {
  font-size: 30px;
  color: var(--bg-almost-black);
}

.sv3-feature-strip p {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--bg-almost-black);
  margin: 0;
  text-align: center;
}

/* SECTION 4 - WE BUILT THIS OURSELVES */
.sv3-built {
  position: relative;
  overflow: hidden;
  background: var(--bg-black-panel);
  border-bottom: 1px solid var(--steel-border);
  padding: 84px 0;
}

.sv3-stencil {
  position: absolute;
  top: 30px;
  right: -20px;
  font-family: var(--font-headline);
  font-size: clamp(220px, 30vw, 380px);
  letter-spacing: 6px;
  line-height: 1;
  color: rgba(242, 197, 0, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.sv3-built-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  margin-top: 40px;
}

.sv3-not-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light-primary);
  padding: 18px 0;
  border-bottom: 1px solid var(--steel-border);
  line-height: 1.5;
}

.sv3-not-icon {
  margin-top: 4px;
  font-size: 17px;
  color: var(--yellow-accent);
}

.sv3-why-col p {
  font-size: 17px;
  color: var(--text-light-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

.sv3-why-col .sv3-why-strong {
  font-weight: 800;
  color: var(--text-light-primary);
}

.sv3-why-col .sv3-why-lead {
  font-family: var(--font-headline);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--yellow-accent);
  margin-bottom: 0;
}

.sv3-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.sv3-process-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-almost-black);
  border: 1px solid var(--steel-border);
  border-top: 3px solid var(--yellow-accent);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
}

.sv3-process-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow-accent);
}

.sv3-process-step span:last-child {
  font-family: var(--font-headline);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text-light-primary);
}

.sv3-runs {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.sv3-locked {
  margin-top: 44px;
  border: 1px solid var(--steel-border);
  border-left: 4px solid var(--yellow-accent);
  background: var(--bg-almost-black);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.sv3-locked h3 {
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: 1px;
  line-height: 1;
  color: var(--yellow-accent);
}

/* SECTION 5 - FINAL CTA */
.sv3-final {
  background: var(--bg-almost-black);
  border-bottom: 1px solid var(--steel-border);
  padding: 90px 0;
}

.sv3-final-box {
  position: relative;
  overflow: hidden;
  background: var(--bg-black-panel);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-md);
  padding: 70px 48px 64px;
  text-align: center;
}

.sv3-final-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow-accent);
}

.sv3-final-kicker {
  font-family: var(--font-headline);
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--yellow-accent);
  margin-bottom: 16px;
}

.sv3-final-title {
  font-family: var(--font-headline);
  font-size: clamp(56px, 8vw, 92px);
  letter-spacing: 1px;
  line-height: 0.9;
  color: var(--text-light-primary);
  margin-bottom: 0;
}

.sv3-final-title .sv3-final-gold {
  color: var(--yellow-accent);
}

.sv3-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.btn-xlg {
  padding: 20px 44px;
  font-size: 22px;
  min-height: 60px;
}

.sv3-btn-hero {
  box-shadow: 0 8px 24px rgba(242, 197, 0, 0.35);
}

.sv3-btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 197, 0, 0.45);
}

.sv3-btn-outline {
  background: transparent;
  color: var(--text-light-primary);
  border: 2px solid var(--steel-border);
}

.sv3-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--yellow-accent);
  color: var(--yellow-accent);
  transform: translateY(-1px);
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
  .hero-giant-headline { font-size: 52px; }
  .hero-actions-center { justify-content: center; }
  .operator-checklist-grid { grid-template-columns: 1fr; }
  .verified-clients-strip { grid-template-columns: 1fr; }
  .results-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-3-grid { grid-template-columns: 1fr; }
  .steps-4-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-4-grid { grid-template-columns: repeat(2, 1fr); }
  .pick-version-grid { grid-template-columns: 1fr; }
  .simple-quote-grid { grid-template-columns: 1fr; }
  .sv3-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .sv3-looking-grid { grid-template-columns: 1fr; gap: 36px; }
  .sv3-built-grid { grid-template-columns: 1fr; gap: 36px; }
  .sv3-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .sv3-process { grid-template-columns: repeat(2, 1fr); }
  .feature-full-row, .feature-full-row.reverse-row { grid-template-columns: 1fr; }
  .feature-full-row.reverse-row .feature-text-col { order: 1; }
  .feature-full-row.reverse-row .feature-visual-col { order: 2; }
  .mid-conversion-grid { grid-template-columns: 1fr; }
  .case-studies-3-grid { grid-template-columns: 1fr; }
  .pricing-3-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header Adjustments */
  .site-header, .package-header {
    padding: 10px 0 !important;
    background: rgba(13, 12, 10, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid var(--steel-border) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10000 !important;
  }
  .brand-logo-wrapper {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
  .brand-logo-img {
    display: block !important;
    height: 38px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .main-nav, .nav-cta-secondary { display: none; }
  .mobile-menu-toggle { display: flex; }
  .nav-cta-primary {
    font-size: 13px;
    padding: 8px 12px;
    min-height: 40px;
  }
  
  /* Hero Mobile Fixes */
  .hero-section { padding-top: 110px; padding-bottom: 50px; }
  .hero-eyebrow { font-size: 15px; letter-spacing: 1.5px; }
  .hero-giant-headline { font-size: 48px; line-height: 0.92; }
  .hero-content-center { margin-bottom: 0; }
  .hero-supporting-sub {
    font-size: 15px;
    text-align: center;
    margin-bottom: 0;
  }
  .hero-actions-center {
    flex-direction: column;
    width: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 8px;
  }
  .hero-actions-center .btn {
    min-height: 40px;
    padding: 8px 16px;
    font-size: 16px;
    width: auto;
    align-self: center;
    gap: 6px;
  }
  .hero-actions-center .btn .fa-phone,
  .hero-actions-center .btn .fa-comment-sms {
    margin-right: 0;
    font-size: 13px;
  }
  .full-mobile-btn { width: 100%; box-sizing: border-box; }

  /* Industry Strip Mobile Continuous Marquee Scroll */
  .industry-strip-section { padding: 14px 0; }
  .industry-strip-track { animation-duration: 20s; }

  /* Stat Grid Mobile */
  .results-stats-grid { grid-template-columns: 1fr; }
  .steps-4-grid { grid-template-columns: 1fr; }
  .growth-4-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .sv3-hero { padding: 110px 0 0; }
  .sv3-hero-grid { padding-bottom: 56px; }
  .sv3-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .sv3-feature-card { padding: 22px 18px; }
  .sv3-looking, .sv3-features, .sv3-built, .sv3-final { padding: 60px 0; }
  .sv3-callout { padding: 56px 18px; }
  .sv3-where { margin-top: 40px; padding-top: 36px; }
  .sv3-final-box { padding: 52px 22px; }
  .sv3-final-actions { flex-direction: column; width: 100%; }
  .sv3-final-actions .btn { width: 100%; }
  .sv3-stencil { right: -40px; }
  .mid-actions, .final-actions { flex-direction: column; width: 100%; }

  /* Typography Sizes */
  .section-title { font-size: 34px; }
  .mid-title, .final-title { font-size: 34px; }
  .experience-title { font-size: 32px; }
  .feature-headline { font-size: 28px; }
  .growth-headline-sub { font-size: 21px; }
  .growth-story-title { font-size: 26px; }
  .growth-story-kicker { font-size: 22px; }
  .growth-story-box { padding: 40px 24px; }
  .experience-system-title { font-size: 26px; }

  /* Table Mobile Scroll */
  .pricing-comparison-table-wrapper {
    padding: 20px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
    min-width: 620px;
  }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 12px; }

  /* Touch Friendly Form Fields & Mobile Inputs */
  input, select, textarea, button {
    font-size: 16px !important; /* Prevents auto-zoom on iOS */
  }

  .btn {
    min-height: 48px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-giant-headline { font-size: 38px; line-height: 0.94; }
  .section-title { font-size: 26px; }
  .stat-big-num { font-size: 30px; }
  .price-amount { font-size: 38px; }
  .sv3-hero-title { font-size: 46px; }
  .sv3-feature-grid { grid-template-columns: 1fr; }
  .sv3-process { grid-template-columns: 1fr 1fr; }
  .sv3-locked { padding: 22px 18px; }
  .sv3-final-title { font-size: 44px; }
  .final-conversion-box { padding: 36px 18px; }
  .confidence-strip { font-size: 13px; line-height: 1.6; }
}

/* PERSISTENT BACK TO TOP BUTTON */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F2C500 !important;
  color: #0D0C0A !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 16px rgba(242, 197, 0, 0.6);
  cursor: pointer;
  z-index: 999999 !important;
  border: 2px solid #0D0C0A !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top-btn:hover {
  background: #FFE454 !important;
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.95), 0 0 22px rgba(242, 197, 0, 0.8) !important;
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

