/* ═══════════════════════════════════════════
   ARMETEK — Tactical Landing Page Styles
   Colors matched to brand logo:
   - Deep black background
   - Charcoal/gunmetal gray
   - Orange/amber accent (#d4860a → #e8a020)
   ═══════════════════════════════════════════ */

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

:root {
  /* ── Brand Colors from Logo ── */
  --black: #050505;
  --dark: #0c0c0c;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --charcoal: #2a2a2a;
  --gunmetal: #3a3a3a;

  /* Orange/Amber from logo */
  --orange: #d4860a;
  --orange-light: #e8a020;
  --orange-glow: #f0b840;
  --orange-dim: rgba(212, 134, 10, 0.15);

  /* Neutrals */
  --white: #eae6df;
  --gray: #6a6a6a;
  --gray-light: #9a9a9a;
  --gray-lighter: #b5b5b5;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-width: 0;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gunmetal);
  color: var(--gray-light);
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  transform: translateY(-2px);
}
.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.vest-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trauma-btn {
  width: auto;
  padding: 0 16px;
}
/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  min-width: 0;
}
/* ── Product Carousel ── */
.trauma-btn {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.trauma-btn.active {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.product-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(212, 134, 10, 0.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s;
}
.carousel-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}
.carousel-btn stroke {
  stroke: currentColor;
}
.carousel-prev {
  left: 8px;
}
.carousel-next {
  right: 8px;
}
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gunmetal);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* Hide arrows if only 1 image */
.carousel-btn.hidden,
.carousel-dots.hidden {
  display: none;
}
/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.6);
  }
}
@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition:
    background 0.35s,
    backdrop-filter 0.35s,
    padding 0.35s,
    box-shadow 0.35s;
}
nav.scrolled {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 1px 0 rgba(212, 134, 10, 0.2);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 150px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: height 0.3s;
}
nav.scrolled .logo-img {
  height: 150px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--gray-lighter);
  text-decoration: none;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--orange-light);
}

.btn-nav {
  padding: 10px 22px !important;
  font-size: 0.8rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
}
.btn svg {
  flex-shrink: 0;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 134, 10, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gunmetal);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #1a3a28;
  color: #b0c9b5;
  border: 1px solid #2a5a3a;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn-whatsapp:hover {
  background: #224a32;
  border-color: #3a7a50;
  color: #d0e5d5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 80, 50, 0.25);
}
.btn-accent {
  background: var(--orange);
  color: var(--black);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn-accent:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 134, 10, 0.35);
}
/* ═══════════════════════════════════════════
   HERO BULLET PARTICLE ANIMATIONS
   Add this to your styles.css
   ═══════════════════════════════════════════ */

/* ── Canvas Layer ── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── Tactical Grid Overlay ── */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    /* Horizontal thin lines */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(212, 134, 10, 0.03) 79px,
      rgba(212, 134, 10, 0.03) 80px
    ),
    /* Vertical thin lines */
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(212, 134, 10, 0.03) 79px,
        rgba(212, 134, 10, 0.03) 80px
      );
  mask-image: radial-gradient(
    ellipse 70% 60% at 30% 50%,
    black 0%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 30% 50%,
    black 0%,
    transparent 100%
  );
}

/* ── Ambient Impact Flashes ── */
.hero-flashes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.impact-flash {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow:
    0 0 6px 2px rgba(232, 160, 32, 0.6),
    0 0 20px 6px rgba(212, 134, 10, 0.3),
    0 0 40px 12px rgba(212, 134, 10, 0.1);
  animation: impactFlash 0.6s ease-out forwards;
}

@keyframes impactFlash {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 0.9;
    transform: scale(3);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* ── Spark trail lines that burst from impacts ── */
.spark-line {
  position: absolute;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 160, 32, 0.8), transparent);
  transform-origin: left center;
  animation: sparkFly 0.5s ease-out forwards;
}

@keyframes sparkFly {
  0% {
    opacity: 1;
    transform: scaleX(0) rotate(var(--angle));
  }
  40% {
    opacity: 1;
    transform: scaleX(1) rotate(var(--angle));
  }
  100% {
    opacity: 0;
    transform: scaleX(1.5) rotate(var(--angle)) translateX(15px);
  }
}

