/* ========================================
   ASSET+ FLEET SOLUTIONS — Layout
   Premium UX — €50K Agency Grade
======================================== */

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  border-bottom: 1px solid var(--grid-line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
  height: 72px;
  border-bottom-color: rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.95);
}

/* Logo fills the header — the image has built-in whitespace */
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 3.5vw;
  border-right: 1px solid var(--grid-line);
}

.nav-logo img {
  height: var(--nav-height);
  transition: height 0.4s ease;
}

.navbar.scrolled .nav-logo img {
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-link {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 1.5rem;
  color: var(--text-primary);
  transition: color 0.3s ease, background 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--grid-line);
}

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

.nav-link.active {
  color: var(--accent);
  background: transparent;
}

.nav-links .btn {
  margin-left: 0;
  border-radius: 0;
  border-left: 1px solid var(--grid-line);
  border-top: none;
  border-bottom: none;
  border-right: none;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

/* ========== MOBILE MENU ========== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: 1px solid var(--grid-line);
  padding: 12px;
  gap: 6px;
  z-index: 1001;
  transition: border-color 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--accent);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ========== HERO TEXT HIERARCHY — breathing room between elements ========== */
.hero-split-text .text-tech {
  margin-bottom: 1.25rem;
}

.hero-split-text .hero-title {
  margin-bottom: 1.5rem;
}

/* ========== HERO SECTIONS ========== */
.hero-split {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--grid-line);
}

.hero-split-text {
  padding: calc(var(--nav-height) + 3vw) 4vw 3vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-color);
  z-index: 2;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--grid-line);
}

/* Custom hero title — compact, fits within viewport */
.hero-title {
  font-family: var(--font-heavy);
  font-size: clamp(2.8rem, 6vw, 7rem);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-split-visual {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Subtle gradient on the edge where text meets visual */
.hero-split-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-split-visual img,
.hero-split-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== VIDEO ELEMENTS ========== */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Inline video showcase — cinematic player */
.video-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #0A0A0A;
}

.video-showcase video {
  width: 100%;
  display: block;
}

/* Full-bleed video background section */
.video-bg-section {
  position: relative;
  overflow: hidden;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
}

.video-bg-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-bg-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.video-bg-section .video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 8vw 5vw;
}

/* ========== RENDER OVERLAP — Title behind truck effect ========== */
/* The 3D render sits ON TOP of the title, creating depth */
.render-section {
  padding: 8vw 0 4vw;
  overflow: hidden;
  position: relative;
}

.render-section .container {
  position: relative;
}

.render-section .section-label {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  display: block;
  padding: 0 5vw;
}

.render-section .overlap-title {
  font-family: var(--font-heavy);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  padding: 0 5vw;
  /* Subtle bottom fade so title blends into the render */
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, #000 92%, rgba(0, 0, 0, 0.4) 100%);
  mask-image: linear-gradient(to bottom, #000 75%, #000 92%, rgba(0, 0, 0, 0.4) 100%);
}

/* The floating render image — overlaps into title space */
.render-float {
  position: relative;
  z-index: 2;
  margin-top: -3vw;
  padding: 0 5vw;
}

.render-float img {
  width: 82%;
  max-width: 920px;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.22));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.render-float:hover img {
  transform: translateY(-1%) scale(1.015);
}

/* Right-aligned render */
.render-float.align-right {
  text-align: right;
}

/* Center-aligned render */
.render-float.align-center {
  text-align: center;
}

/* Left-aligned render */
.render-float.align-left {
  text-align: left;
}

/* Details below render */
.render-section .section-details {
  padding: var(--space-lg) 5vw 0;
  max-width: 650px;
}

