/*
Theme Name: Battalion
Theme URI: https://battalion.com
Author: Battalion Technologies
Description: Battalion Technologies - Automatic Guided Vehicles
Version: 1.0
Text Domain: battalion
*/

/* ─── DESIGN TOKENS ─── */
:root {
  --black:       #000000;
  --black-deep:  #0a0a0a;
  --yellow:      #FFc107;
  --yellow-dim:  #c9a600;
  --white:       #FFFFFF;
  --grey-light:  #f0f0f0;
  --grey-mid:    #888888;
  --grey-dark:   #111111;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height:   80px;
  --max-width:    1440px;
  --gutter:       40px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dim); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }


.btn-experience {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background-color: white;
  color: black;
}
/* ─── HEADER ─── */
/* ════════════════════════════════════════
   HEADER & NAV — complete clean version
════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}

/* .logo-image {
  height: 36px;
  width: auto;
} */

/* ── Desktop nav ── */
.primary-nav {
  margin-left: auto;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.primary-nav > ul > li {
  position: relative;
}

.primary-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.primary-nav a:hover { color: var(--white); }

/* Arrow indicator */
.has-dropdown > a .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.5);
  margin-left: 2px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.has-dropdown:hover > a .arrow,
.has-dropdown.dropdown-open > a .arrow {
  transform: rotate(180deg);
  border-top-color: var(--yellow);
}

/* ── Desktop dropdown ── */
.has-dropdown { position: relative; }

/* Bridge so cursor can travel from link to dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 20px;
  display: none; /* hidden on mobile, shown on desktop via media query */
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: -16px;
  min-width: 220px;
  z-index: 500;
}

.dropdown-inner {
  background: #111;
  border: 1px solid rgba(255,209,0,0.15);
  border-radius: 6px;
  padding: 8px 0;
  overflow: hidden;
}

.dropdown li a {
  display: block;
  padding: 11px 20px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
  /* background: rgba(255,209,0,0.06); */
  color: var(--yellow);
}

/* ── Mega menu (Products) ── */
.mega-dropdown {
  position: fixed !important;
  left: 50%;
  transform: translateX(-50%);
  top: var(--nav-height) !important;
  min-width: 860px;
  max-width: 95vw;
}

.mega-inner {
  padding: 28px 32px 32px;
}

.mega-all-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 22px;
  transition: opacity 0.15s;
}

.mega-all-link:hover {
  opacity: 0.75;
  color: var(--yellow);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.mega-col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,209,0,0.2);
  margin-bottom: 12px;
  transition: opacity 0.15s;
}

.mega-col-title:hover {
  opacity: 0.75;
  color: var(--yellow);
}

.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col li a {
  display: block;
  padding: 7px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  white-space: nowrap;
  transition: color 0.15s, padding-left 0.15s;
}

.mega-col li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

/* Mobile nested dropdowns */
.mobile-dropdown--nested > .mobile-dropdown-toggle {
  padding-left: 16px;
  font-size: 0.95em;
  opacity: 0.85;
}

.mobile-dropdown--nested .mobile-submenu a {
  padding-left: 32px;
}

/* ── Request Quote button ── */
.btn-nav {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 8px;
}

/* ── Burger button ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Burger → X animation */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--black);
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-image-wrap {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  padding: 20px 0 0;
}
.hero-image-wrap img {
  width: 155%;
  max-width: 1700px;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(20px);
  animation: heroImageIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* Home page hero: full-width wrap, image tucked under nav */
body.home .hero {
  padding-top: var(--nav-height);
}
body.home .hero-image-wrap {
  width: 100%;
  padding: 0;
  margin-top: calc(var(--nav-height) * -0.25);
}
body.home .hero-image-wrap img {
  width: 100%;
  max-width: 1750px;
}

.hero-content {
  width: 100%;
  text-align: center;
  padding: 0 var(--gutter) 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .05em ;
  font-size: 4rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.hero-subtitle {
    color: var(--grey-mid);
    font-size: 16px;
    line-height: 1.75;
    max-width: 600px;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: var(--nav-height);
    justify-content: flex-start;
  }
  body.home .hero { padding-top: var(--nav-height); }
  body.home .hero-image-wrap { margin-top: 0; }
  
  /* Remove absolute positioning and 50% width */
  .hero-image-wrap {
    position: relative !important;
    width: 100% !important;
    padding: 40px 20px 20px 20px;
    margin: 0;
    flex: none;
  }
  
  .hero-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 100%;
  }
  
  /* Text content below the image */
  .hero-content {
    position: relative;
    padding: 20px var(--gutter) 60px;
    margin-top: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
  }
  
  .hero .hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 90%;
  }
}
/* AGV APPLICATIONS SECTION */
.applications-section {
    background: var(--black);
    padding: 100px 0;
}

.applications-header {
    text-align: center;
}

.applications-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0.05em;
    color: var(--white);
    margin: 20px 0 20px;
}

.applications-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 2rem;
}