/* ── Hero section z-index fix — content above canvas ── */
.hero {
  position: relative;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

/* ── Subtle scan line sweep ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Existing grid pattern */ url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='0.3' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ── Muzzle flash vignette on edges ── */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(212, 134, 10, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(212, 134, 10, 0.04) 0%,
      transparent 50%
    ),
    /* Darker vignette on edges for depth */
    radial-gradient(ellipse at center, transparent 50%, rgba(5, 5, 5, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Reduced motion: kill canvas and flashes ── */
@media (prefers-reduced-motion: reduce) {
  .hero-canvas,
  .hero-flashes,
  .hero-grid-overlay {
    display: none !important;
  }
  .impact-flash,
  .spark-line {
    animation: none !important;
    display: none !important;
  }
}

/*
concelement 
*/
/* ═══════════════════════════════════════════
   CONCEALMENT VIDEO SECTION — 9:16 Portrait
   Append to your styles.css
   ═══════════════════════════════════════════ */

.concealment-section {
  padding: 100px 0;
}

/* ── Two-column layout: text left, video right ── */
.concealment-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

/* ── Left text column ── */
.concealment-text {
  min-width: 0;
}

.concealment-desc {
  color: var(--gray-light);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 440px;
}

/* ── Feature list (stacked vertically) ── */
.concealment-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concealment-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.concealment-feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--orange), var(--orange-glow));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
.concealment-feat:hover::before {
  transform: scaleY(1);
}
.concealment-feat:hover {
  border-color: rgba(212, 134, 10, 0.15);
  transform: translateX(4px);
}

.concealment-feat-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.concealment-feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-light);
}

.concealment-feat h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.concealment-feat p {
  color: var(--gray-light);
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 300;
}

/* ── Portrait Video Player ── */
.concealment-player {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  background: var(--dark-2);
  border: 1px solid rgba(212, 134, 10, 0.12);
}

/* ── Corner Brackets ── */
.player-bracket {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
}
.player-bracket-tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}
.player-bracket-tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}
.player-bracket-bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}
.player-bracket-br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

/* ── Side Accent Lines ── */
.player-accent {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 35%;
  z-index: 3;
  pointer-events: none;
}
.player-accent-left {
  left: -1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--orange),
    transparent
  );
  opacity: 0.4;
}
.player-accent-right {
  right: -1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--orange),
    transparent
  );
  opacity: 0.4;
}

/* ── Video Viewport — 9:16 portrait ── */
.player-viewport {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
}

.concealment-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Play Overlay ── */
.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(5, 5, 5, 0.4);
  transition:
    background 0.4s ease,
    opacity 0.4s ease;
  z-index: 2;
}
.player-overlay:hover {
  background: rgba(5, 5, 5, 0.25);
}
.player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.player-play-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(212, 134, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  transition: all 0.35s ease;
  position: relative;
}
.player-play-ring::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(212, 134, 10, 0.12);
  transition: all 0.35s ease;
}
.player-overlay:hover .player-play-ring {
  border-color: var(--orange);
  background: rgba(212, 134, 10, 0.12);
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(212, 134, 10, 0.2);
}
.player-overlay:hover .player-play-ring::before {
  border-color: rgba(212, 134, 10, 0.25);
  inset: -12px;
}
.player-play-ring svg {
  margin-left: 3px;
}

.player-overlay-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-lighter);
  transition: color 0.3s;
}
.player-overlay:hover .player-overlay-label {
  color: var(--orange-light);
}

/* ── Scanlines ── */
.player-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  mix-blend-mode: multiply;
}

/* ── Fallback ── */
.concealment-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
}
.concealment-fallback svg {
  opacity: 0.3;
}
.concealment-fallback span {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Bottom Info Bar ── */
.player-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid rgba(212, 134, 10, 0.08);
  background: var(--dark-3);
}
.player-info-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.player-info-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
.player-info-text {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
}
.player-info-tag {
  font-family: var(--font-condensed);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  padding: 3px 8px;
  border: 1px solid rgba(212, 134, 10, 0.25);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .concealment-layout {
    gap: 40px;
  }
  .concealment-player {
    width: 300px;
  }
}

