/* ============================================================
   GARRETT AFRICA v4 — Black · Gold · Grey · White
   Fonts: Anton (display) · Barlow Condensed (body) · Bebas Neue (labels)
   Gold: #F5B300 — exact Garrett brand gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ── Tokens ────────────────────────────────────────────── */
:root {
  /* Strict palette: white base, black text, Garrett gold, grey sections */
  --white:        #ffffff;
  --black:        #0d0d0d;
  --black-2:      #1a1a1a;
  --black-3:      #333333;
  --grey-light:   #f2f2f2;
  --grey-mid:     #e0e0e0;
  --grey-dark:    #888888;

  /* Garrett Gold — exact brand match (#F5B300 from logo) */
  --gold:         #F5B300;
  --gold-light:   #FFF3CC;
  --gold-dark:    #C48A00;
  --gold-muted:   #D4A017;
  --axiom-tan:    #C2B280;   /* Desert Tan for Axiom */

  /* Legacy aliases (for compatibility with existing code) */
  --ivory:        var(--white);
  --ivory-2:      var(--grey-light);
  --ivory-3:      var(--grey-mid);
  --charcoal:     var(--black);
  --charcoal-2:   var(--black-2);
  --charcoal-3:   var(--black-3);
  --grey-section: var(--grey-light);
  --rust:         #C05000;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-label:   'Outfit', sans-serif;

  --rugged-border: 2px solid rgba(255,255,255,0.15);
  --beefy-shadow: 0 24px 60px rgba(0,0,0,0.4);
  --tech-pattern: radial-gradient(rgba(245,179,0,0.05) 1px, transparent 1px);

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.35rem; /* Increased to approx 22px for extreme readability */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--charcoal); }