.application-card {
    background: var(--grey-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.application-card:hover {
    border-color: rgba(255, 209, 0, 0.3);
    transform: translateY(-4px);
}

.application-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0a0a0a;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.application-card:hover .application-image img {
    transform: scale(1.05);
}

.application-content {
    padding: 28px 24px 32px;
}

.application-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 12px;
}

.application-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color:var(--grey-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.application-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.application-link:hover {
    color: var(--yellow);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .applications-section {
        padding: 60px 0;
    }
    
    .applications-title {
        font-size: 2rem;
    }
    
    .applications-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .application-image {
        height: 180px;
    }
    
    .application-content {
        padding: 20px;
    }
    
    .application-title {
        font-size: 1.3rem;
    }
    
    .application-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .application-image {
        height: 160px;
    }
}
/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer--hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}
.site-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-footer__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  z-index: 2;
}
.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.site-footer__cta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
  text-align: center;
}
.site-footer__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.site-footer__btn {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.site-footer__btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.site-footer__meta { display: flex; gap: 1rem; align-items: center; }
.site-footer__meta a { color: var(--white); text-decoration: none; }
.site-footer__meta a:hover { color: var(--yellow); }
.site-footer__sep { opacity: 0.4; }

@media (max-width: 768px) {
  .site-footer__bar { flex-direction: column; gap: 0.75rem; padding: 1.25rem; text-align: center; }
  .site-footer__meta { flex-wrap: wrap; justify-content: center; }
}


/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(24px); }
}
@keyframes fadeIn {
  to { opacity: 1; }
  from { opacity: 0; }
}
@keyframes heroImageIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root { --gutter: 24px; }
}
@media (max-width: 900px) {

  /* Show burger, hide desktop CTA */
  .nav-toggle { 
    display: flex !important; 
  }
  .btn-nav { 
    display: none !important; 
  }

  /* Mobile menu panel - slides from right */
  .primary-nav {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1200;
    margin: 0;
    padding: 0;
    left: auto; /* Important: override left:0 */
  }

  /* Open state — slides in from right */
  .primary-nav.mobile-open {
    transform: translateX(0);
  }

  /* Nav list vertical stack */
  .primary-nav > ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 20px 0 60px;
    align-items: stretch;
    margin: 0;
  }

  .primary-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    width: 100%;
    margin: 0;
  }

  .primary-nav > ul > li:last-child {
    border-bottom: none;
  }

  /* Nav links */
  .primary-nav > ul > li > a {
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Dropdown: collapsed by default on mobile */
  .dropdown {
    display: block !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
  }

  /* Prevent desktop hover from opening on mobile */
  .has-dropdown:hover .dropdown {
    max-height: 0;
  }

  /* JS adds this to open */
  .dropdown.mobile-dropdown-open {
    max-height: 500px;
  }

  .dropdown-inner {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown li:last-child {
    border-bottom: none;
  }

  .dropdown li a {
    padding: 14px 24px 14px 44px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
  }

  .dropdown li a:hover {
    color: var(--yellow);
    background: transparent;
  }

  /* Arrow rotates when dropdown open */
  .has-dropdown.dropdown-open > a .arrow {
    transform: rotate(180deg);
    border-top-color: var(--yellow);
  }
  
  /* Arrow styling for mobile */
  .has-dropdown > a .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.5);
    margin-left: 8px;
    transition: transform 0.25s ease;
  }
}

/* ── Desktop-only: hover shows dropdown ── */
@media (min-width: 901px) {
  .has-dropdown::after { display: block; }

  .has-dropdown:hover .dropdown,
  .dropdown--open {
    display: block;
  }
}

/* SECTION 2: TRUSTED BY MARQUEE */
.trusted-by {
  padding: 48px 0 52px;
  overflow: hidden;
  position: relative;
  background: var(--black);
  margin-bottom: 6rem;
}

.trusted-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 28px;
}

/* Constrained track — centred, not full width */
.marquee-track {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Fade mask on both ends using a pseudo-element */
.marquee-track::before,
.marquee-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-track::before {
  left: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}
.marquee-track::after {
  right: 0;
  background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.32);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}
.marquee-logo:hover { color: rgba(255,255,255,0.65); }

.marquee-logo--img img {
  height: 40px;
  width: auto;
  opacity: 0.32;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.2s;
}
.marquee-logo--img:hover img { opacity: 0.65; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track:hover .marquee-inner {
  animation-play-state: paused;
}


/* ═══════════════════════════════════════
   PRODUCT SECTIONS (3, 5, 7, 9)
═══════════════════════════════════════ */
.product-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.product-image-bg {
  position: absolute;
  inset: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.product-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
  /* -webkit-mask-image: radial-gradient(
    ellipse 120% 120% at 50% 50%,
    black 85%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 120% 120% at 50% 50%,
    black 85%,
    transparent 100%
  ); */
}

.product-card {
  position: relative;
  z-index: 2;
  background: color-mix(in oklab, black 75%, oklch(0 0 0 / 0.15));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklab, white 25%, black 10%);
  border-radius: 10px;
  padding: 20px 20px;
  max-width: 400px;
  margin-left: 15rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* margin-bottom: 20rem; */
}
.product-card--left {
   margin-left: 10rem;
}

.product-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .05em !important;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}
.product-feature {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .05em !important;
  line-height: 1.05;
  color: var(--white);
}
@media (max-width: 768px) {
  .product-title,
  .product-feature {
    font-size: 32px; /* Slightly smaller on mobile */
  }
  .product-section {
    min-height: auto;
    flex-direction: column;
    padding: 60px 0;
  }
  
.product-image-bg {
    position: relative;
    height: 300px;
    opacity: 1;
    margin-bottom: 20px;
  }
  
  .product-image-bg img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    -webkit-mask-image: none; 
    mask-image: none; 
  }
  
  .product-card {
    position: relative;
    margin: 0 20px !important;
    max-width: calc(100% - 40px) !important;
    background: color-mix(in oklab, oklch(0.71 0 0) 20%, transparent);
    backdrop-filter: blur(16px);
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .product-desc {
    font-size: 0.9rem;
  }
  
  .product-specs {
    gap: 20px;
  }
}

.product-desc {
  font-size: 16px;
  color: var(--grey-mid);
  line-height: 1.75;
}
.product-specs {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.spec-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 12px 20px;
  border-radius: 10px;
  width: fit-content;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin-left: 6px;
}
.btn-explore:hover .arrow {
  border-top: 2px solid black;
  border-right: 2px solid black;
}
.btn-explore:hover {
  border-color: white;
  background-color: white;
  color: black;
}


/* ═══════════════════════════════════════
   DETAIL SECTIONS (4, 6, 8, 10)
═══════════════════════════════════════ */
.detail-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.detail-video-wrap,
.detail-image-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-video-wrap video,
.detail-image-wrap img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.detail-card {
  position: relative;
  z-index: 2;
  background: color-mix(in oklab, oklch(0.71 0 0) 15%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklab, oklch(0.71 0 0) 40%, transparent);
  border-radius: 10px;
  padding: 20px 20px;
  max-width: 400px;
  margin-left: 10rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 15rem;
}
.detail-card--left {
   margin-left: 17rem;
}

.detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}
.detail-text {
  font-size: 16px;
  color: var(--grey-mid);
  line-height: 1.75;
}
.detail-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.detail-specs {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════
   RESPONSIVE: PRODUCT + DETAIL SECTIONS
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-card { margin-left: 4rem; }
  .product-card--left { margin-left: 4rem; }
}
@media (max-width: 900px) {
  .product-image-bg {
    justify-content: center;
    padding-right: 0;
  }
  .detail-section {
    flex-direction: column;
  }
  .product-card,
  .detail-card {
    margin: 0 var(--gutter);
    max-width: 100%;
  }
  .product-card--left { margin-left: var(--gutter); }
}
@media (max-width: 600px) {
  .product-title { font-size: 2rem; }
  .product-card { padding: 28px 24px; }
  .detail-card { padding: 24px 20px; }
}