@media (max-width: 900px) {
  .concealment-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }
  .concealment-text {
    text-align: center;
    order: 2;
  }
  .concealment-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .concealment-player {
    order: 1;
    width: 320px;
  }
  .concealment-feat {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .concealment-section {
    padding: 60px 0;
  }
  .concealment-player {
    width: 280px;
  }
  .concealment-layout {
    gap: 28px;
    margin-top: 28px;
  }
  .concealment-desc {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }
  .player-play-ring {
    width: 60px;
    height: 60px;
  }
  .player-play-ring svg {
    width: 24px;
    height: 24px;
  }
  .player-overlay-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }
  .player-info-bar {
    padding: 8px 12px;
  }
  .player-info-text {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  .player-info-tag {
    font-size: 0.58rem;
    letter-spacing: 1px;
  }
  .player-bracket {
    width: 14px;
    height: 14px;
  }
  .concealment-feat {
    padding: 16px;
    gap: 12px;
  }
  .concealment-feat h4 {
    font-size: 0.92rem;
  }
  .concealment-feat p {
    font-size: 0.8rem;
  }
  .concealment-feat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .concealment-feat-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 400px) {
  .concealment-section {
    padding: 48px 0;
  }
  .concealment-player {
    width: 260px;
  }
  .concealment-desc {
    font-size: 0.82rem;
  }
  .player-play-ring {
    width: 52px;
    height: 52px;
  }
  .player-play-ring svg {
    width: 20px;
    height: 20px;
  }
  .player-overlay-label {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
  }
  .concealment-feat {
    padding: 14px;
  }
  .concealment-feat h4 {
    font-size: 0.88rem;
  }
  .concealment-feat p {
    font-size: 0.78rem;
  }
}

@media (max-width: 344px) {
  .concealment-section {
    padding: 40px 0;
  }
  .concealment-player {
    width: 240px;
  }
  .player-play-ring {
    width: 46px;
    height: 46px;
  }
  .player-play-ring svg {
    width: 18px;
    height: 18px;
  }
  .player-overlay-label {
    font-size: 0.58rem;
  }
  .player-bracket {
    width: 10px;
    height: 10px;
  }
}

/* ═══════════════════════════════════════════
   HTML 5-MINUTE ENGAGEMENT POPUP
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   ENGAGEMENT POPUP — 5 MINUTE TRIGGER
   Append to your styles.css
   ═══════════════════════════════════════════ */

/* ── Backdrop ── */
.engage-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.engage-popup-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ── Popup Card ── */
.engage-popup {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(212, 134, 10, 0.15);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.engage-popup-backdrop.is-visible .engage-popup {
  transform: translateY(0) scale(1);
}

/* ── Top Accent ── */
.engage-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange),
    var(--orange-glow),
    var(--orange),
    transparent
  );
}

/* ── Close Button ── */
.engage-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.engage-close:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

/* ── Shield Icon ── */
.engage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--orange-dim);
  border: 1px solid rgba(212, 134, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.engage-icon svg {
  stroke: var(--orange-light);
}

/* ── Text ── */
.engage-popup h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: var(--white);
}
.engage-sub {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.engage-desc {
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Actions ── */
.engage-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.engage-wa-btn {
  width: 100%;
  justify-content: center;
}
.engage-dismiss {
  background: transparent;
  border: none;
  color: var(--gray);
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s;
}
.engage-dismiss:hover {
  color: var(--gray-lighter);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 640px) {
  .engage-popup {
    padding: 32px 24px 24px;
  }
  .engage-popup h3 {
    font-size: 1.5rem;
  }
  .engage-sub {
    font-size: 0.78rem;
  }
  .engage-desc {
    font-size: 0.82rem;
    margin-bottom: 24px;
  }
  .engage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .engage-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 400px) {
  .engage-popup {
    padding: 28px 18px 20px;
  }
  .engage-popup h3 {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  .engage-sub {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
  .engage-desc {
    font-size: 0.78rem;
  }
  .engage-dismiss {
    font-size: 0.72rem;
  }
}
/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(212, 134, 10, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(212, 134, 10, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='0.3' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  min-width: 0;
  width: 100%;
}

.hero-logo-mark {
  margin-bottom: 32px;
}
.hero-emblem {
  height: 120px;
  width: auto;
  max-width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 0 40px rgba(212, 134, 10, 0.2));
  animation: fadeSlideDown 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 134, 10, 0.4);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: clamp(1px, 0.4vw, 3px);
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.8s ease-out 0.1s both;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: clamp(1px, 0.5vw, 4px);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease-out 0.2s both;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero h1 .line-2 {
  color: var(--orange);
  display: block;
  text-shadow: 0 0 60px rgba(212, 134, 10, 0.15);
}
.hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--gray-light);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeSlideUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeSlideUp 0.8s ease-out 0.8s both;
  flex-wrap: wrap;
}
.hero-stat h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--orange);
  letter-spacing: clamp(1px, 0.2vw, 2px);
}
.hero-stat p {
  font-size: 0.7rem;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0;
  font-weight: 500;
  animation: none;
}