/* ── Custom Cursor ─────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), border-color 0.2s;
  opacity: 0.5;
}
.cursor-ring.hover { width: 56px; height: 56px; opacity: 0.8; border-color: var(--gold); }
.cursor-dot.hover { transform: translate(-50%,-50%) scale(0); }

/* ── Page Loader ───────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.loader-bar-wrap { width: 200px; height: 2px; background: hsl(40,10%,22%); border-radius: 2px; overflow: hidden; }
.loader-bar { height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* ── Hero slide text glass panel ──────────────────────── */
.slide-text {
  max-width: 520px;
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px 44px;
}
.hero-slide--1 .slide-text {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid rgba(245,179,0,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}
.hero-slide--1 .slide-eyebrow { color: var(--gold-dark); }
.hero-slide--1 .slide-headline { color: var(--black); }
.hero-slide--1 .slide-headline em { color: var(--gold-dark); }
.hero-slide--1 .slide-sub { color: var(--black-3); }
.hero-slide--1 .slide-price-old { color: var(--grey-dark); }
.hero-slide--1 .slide-price-now { color: var(--black); }
.hero-slide--2 .slide-text,
.hero-slide--3 .slide-text {
  background: rgba(10,8,4,0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(245,179,0,0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

/* ── Container ─────────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── PILL NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0 28px; height: 58px;
  display: flex; align-items: center; gap: 36px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(180,150,70,0.18);
  border-radius: 100px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07), 0 1px 0 rgba(255,255,255,0.9) inset;
  min-width: 720px;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.dark {
  background: rgba(18, 15, 9, 0.88);
  border-color: rgba(180,150,70,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.navbar.dark .nav-links a { color: rgba(255,255,255,0.65); }
.navbar.dark .nav-links a:hover, .navbar.dark .nav-links a.active { color: var(--gold); }
.navbar.dark .nav-logo { color: var(--gold); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--charcoal-2);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.btn-nav-cta:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-1px); }
.navbar.dark .btn-nav-cta { background: var(--gold); color: var(--charcoal); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.navbar.dark .hamburger span { background: var(--ivory); }

/* Mobile Nav Overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 900;
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ivory);
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--charcoal); color: var(--ivory);
  font-family: var(--font-label); font-size: 1rem; letter-spacing: 0.12em;
  border-radius: 4px;
  border: 2px solid var(--charcoal);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-primary:hover { background: transparent; color: var(--charcoal); transform: translateY(-2px); }
.btn-primary.gold { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.btn-primary.gold:hover { background: transparent; color: var(--gold); }
.btn-primary.white { background: var(--white); border-color: var(--white); color: var(--charcoal); }
.btn-primary.white:hover { background: transparent; color: var(--white); }
.btn-primary.outline-white { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-primary.outline-white:hover { background: var(--white); color: var(--charcoal); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent; color: var(--charcoal-3);
  font-family: var(--font-label); font-size: 0.9rem; letter-spacing: 0.1em;
  border-radius: 4px; border: 2px solid var(--ivory-3);
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { color: var(--charcoal); border-color: var(--charcoal); transform: translateY(-1px); }

.btn-arrow { display: inline-flex; transition: transform 0.2s; }
a:hover .btn-arrow, button:hover .btn-arrow { transform: translateX(4px); }

/* ── Section Labels ────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  display: block; margin-bottom: 14px;
}
.section-eyebrow.on-gold { color: var(--black-2); }
.section-eyebrow.on-dark { color: var(--gold); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--black);
}
.section-headline em { font-style: normal; color: var(--gold-dark); font-family: var(--font-display); }
.section-headline.on-gold { color: var(--black); }
.section-headline.on-dark { color: var(--white); }
.section-headline.on-dark em { color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--black-3);
  max-width: 500px;
}
.section-sub.on-dark { color: #aaaaaa; }
.section-sub.on-gold { color: var(--black-2); }

/* GSAP defaults */
.gsap-reveal { opacity: 0; }
.gsap-reveal-up { opacity: 0; transform: translateY(50px); }
.gsap-reveal-left { opacity: 0; transform: translateX(-50px); }
.gsap-reveal-right { opacity: 0; transform: translateX(50px); }
.gsap-scale { opacity: 0; transform: scale(0.88); }

/* ── HERO SLIDER ───────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide--1 { background: var(--ivory); }
.hero-slide--2 { background: hsl(30,10%,10%); }
.hero-slide--3 { background: var(--gold); }

/* Video BG inside a slide */
.video-bg-wrap {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.video-bg-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(14,11,6,0.6);
  z-index: 1;
}
.video-bg-wrap iframe, .video-bg-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%,-50%);
  pointer-events: none;
  border: none;
  object-fit: cover;
}

/* Shape bg for non-video slides */
.slide-shape {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-slide--1 .slide-shape {
  background: radial-gradient(circle, hsl(42,80%,82%,0.5) 0%, transparent 70%);
  border: 60px solid hsl(42,80%,86%,0.3);
}
.hero-slide--3 .slide-shape {
  background: radial-gradient(circle, hsl(42,90%,68%,0.35) 0%, transparent 70%);
  border: 60px solid hsl(42,90%,42%,0.3);
}

.hero-slide-inner {
  width: 100%; max-width: 1320px;
  margin: 0 auto; padding: 130px 48px 90px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  position: relative; z-index: 2;
}

.slide-eyebrow {
  font-family: var(--font-label); font-size: 0.82rem;
  letter-spacing: 0.35em; margin-bottom: 16px; display: block;
}
.hero-slide--1 .slide-eyebrow { color: var(--gold-dark); }
.hero-slide--2 .slide-eyebrow { color: var(--gold); }
.hero-slide--3 .slide-eyebrow { color: hsl(30,20%,20%); }
.hero-slide--video .slide-eyebrow { color: var(--gold); }

.slide-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.5vw, 7rem);
  line-height: 0.92; letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-slide--1 .slide-headline { color: var(--charcoal); }
.hero-slide--2 .slide-headline { color: var(--ivory); }
.hero-slide--3 .slide-headline { color: var(--charcoal); }
.hero-slide--video .slide-headline { color: var(--ivory); }
.slide-headline em { font-style: normal; color: var(--gold); }
.hero-slide--1 .slide-headline em { color: var(--gold-dark); }
.hero-slide--3 .slide-headline em { color: hsl(30,25%,20%); }

.slide-sub { font-size: 1.3rem; font-weight: 400; line-height: 1.6; margin-bottom: 32px; max-width: 440px; }
.hero-slide--1 .slide-sub { color: var(--charcoal-3); }
.hero-slide--2 .slide-sub { color: hsl(40,12%,65%); }
.hero-slide--3 .slide-sub { color: hsl(30,20%,25%); }
.hero-slide--video .slide-sub { color: hsl(40,15%,75%); }

.slide-price-block {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 10px 20px; border-radius: 6px; margin-bottom: 28px;
}
.hero-slide--1 .slide-price-block { background: hsl(42,70%,88%,0.7); }
.hero-slide--2 .slide-price-block { background: hsl(42,25%,14%); }
.hero-slide--3 .slide-price-block { background: hsl(38,80%,32%); }
.hero-slide--video .slide-price-block { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); }

.slide-price-old { font-size: 0.9rem; text-decoration: line-through; }
.hero-slide--1 .slide-price-old { color: var(--charcoal-3); }
.hero-slide--2 .slide-price-old, .hero-slide--video .slide-price-old { color: hsl(40,15%,55%); }
.hero-slide--3 .slide-price-old { color: hsl(40,35%,42%); }

.slide-price-now {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em;
}
.hero-slide--1 .slide-price-now { color: var(--charcoal); }
.hero-slide--2 .slide-price-now, .hero-slide--video .slide-price-now { color: var(--gold); }
.hero-slide--3 .slide-price-now { color: var(--ivory); }

.slide-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slide visual */
.slide-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center; height: 420px;
}
.slide-product-ring {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
}
.hero-slide--1 .slide-product-ring { border: 2px solid hsl(42,60%,78%,0.5); background: hsl(42,60%,92%,0.5); }
.hero-slide--2 .slide-product-ring { border: 2px solid hsl(42,30%,25%,0.6); background: hsl(42,15%,14%,0.5); }
.hero-slide--3 .slide-product-ring { border: 2px solid hsl(42,90%,42%,0.5); background: hsl(42,90%,62%,0.3); }