/*OUR INDUSTRIES */
.industries-section {
  background: var(--black);
  padding: 120px 0 100px;
}


.industries-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: .05em !important;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .industries-title {
    font-size: 2.8rem;
  }
    .industries-section {
    padding: 60px 0;
  }
  
  .industries-title {
    font-size: 2.5rem !important;
  }
  
  .industries-subtitle {
    font-size: 0.9rem;
  }
  
  .industry-row {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 40px 20px;
  }

  .industry-num {
    display: block;
  }
  
  .industry-name {
    font-size: 1.8rem;
  }
  
  .industry-desc {
    font-size: 0.9rem;
  }
  
  .industry-tags {
    gap: 6px;
  }
  
  .tag {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
    .detail-section {
    min-height: auto;
    flex-direction: column;
    padding: 60px 0;
  }
  
  .detail-image-wrap {
    position: relative;
    height: 250px;
    margin-bottom: 20px;
  }
  
  .detail-image-wrap img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
  
  .detail-card {
    position: relative;
    margin: 0 20px !important;
    max-width: calc(100% - 40px) !important;
  }
  
  .detail-specs {
    gap: 20px;
  }
}
.industries-subtitle {
  font-size: 16px;
  color: var(--grey-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* Each industry row */
.industry-row {
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 0 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease;
}
.industry-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.industry-num {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.08em;
  padding-top: 6px;
}
.industry-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 35px;
  color: var(--white);
      letter-spacing: .05em;
  line-height: 1.1;
}
.industry-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.industry-desc {
  font-size: 16px;
  color: var(--grey-mid);
  line-height: 1.8;
  max-width: 600px;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 3px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover {
  border-color: white;
  color: white;
}

@media (max-width: 900px) {
  .industry-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .industry-right { grid-column: 1 / -1; padding-top: 16px; }
  .industry-name { font-size: 28px; }
}
@media (max-width: 600px) {
  .industry-row { grid-template-columns: auto 1fr; }
  .industry-num { display: block; }
  .industry-right { grid-column: 1 / -1; padding-top: 16px; }
}


/* START A CONSULTATION*/
.consultation-section {
  background: var(--black);
  padding: 120px 0 140px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Left */
.consultation-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
  line-height: 1.1;
}
.consultation-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.consultation-steps li {
  display: flex;
  align-items: center;
  gap: 24px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  min-width: 48px;
}
.step-label {
  font-size: 16px;
  color: var(--grey-mid);
  line-height: 1.4;
}

/* Right: form */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-group label {
  color: var(--grey-mid);
  font-size: 12px;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.28);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  padding-top: 4px;
}

/* Fieldsets */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-fieldset legend {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
  float: left;
  width: 100%;
}
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  clear: both;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.2s;
}
.radio-label:hover { color: rgba(255,255,255,0.85); }
.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0;
}
.radio-label input[type="radio"]:checked {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: inset 0 0 0 3px var(--black);
}
.radio-label input[type="radio"]:hover {
  border-color: rgba(255,255,255,0.5);
}

/* Send button */
.btn-send {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--yellow);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-send:hover {
  background: var(--yellow);
  color: var(--black);
}

@media (max-width: 1024px) {
  .consultation-grid { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 600px) {
  .form-row--2col { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   CARD SCROLL ANIMATION (left → right)
═══════════════════════════════════════ */
.product-card,
.detail-card {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 2.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card.card-visible,
.detail-card.card-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   GSAP SCROLL-SCRUBBED VIDEO
═══════════════════════════════════════ */
.scrub-section {
  height: 250vh;
  position: relative;
}

.scrub-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--black);
}

/* Canvas replaces the video element visually */
.scrub-canvas {
  position: absolute;
  inset: 0;
  width: auto;
  height: 80%;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
}


.scrub-video {
  position: absolute;
  inset: 0;
  width: auto;
  height: 80%;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
}

/* Card sits on the left, video is behind it */
.scrub-sticky .detail-card {
  position: relative;
  z-index: 2;
  background: color-mix(in oklab, oklch(0.71 0 0) 15%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklab, oklch(0.71 0 0) 40%, transparent);
  border-radius: 10px;
  padding: 20px 20px;
  max-width: 400px;
  margin-left: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 10rem;
}

.scrub-sticky .detail-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Fix for Scrub Sections */
@media (max-width: 768px) {
  .scrub-section {
    height: 200vh;
  }
  
  .scrub-sticky {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
  }
  
  .scrub-canvas,
  .scrub-video {
    height: 60%;
    width: auto;
    top: 40%;
  }
  
  .scrub-sticky .detail-card {
    margin: 0 20px !important;
    max-width: calc(100% - 40px) !important;
    margin-bottom: 40px !important;
  }
}
/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */

.about-page {
  background: var(--black);
}

/* ── Hero ── */
.about-hero {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 280px;
    text-align: left;
}

.about-hero__content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left; 
    align-items: flex-start;
}

.about-hero__title {
    font-family: var(--font-display);
    font-weight: 600 ;
    font-size: 4.2rem;
    line-height: 0.93;
    letter-spacing: 0.04em;
    text-transform: uppercase ;
    color: #000000;
}

.about-hero__subtitle {
    color: black;
    line-height: 1.7;
    max-width: 480px;
}

/* ── Pioneers ── */
.about-pioneers {
  background: var(--black);
  padding: 120px 0;
}

.about-pioneers__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.about-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 5px 14px;
  border-radius: 20px;
}