/* Two-column details */
.render-section .section-details-split {
  padding: var(--space-lg) 5vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

/* ========== RENDER SHOWCASE — Clean minimal ========== */
.render-showcase {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  height: 160px;
  overflow: visible;
}

.render-showcase img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scale up wide/flat images so trailer body matches visually */
.render-showcase img[src*="Double-deck-trailer-1"] {
  transform: scale(1.35);
  transform-origin: center bottom;
}

.render-showcase:hover img {
  transform: scale(1.04);
}

.render-showcase:hover img[src*="Double-deck-trailer-1"] {
  transform: scale(1.39);
}

.render-showcase .render-label {
  position: absolute;
  bottom: 6%;
  left: 6%;
  font-family: var(--font-tech);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== FEATURE SECTIONS — For photo-based layouts ========== */
.feature-section {
  display: grid;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.feature-section.layout-a {
  grid-template-columns: 38% 62%;
  align-items: center;
}

.feature-section.layout-a .feature-text {
  padding: 8vw 4vw 8vw 5vw;
  z-index: 2;
}

.feature-section.layout-a .feature-visual {
  padding: 4vw 5vw 4vw 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-section.layout-c {
  grid-template-columns: 55% 45%;
  align-items: center;
  background: var(--bg-light);
}

.feature-section.layout-c .feature-visual {
  padding: 6vw 2vw 6vw 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-section.layout-c .feature-text {
  padding: 8vw 5vw 8vw 3vw;
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
  position: absolute;
  bottom: 3vw;
  left: 4vw;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.scroll-indicator .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    top: -100%;
  }

  50% {
    top: 0;
  }

  100% {
    top: 100%;
  }
}

.scroll-indicator .scroll-text {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ========== MOBILE BOTTOM BAR — hidden on desktop ========== */
.mobile-bottom-bar {
  display: none;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

/* Tooltip — appears on hover */
.whatsapp-float::after {
  content: 'Chat with us';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-tech);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ========== CINEMATIC VIDEO SHOWCASE ========== */
.cinematic-video-section {
  padding: 8vw 5vw 6vw;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
}

.cinematic-video-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--text-light);
}

.cinematic-video-header .title-medium {
  color: var(--text-light);
}

.cinematic-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.cinematic-video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cinematic-video-border {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
}

.cinematic-video-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 3;
  opacity: 0.6;
}

/* ========== STANDARD SECTIONS ========== */
.section {
  padding: var(--space-xl) 5vw;
  position: relative;
  border-bottom: 1px solid var(--grid-line);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Vakken / Boxed layout overrides */
.boxed-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
  margin: 0 -5vw;
  /* bleed out of section padding */
}

.boxed-grid-2>div {
  padding: var(--space-xl) 5vw;
}

.boxed-grid-2>div:first-child {
  border-right: 1px solid var(--grid-line);
}

.boxed-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
}

.boxed-grid-3>div {
  padding: var(--space-lg);
  border-right: 1px solid var(--grid-line);
}

.boxed-grid-3>div:last-child {
  border-right: none;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* ========== PARTNER LOGOS ========== */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
}

.partner-logos img {
  height: 45px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.partner-logos img:hover {
  opacity: 1;
}

/* ========== PRODUCT LINEUP — Premium configurator ========== */
.product-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.product-card {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card .render-showcase {
  border-radius: 0;
}

.product-card-info {
  background: transparent;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  text-align: center;
}

.product-card .product-label {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
}

.product-card .product-name {
  font-family: var(--font-heavy);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  display: block;
  color: var(--text-primary);
}

/* ========== IMAGE SECTIONS ========== */
.image-section {
  overflow: hidden;
  border-radius: 0;
}

/* ========== CONTACT PAGE — sticky info column ========== */
.contact-col-info {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  align-self: start;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-section:hover img {
  transform: scale(1.04);
}

/* ========== FOOTER ========== */
.footer-brutal {
  padding: 0;
  /* Reset padding for new structure */
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

.footer-content {
  padding: var(--space-md) 5vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
  /* Keep above canvas */
}

.footer-brutal a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
}

.footer-brutal a:hover {
  color: var(--accent);
}

/* Underline sweep on footer links */
.footer-brutal .footer-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-snap);
}

.footer-brutal .footer-content a:hover::after {
  width: 100%;
}

.footer-brutal .text-tech {
  color: rgba(255, 255, 255, 0.8);
}

/* Flickering Grid Container */
.flickering-grid-wrapper {
  width: 100%;
  height: 250px;
  position: relative;
  margin-top: -10px;
  /* Pull it up closer to content */
  margin-bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.flickering-grid-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 30%);
  z-index: 1;
  /* Fade into footer bar */
}

.flickering-canvas-container {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  bottom: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .product-lineup {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-section.layout-a,
  .feature-section.layout-c {
    grid-template-columns: 1fr;
  }

  .render-section .section-details-split {
    grid-template-columns: 1fr;
  }

  .render-float img {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-logo img {
    height: 80px;
  }

  .navbar.scrolled .nav-logo img {
    height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links .nav-link {
    font-size: 1.4rem;
    border-left: none;
  }

  .nav-links .btn {
    margin-left: 0;
    margin-top: var(--space-md);
    height: auto;
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent);
  }

  /* Hero — remove fixed height so stacked content is fully visible */
  .hero-split {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    min-height: auto;
    overflow: visible;
  }

  .hero-split-text {
    padding: calc(var(--nav-height) + 4vw) 6vw 8vw;
    border-right: none;
    overflow: visible;
  }

  .hero-split-visual {
    height: 50vh;
    min-height: 280px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 11vw, 5rem);
  }

  /* Hero text hierarchy on mobile — tighter spacing */
  .hero-split-text .text-tech {
    margin-bottom: 0.9rem;
  }

  .hero-split-text .hero-title {
    margin-bottom: 1rem;
  }

  /* Hero buttons — stack cleanly */
  .hero-split-text > div[style*="display: flex"] {
    flex-wrap: wrap;
  }

  /* Hide scroll indicator on mobile — overlaps content */
  .scroll-indicator {
    display: none;
  }

  /* Feature sections */
  .feature-section.layout-a,
  .feature-section.layout-c {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-section.layout-a .feature-text,
  .feature-section.layout-c .feature-text {
    padding: 10vw 6vw;
  }

  .feature-section.layout-a .feature-visual,
  .feature-section.layout-c .feature-visual {
    padding: 0;
    min-height: 260px;
  }

  /* Render sections */
  .render-section {
    padding: 12vw 0 6vw;
  }

  .render-section .section-label,
  .render-section .overlap-title {
    padding: 0 6vw;
  }

  /* Overlap title — prevent overflow on mobile */
  .render-section .overlap-title {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .render-float {
    margin-top: var(--space-sm);
    padding: 0 3vw;
  }

  .render-section .overlap-title {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .render-float img {
    width: 100%;
  }

  .render-section .section-details,
  .render-section .section-details-split {
    padding: var(--space-md) 6vw 0;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .product-lineup {
    grid-template-columns: 1fr;
  }

  /* Video sections — taller, centered text spanning full width */
  .video-bg-section {
    min-height: 45vh;
  }

  /* Video heading — large, centered, full width on mobile */
  .video-bg-section .video-content h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    text-align: center;
    width: 100%;
  }

  .video-bg-section .video-content {
    padding: 10vw 5vw;
    width: 100%;
  }

  /* Cinematic video showcase — mobile */
  .cinematic-video-section {
    padding: 12vw 4vw 8vw;
  }

  .cinematic-video-header h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .cinematic-video-wrapper {
    border-radius: 4px;
  }

  /* Partner logos */
  .partner-logos {
    gap: var(--space-lg);
  }

  .partner-logos img {
    height: 30px;
  }

  /* Footer — single column on mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-content > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--grid-line-light);
    padding-right: 0;
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

  /* Contact page — unstick on mobile */
  .contact-col-info {
    position: static;
  }

  /* Contact page — prevent long text overflow */
  .contact-col-info h3 {
    font-size: 1.1rem;
    word-break: break-word;
  }

  /* Data module in hero visual — hide on mobile so video is fully visible */
  .hero-split-visual .data-module {
    display: none;
  }

  /* Stats grid — center text on mobile */
  .stat-item {
    padding: var(--space-md) var(--space-sm);
  }

  /* Hero buttons — larger touch targets, more prominent */
  .hero-split-text .btn {
    padding: 1rem 1.8rem;
    font-size: 0.95rem;
    min-width: 140px;
    text-align: center;
  }

  /* Footer inner grid — single column on mobile */
  .footer-content .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Boxed grids — single column on mobile */
  .boxed-grid-2 {
    grid-template-columns: 1fr;
  }

  .boxed-grid-2 > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--grid-line);
  }

  .boxed-grid-3 {
    grid-template-columns: 1fr;
  }

  .boxed-grid-3 > div {
    border-right: none;
    border-bottom: 1px solid var(--grid-line);
  }

  .boxed-grid-3 > div:last-child {
    border-bottom: none;
  }

  /* Feature images — constrain inline min-heights on mobile */
  .feature-section .feature-visual .image-section {
    min-height: 240px;
    max-height: 50vh;
  }

  /* Feature text — always readable above visuals */
  .feature-section .feature-text {
    position: relative;
    z-index: 2;
  }

  /* Spec tables — compact on mobile */
  .spec-table th,
  .spec-table td {
    padding: 0.8rem 0.3rem;
    font-size: 0.72rem;
  }

  /* CTA title — fits on mobile screens */
  .title-massive {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }

  /* Flickering grid — less padding, more space for text */
  .flickering-canvas-container {
    left: 8px;
    right: 8px;
  }

  /* WhatsApp float — hide on mobile (replaced by sticky bar) */
  .whatsapp-float {
    display: none;
  }

  /* Sticky mobile bottom bar */
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--mobile-bar-height);
    background: var(--bg-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 998;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-bottom-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-tech);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .mobile-bottom-bar a:first-child {
    border-right: 1px solid rgba(255,255,255,0.1);
    color: #25D366;
  }

  .mobile-bottom-bar a:last-child {
    background: var(--accent);
    color: var(--text-light);
  }

  .mobile-bottom-bar a:active {
    opacity: 0.85;
  }

  .mobile-bottom-bar svg {
    width: 18px;
    height: 18px;
  }

  /* Offset body so footer isn't hidden behind sticky bar */
  body {
    padding-bottom: var(--mobile-bar-height);
  }

  /* Buttons — ensure min 50px touch target on mobile */
  .btn {
    min-height: 50px;
  }
}

/* ========== SMALL SCREENS (480px) ========== */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .roi-grid {
    grid-template-columns: 1fr;
  }

  /* Hero trust strip — single column */
  .hero-trust-strip {
    grid-template-columns: 1fr;
  }

  /* Tighter section padding */
  .section {
    padding: var(--space-lg) 4vw;
  }
}