.slide-product-img {
  position: relative; z-index: 2;
  width: 360px; height: 360px; object-fit: contain;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,0.22));
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-slide--2 .slide-product-img { filter: drop-shadow(0 28px 60px rgba(0,0,0,0.6)); }
@keyframes heroFloat { 0%,100% { transform: translateY(0) rotate(-0.5deg); } 50% { transform: translateY(-20px) rotate(0.5deg); } }

.slide-product-label {
  position: absolute; bottom: 20px; right: 10px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(180,150,70,0.2);
  border-radius: 10px; padding: 10px 16px;
  backdrop-filter: blur(10px);
}
.hero-slide--2 .slide-product-label { background: rgba(26,20,10,0.88); border-color: rgba(180,150,70,0.25); }
.label-model { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.08em; color: var(--charcoal); display: block; }
.hero-slide--2 .label-model { color: var(--gold); }
.label-type { font-size: 0.72rem; color: var(--charcoal-3); font-family: var(--font-body); letter-spacing: 0.05em; }
.hero-slide--2 .label-type { color: hsl(40,15%,55%); }

/* Hero nav controls */
.hero-nav {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 20px; z-index: 10;
}
.hero-nav-btn {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.88); border: 1px solid rgba(0,0,0,0.07);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: none; color: var(--charcoal);
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.hero-nav-btn:hover { background: var(--gold); color: var(--charcoal); transform: scale(1.1); }
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.18); cursor: none; border: none;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.hero-dot.active { transform: scale(1.6); background: var(--gold); }
.hero-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--gold); z-index: 10; width: 0%; }
.hero-counter {
  position: absolute; top: 50%; right: 44px;
  transform: translateY(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-counter-num { font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.15em; color: rgba(100,85,60,0.6); }
.hero-counter-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(100,85,60,0.5), transparent); }