.about-pioneers__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.about-pioneers__text {
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ── Team ── */
.about-team {
  background: var(--black);
  padding: 0 0 120px;
}

.about-team__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.team-card:hover {
  border-color: rgba(255,209,0,0.2);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.team-card__role {
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

.team-card__links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.team-card__links a {
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.team-card__links a:hover {
  color: var(--yellow);
}

/* ── Why Choose ── */
.about-why {
  background: var(--black);
  padding: 100px 0;
}

.about-why__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s;
}

.why-card:hover {
  border-color: rgba(255,209,0,0.2);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.why-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.why-card__text {
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ── CTA ── */
.about-cta {
  background: var(--black);
  padding: 120px 0 140px;
  text-align: center;
}

.about-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.about-cta__subtitle {
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  line-height: 1.7;
}

.about-cta__btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.about-cta__btn:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-team__grid  { grid-template-columns: repeat(2, 1fr); }
  .about-why__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero        { padding: calc(var(--nav-height) + 48px) var(--gutter) 72px; }
  .about-hero__title { font-size: 3.5rem; }
  .about-team__grid  { grid-template-columns: 1fr; }
  .about-why__grid   { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   COOKIE POLICY PAGE
════════════════════════════════════════ */
.cookie-page {
  background: var(--black);
}

.cookie-content {
  padding: 120px 0 140px;
}

.cookie-content__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 80px;
}

.cookie-content__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.cookie-content__intro {
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 600px;
}

.cookie-content__body {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.cookie-section__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cookie-section p,
.cookie-section ul,
.cookie-section li {
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.cookie-section p + p {
  margin-top: 14px;
}

.cookie-section ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-section strong {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.cookie-section a {
  color: var(--yellow);
  text-decoration: none;
  transition: opacity 0.2s;
}

.cookie-section a:hover {
  opacity: 0.75;
}

.cookie-section code {
  font-family: monospace;
  font-size: 0.85em;
  color: var(--yellow);
  background: rgba(255,209,0,0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.cookie-table th {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
}

.cookie-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

@media (max-width: 768px) {
  .cookie-content { padding: 80px 0 100px; }
  .cookie-content__title { font-size: 2rem; }
  .cookie-table th,
  .cookie-table td { padding: 10px 12px; font-size: 0.85rem; }
}

/* ════════════════════════════════════════
   SEARCH BY APPLICATION PAGE
════════════════════════════════════════ */
/* ═══════════════════════════════════════
   APPLICATION VIDEO SECTION
═══════════════════════════════════════ */

.application-video {
  margin: 48px 0;
}

.application-video__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.application-video__wrapper video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Play button overlay */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.application-video__wrapper:hover .video-play-overlay {
  opacity: 1;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 209, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.video-play-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
  color: #000;
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--yellow);
}

/* Video caption */
.application-video__caption {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Video Modal */
.sba-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  cursor: pointer;
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.sba-video-modal.active {
  display: flex;
}

.sba-video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  cursor: default;
}

.sba-video-modal__content video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.sba-video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
  font-size: 24px;
  font-weight: 300;
}

.sba-video-modal__close:hover {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(90deg);
}

.sba-video-modal__hint {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .video-play-btn {
    width: 56px;
    height: 56px;
  }
  
  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .application-video {
    margin: 32px 0;
  }
  
  .sba-video-modal__close {
    top: -40px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

.sba-page {
  background: var(--black);
  color: var(--white);
}

/* ── Hero ── */
.sba-hero {
  padding: calc(var(--nav-height) + 80px) 0 60px;
  text-align: center;
  background: var(--black);
}

.sba-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.sba-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.sba-hero__subtitle {
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Tabs section ── */
.sba-tabs-section {
  padding: 40px 0 120px;
}

/* ── Tab buttons ── */
/* ── Tab buttons with expand on hover ── */
/* ── Tab buttons with expand on hover (only hovered tab expands) ── */
.sba-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
  align-items: start;
}

.sba-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 110px;
}

/* Tab content wrapper - stays at bottom */
.sba-tab__content {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--black);
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
  margin-top: auto;
}

/* Video preview container - hidden by default */
.sba-tab__preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0a;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.3s ease;
}

.sba-tab__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* On hover - expand ONLY this tab */
.sba-tab:hover {
  transform: translateY(-4px);
  border-color: rgba(255,209,0,0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.sba-tab:hover .sba-tab__preview {
  max-height: 200px;
  opacity: 1;
}

.sba-tab:hover .sba-tab__video {
  opacity: 1;
}

/* Other tabs remain unchanged - no transformation */
.sba-tab:not(:hover) {
  transform: none;
}

/* Active tab styling */
.sba-tab--active {
  border-color: var(--yellow);
  background: rgba(255,209,0,0.03);
}



.sba-tab--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  z-index: 5;
}

/* Active tab hover state - still expands but maintains active styling */
.sba-tab--active:hover {
  border-color: var(--yellow);
}

.sba-tab__icon {
  color: rgba(255,255,255,0.5);
  display: flex;
  transition: color 0.3s ease;
}

.sba-tab--active .sba-tab__icon {
  color: var(--yellow);
}

.sba-tab__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

.sba-tab__count {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* Expand hint */
.sba-tab__expand-hint {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.sba-tab:hover .sba-tab__expand-hint {
  opacity: 1;
}

/* Ensure the grid doesn't shift when one tab expands */
.sba-tabs {
  grid-template-rows: auto;
}

/* Prevent other tabs from being affected by hovered tab expansion */
.sba-tab {
  transition-property: transform, border-color, box-shadow;
}

.sba-tab__preview {
  transition-property: max-height, opacity;
}

/* ── Panels ── */
.sba-panel {
  display: none;
}

.sba-panel--active {
  display: block;
  animation: sbaFadeIn 0.3s ease;
}

@keyframes sbaFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Panel header ── */
.sba-panel__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.sba-panel__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,209,0,0.1);
  border: 1px solid rgba(255,209,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.sba-panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.sba-panel__desc {
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ── Product grid ── */
.sba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Product card ── */
.sba-card {
  background: var(--grey-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}

.sba-card:hover {
  border-color: rgba(255,209,0,0.2);
  transform: translateY(-4px);
}

.sba-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sba-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.sba-card:hover .sba-card__image img {
  transform: scale(1.04);
}

.sba-card__body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.sba-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.sba-card__type {
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: -6px;
}

.sba-card__capacity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sba-card__capacity-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.sba-card__capacity-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.sba-card__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.sba-card__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.sba-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sba-card__features li {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.sba-card__features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.25);
}

.sba-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 10px 16px;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.sba-card__btn:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.sba-card__btn:hover .arrow {
  border-top-color: var(--black);
  border-right-color: var(--black);
}

/* ── Why section ── */
.sba-why {
  background: var(--black);
  padding: 100px 0;
}

.sba-why__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
}

.sba-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.sba-why__item {
  position: relative;
  padding-left: 20px; 
}
.sba-why__item::before {
  content: '';
  position: absolute;
  left: 0;

  top: 8px;
  bottom: 8px;
  width: 3px;

  background: var(--yellow);
  border-radius: 2px;
}
.sba-why__item-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.sba-why__item-text {
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* ── CTA ── */
.sba-cta {
  background: var(--black);
  padding: 100px 0 140px;
  text-align: center;
}

.sba-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sba-cta__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.sba-cta__subtitle {
  color: rgba(255,255,255,0.42);
  max-width: 480px;
  line-height: 1.7;
}

.sba-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 16px 32px;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.sba-cta__btn:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.sba-cta__btn:hover .arrow {
  border-top-color: var(--black);
  border-right-color: var(--black);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .sba-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Hero — tighter spacing and smaller text */
  .sba-hero {
    padding: calc(var(--nav-height) + 40px) 0 40px;
  }
  .sba-hero__title {
    font-size: 2.8rem;
    letter-spacing: 0.03em;
  }
  .sba-hero__subtitle {
    font-size: 0.875rem;
  }

  /* Tabs — 2x2 compact square grid */
  .sba-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 40px;
  }
  .sba-tab {
    padding: 14px 12px;
    gap: 6px;
    border-radius: 8px;
  }
  .sba-tab__icon {
    width: 20px;
    height: 20px;
  }
  .sba-tab__icon svg {
    width: 18px;
    height: 18px;
  }
  .sba-tab__label {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }
  .sba-tab__count {
    font-size: 0.65rem;
  }

  /* Panel header — smaller on mobile */
  .sba-panel__header {
    gap: 12px;
    margin-bottom: 24px;
  }
  .sba-panel__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .sba-panel__icon svg {
    width: 18px;
    height: 18px;
  }
  .sba-panel__title {
    font-size: 1.4rem;
  }
  .sba-panel__desc {
    font-size: 0.8rem;
  }

  /* Product grid — single column on mobile */
  .sba-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Cards — tighter padding */
  .sba-card__name { font-size: 1.4rem; }
  .sba-card__body { padding: 16px; gap: 10px; }

  /* Why grid */
  .sba-why__grid { grid-template-columns: 1fr; gap: 28px; }
  .sba-why { padding: 60px 0; }
  .sba-why__title { font-size: 1.8rem; margin-bottom: 36px; }

  /* CTA */
  .sba-cta { padding: 60px 0 80px; }
  .sba-cta__title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .sba-hero__title { font-size: 2.2rem; }

  /* Keep 2 columns on small phones — 1 column only on very small */
  .sba-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Application Detail Section */
.application-detail {
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 8rem;
}

.application-pill {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--yellow);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.application-detail__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 20px;
}

.application-detail__desc {
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.7;
    text-align: center;

}

/* Use Cases */
.use-cases {
    margin-top: 40px;
}

.use-cases__title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 24px;
}

.use-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.use-case-card {
    padding: 36px 32px;;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.use-case-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    /* font-size: 1rem; */
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 8px;
}

.use-case-card__desc {
    color: var(--grey-mid);
    line-height: 1.5;
}

/* Compatible Models */
.compatible-models {
    margin-top: 8rem;
}

.compatible-models__header {
    text-align: center;
    margin-bottom: 40px;
}

.compatible-models__title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.compatible-models__subtitle {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
}

/* Card Updates */
.sba-card__operation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 10px 0;
}

.sba-card__operation-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.sba-card__operation-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--yellow);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .application-detail {
        padding: 24px;
    }
    
    .application-detail__title {
        font-size: 1.5rem;
    }
    
    .use-cases__grid {
        grid-template-columns: 1fr;
    }
    
    .compatible-models__subtitle {
        font-size: 1.2rem;
    }
}

/* ─── INSIGHTS PAGE ─── */
.insights-page {
    background: var(--black);
    min-height: 100vh;
}

/* Hero Section - Matches About page but with adjusted styling */
.insights-hero {
    min-height: 60vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 60px) 0 80px;
    text-align: center;
}

.insights-hero__content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.insights-hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 6rem;
    line-height: 0.93;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.insights-hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Articles Grid Section */
.insights-grid-section {
    background: var(--black);
    padding: 60px 0 100px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Article Card */
.insights-card {
    background: var(--grey-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.insights-card:hover {
    border-color: rgba(255, 209, 0, 0.3);
    transform: translateY(-4px);
    background: rgba(17, 17, 17, 0.9);
}

.insights-card__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--yellow);
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
}

.insights-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--white);
    margin: 0;
}

.insights-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color:var(--grey-mid);
    margin: 0;
    flex-grow: 1;
}

.insights-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.insights-card__date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

.insights-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.2s ease;
}

.insights-card__link:hover {
    color: var(--yellow);
}

.insights-card__link .arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.insights-card__link:hover .arrow {
    transform: rotate(45deg) translateX(4px);
}

/* CTA Section */
.insights-cta {
    background: var(--black);
    padding: 100px 0 120px;
    text-align: center;
}

.insights-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.insights-cta__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    color: var(--white);
    margin: 0;
}

.insights-cta__subtitle {
    font-size: 1rem;
    color:var(--grey-mid);
    line-height: 1.6;
}

.insights-cta__btn {
    margin-top: 16px;
    padding: 14px 32px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 1024px) {
    .insights-hero__title {
        font-size: 4rem;
    }
    
    .insights-hero__subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .insights-hero {
        padding: calc(var(--nav-height) + 40px) 0 60px;
        min-height: 50vh;
    }
    
    .insights-hero__title {
        font-size: 3rem;
    }
    
    .insights-hero__subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .insights-card {
        padding: 28px 24px;
    }
    
    .insights-card__title {
        font-size: 1.3rem;
    }
    
    .insights-cta__title {
        font-size: 2rem;
    }
    
    .insights-grid-section {
        padding: 40px 0 80px;
    }
}

@media (max-width: 480px) {
    .insights-hero__title {
        font-size: 2.5rem;
    }
    
    .insights-hero__subtitle {
        font-size: 0.9rem;
    }
    
    .insights-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ════════════════════════════════════════
   PRODUCTS OVERVIEW PAGE  (po-)
════════════════════════════════════════ */

.po-page {
  background: var(--black);
  color: var(--white);
}

/* ── Shared pill ── */
.po-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ── Hero ── */
.po-hero {
  padding: calc(var(--nav-height) + 80px) 0 100px;
  background: var(--black);
}

.po-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.po-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Sections ── */
.po-section {
  padding: 100px 0;
}

/* .po-section--dark {
  background: var(--grey-dark);
} */

.po-section__header {
  margin-bottom: 60px;
}

.po-section__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.po-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.po-section__subtitle {
  font-size: 16px;
  color:var(--grey-mid);
  max-width: 680px;
  line-height: 1.75;
}

/* ── Grid ── */
.po-grid {
  display: grid;
  gap: 16px;
}

.po-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Feature cards ── */
.po-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s;
}


.po-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.po-feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  /* font-size: 0.95rem; */
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.3;
}