/* ═══════════════════════════════════════════
   SECTIONS SHARED
   ═══════════════════════════════════════════ */
section {
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
}
.section-alt {
  background: var(--dark);
  position: relative;
}
.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.4;
}

.section-tag {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: clamp(2px, 0.5vw, 4px);
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  overflow-wrap: break-word;
  word-break: break-word;
}
.section-tag::before {
  content: '';
  width: 30px;
  min-width: 20px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: clamp(1px, 0.3vw, 3px);
  margin-bottom: 20px;
  line-height: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}
.section-title span {
  color: var(--orange);
}

/* ═══════════════════════════════════════════
   PRODUCT HIGHLIGHT
   ═══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-image-box {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(212, 134, 10, 0.08);
}
.product-image-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--dark), transparent);
  pointer-events: none;
}
.vest-placeholder {
  width: 70%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vest-svg {
  width: 100%;
  height: 100%;
}

.product-label-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}

.product-info {
  min-width: 0;
}
.product-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: clamp(1px, 0.3vw, 3px);
  margin-bottom: 8px;
}
.product-subtitle {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--orange-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.product-price-note {
  margin-top: -12px;
  margin-bottom: 24px;
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.5;
}
.product-desc {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--orange-dim);
  border-left: 2px solid var(--orange);
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.feature-item svg {
  width: 16px;
  height: 16px;
  fill: var(--orange-light);
  flex-shrink: 0;
}

/* Size & Color Selectors */
.selector-group {
  margin-bottom: 24px;
}
.selector-label {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
.size-btn:hover,
.size-btn.active {
  border-color: var(--orange);
  background: var(--orange-dim);
  color: var(--orange-light);
}

.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
}
.color-swatch:hover,
.color-swatch.active {
  border-color: var(--orange);
  transform: scale(1.1);
}
.color-swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}
.swatch-black {
  background: #1a1a1a;
}
.swatch-olive {
  background: #4a5a2b;
}
.swatch-tan {
  background: #8b7355;
}
.swatch-navy {
  background: #1a2744;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   ABOUT / MEDIA SECTIONS
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.about-grid.reversed {
  direction: rtl;
}
.about-grid.reversed > * {
  direction: ltr;
}

.about-text {
  min-width: 0;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: clamp(1px, 0.2vw, 2px);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
}

.media-box {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--dark-2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.media-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(212, 134, 10, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.media-box .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--orange);
  box-shadow: 0 0 40px rgba(212, 134, 10, 0.4);
}
.media-box .play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--black);
  margin-left: 3px;
}
.media-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 8px;
  text-align: center;
}
.media-placeholder-text svg {
  width: 28px;
  height: 28px;
  opacity: 0.3;
  stroke: var(--gray);
  fill: none;
  flex-shrink: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 0;
}
.photo-grid .media-box {
  aspect-ratio: 1;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.stat-item {
  padding: 32px 16px;
  text-align: center;
  background: var(--dark);
  min-width: 0;
}
.stat-item h4 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--orange);
  letter-spacing: 2px;
}
.stat-item p {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ═══════════════════════════════════════════
   EFFICIENCY CARDS
   ═══════════════════════════════════════════ */
.efficiency-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.eff-card {
  padding: 32px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.eff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.eff-card:hover::before {
  transform: scaleX(1);
}
.eff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 134, 10, 0.2);
}
.eff-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.eff-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange-light);
  fill: none;
}
.eff-card h4 {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.eff-card p {
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   CTA SECTIONS
   ═══════════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 134, 10, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-final {
  background: var(--dark);
}
.cta-section .section-tag {
  justify-content: center;
}
.cta-section .section-tag::before {
  display: none;
}
.cta-desc {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--gray-light);
  line-height: 1.7;
  font-weight: 300;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   COMING SOON
   ═══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: all 0.4s;
  min-width: 0;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 134, 10, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.product-card-image {
  aspect-ratio: 4/3;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.coming-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.product-card-body {
  padding: 24px;
  min-width: 0;
}
.product-card-body h4 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.product-card-body .card-sub {
  font-size: 0.78rem;
  color: var(--orange-light);
  letter-spacing: 1px;
  font-family: var(--font-condensed);
  margin-bottom: 10px;
}
.product-card-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 300;
}
.notify-btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--gunmetal);
  color: var(--gray-lighter);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.notify-btn:hover {
  border-color: var(--orange);
  color: var(--orange-light);
  background: var(--orange-dim);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 48px 0 24px;
  overflow: hidden;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  min-width: 0;
  flex: 1 1 250px;
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand .logo-img {
  height: 116px;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.85rem;
  max-width: 300px;
  line-height: 1.6;
  font-weight: 300;
}
.footer-links {
  min-width: 0;
}
.footer-links h5 {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover {
  color: var(--orange-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 1px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #1a3a28;
  border: 1px solid #2a5a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  text-decoration: none;
  animation: floatBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #224a32;
  border-color: #3a7a50;
  box-shadow: 0 6px 24px rgba(30, 80, 50, 0.3);
  animation-play-state: paused;
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #8ab896;
}

/* ═══════════════════════════════════════════
   CART NOTIFICATION
   ═══════════════════════════════════════════ */
.cart-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--black);
  padding: 16px 24px;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s ease;
  border-left: 3px solid var(--orange-glow);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: calc(100vw - 40px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  section {
    padding: 80px 0;
  }
  .product-grid {
    gap: 40px;
  }
  .about-grid {
    gap: 40px;
  }
  .hero-stats {
    gap: 32px;
  }
  .efficiency-items {
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL TABLET (max-width: 900px)
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-grid.reversed {
    direction: ltr;
  }
  .product-image-box {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .efficiency-items,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 640px)
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .carousel-track {
    touch-action: pan-y;
  }
  /* Nav */
  .logo-img {
    height: 100px;
  }
  nav.scrolled .logo-img {
    height: 100px;
  }
  section {
    padding: 60px 0;
  }

  /* Nav */
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(212, 134, 10, 0.3);
  }
  .nav-links.open .btn-nav {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-content {
    padding: 0 16px;
  }
  .hero-emblem {
    height: 86px;
  }
  .hero-logo-mark {
    margin-bottom: 20px;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
  }
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-stat p {
    margin-top: 0;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Product */
  .product-image-box {
    max-width: 100%;
    aspect-ratio: 3/4;
  }
  .product-features {
    grid-template-columns: 1fr;
  }
  .product-actions {
    flex-direction: column;
  }
  .product-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Grids */
  .efficiency-items,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .photo-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .cta-section {
    padding: 60px 0;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .footer-brand {
    flex: 1 1 100%;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    font-size: 0.68rem;
    word-break: break-word;
  }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  /* Notification */
  .cart-notification {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 80px;
    text-align: center;
    transform: translateY(calc(100% + 40px));
    max-width: none;
  }

  /* Buttons */
  .btn {
    padding: 14px 24px;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    gap: 8px;
    white-space: normal;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (max-width: 400px)
   ═══════════════════════════════════════════ */
@media (max-width: 400px) {
  .container {
    padding: 0 14px;
  }
  section {
    padding: 48px 0;
  }

  .hero-content {
    padding: 88px 14px 44px;
  }
  .hero-emblem {
    height: 86px;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    letter-spacing: 1px;
    gap: 6px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
    letter-spacing: 1px;
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .btn {
    padding: 13px 18px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    gap: 6px;
  }
  .btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .hero-stats {
    gap: 14px;
    margin-top: 32px;
    padding-top: 20px;
  }
  .hero-stat h3 {
    font-size: 1.4rem;
  }
  .hero-stat p {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* Product */
  .product-info h2 {
    font-size: 2rem;
  }
  .product-price {
    font-size: 2rem;
  }
  .product-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  .product-desc {
    font-size: 0.85rem;
  }
  .selector-label {
    font-size: 0.78rem;
    letter-spacing: 1px;
  }

  .size-options {
    gap: 6px;
  }
  .size-btn {
    width: 42px;
    height: 42px;
    font-size: 0.8rem;
  }
  .color-swatch {
    width: 32px;
    height: 32px;
  }

  .feature-item {
    font-size: 0.8rem;
    padding: 8px 10px;
    gap: 8px;
  }
  .feature-item svg {
    width: 14px;
    height: 14px;
  }

  /* Section headings */
  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    gap: 8px;
  }
  .section-tag::before {
    width: 20px;
    min-width: 16px;
  }
  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
    letter-spacing: 1px;
  }

  /* Stats bar */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .stat-item {
    padding: 18px 12px;
  }
  .stat-item h4 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  .stat-item p {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* About text */
  .about-text h3 {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  .about-text p {
    font-size: 0.85rem;
  }

  /* Efficiency cards */
  .eff-card {
    padding: 20px;
  }
  .eff-card h4 {
    font-size: 1rem;
  }
  .eff-card p {
    font-size: 0.82rem;
  }

  /* Product cards */
  .product-card-body {
    padding: 16px;
  }
  .product-card-body h4 {
    font-size: 1rem;
  }
  .product-card-body p {
    font-size: 0.8rem;
  }
  .product-card-body .card-sub {
    font-size: 0.72rem;
  }
  .coming-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
    letter-spacing: 1px;
  }
  .notify-btn {
    font-size: 0.78rem;
    letter-spacing: 1px;
    padding: 10px;
  }

  /* CTA */
  .cta-desc {
    font-size: 0.88rem;
  }
  .cta-section {
    padding: 48px 0;
  }

  /* Media boxes */
  .media-placeholder-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  .media-placeholder-text svg {
    width: 22px;
    height: 22px;
  }
  .media-box .play-btn {
    width: 56px;
    height: 56px;
  }
  .media-box .play-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Footer */
  .footer-brand .logo-img {
    height: 106px;
  }
  .footer-brand p {
    font-size: 0.8rem;
  }
  .footer-links h5 {
    font-size: 0.72rem;
    letter-spacing: 2px;
  }
  .footer-links a {
    font-size: 0.8rem;
  }
  .footer-bottom {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
    padding-top: 16px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 14px;
    right: 14px;
  }
  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — FOLD / ULTRA NARROW (max-width: 344px)
   Galaxy Fold 5 folded: 344px
   ═══════════════════════════════════════════ */
@media (max-width: 344px) {
  .container {
    padding: 0 12px;
  }
  section {
    padding: 40px 0;
  }

  /* Nav */
  .logo-img {
    height: 96px;
  }
  nav.scrolled .logo-img {
    height: 96px;
  }
  nav {
    padding: 10px 0;
  }
  nav.scrolled {
    padding: 6px 0;
  }
  .hamburger span {
    width: 22px;
  }

  /* Hero */
  .hero-content {
    padding: 0 12px;
  }
  .hero-logo-mark {
    margin-bottom: 16px;
  }
  .hero-emblem {
    height: 86px;
  }
  .hero-badge {
    font-size: 0.58rem;
    padding: 4px 8px;
    letter-spacing: 0.5px;
    gap: 5px;
    margin-bottom: 16px;
  }
  .hero-badge::before {
    width: 5px;
    height: 5px;
    min-width: 5px;
  }
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 0px;
    margin-bottom: 14px;
    line-height: 1;
  }
  .hero p {
    font-size: 0.82rem;
    margin-bottom: 24px;
    line-height: 1.55;
  }

  .btn {
    padding: 12px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    gap: 6px;
  }
  .btn svg {
    width: 14px;
    height: 14px;
  }

  .hero-cta {
    gap: 10px;
  }
  .hero-stats {
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
  }
  .hero-stat {
    gap: 8px;
  }
  .hero-stat h3 {
    font-size: 1.2rem;
    letter-spacing: 0px;
  }
  .hero-stat p {
    font-size: 0.58rem;
    letter-spacing: 0.5px;
  }

  /* Product */
  .product-info h2 {
    font-size: 1.8rem;
    letter-spacing: 0px;
  }
  .product-subtitle {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
  }
  .product-price {
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: 0px;
  }
  .product-desc {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }

  .product-features {
    gap: 6px;
  }
  .feature-item {
    font-size: 0.72rem;
    padding: 7px 8px;
    gap: 6px;
  }
  .feature-item svg {
    width: 12px;
    height: 12px;
  }

  .selector-label {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }
  .selector-group {
    margin-bottom: 18px;
  }
  .size-options {
    gap: 4px;
  }
  .size-btn {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }
  .color-swatch {
    width: 28px;
    height: 28px;
  }
  .color-options {
    gap: 8px;
  }

  .product-actions {
    gap: 8px;
  }
  .product-image-box {
    aspect-ratio: 1;
  }

  /* Section headings */
  .section-tag {
    font-size: 0.62rem;
    letter-spacing: 1px;
    gap: 6px;
  }
  .section-tag::before {
    width: 16px;
    min-width: 12px;
  }
  .section-title {
    font-size: 1.5rem;
    letter-spacing: 0px;
    margin-bottom: 14px;
  }

  /* About */
  .about-grid {
    gap: 24px;
    margin-top: 32px;
  }
  .about-text h3 {
    font-size: 1.2rem;
    letter-spacing: 0px;
  }
  .about-text p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  /* Stats */
  .stats-bar {
    margin-top: 32px;
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 14px 8px;
  }
  .stat-item h4 {
    font-size: 1.3rem;
    letter-spacing: 0px;
  }
  .stat-item p {
    font-size: 0.58rem;
    letter-spacing: 0.5px;
  }

  /* Efficiency */
  .efficiency-items {
    margin-top: 32px;
    gap: 12px;
  }
  .eff-card {
    padding: 16px;
  }
  .eff-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }
  .eff-icon svg {
    width: 20px;
    height: 20px;
  }
  .eff-card h4 {
    font-size: 0.95rem;
  }
  .eff-card p {
    font-size: 0.78rem;
  }

  /* CTA */
  .cta-section {
    padding: 40px 0;
  }
  .cta-desc {
    font-size: 0.82rem;
    margin-bottom: 24px;
  }
  .cta-buttons {
    gap: 10px;
  }

  /* Coming soon cards */
  .products-grid {
    gap: 16px;
    margin-top: 32px;
  }
  .product-card-body {
    padding: 14px;
  }
  .product-card-body h4 {
    font-size: 0.95rem;
    letter-spacing: 0px;
  }
  .product-card-body .card-sub {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }
  .product-card-body p {
    font-size: 0.75rem;
  }
  .notify-btn {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    padding: 9px;
    margin-top: 12px;
  }
  .coming-badge {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    padding: 3px 8px;
  }
  .product-card-image {
    aspect-ratio: 3/2;
  }

  /* Media */
  .media-placeholder-text {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
  }
  .media-box .play-btn {
    width: 48px;
    height: 48px;
  }
  .media-box .play-btn svg {
    width: 16px;
    height: 16px;
  }
  .photo-grid {
    gap: 8px;
  }

  /* Footer */
  footer {
    padding: 32px 0 16px;
  }
  .footer-top {
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-brand .logo-img {
    height: 106px;
  }
  .footer-brand p {
    font-size: 0.75rem;
  }
  .footer-links h5 {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }
  .footer-links a {
    font-size: 0.75rem;
  }
  .footer-links li {
    margin-bottom: 6px;
  }
  .footer-bottom {
    font-size: 0.58rem;
    letter-spacing: 0px;
    padding-top: 14px;
  }

  /* WhatsApp float */
  .whatsapp-float {
    width: 44px;
    height: 44px;
    bottom: 12px;
    right: 12px;
  }
  .whatsapp-float svg {
    width: 18px;
    height: 18px;
  }

  /* Notification */
  .cart-notification {
    font-size: 0.78rem;
    padding: 12px 14px;
    bottom: 66px;
  }
}