/* ── PRODUCT SIDE PANEL (right, matching screenshot) ──── */
.side-panel {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex; flex-direction: column;
  width: 260px;
  background: var(--black);
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: -8px 0 40px rgba(0,0,0,0.25);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.side-panel-currency {
  display: flex; flex-direction: column;
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 52px; background: var(--black-2);
  border-left: 1px solid #222;
}
.side-panel-currency-btn {
  flex: 1; background: none; border: none;
  border-bottom: 1px solid #222;
  font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.1em;
  color: #666; cursor: none;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.side-panel-currency-btn:last-child { border-bottom: none; }
.side-panel-currency-btn.active,
.side-panel-currency-btn:hover { background: var(--gold); color: var(--black); }

.side-panel-products { padding: 12px 64px 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.side-product-item {
  display: flex; align-items: center; gap: 10px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px; padding: 10px 12px;
  cursor: none;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.side-product-item:hover { border-color: var(--gold); background: #222; }
.side-product-text { flex: 1; min-width: 0; }
.side-product-name {
  font-family: var(--font-label); font-size: 0.85rem; letter-spacing: 0.08em;
  color: var(--white); display: block;
}
.side-product-was {
  font-size: 0.68rem; color: #555; text-decoration: line-through;
  display: block; line-height: 1.3;
}
.side-product-now {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.03em;
  color: var(--gold); display: block; line-height: 1.2;
}
.side-product-img-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%; background: #111;
  border: 1px solid #333;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.side-product-img-wrap img { width: 38px; height: 38px; object-fit: contain; }

/* ── FLOATING SIDE CONTACTS (kept, hidden on mobile) ──── */
.floating-side {
  position: fixed; left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex; flex-direction: column; gap: 0;
}
.floating-side-item { display: flex; align-items: center; overflow: hidden; height: 52px; }
.floating-side-link {
  display: flex; align-items: center; gap: 0;
  background: var(--black); color: var(--white);
  padding: 14px 0 14px 14px;
  border-radius: 0 8px 8px 0;
  transition: transform 0.3s var(--ease-smooth), background 0.2s;
  transform: translateX(calc(-100% + 52px));
}
.floating-side-link:hover { transform: translateX(0); background: var(--gold); color: var(--black); }
.floating-side-link.whatsapp:hover { background: #25D366; color: #fff; }
.floating-side-label {
  font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.15em;
  white-space: nowrap; padding: 0 16px 0 12px;
  opacity: 0; transition: opacity 0.2s 0.05s; color: inherit;
}
.floating-side-link:hover .floating-side-label { opacity: 1; }
.floating-side-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-side-icon svg { width: 20px; height: 20px; }

/* ── TICKER ────────────────────────────────────────────── */
.ticker-wrap { overflow: hidden; background: var(--charcoal); padding: 14px 0; }
.ticker-track {
  display: flex; width: max-content; gap: 28px;
  animation: tickerScroll 32s linear infinite;
}
.ticker-item { font-family: var(--font-label); font-size: 0.82rem; letter-spacing: 0.22em; color: var(--ivory-3); white-space: nowrap; }
.ticker-dot { color: var(--gold); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── WELCOME POPUP ────────────────────────────────────── */
.welcome-popup-overlay {
  position: fixed; inset: 0; z-index: 8000;
  display: none;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.welcome-popup {
  background: var(--white);
  border-radius: 16px; width: 100%; max-width: 520px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  animation: popupIn 0.4s var(--ease-spring);
}
@keyframes popupIn { from { opacity:0; transform:scale(0.9) translateY(20px); } to { opacity:1; transform:none; } }
.welcome-popup-top {
  background: var(--black);
  padding: 32px 36px 28px;
  text-align: center;
}
.welcome-popup-logo { height: 40px; margin: 0 auto 16px; }
.welcome-popup-title {
  font-family: var(--font-display); font-size: 1.6rem;
  letter-spacing: 0.04em; color: var(--white);
}
.welcome-popup-sub { font-size: 0.88rem; color: #888; margin-top: 6px; }
.welcome-popup-body { padding: 28px 36px 32px; display: flex; flex-direction: column; gap: 16px; }
.popup-field-label {
  font-family: var(--font-label); font-size: 0.78rem; letter-spacing: 0.18em;
  color: var(--black-3); display: block; margin-bottom: 8px;
}
.popup-options { display: flex; flex-wrap: wrap; gap: 8px; }
.popup-option {
  padding: 9px 18px;
  border: 2px solid var(--grey-mid); background: var(--white);
  border-radius: 6px; font-family: var(--font-label);
  font-size: 0.82rem; letter-spacing: 0.08em; color: var(--black-3);
  cursor: none; transition: border-color 0.2s, background 0.15s, color 0.15s;
}
.popup-option:hover { border-color: var(--gold); color: var(--black); }
.popup-option.selected { border-color: var(--gold); background: var(--gold); color: var(--black); }
.popup-btn-row { display: flex; gap: 10px; margin-top: 8px; }
.popup-btn-primary {
  flex: 1; padding: 13px; background: var(--black);
  color: var(--white); border: 2px solid var(--black);
  font-family: var(--font-label); font-size: 0.95rem; letter-spacing: 0.12em;
  border-radius: 6px; cursor: none;
  transition: background 0.2s, color 0.2s;
}
.popup-btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.popup-btn-skip {
  padding: 13px 20px; background: none;
  border: 2px solid var(--grey-mid); color: var(--grey-dark);
  font-family: var(--font-label); font-size: 0.85rem; letter-spacing: 0.1em;
  border-radius: 6px; cursor: none;
  transition: border-color 0.2s, color 0.2s;
}
.popup-btn-skip:hover { border-color: var(--black); color: var(--black); }

/* ── PRODUCT QUESTIONNAIRE MODAL ───────────────────────── */
.questionnaire-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.questionnaire-overlay.open { display: flex; }
.questionnaire-modal {
  background: var(--white); border-radius: 16px;
  width: 100%; max-width: 500px; max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  animation: popupIn 0.35s var(--ease-spring);
}
.q-header {
  background: var(--black); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 2;
}
.q-product-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.05em; color: var(--white); }
.q-close { background: none; border: none; color: #666; font-size: 1.2rem; cursor: none; transition: color 0.2s; line-height: 1; }
.q-close:hover { color: var(--gold); }
.q-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.q-step { display: none; flex-direction: column; gap: 12px; }
.q-step.active { display: flex; }
.q-label { font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.18em; color: var(--black-3); }
.q-question { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.02em; color: var(--black); }
.q-options { display: flex; flex-direction: column; gap: 8px; }
.q-option {
  padding: 12px 16px; border: 2px solid var(--grey-mid);
  border-radius: 8px; background: var(--white);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  color: var(--black-3); cursor: none; text-align: left;
  transition: border-color 0.2s, background 0.15s, color 0.15s;
}
.q-option:hover, .q-option.selected { border-color: var(--gold); color: var(--black); background: var(--gold-light); }
.q-input {
  padding: 13px 16px; border: 2px solid var(--grey-mid);
  border-radius: 8px; font-family: var(--font-body); font-weight: 500;
  font-size: 1rem; color: var(--black); outline: none;
  transition: border-color 0.2s;
}
.q-input:focus { border-color: var(--gold); }
.q-progress {
  height: 3px; background: var(--grey-mid);
  border-radius: 2px; margin-bottom: 4px; overflow: hidden;
}
.q-progress-bar { height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.4s var(--ease-smooth); }
.q-nav { display: flex; gap: 10px; margin-top: 8px; }
.q-next, .q-back {
  flex: 1; padding: 13px;
  font-family: var(--font-label); font-size: 0.95rem; letter-spacing: 0.12em;
  border-radius: 6px; cursor: none; border: 2px solid;
  transition: background 0.2s, color 0.2s;
}
.q-next { background: var(--black); color: var(--white); border-color: var(--black); }
.q-next:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.q-back { background: none; color: var(--black-3); border-color: var(--grey-mid); }
.q-back:hover { border-color: var(--black); color: var(--black); }
.q-send-row { display: flex; gap: 10px; flex-direction: column; }
.q-send-btn {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  padding: 14px; border-radius: 8px; border: none;
  font-family: var(--font-label); font-size: 1rem; letter-spacing: 0.1em;
  cursor: none; transition: opacity 0.2s;
}
.q-send-btn:hover { opacity: 0.85; }
.q-send-wa { background: #25D366; color: #fff; }
.q-send-email { background: var(--black); color: var(--white); }

/* ── PRODUCTS SECTION ──────────────────────────────────── */
.products-section { background: var(--white); padding: 110px 0; }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
.products-see-all {
  flex-shrink: 0; font-family: var(--font-label); font-size: 0.85rem; letter-spacing: 0.12em;
  color: var(--charcoal-3); display: flex; align-items: center; gap: 8px; padding-bottom: 16px;
  border-bottom: 2px solid var(--ivory-3); transition: color 0.2s, border-color 0.2s;
}
.products-see-all:hover { color: var(--charcoal); border-color: var(--charcoal); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-3);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(0,0,0,0.08); }
.product-card--featured { background: var(--charcoal); border-color: hsl(42,30%,20%); }

.product-card-top { padding: 36px 32px 16px; position: relative; overflow: hidden; }
.product-card--featured .product-card-top { background: hsl(30,10%,12%); }
.product-badge {
  display: inline-block; padding: 4px 12px;
  font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.15em;
  border-radius: 4px; margin-bottom: 20px;
}
.product-badge--grey { background: var(--ivory-2); color: var(--charcoal-3); }
.product-badge--gold { background: var(--gold); color: var(--charcoal); }
.product-badge--dark { background: hsl(42,30%,18%); color: var(--gold); }

.product-visual { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; }
.product-visual-ring { position: absolute; width: 170px; height: 170px; border-radius: 50%; border: 1px solid var(--ivory-3); }
.product-card--featured .product-visual-ring { border-color: hsl(42,25%,20%); }
.product-img {
  position: relative; z-index: 2; width: 150px; height: 150px; object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
  transition: transform 0.4s var(--ease-smooth);
}
.product-card:hover .product-img { transform: scale(1.06) translateY(-4px); }
.product-card--featured .product-img { filter: drop-shadow(0 10px 28px rgba(0,0,0,0.5)); }

.product-card-body {
  padding: 28px 32px 32px; border-top: 1px solid var(--ivory-3);
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.product-card--featured .product-card-body { border-color: hsl(42,15%,18%); }
.product-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-muted); font-weight: 500; }
.product-name { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.03em; color: var(--charcoal); line-height: 1; }
.product-card--featured .product-name { color: var(--ivory); }
.product-desc-short { font-size: 0.9rem; color: var(--charcoal-3); line-height: 1.55; }
.product-card--featured .product-desc-short { color: hsl(40,12%,55%); }
.product-pricing-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--ivory-3);
}
.product-card--featured .product-pricing-row { border-color: hsl(42,15%,18%); }
.price-was { font-size: 0.85rem; text-decoration: line-through; color: var(--charcoal-3); }
.product-card--featured .price-was { color: hsl(40,12%,42%); }
.price-now { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: 0.02em; color: var(--charcoal); }
.product-card--featured .price-now { color: var(--gold); }
.btn-product-card {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding: 13px 18px;
  background: var(--charcoal); color: var(--ivory);
  font-family: var(--font-label); font-size: 0.9rem; letter-spacing: 0.1em;
  border-radius: 4px; transition: background 0.2s, color 0.2s;
}
.btn-product-card:hover { background: var(--gold); color: var(--charcoal); }
.product-card--featured .btn-product-card { background: var(--gold); color: var(--charcoal); }
.product-card--featured .btn-product-card:hover { background: var(--ivory); }

/* ── VIDEO CAROUSEL SECTION (before footer) ────────────── */
.video-section {
  background: var(--black);
  padding: 90px 0 80px;
  overflow: hidden;
}
.video-section-header { text-align: center; margin-bottom: 48px; }

/* Horizontal scrollable carousel */
.video-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.video-carousel {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
  padding-bottom: 4px;
}
.video-carousel::-webkit-scrollbar { display: none; }
.video-carousel.dragging { cursor: grabbing; }
.video-card {
  flex: 0 0 340px; scroll-snap-align: start;
  position: relative; border-radius: 12px;
  overflow: hidden; aspect-ratio: 16/9;
  cursor: none; background: #1a1a1a;
}
.video-card-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.4s var(--ease-smooth), filter 0.3s;
  filter: brightness(0.75);
}
.video-card:hover .video-card-thumb { transform: scale(1.04); filter: brightness(0.5); }
.video-card-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  padding: 24px;
}
.video-play-btn {
  width: 60px; height: 60px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.video-card:hover .video-play-btn { transform: scale(1.14); background: var(--white); }
.video-play-btn svg { color: var(--black); margin-left: 3px; }
.video-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem; letter-spacing: 0.04em;
  color: var(--white); text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.video-card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em;
  background: var(--gold); color: var(--black);
  padding: 4px 10px; border-radius: 4px;
}
/* Carousel nav arrows */
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px;
  background: var(--gold); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none; color: var(--black);
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.carousel-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: -16px; }
.carousel-next { right: -16px; }

/* Video Modal */
.video-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative; width: 90vw; max-width: 1100px;
  aspect-ratio: 16/9;
}
.video-modal-inner iframe { width: 100%; height: 100%; border: none; border-radius: 8px; }
.video-modal-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: var(--ivory);
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em;
  cursor: none; transition: color 0.2s;
}
.video-modal-close:hover { color: var(--gold); }

/* ── STATS ─────────────────────────────────────────────── */
.stats-section {
  background: var(--grey-light); padding: 80px 0;
  border-top: 1px solid var(--grey-mid); border-bottom: 1px solid var(--grey-mid);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { display: flex; flex-direction: column; gap: 6px; padding-left: 20px; border-left: 3px solid var(--gold); }
.stat-number { font-family: var(--font-display); font-size: 3.5rem; letter-spacing: 0.02em; color: var(--black); line-height: 1; }
.stat-suffix { color: var(--gold-dark); }
.stat-desc { font-size: 0.85rem; font-weight: 500; color: var(--black-3); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── MAP SECTION — Video BG (Gold band) ────────────────── */
.map-section {
  position: relative; padding: 120px 0; overflow: hidden;
  background: var(--gold);
}
.map-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(190,130,0,0.82);
}
.map-section > .container { position: relative; z-index: 2; }
.map-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.map-visual-wrap {
  background: hsl(42,50%,28%,0.8);
  border-radius: 16px; padding: 36px;
  box-shadow: 0 32px 80px hsl(38,80%,20%,0.35);
  overflow: hidden; backdrop-filter: blur(4px);
}
.map-visual-wrap svg { width: 100%; height: auto; display: block; }
@keyframes dotPulse { 0% { transform: translate(-50%,-50%) scale(0.5); opacity: 0.7; } 100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; } }

/* ── WHY SECTION (Grey) ────────────────────────────────── */
.why-section { background: var(--grey-light); padding: 110px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 60px;
}
.why-card {
  background: var(--white); padding: 52px 48px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.2s;
}
.why-card:hover { background: #fafafa; }
.why-card:first-child { border-radius: 16px 0 0 0; }
.why-card:nth-child(2) { border-radius: 0 16px 0 0; }
.why-card:nth-child(3) { border-radius: 0 0 0 16px; }
.why-card:last-child { border-radius: 0 0 16px 0; }
.why-icon-wrap {
  width: 52px; height: 52px;
  background: var(--gold-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); transition: background 0.2s, color 0.2s;
}
.why-card:hover .why-icon-wrap { background: var(--gold); color: var(--black); }
.why-title { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.03em; color: var(--black); line-height: 1; }
.why-desc { font-size: 0.95rem; line-height: 1.7; color: var(--black-3); }

/* ── CTA SECTION — Video BG (Dark) ────────────────────── */
.cta-section {
  position: relative; padding: 130px 0; text-align: center; overflow: hidden;
  background: var(--charcoal);
}
.cta-big-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem); /* Reduced from 4rem-10rem */
  letter-spacing: 0.02em; color: var(--ivory);
  line-height: 0.88; margin-bottom: 40px;
  position: relative; z-index: 2;
}
.cta-big-text em { color: var(--gold); font-style: normal; }
.cta-sub {
  font-size: 1.15rem; color: hsl(40,15%,58%);
  margin-bottom: 44px; max-width: 460px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
  position: relative; z-index: 2;
}
.cta-btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-primary.outline-white {
  border: 2px solid rgba(255,255,255,0.3); background: transparent; color: var(--white);
}
.btn-primary.outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ── FIELD IMAGE SECTION ────────────────────────────── */
.field-section {
  position: relative; min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
}
.field-image-wrap {
  position: absolute; inset: 0;
}
.field-bg-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.field-section:hover .field-bg-img { transform: scale(1); }
.field-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.1) 100%);
}
.field-content {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding-top: 90px; padding-bottom: 90px;
}
.field-text-block {
  max-width: 540px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245,179,0,0.18);
  border-radius: 16px;
  padding: 44px 48px;
}
.field-eyebrow {
  display: block; font-family: var(--font-label); font-size: 0.75rem;
  letter-spacing: 0.3em; color: var(--gold); margin-bottom: 14px;
}
.field-headline {
  font-family: var(--font-display); font-size: clamp(2.8rem,5.5vw,5rem);
  letter-spacing: 0.01em; line-height: 0.93;
  color: var(--white); margin-bottom: 20px;
}
.field-headline-gold { color: var(--gold); }
.field-sub {
  font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
}
.field-spec-list { display: flex; gap: 28px; }
.field-spec { display: flex; flex-direction: column; gap: 2px; padding-left: 14px; border-left: 2px solid var(--gold); }
.field-spec-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.field-spec-label { font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.55); text-transform: uppercase; }