.po-feature-card__text {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* ── Callout block ── */
.po-callout {
  margin-top: 40px;
  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.po-callout__text {
  font-size: 0.95rem;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 860px;
}

.po-callout__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.po-callout__tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

/* ── Text block ── */
.po-text-block {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
}

.po-text-block__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}

.po-text-block__text {
  color:var(--grey-mid);
  line-height: 1.8;
}

/* ── Benefit cards ── */
.po-benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s;
}



.po-benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.po-benefit-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}

.po-benefit-card__list {
  list-style: none;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.po-benefit-card__list li {
  color:var(--grey-mid);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.po-benefit-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;

}

/* ── CTA ── */
.po-cta {
  padding: 100px 0 140px;
  text-align: center;
}

.po-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 680px;
}

.po-cta__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 35px;
  color:var(--white);
}

.po-cta__text {
  color: var(--grey-mid);
  line-height: 1.8;
}

.po-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--black);
  padding: 12px 20px;
  border-radius: 10px;
  width: fit-content;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  background-color: var(--white);
}

.po-cta__btn:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.po-cta__btn:hover .arrow {
  border-top-color: var(--black);
  border-right-color: var(--black);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .po-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .po-hero { padding: calc(var(--nav-height) + 48px) 0 60px; }
  .po-hero__title { font-size: 2.4rem; }
  .po-section { padding: 60px 0; }
  .po-grid--3 { grid-template-columns: 1fr; }
  .po-callout { padding: 24px 20px; }
  .po-section__title { font-size: 1.8rem; }
  .po-text-block { padding-top: 32px; margin-top: 32px; }
}