/* ── AXIOM SPLIT SECTION ────────────────────────────── */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-left {
  background: var(--black);
  display: flex; align-items: center;
}
.split-left-inner {
  padding: 80px 72px; max-width: 520px;
}
.split-eyebrow {
  display: block; font-family: var(--font-label); font-size: 0.72rem;
  letter-spacing: 0.3em; color: var(--gold); margin-bottom: 14px;
}
.split-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem,5vw,5rem); letter-spacing: 0.01em;
  color: var(--white); line-height: 0.92; margin-bottom: 24px;
}
.split-sub {
  font-size: 1rem; line-height: 1.7; color: #aaa; margin-bottom: 28px;
}
.split-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}
.split-features li {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 10px;
}
.split-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--gold); color: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.split-ctas { display: flex; gap: 12px; }
.split-right {
  position: relative; overflow: hidden;
}
.split-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transition: transform 6s ease;
}
.split-section:hover .split-img { transform: scale(1.03); }
.split-badge {
  position: absolute; bottom: 32px; right: 32px;
  background: var(--gold); color: var(--black);
  border-radius: 12px; padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.split-badge-num { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.split-badge-text { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.15em; color: rgba(0,0,0,0.6); }

/* ── MAP COUNTRY CHIPS ──────────────────────────────── */
.map-country-chip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 6px 14px;
  font-family: var(--font-label); font-size: 0.75rem;
  letter-spacing: 0.12em; color: var(--white);
}

/* ── PRODUCT IMAGE GALLERY ──────────────────────────── */
.product-gallery {
  position: relative; width: 100%; height: 220px;
  overflow: hidden; border-radius: 8px;
}
.product-gallery-track {
  display: flex; height: 100%;
  transition: transform 0.4s var(--ease-smooth);
  will-change: transform;
}
.product-gallery-img {
  flex: 0 0 100%; height: 100%;
  object-fit: contain; object-position: center;
  background: var(--grey-light);
}
.product-gallery-dots {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 8px;
}
.product-gallery-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey-mid); border: none; cursor: none;
  transition: background 0.2s, width 0.2s;
  padding: 0;
}
.product-gallery-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }
.product-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 30px; height: 30px;
  background: rgba(0,0,0,0.45); color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: background 0.2s;
}
.product-gallery-arrow:hover { background: var(--gold); color: var(--black); }
.product-gallery-prev { left: 8px; }
.product-gallery-next { right: 8px; }