/* Form Messages */
.form-message {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disabled button state */
.btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ═══════════════════════════════════════
   VIDEO CAROUSEL HERO SECTION
═══════════════════════════════════════ */

.video-carousel-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.video-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Slides Container */
.video-carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual Slide */
.video-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.video-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Video Background */
.carousel-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

/* Content */
.carousel-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 0.8s ease forwards;
  margin-left: 5rem;
  /* margin-top: 8rem; */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow, #ffd100);
  background: rgba(255, 209, 0, 0.15);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  width: fit-content;
}

.carousel-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--white, #ffffff);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.carousel-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 32px;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white, #fff);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.carousel-btn:hover {
  border-color: var(--yellow, #ffd100);
  background: var(--yellow, #ffd100);
  color: var(--black, #000);
  transform: translateY(-2px);
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white, #fff);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-arrow:hover {
  background: rgba(255, 209, 0, 0.2);
  border-color: var(--yellow, #ffd100);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow--prev {
  left: 24px;
}

.carousel-arrow--next {
  right: 24px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--yellow, #ffd100);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Play/Pause Button */
.carousel-play-pause {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white, #fff);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-play-pause:hover {
  background: rgba(255, 209, 0, 0.2);
  border-color: var(--yellow, #ffd100);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-title {
    font-size: 3rem;
  }
  
  .carousel-content {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .carousel-title {
    font-size: 2.2rem;
  }
  
  .carousel-content {
    padding: 0 40px;
  }
  
  .carousel-description {
    font-size: 0.85rem;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  
  .carousel-arrow--prev {
    left: 12px;
  }
  
  .carousel-arrow--next {
    right: 12px;
  }
  
  .carousel-play-pause {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
  
  .carousel-dots {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .carousel-title {
    font-size: 1.8rem;
  }

  .carousel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-left: 0;
  }

  .carousel-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-description {
    text-align: center;
  }

  .carousel-btn {
    font-size: 0.7rem;
    padding: 10px 20px;
  }

  .carousel-arrow {
    display: none;
  }
}

/* home page */
/* ═══════════════════════════════════════
   WHAT IS AGV SECTION
═══════════════════════════════════════ */
.what-is-agv {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
  margin-bottom: 5rem;
}

/* Subtle background accent */
.what-is-agv::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,209,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.what-is-agv__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.what-is-agv__pill {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow, #ffd100);
  background: rgba(255,209,0,0.1);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.what-is-agv__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--white, #fff);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.2;
}

.what-is-agv__description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-mid);
  margin-bottom: 20px;
}

.what-is-agv__list-wrapper {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.what-is-agv__list-intro {
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white, #fff);
  margin-bottom: 20px;
}

.what-is-agv__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.what-is-agv__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-mid);
}

.what-is-agv__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255,209,0,0.15);
  border-radius: 50%;
  color: var(--yellow, #ffd100);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .what-is-agv {
    padding: 60px 0;
  }
  
  .what-is-agv__list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .what-is-agv__title {
    font-size: 1.8rem;
  }
  
  .what-is-agv__description {
    font-size: 0.9rem;
  }
  
  .what-is-agv__list-intro {
    font-size: 1rem;
  }
  
  .what-is-agv__item {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════
   HOME-2 ADDITIONS
═══════════════════════════════════════ */

/* Hero */
.hero {
  padding: 140px 56px 0;
  background: #000;
}

.hero-top {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto 2.5rem;
  /* padding: 3rem 2rem 0; */
  text-align: left;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.005em;
  max-width: 830px;
  color: #fff;
  margin: 0;
  text-transform: none;
  text-align: left;
  padding: 0;
}

.hero-tagline .muted {
  color: #9a9ba1;
  font-weight: 400;
}

.hero-stage {
  position: relative;
  max-width: 1640px;
  margin: 0 auto;
  background: #0b0b0d;
  overflow: hidden;
}

.hero-stage img,
.hero-stage-media {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
}

.hero-stage-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  pointer-events: none;
}


.hero-callout {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 22px 26px;
  width: 320px;
  z-index: 10;
}

.hero-callout__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-callout__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--black);
  flex-shrink: 0;
}

.hero-callout__text {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.hero-megatype {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(120px, 20vw, 350px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 8px 60px rgba(0,0,0,0.4);
  pointer-events: none;
  user-select: none;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

@media (max-width: 768px) {
  .hero { padding: 80px 20px 0; }
  .hero-top { margin-bottom: 1.5rem; }
  .hero-megatype { font-size: clamp(48px, 13vw, 180px); }
  .hero-stage--has-callout { overflow: visible; position: relative; }
  .hero-callout {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    max-width: 240px;
    padding: 12px 14px;
  }
  .hero-callout__title { font-size: 0.68rem; letter-spacing: 0.14em; margin-bottom: 6px; }
  .hero-callout__text  { font-size: 0.72rem; line-height: 1.45; }
  .hero-callout__dot   { width: 6px; height: 6px; }
  .page-template-template-product .hero-callout { display: none; }
  .page-template-template-robot .hero-callout { display: none; }
}

/* Use-case pills */
.usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.uc {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,209,0,0.1);
  border: 1px solid rgba(255,209,0,0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

/* About BATTALION 3-col grid */
.about-battalion-section {
  padding: 8rem 0;
  background: var(--black);
}

.about-battalion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-battalion-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.8rem 0 1rem;
  line-height: 1.05;
}

.about-battalion-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-mid);
}

.about-attr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-attr-item {
  padding: 1rem 1.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--grey-mid);
  cursor: pointer;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.about-attr-item:hover {
  color: var(--white);
}

.about-attr-item.active {
  color: var(--yellow);
  border-left-color: transparent;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 0.6rem;
}

.about-attr-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-mid);
  padding-left: 1.25rem;
  position: relative;
}
.about-attr-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

@media (max-width: 900px) {
  .about-battalion-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .about-battalion-left,
  .about-battalion-centre,
  .about-battalion-right { text-align: center; }
  .about-attr-item { border-left: none; }
  .about-attr-text { padding-left: 0; }
  .about-attr-text::before { display: none; }
  .about-battalion-left   { order: 1; }
  .about-battalion-right  { order: 2; }
  .about-battalion-centre { order: 3; }
}

/* Atlas / One brain section */
.atlas-section {
  padding: 8rem 0;
  background: var(--black);
}

.atlas-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.atlas-image-placeholder {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}

div.atlas-image-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.atlas-brain-rotate {
  animation: atlas-brain-spin 30s linear infinite;
}

@keyframes atlas-brain-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .atlas-brain-rotate { animation: none; }
}

.atlas-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0.8rem 0 1rem;
}

.atlas-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}

.atlas-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.atlas-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.atlas-feature-bar {
  width: 3px;
  min-height: 48px;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.atlas-feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.3rem;
}

.atlas-feature-desc {
  font-size: 0.88rem;
  color: var(--grey-mid);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .atlas-grid {
    grid-template-columns: 1fr;
  }
  .atlas-right { order: 1; text-align: center; }
  .atlas-left  { order: 2; display: flex; justify-content: center; }
}

/* How It Works */
.how-it-works-section {
  padding: 6rem 0;
  background: var(--black);
}

.how-it-works-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
}