/* \u2500\u2500 GLOBAL FOOTER (injected) \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.footer { background: hsl(30,10%,7%); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px; border-bottom: 1px solid hsl(40,10%,12%);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { height: 36px; display: block; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.1em; color: var(--gold); }
.footer-tagline { font-size: 0.9rem; color: hsl(40,10%,42%); line-height: 1.7; }
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: hsl(40,10%,13%); color: hsl(40,10%,52%);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--gold); color: var(--black); }
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col-title { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.22em; color: hsl(40,10%,40%); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-links a { font-size: 0.88rem; color: hsl(40,10%,52%); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 20px; flex-wrap: wrap;
  font-size: 0.8rem; color: hsl(40,10%,32%);
}
.footer-bottom-right { color: hsl(40,10%,40%); }

/* \u2500\u2500 LANG SWITCHER \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-label); font-size: 0.72rem;
  letter-spacing: 0.1em; color: var(--black-3);
  padding: 4px 6px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); background: rgba(245,179,0,0.08); }
.lang-divider { color: var(--grey-mid); font-size: 0.75rem; }
.navbar-right { display: flex; align-items: center; gap: 12px; }
.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-links a { font-family: var(--font-label); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--black-3); transition: color 0.2s; }
.navbar-links a.active, .navbar-links a:hover { color: var(--gold); }
.nav-overlay-lang { margin-top: 24px; display: flex; gap: 12px; }
.nav-overlay-lang button {
  background: hsl(40,10%,13%); border: 1px solid hsl(40,10%,20%);
  color: var(--white); padding: 8px 16px; border-radius: 8px;
  font-family: var(--font-label); font-size: 0.8rem; cursor: pointer;
}
.nav-overlay-lang button.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.navbar.scrolled { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

/* \u2500\u2500 WARRANTY SECTION \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.warranty-section {
  background: #ebebeb; /* correct grey from screenshot */
  padding: 100px 0;
}
.warranty-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 72px; align-items: center;
}
.warranty-icon-wrap {
  width: 140px; height: 140px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.warranty-icon-img {
  width: 100%; height: auto;
  border-radius: 12px; /* Slight radius instead of circle */
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.warranty-eyebrow { display: block; font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.3em; color: var(--gold-dark); margin-bottom: 12px; }
.warranty-headline { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.5rem); line-height: 0.95; color: var(--black); margin-bottom: 18px; }
.warranty-gold { color: var(--gold-dark); }
.warranty-desc { font-size: 0.95rem; line-height: 1.7; color: #555; margin-bottom: 24px; max-width: 480px; }
.warranty-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.warranty-chip {
  background: var(--white); border: 1px solid #d0d0d0;
  border-radius: 100px; padding: 6px 16px;
  font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.1em; color: #333;
}
.warranty-stats { display: flex; flex-direction: column; gap: 28px; }
.warranty-stat { text-align: center; }
.warranty-stat-num { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-dark); line-height: 1; }
.warranty-stat-suffix { font-size: 1.4rem; }
.warranty-stat-label { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.2em; color: #666; }

/* \u2500\u2500 FEATURE CARDS (interactive BG swap) \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.feature-cards-section {
  position: relative; padding: 100px 0;
  overflow: hidden; min-height: 600px;
}
.feature-cards-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: background-image 0.5s ease;
  will-change: background-image;
}
.feature-cards-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
}
.feature-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 28px;
  cursor: pointer; transition: transform 0.3s, border-color 0.3s, background 0.3s;
  display: flex; flex-direction: column; gap: 20px;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(245,179,0,0.3); }
.feature-card.active {
  border-color: var(--gold); background: rgba(245,179,0,0.1);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.feature-card-icon { height: 120px; display: flex; align-items: center; justify-content: center; }
.feature-card-icon img { max-height: 110px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.feature-card-tag { font-family: var(--font-label); font-size: 0.65rem; letter-spacing: 0.25em; color: var(--gold); }
.feature-card-name { font-family: var(--font-display); font-size: 2rem; color: var(--white); line-height: 1; }
.feature-card-specs { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-card-specs li { font-size: 0.88rem; color: rgba(255,255,255,0.72); padding-left: 14px; position: relative; }
.feature-card-specs li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }
.feature-card-price { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.feature-card-was { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.feature-card-now { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }
.feature-card .btn-primary { margin-top: auto; width: 100%; justify-content: center; }

/* \u2500\u2500 ROI CALCULATOR \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.roi-section { background: var(--white); padding: 100px 0; }
.roi-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.roi-form { display: flex; flex-direction: column; gap: 28px; }
.roi-field { display: flex; flex-direction: column; gap: 10px; }
.roi-label { font-family: var(--font-label); font-size: 0.75rem; letter-spacing: 0.12em; color: var(--black-3); }
.roi-range { width: 100%; accent-color: var(--gold); height: 4px; }
.roi-val { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); }
.roi-select {
  background: var(--grey-light); border: 1px solid var(--grey-mid);
  border-radius: 10px; padding: 12px 16px;
  font-size: 0.95rem; color: var(--black);
  cursor: pointer; outline: none;
  transition: border-color 0.2s;
}
.roi-select:focus { border-color: var(--gold); }
.roi-result {
  background: var(--black); border-radius: 20px;
  padding: 40px 36px; display: flex; flex-direction: column; gap: 20px;
}
.roi-result-item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 20px; border-bottom: 1px solid hsl(40,10%,15%); }
.roi-result-item:last-of-type { border-bottom: none; }
.roi-result-item.highlight { padding-top: 8px; }
.roi-result-label { font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.15em; color: hsl(40,10%,48%); }
.roi-result-num { font-family: var(--font-display); font-size: 2rem; color: var(--white); transition: color 0.3s; }
.roi-result-num.gold { color: var(--gold); }

/* \u2500\u2500 SECTION headline / eyebrow on dark bgs \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
.on-dark { color: var(--white) !important; }
.on-dark.section-eyebrow { color: var(--gold) !important; }

/* \u2500\u2500 RESPONSIVE \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */
@media (max-width: 1100px) {
  .navbar { min-width: unset; width: calc(100% - 48px); }
  .hero-slide-inner { grid-template-columns: 1fr; }
  .slide-visual { display: none; }
  .map-section-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .why-card:first-child { border-radius: 16px 16px 0 0; }
  .why-card:nth-child(2), .why-card:nth-child(3) { border-radius: 0; }
  .why-card:last-child { border-radius: 0 0 16px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .warranty-inner { grid-template-columns: 1fr; gap: 36px; }
  .feature-cards-grid { grid-template-columns: 1fr 1fr; }
  .roi-inner { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-counter { display: none; }
  .floating-side { display: none; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .side-panel { display: none; }
  .navbar-links { display: none; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; height: 54px; gap: 12px; top: 10px; width: calc(100% - 20px); }
  .navbar .btn-primary { font-size: 0.72rem; padding: 8px 14px; }
  .hero-slide-inner { padding: 100px 20px 90px; }
  .slide-text { padding: 24px 20px; }
  .hero-nav { bottom: 20px; }
  .products-header { flex-direction: column; gap: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-big-text { font-size: clamp(3rem, 14vw, 6rem); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .field-text-block { padding: 24px 20px; }
  .split-left-inner { padding: 48px 28px; }
  .warranty-inner { gap: 28px; }
  .warranty-icon-wrap { width: 100px; height: 100px; }
  .container { padding: 0 16px; }
  .section-headline { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-slide-inner { gap: 20px; }
  .map-section-inner { gap: 28px; }
  .map-visual-wrap { display: none; }
  .roi-result { padding: 24px 20px; }
  .feature-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-slide-inner { padding: 110px 16px 80px; }
  .slide-headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .warranty-chips { flex-direction: column; }
  .product-card { padding: 0; }
}

 
/* NEW NAVBAR CLASSES */ 