.how-it-works-lede {
  text-align: center;
  color: var(--grey-mid);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-frame {
  aspect-ratio: 5/4;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}

.step-num {
  font-family: var(--font-display);
  /* font-size: 2rem; */
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.4rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ── How It Works Tiles (photo grid, reusable) ── */
.how-it-works-tiles-section {
  padding: 100px 0;
  background: var(--black);
}

.how-it-works-tiles-section .how-it-works-heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.how-it-works-tiles-lede {
  text-align: center;
  color: var(--grey-mid);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

.how-it-works-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-it-works-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-it-works-tile__image {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.how-it-works-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-it-works-tile figcaption h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}

.how-it-works-tile figcaption p {
  color: rgba(255,255,255,0.48);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

.how-it-works-tiles-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Larger variant (home page) */
.how-it-works-tiles--large {
  gap: 32px;
}

.how-it-works-tiles--large .how-it-works-tile__image {
  aspect-ratio: 1 / 1;
}

.how-it-works-tiles--large .how-it-works-tile figcaption h3 {
  font-size: 1.15rem;
}

.how-it-works-tiles--large .how-it-works-tile figcaption p {
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .how-it-works-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .how-it-works-tiles { grid-template-columns: 1fr; }
  .how-it-works-tiles-section { padding: 60px 0; }
}

/* Customers */
.customers-section {
  padding: 5rem 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.customers-header {
  text-align: center;
  margin-bottom: 3rem;
}

.customers-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.75rem 0 0.5rem;
}

.customers-subtitle {
  color: var(--grey-mid);
  font-size: 0.95rem;
}

.customers-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.08);
}

.customer-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.customer-logo-img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.customer-logo-img:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .customers-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Partners / Plug-in section */
.partners-section {
  padding: 6rem 0;
  background: #ece9e0;
}

.partners-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.partners-section .about-pill {
  color: #1a1a1a;
  background: rgba(0,0,0,0.08);
}

.partners-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0.75rem 0 1rem;
  line-height: 1.15;
}

.partners-heading-accent {
  color: var(--color-accent, #c8732a);
}

.partners-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

.partners-section .btn-explore {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.partners-section .btn-explore:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ── Grain ── */
.hero-stage::after,
.product-image-bg::after,
.product-hero__image-col::after,
.site-footer--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.45;
  background-size: 240px 240px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: 2;
}


/* ══════════════════════════════════════════════
   HOME PAGE — MOBILE RESPONSIVENESS PASS
   Targets new sections added after initial build.
   Breakpoints: 1024 / 900 / 768 / 600 / 480 / 375
══════════════════════════════════════════════ */

/* ── Container gutter tightening ── */
@media (max-width: 480px) {
  :root { --gutter: 20px; }
}

/* ── Trusted-By marquee ── */
@media (max-width: 768px) {
  .trusted-by { padding: 36px 0 40px; margin-bottom: 4rem; }
  .marquee-track::before,
  .marquee-track::after { width: 80px; }
  .marquee-inner { gap: 40px; }
}
@media (max-width: 480px) {
  .trusted-by { margin-bottom: 2.5rem; }
  .marquee-track::before,
  .marquee-track::after { width: 50px; }
  .marquee-inner { gap: 28px; }
  .marquee-logo--img img { height: 28px !important; }
  .trusted-label { font-size: 0.6rem; }
}

/* ── Product card — 600px / 480px step-downs ── */
@media (max-width: 600px) {
  .product-title { font-size: 1.75rem; }
  .product-image-bg { height: 55vw; }
  .product-section { padding: 48px 0; }
  .usecases .uc { font-size: 0.6rem; padding: 2px 8px; }
}
@media (max-width: 480px) {
  .product-title { font-size: 1.5rem; }
  .product-image-bg { height: 52vw; }
}

/* ── About BATTALION ── */
@media (max-width: 900px) {
  .about-battalion-section { padding: 5rem 0; }
  .about-attr-item { font-size: 1.75rem; padding: 0.75rem 1rem; }
}
@media (max-width: 768px) {
  .about-battalion-section { padding: 4rem 0; }
  .about-battalion-grid { gap: 1.5rem; }
  .about-attr-item { font-size: 1.5rem; padding: 0.6rem 0.75rem; }
  .about-attr-panel { min-height: 0; }
}
@media (max-width: 600px) {
  .about-attr-item { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .about-battalion-heading { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .about-attr-item { font-size: 1.15rem; padding: 0.5rem 0.75rem; }
}

/* ── Atlas / Fleet Brain ── */
@media (max-width: 900px) {
  .atlas-section { padding: 5rem 0; }
  .atlas-grid { gap: 2.5rem; }
  .atlas-image-placeholder { width: 60%; max-width: 380px; margin: 0 auto; border-radius: 10rem; }
}
@media (max-width: 768px) {
  .atlas-section { padding: 4rem 0; }
  .atlas-grid { gap: 2rem; }
  .atlas-image-placeholder { width: 70%; max-width: 320px; border-radius: 10rem;  }
  .atlas-features { gap: 1.2rem; }
}
@media (max-width: 480px) {
  .atlas-image-placeholder { width: 80%; max-width: 260px; border-radius: 10rem; }
  .atlas-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── How It Works Tiles ── */
@media (max-width: 768px) {
  .how-it-works-tiles-section { padding: 72px 0; }
  .how-it-works-tiles--large { gap: 20px; }
  .how-it-works-tiles--large .how-it-works-tile figcaption h3 { font-size: 1rem; }
  .how-it-works-tiles--large .how-it-works-tile figcaption p { font-size: 0.875rem; }
  .how-it-works-tiles-lede { margin-bottom: 40px; font-size: 0.9rem; padding: 0 10px; }
}
@media (max-width: 480px) {
  .how-it-works-tiles-section { padding: 52px 0; }
  .how-it-works-heading { font-size: 1.8rem; }
}

/* ── Partners section ── */
@media (max-width: 768px) {
  .partners-section { padding: 4rem 0; }
  .partners-inner { padding: 0 10px; }
  .partners-heading { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}
@media (max-width: 480px) {
  .partners-section { padding: 3rem 0; }
  .partners-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .partners-heading br { display: none; }
  .partners-desc { font-size: 0.875rem; }
}

/* ── AGV Applications grid ── */
@media (max-width: 900px) {
  .applications-section { padding: 72px 0; }
  .applications-subtitle br { display: none; }
}
@media (max-width: 600px) {
  .applications-title { font-size: 1.75rem; }
  .applications-subtitle { font-size: 0.875rem; }
}

/* ── Video Carousel ── */
@media (max-width: 1024px) {
  .carousel-content { margin-left: 2rem; }
}
@media (max-width: 768px) {
  .video-carousel-section { min-height: min(80vh, 640px); }
  .carousel-content { margin-left: 0; padding: 0 40px; }
}
@media (max-width: 600px) {
  .carousel-title { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .carousel-content {
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-left: 0;
  }
  .carousel-description { text-align: center; font-size: 0.82rem; max-width: 100%; }
  .carousel-arrow { width: 36px; height: 36px; }
  .carousel-arrow--prev { left: 8px; }
  .carousel-arrow--next { right: 8px; }
  .carousel-dots { bottom: 14px; gap: 8px; }
}

/* ── Industries ── */
@media (max-width: 600px) {
  .industry-name { font-size: 22px; }
  .industries-section { padding: 48px 0; }
  .tag { white-space: normal; }
}
@media (max-width: 480px) {
  .industry-name { font-size: 20px; }
  .industry-row { padding: 32px 0; }
}

/* ── Consultation form ── */
@media (max-width: 768px) {
  .consultation-section { padding: 72px 0 80px; }
  .consultation-title { font-size: 2rem; margin-bottom: 32px; }
  .step-num { font-size: 2.2rem; min-width: 40px; }
}
@media (max-width: 600px) {
  .consultation-section { padding: 56px 0 64px; }
  .consultation-title { font-size: 1.75rem; }
  .radio-grid { grid-template-columns: 1fr; gap: 8px; }
  .radio-label { min-height: 44px; }
}
@media (max-width: 480px) {
  .consultation-title { font-size: 1.5rem; }
  .consultation-grid { gap: 36px; }
  .step-num { font-size: 1.8rem; }
  .step-label { font-size: 0.875rem; }
  .btn-send { padding: 16px; font-size: 0.875rem; min-height: 48px; }
}

/* ── Global pill + btn-explore mobile touch targets ── */
@media (max-width: 480px) {
  .about-pill { font-size: 0.62rem; padding: 4px 10px; }
  .btn-explore { min-height: 44px; font-size: 0.8rem; padding: 10px 16px; }
}

/* ── Applications header (used outside .applications-section too) ── */
@media (max-width: 768px) {
  .applications-header { padding: 0 10px; }
  .applications-header .applications-title { font-size: 2rem; }
}
@media (max-width: 480px) {
  .applications-header .applications-title { font-size: 1.75rem; }
}

/* ── Home page hero — hide tagline heading and megatype overlay only ── */
body.home .hero-top { display: none; }
body.home .hero-megatype { display: none; }

/* Home hero: full viewport */
body.home .hero {
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
body.home .hero-stage {
  flex: 1;
  max-width: 100%;
  width: 100%;
  aspect-ratio: unset;
  height: 100%;
}

/* Logo overlay — spans full hero width like a watermark band */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  /* max-width: 400px; */
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
}

@media (max-width: 768px) {
  body.home .hero {
    height: auto;
  }

  body.home .hero-logo {
    top: 32%;
    transform: translateX(-50%);
    width: 55vw;
    max-width: 280px;
  }
}
