/* ═══════════════════════════════════════════════════════════
   ELIIAN VOLT — Energetic Gradient Sport
   Electric blue → violet gradients · diagonal cuts · dynamic
═══════════════════════════════════════════════════════════ */

:root {
  --volt-blue:   #2E5BFF;
  --volt-indigo: #4F46E5;
  --volt-violet: #8B5CF6;
  --volt-cyan:   #22D3EE;
  --volt-lime:   #A3E635;
  --navy:        #0A0E23;
  --navy-2:      #101635;
  --paper:       #F7F8FD;
  --white:       #FFFFFF;
  --ink:         #14172B;
  --muted:       #5B6178;
  --line:        rgba(20, 23, 43, 0.09);
  --line-light:  rgba(255, 255, 255, 0.12);
  --grad-main:   linear-gradient(120deg, #2E5BFF 0%, #4F46E5 45%, #8B5CF6 100%);
  --grad-hot:    linear-gradient(120deg, #22D3EE 0%, #2E5BFF 50%, #8B5CF6 100%);
  --grad-text:   linear-gradient(100deg, #22D3EE 0%, #6D8BFF 50%, #A78BFA 100%);
  --shadow-card: 0 6px 28px rgba(20, 23, 43, 0.08);
  --shadow-glow: 0 12px 44px rgba(46, 91, 255, 0.32);
  --radius:     18px;
  --radius-sm:  12px;
  --font-disp:  'Archivo', -apple-system, 'Segoe UI', sans-serif;
  --font-body:  'Inter', -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--volt-blue); text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--font-disp); line-height: 1.08; margin: 0 0 0.5em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--volt-blue); color: #fff; padding: 10px 18px; z-index: 10000;
  border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-disp); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; border: 0;
  cursor: pointer; transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn-grad {
  background: var(--grad-main); color: #fff; box-shadow: var(--shadow-glow);
  background-size: 160% 160%; background-position: 0% 50%;
}
.btn-grad:hover { background-position: 100% 50%; transform: translateY(-2px); box-shadow: 0 16px 52px rgba(46,91,255,0.45); color:#fff; }
.btn-ghost {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); color:#fff; transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 34px rgba(37,211,102,0.35); }
.btn-wa:hover { background: #1fb857; color:#fff; transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--volt-indigo); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* ── Nav ─────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 18px 0;
}
#nav.scrolled {
  background: rgba(10, 14, 35, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: var(--font-disp); font-weight: 900; font-style: italic;
  font-size: 1.65rem; letter-spacing: 0.01em; color: #fff; line-height: 1;
}
.nav-logo span {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav-links a {
  color: rgba(255,255,255,0.78); font-weight: 600; font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 11px 24px; font-size: 0.85rem; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-hamburger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: 0.25s; }

#mobile-menu {
  position: fixed; inset: 0; background: var(--navy); z-index: 890;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#mobile-menu.open { opacity: 1; pointer-events: auto; }
#mobile-menu a {
  color: #fff; font-family: var(--font-disp); font-weight: 800;
  font-size: 1.8rem; padding: 10px; text-transform: uppercase;
}
#mobile-menu a:hover { color: var(--volt-cyan); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── WhatsApp float ──────────────────────────────────────── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 140px 0 120px;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55;
  pointer-events: none;
}
.hero-glow-1 { width: 560px; height: 560px; background: #2E5BFF; top: -160px; right: -120px; animation: glowDrift 9s ease-in-out infinite alternate; }
.hero-glow-2 { width: 480px; height: 480px; background: #8B5CF6; bottom: -180px; left: -140px; animation: glowDrift 11s ease-in-out infinite alternate-reverse; }
.hero-glow-3 { width: 300px; height: 300px; background: #22D3EE; top: 40%; left: 42%; opacity: 0.25; animation: glowDrift 13s ease-in-out infinite alternate; }
@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, 34px) scale(1.12); }
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 8px 18px;
  color: var(--volt-cyan); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-eyebrow i { font-size: 0.7rem; }
.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 900; font-style: italic; text-transform: uppercase;
  color: #fff; letter-spacing: -0.01em; margin-bottom: 22px;
}
.hero-title .grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  color: rgba(255,255,255,0.72); font-size: 1.13rem; max-width: 540px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-badges span {
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-badges i { color: var(--volt-lime); }

.hero-visual { position: relative; }
.hero-visual-card {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  transform: rotate(2.5deg);
  animation: heroFloat 5.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50%      { transform: rotate(2.5deg) translateY(-14px); }
}
.hero-visual-card img { width: 100%; }
.hero-chip {
  position: absolute; background: rgba(10,14,35,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 14px;
  padding: 12px 18px; color: #fff; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px; z-index: 3;
  box-shadow: 0 10px 34px rgba(0,0,0,0.4);
}
.hero-chip i { color: var(--volt-cyan); font-size: 1.1rem; }
.hero-chip-1 { top: 8%; left: -8%; animation: chipFloat 4.5s ease-in-out infinite; }
.hero-chip-2 { bottom: 12%; right: -6%; animation: chipFloat 5.2s ease-in-out infinite reverse; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .hero { padding: 120px 0 90px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-chip-1 { left: 0; }
  .hero-chip-2 { right: 0; }
}

/* ── Marquee strip ───────────────────────────────────────── */
.marquee {
  background: var(--grad-main);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
  transform: rotate(-1.2deg) scale(1.02); transform-origin: center;
  margin-top: -30px; position: relative; z-index: 5;
}
.marquee-track { display: inline-flex; gap: 48px; animation: marqueeScroll 26s linear infinite; }
.marquee-track span {
  color: #fff; font-family: var(--font-disp); font-weight: 800; font-style: italic;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-track span::after { content: '◆'; font-size: 0.6rem; opacity: 0.7; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections ────────────────────────────────────────────── */
section { padding: 96px 0; }
.sec-paper { background: var(--paper); }
.sec-navy  { background: var(--navy); color: #fff; }

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--volt-blue); margin-bottom: 14px;
}
.sec-navy .sec-tag { color: var(--volt-cyan); }
.sec-tag::before { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--grad-main); }
.sec-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 900; font-style: italic;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.sec-title .grad {
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sec-navy .sec-title .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; }
.sec-sub { color: var(--muted); font-size: 1.05rem; }
.sec-navy .sec-sub { color: rgba(255,255,255,0.65); }

/* ── Stats band ──────────────────────────────────────────── */
.stats-band { padding: 60px 0; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 28px 12px; border-radius: var(--radius); background: var(--paper); }
.stat-num {
  font-family: var(--font-disp); font-weight: 900; font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat-label { color: var(--muted); font-weight: 600; font-size: 0.88rem; margin-top: 8px; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Product grid ────────────────────────────────────────── */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 18px 48px rgba(46,91,255,0.16); }
.product-card-img { aspect-ratio: 4/3.4; overflow: hidden; background: #eef0f8; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--grad-main); color: #fff;
  font-weight: 800; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 13px; border-radius: 999px;
}
.product-card-body { padding: 22px 24px 26px; }
.product-card-tag { color: var(--volt-blue); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.product-card-name { font-size: 1.25rem; font-weight: 800; margin: 6px 0 10px; }
.product-card-desc { color: var(--muted); font-size: 0.9rem; margin: 0 0 16px; }
.product-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.88rem; color: var(--volt-blue);
}
.product-card-cta i { transition: transform 0.25s; }
.product-card:hover .product-card-cta i { transform: translateX(5px); }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

/* ── Customization capability ────────────────────────────── */
.custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.custom-card {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 30px 26px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.custom-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-6px); border-color: rgba(139,92,246,0.5); }
.custom-card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--grad-main); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.35rem; margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(46,91,255,0.35);
}
.custom-card h3 { color: #fff; font-size: 1.15rem; font-weight: 800; }
.custom-card p { color: rgba(255,255,255,0.62); font-size: 0.92rem; margin: 0; }
@media (max-width: 900px) { .custom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .custom-grid { grid-template-columns: 1fr; } }

/* ── Craft videos ────────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.video-card {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
}
.video-card-media { position: relative; aspect-ratio: 16/10; background: var(--navy-2); }
.video-card-media video { width: 100%; height: 100%; object-fit: cover; }
.video-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.92); font-size: 3rem; pointer-events: none; transition: opacity 0.3s;
  background: linear-gradient(transparent 40%, rgba(10,14,35,0.55));
}
.video-card-label {
  padding: 16px 18px; font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px;
}
.video-card-label i { color: var(--volt-blue); }
@media (max-width: 980px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }

/* ── Production scenes ───────────────────────────────────── */
.scene-strip {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 230px; gap: 18px;
}
.scene-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.scene-item:first-child { grid-row: span 2; grid-auto-rows: auto; }
.scene-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.scene-item:hover img { transform: scale(1.05); }
.scene-item-label {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(10,14,35,0.78); backdrop-filter: blur(8px);
  color: #fff; font-weight: 700; font-size: 0.8rem;
  padding: 7px 14px; border-radius: 999px;
}
@media (max-width: 820px) {
  .scene-strip { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .scene-item:first-child { grid-row: span 1; grid-column: span 2; }
}

/* ── Craft details ───────────────────────────────────────── */
.craft-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.craft-card {
  background: var(--white); border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transition: transform 0.3s;
  text-align: center;
}
.craft-card:hover { transform: translateY(-6px); }
.craft-card-img { aspect-ratio: 1/0.85; overflow: hidden; }
.craft-card-img img { width: 100%; height: 100%; object-fit: cover; }
.craft-card-name { font-family: var(--font-disp); font-weight: 800; font-size: 0.95rem; padding: 14px 10px; }
@media (max-width: 900px) { .craft-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .craft-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Cases (teams) ───────────────────────────────────────── */
.case-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.case-item {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1;
  border: 1px solid var(--line-light); position: relative;
}
.case-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.case-item:hover img { transform: scale(1.07); }
@media (max-width: 820px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Trust badges ────────────────────────────────────────── */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.trust-item i {
  font-size: 1.5rem; flex-shrink: 0;
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.trust-item strong { display: block; font-family: var(--font-disp); font-weight: 800; font-size: 1rem; }
.trust-item small { color: var(--muted); font-size: 0.83rem; }
@media (max-width: 900px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-row { grid-template-columns: 1fr; } }

/* ── Steps ───────────────────────────────────────────────── */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step-item {
  position: relative; padding: 28px 24px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-light);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--font-disp); font-weight: 900; font-style: italic; font-size: 2.6rem;
  line-height: 1; margin-bottom: 12px;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.step-item h3 { color: #fff; font-size: 1.08rem; font-weight: 800; }
.step-item p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }
@media (max-width: 900px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-row { grid-template-columns: 1fr; } }

/* ── Blog cards ──────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  transition: transform 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-img { aspect-ratio: 16/9; background: linear-gradient(120deg, #E6EBFF, #F0EAFF); position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.blog-card-img-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #B9C4F2; font-size: 2.4rem;
}
.blog-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-tag { color: var(--volt-violet); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card-title { font-size: 1.12rem; font-weight: 800; margin: 8px 0 10px; }
.blog-card-title a { color: var(--ink); }
.blog-card-title a:hover { color: var(--volt-blue); }
.blog-card-excerpt { color: var(--muted); font-size: 0.9rem; margin: 0 0 16px; flex: 1; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--muted); }
.blog-card-meta a { font-weight: 700; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 560px; margin-left:auto; margin-right:auto; } }

/* ── Inquiry / Quote section ─────────────────────────────── */
.quote-section {
  position: relative; overflow: hidden;
  background: var(--navy);
}
.quote-glow-1 { position: absolute; width: 500px; height: 500px; background: #2E5BFF; border-radius: 50%; filter: blur(100px); opacity: 0.4; top: -140px; left: -120px; }
.quote-glow-2 { position: absolute; width: 460px; height: 460px; background: #8B5CF6; border-radius: 50%; filter: blur(100px); opacity: 0.4; bottom: -140px; right: -100px; }
.quote-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start;
}
.quote-info h2 { color: #fff; }
.quote-info .sec-sub { margin-bottom: 30px; }
.quote-contact-list { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.quote-contact-list li {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.8); font-size: 0.95rem;
}
.quote-contact-list a { color: rgba(255,255,255,0.85); font-weight: 600; }
.quote-contact-list a:hover { color: var(--volt-cyan); }
.quote-contact-list i {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--volt-cyan); font-size: 1.05rem;
}

.quote-form-card {
  background: var(--white); border-radius: 24px; padding: 40px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
}
.quote-form-title { font-size: 1.5rem; font-weight: 900; font-style: italic; text-transform: uppercase; }
.quote-form-sub { color: var(--muted); font-size: 0.9rem; margin: 4px 0 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 7px; }
.form-field label .req { color: #E11D48; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 0.95rem;
  border: 1.5px solid #DCE0EE; border-radius: var(--radius-sm); background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--volt-blue); box-shadow: 0 0 0 3px rgba(46,91,255,0.14);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-error { color: #E11D48; font-size: 0.78rem; min-height: 1em; display: block; margin-top: 4px; }
.form-status { font-weight: 600; margin-top: 14px; min-height: 1.4em; color: var(--volt-blue); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 900px) {
  .quote-inner { grid-template-columns: 1fr; }
  .quote-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Footer ──────────────────────────────────────────────── */
#footer { background: #070A1A; color: rgba(255,255,255,0.65); padding: 64px 0 34px; }
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 44px;
}
.footer-brand {
  font-family: var(--font-disp); font-weight: 900; font-style: italic; font-size: 1.8rem; color: #fff;
}
.footer-brand span {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.footer-tagline { font-size: 0.9rem; margin: 10px 0 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); transition: 0.25s;
}
.footer-social-link:hover { background: var(--grad-main); color: #fff; transform: translateY(-3px); }
.footer-col-title { color: #fff; font-family: var(--font-disp); font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--volt-cyan); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 13px; }
.footer-contact-item i { color: var(--volt-cyan); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px;
  font-size: 0.82rem; text-align: center;
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; gap: 34px; } }

/* ── Blog inner pages ────────────────────────────────────── */
.page-hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 150px 0 80px;
}
.page-hero .hero-glow-1 { width: 420px; height: 420px; }
.page-hero-title {
  position: relative; z-index: 2;
  color: #fff; font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900; font-style: italic; text-transform: uppercase;
}
.breadcrumb { position: relative; z-index: 2; margin-top: 8px; }
.breadcrumb ol { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; opacity: 0.5; }
.breadcrumb a { color: rgba(255,255,255,0.75); }

.single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.single-content { font-size: 1.02rem; }
.single-content img { border-radius: var(--radius-sm); }
.single-content h2, .single-content h3 { font-style: normal; margin-top: 1.6em; }
.sidebar-card {
  background: var(--paper); border-radius: var(--radius); padding: 26px; margin-bottom: 24px;
  border: 1px solid var(--line);
}
.sidebar-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 16px; }
.sidebar-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sidebar-card ul a { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.sidebar-card ul a:hover { color: var(--volt-blue); }
.sidebar-cta {
  background: var(--grad-main); color: #fff; border-radius: var(--radius); padding: 28px; text-align: center;
}
.sidebar-cta h3 { color: #fff; font-weight: 900; font-style: italic; text-transform: uppercase; }
.sidebar-cta p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.sidebar-cta .btn { background: #fff; color: var(--volt-blue); }
@media (max-width: 900px) { .single-layout { grid-template-columns: 1fr; } }

.pagination, .page-numbers { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.page-numbers li { list-style: none; }
a.page-numbers, span.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: 12px;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink); font-weight: 700;
}
span.page-numbers.current { background: var(--grad-main); color: #fff; border: 0; }

/* ── Reveal animations (JS-gated: visible without JS) ────── */
.js-anim .rv {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.js-anim .rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js-anim .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════
   VOLT FX — cinematic layer
   Loader · custom cursor · scroll progress · tilt · shimmer
   All gated so content stays visible if JS never runs.
═══════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-hot); z-index: 1000;
  box-shadow: 0 0 12px rgba(46,91,255,0.8);
  pointer-events: none;
}

/* ── Loader ──────────────────────────────────────────────── */
#volt-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  /* CSS fallback: self-destruct after 3.2s even if JS never runs */
  animation: loaderAutoHide 0.6s ease 3.2s forwards;
}
#volt-loader.done { animation: loaderExit 0.7s cubic-bezier(0.7, 0, 0.3, 1) forwards; }
@keyframes loaderAutoHide { to { opacity: 0; visibility: hidden; } }
@keyframes loaderExit {
  to { transform: translateY(-100%); border-radius: 0 0 50% 50% / 0 0 8% 8%; }
}
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-disp); font-weight: 900; font-style: italic;
  font-size: clamp(3rem, 9vw, 5.5rem); color: #fff; line-height: 1;
  letter-spacing: 0.02em; text-transform: uppercase;
  overflow: hidden;
}
.loader-logo span {
  background: var(--grad-text); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 2.2s linear infinite;
}
.loader-track {
  width: 220px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.1); margin: 26px auto 12px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%; border-radius: 3px;
  background: var(--grad-hot);
  box-shadow: 0 0 14px rgba(34,211,238,0.9);
  animation: loaderBarCss 2.8s ease-out forwards; /* CSS fallback fill */
}
.loader-pct {
  font-family: var(--font-disp); font-weight: 700; font-size: 0.85rem;
  color: rgba(255,255,255,0.45); letter-spacing: 0.2em;
}
@keyframes loaderBarCss { to { width: 100%; } }

/* ── Gradient shimmer on .grad text ──────────────────────── */
.hero-title .grad, .sec-title .grad, .footer-brand span, .nav-logo span {
  background-size: 200% auto;
  animation: gradShift 4s linear infinite;
}
@keyframes gradShift {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* ── Custom cursor (fine pointers only) ──────────────────── */
.v-cursor, .v-cursor-ring { display: none; }
@media (pointer: fine) {
  .fx-cursor-on .v-cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 10001;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--volt-cyan);
    box-shadow: 0 0 10px rgba(34,211,238,0.9);
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
  .fx-cursor-on .v-cursor-ring {
    display: block; position: fixed; top: 0; left: 0; z-index: 10000;
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid rgba(109, 139, 255, 0.65);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s, background 0.25s;
  }
  .fx-cursor-on.cursor-hot .v-cursor-ring {
    width: 64px; height: 64px;
    border-color: rgba(34,211,238,0.9);
    background: rgba(34,211,238,0.08);
  }
}

/* ── Hero title word entrance (gated by .fx-anim from volt-fx.js) ── */
.hw { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hw > span { display: inline-block; }
.fx-anim .hw > span {
  transform: translateY(115%);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}
.fx-anim .hw:nth-of-type(1) > span { transition-delay: 0.05s; }
.fx-anim .hw:nth-of-type(2) > span { transition-delay: 0.15s; }
.fx-anim .hw:nth-of-type(3) > span { transition-delay: 0.25s; }
.fx-anim .hw:nth-of-type(4) > span { transition-delay: 0.35s; }
.fx-anim.fx-go .hw > span { transform: translateY(0); }

.fx-anim .hero-eyebrow, .fx-anim .hero-sub, .fx-anim .hero-ctas,
.fx-anim .hero-badges, .fx-anim .hero-visual {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fx-anim .hero-eyebrow { transition-delay: 0.4s; }
.fx-anim .hero-sub     { transition-delay: 0.55s; }
.fx-anim .hero-ctas    { transition-delay: 0.7s; }
.fx-anim .hero-badges  { transition-delay: 0.85s; }
.fx-anim .hero-visual  { transition-delay: 0.5s; }
.fx-anim.fx-go .hero-eyebrow, .fx-anim.fx-go .hero-sub, .fx-anim.fx-go .hero-ctas,
.fx-anim.fx-go .hero-badges, .fx-anim.fx-go .hero-visual {
  opacity: 1; transform: none;
}

/* ── Hero particle canvas ────────────────────────────────── */
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* ── 3D tilt ─────────────────────────────────────────────── */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt .product-card-img img { transform: translateZ(24px); }
.product-grid { perspective: 1100px; }

/* ── Clip-path image reveals ─────────────────────────────── */
.js-anim .rv-clip {
  clip-path: inset(12% 12% 12% 12% round 18px);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s, transform 0.8s;
}
.js-anim .rv-clip.in { clip-path: inset(0 0 0 0 round 18px); }

/* ── Section giant background text ───────────────────────── */
.sec-bgtext-wrap { position: relative; overflow: hidden; }
.sec-bgtext {
  position: absolute; top: 14px; left: 0; width: 100%;
  font-family: var(--font-disp); font-weight: 900; font-style: italic;
  font-size: clamp(5rem, 14vw, 11rem); line-height: 1;
  text-transform: uppercase; white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46, 91, 255, 0.1);
  pointer-events: none; user-select: none;
  will-change: transform;
}
.sec-navy .sec-bgtext { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06); }
.sec-bgtext-wrap .container { position: relative; z-index: 2; }

/* ── Animated gradient border on quote card ──────────────── */
.quote-form-card {
  position: relative;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(120deg, #22D3EE, #2E5BFF, #8B5CF6, #22D3EE) border-box;
  background-size: 100% 100%, 300% 300%;
  animation: borderFlow 6s linear infinite;
}
@keyframes borderFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── CTA glow pulse ──────────────────────────────────────── */
.btn-grad { position: relative; overflow: hidden; }
.btn-grad::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  animation: btnSheen 3.2s ease-in-out infinite;
}
@keyframes btnSheen {
  0%, 60% { left: -80%; }
  100%    { left: 160%; }
}

/* ── Marquee pause on hover ──────────────────────────────── */
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ── Stat card hover glow ────────────────────────────────── */
.stat-item { transition: transform 0.3s, box-shadow 0.3s; }
.stat-item:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(46,91,255,0.14); }

/* ── Reduced motion kills all fx ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #volt-loader { display: none !important; }
  .v-cursor, .v-cursor-ring { display: none !important; }
  .fx-anim .hw > span,
  .fx-anim .hero-eyebrow, .fx-anim .hero-sub, .fx-anim .hero-ctas,
  .fx-anim .hero-badges, .fx-anim .hero-visual { opacity: 1 !important; transform: none !important; }
  .js-anim .rv-clip { clip-path: none !important; }
  .btn-grad::after { animation: none !important; }
  .hero-particles { display: none !important; }
}

/* ═══ HERO FACTORY COLLAGE ═══════════════════════════════── */
.hero-collage { position: relative; margin: 24px 30px 56px 34px; }

.hero-collage .hc-main {
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  animation: none; transform: none; /* override product-card float */
  position: relative;
}
.hc-main img { width: 100%; display: block; }

/* live-style workshop label */
.hc-live {
  position: absolute; left: 14px; top: 14px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(7,10,26,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-weight: 700; font-size: 0.8rem;
  padding: 8px 15px; border-radius: 999px;
}
.hc-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF4757; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,71,87,0.6);
  animation: liveDot 1.6s ease-out infinite;
}
@keyframes liveDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,71,87,0.6); }
  100% { box-shadow: 0 0 0 9px rgba(255,71,87,0); }
}

/* secondary factory shot — overlaps bottom-left */
.hc-sub {
  position: absolute; left: -9%; bottom: -13%; width: 46%;
  border-radius: 16px; overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  animation: chipFloat 6s ease-in-out infinite;
}
.hc-sub img { width: 100%; display: block; }

/* small product shot — overlaps top-right: floor → jersey story */
.hc-prod {
  position: absolute; right: -7%; top: -9%; width: 32%;
  border-radius: 16px; overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  background: #fff;
  animation: chipFloat 5s ease-in-out infinite reverse;
}
.hc-prod img { width: 100%; display: block; }

.hc-sub-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(7,10,26,0.88));
  color: #fff; font-family: var(--font-disp); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 22px 12px 9px; text-align: center;
}

/* reposition floating chips for collage */
.hero-collage .hero-chip-1 { top: 55%; left: -14%; }
.hero-collage .hero-chip-2 { bottom: -6%; right: -6%; }

@media (max-width: 900px) {
  .hero-collage { margin: 12px 16px 60px 22px; }
  .hero-collage .hero-chip-1 { left: -4%; }
  .hero-collage .hero-chip-2 { right: -2%; }
}

/* ═══ HERO v3 — full-bleed factory backdrop ═══════════════ */
.hero-factory { min-height: 96vh; }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg,
      rgba(7, 10, 26, 0.97) 0%,
      rgba(7, 10, 26, 0.88) 34%,
      rgba(9, 13, 32, 0.62) 62%,
      rgba(10, 14, 35, 0.38) 100%),
    linear-gradient(to top, rgba(7, 10, 26, 0.9) 0%, transparent 26%),
    linear-gradient(to bottom, rgba(7, 10, 26, 0.55) 0%, transparent 18%);
}
/* single glow kept for color accent over the photo */
.hero-factory .hero-glow-2 { opacity: 0.3; z-index: 1; }

/* single-column content, text carries the layout */
.hero-factory .hero-inner {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.hero-factory .hero-sub { max-width: 600px; }

/* workshop corner tag */
.hero-workshop-tag {
  position: absolute; right: 28px; bottom: 28px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(7, 10, 26, 0.72); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 9px 16px; border-radius: 999px;
}
@media (max-width: 768px) {
  .hero-workshop-tag { right: 16px; bottom: 16px; font-size: 0.7rem; }
  .hero-bg img { object-position: 68% center; }
}

/* hero v3 fixes: flex shrink-to-fit made container center — force full width */
.hero-factory .container { width: 100%; }
/* lift workshop tag clear of the angled marquee */
.hero-workshop-tag { bottom: 84px; }
@media (max-width: 768px) { .hero-workshop-tag { bottom: 70px; } }
.hero-bg img { object-position: center 30%; }

/* designed abstract bg: lighter overlay + restore grid texture over it */
.hero-bg-overlay {
  background:
    linear-gradient(96deg,
      rgba(7, 10, 26, 0.68) 0%,
      rgba(7, 10, 26, 0.42) 40%,
      rgba(9, 13, 32, 0.12) 75%,
      rgba(10, 14, 35, 0) 100%),
    linear-gradient(to top, rgba(7, 10, 26, 0.85) 0%, transparent 24%);
}
.hero-bg img { object-position: center center; }

/* ── Hero giant number ───────────────────────────────────── */
.hero-big-num {
  position: absolute; right: 4%; top: 50%;
  transform: translateY(-52%);
  z-index: 1; pointer-events: none; user-select: none;
  text-align: center;
}
.hbn-digits {
  display: block;
  font-family: var(--font-disp); font-weight: 900; font-style: italic;
  font-size: clamp(14rem, 26vw, 26rem); line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px rgba(160, 180, 255, 0.28);
  background: linear-gradient(160deg, rgba(34,211,238,0.14), rgba(139,92,246,0.10));
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 0 44px rgba(46, 91, 255, 0.25));
}
.hbn-caption {
  display: block; margin-top: 0.6rem;
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(0.75rem, 1.1vw, 1rem);
  letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
@media (max-width: 1080px) { .hero-big-num { display: none; } }

/* ═══════════════════════════════════════════════════════════
   VOLT v2.2 — full-site glow-up
   Animated aurora hero · slanted sections · marquee gallery
═══════════════════════════════════════════════════════════ */

/* ── Animated aurora hero background ─────────────────────── */
.hero-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.ab {
  position: absolute; border-radius: 50%;
  filter: blur(90px); will-change: transform;
}
.ab-1 {
  width: 52vw; height: 52vw; min-width: 620px; min-height: 620px;
  background: radial-gradient(circle, rgba(46,91,255,0.55), transparent 65%);
  top: -22%; right: -14%;
  animation: abDrift1 13s ease-in-out infinite alternate;
}
.ab-2 {
  width: 46vw; height: 46vw; min-width: 560px; min-height: 560px;
  background: radial-gradient(circle, rgba(139,92,246,0.5), transparent 65%);
  bottom: -26%; left: -12%;
  animation: abDrift2 16s ease-in-out infinite alternate;
}
.ab-3 {
  width: 30vw; height: 30vw; min-width: 380px; min-height: 380px;
  background: radial-gradient(circle, rgba(34,211,238,0.34), transparent 65%);
  top: 30%; left: 34%;
  animation: abDrift3 11s ease-in-out infinite alternate;
}
.ab-4 {
  width: 24vw; height: 24vw; min-width: 300px; min-height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.2), transparent 65%);
  top: 6%; left: 6%;
  animation: abDrift2 19s ease-in-out infinite alternate-reverse;
}
@keyframes abDrift1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-9vw, 7vh) scale(1.18); }
}
@keyframes abDrift2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(8vw, -8vh) scale(1.22); }
}
@keyframes abDrift3 {
  from { transform: translate(0,0) scale(0.92); }
  to   { transform: translate(-6vw, -6vh) scale(1.15); }
}
/* slow-turning conic swirl adds motion across the whole hero */
.ab-conic {
  position: absolute; left: 50%; top: 50%;
  width: 160vmax; height: 160vmax;
  margin: -80vmax 0 0 -80vmax;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,  rgba(46,91,255,0.10)  60deg,  transparent 120deg,
    rgba(139,92,246,0.10) 180deg, transparent 240deg,
    rgba(34,211,238,0.08)  300deg, transparent 360deg);
  filter: blur(50px);
  animation: conicSpin 34s linear infinite;
  will-change: transform;
}
@keyframes conicSpin { to { transform: rotate(360deg); } }

/* hue breathing across the whole aurora */
.hero-aurora { animation: auroraHue 22s ease-in-out infinite alternate; }
@keyframes auroraHue {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(38deg); }
}

/* ── Slanted section edges ───────────────────────────────── */
.slant-both {
  clip-path: polygon(0 3.2vw, 100% 0, 100% calc(100% - 3.2vw), 0 100%);
  padding-top: calc(96px + 3.2vw);
  padding-bottom: calc(96px + 3.2vw);
  margin-top: -1.8vw;
  margin-bottom: -1.8vw;
  position: relative; z-index: 2;
}
.slant-top {
  clip-path: polygon(0 3.2vw, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(96px + 3.2vw);
  margin-top: -1.8vw;
  position: relative; z-index: 2;
}

/* ── Stats band: dark + glowing ──────────────────────────── */
.stats-band {
  background: linear-gradient(180deg, #0C1129, #10173B);
  position: relative;
}
.stats-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-hot); opacity: 0.85;
  box-shadow: 0 0 24px rgba(46,91,255,0.7);
}
.stat-item {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
}
.stat-item:hover {
  box-shadow: 0 14px 44px rgba(46,91,255,0.3);
  border-color: rgba(109,139,255,0.45);
}
.stat-num { filter: drop-shadow(0 0 18px rgba(80,110,255,0.6)); }
.stats-band .stat-label { color: rgba(255,255,255,0.6); }

/* ── Product card glow + shine sweep ─────────────────────── */
.product-card { position: relative; }
.product-card:hover {
  box-shadow: 0 22px 64px rgba(79, 70, 229, 0.28), 0 4px 18px rgba(34, 211, 238, 0.12);
  border-color: rgba(109, 139, 255, 0.5);
}
.product-card-img { position: relative; }
.product-card-img::after {
  content: ''; position: absolute; top: 0; left: -85%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.product-card:hover .product-card-img::after { left: 130%; }

/* ── Case marquee gallery ────────────────────────────────── */
.case-marquee { display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.case-row { overflow: hidden; }
.case-track {
  display: flex; gap: 18px; width: max-content;
  animation: caseScroll 36s linear infinite;
}
.case-track-rev { animation: caseScrollRev 40s linear infinite; }
.case-row:hover .case-track { animation-play-state: paused; }
@keyframes caseScroll    { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes caseScrollRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.case-pic {
  width: 300px; height: 300px; flex-shrink: 0;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line-light);
  position: relative;
}
.case-pic::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,14,35,0.55));
  opacity: 0; transition: opacity 0.3s;
}
.case-pic:hover::after { opacity: 1; }
.case-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.case-pic:hover img { transform: scale(1.08); }
@media (max-width: 720px) { .case-pic { width: 210px; height: 210px; } }

/* ── Big 27: slow float + glow pulse ─────────────────────── */
.hero-big-num { animation: bigNumFloat 7s ease-in-out infinite; }
@keyframes bigNumFloat {
  0%, 100% { transform: translateY(-52%); }
  50%      { transform: translateY(calc(-52% - 16px)); }
}
.hbn-digits { animation: bigNumGlow 5s ease-in-out infinite alternate; }
@keyframes bigNumGlow {
  from { filter: drop-shadow(0 0 30px rgba(46, 91, 255, 0.2)); }
  to   { filter: drop-shadow(0 0 70px rgba(139, 92, 246, 0.5)); }
}

/* ── Customization cards: icon glow + hover beam ─────────── */
.custom-card { position: relative; overflow: hidden; }
.custom-card::before {
  content: ''; position: absolute; top: -60%; left: -60%;
  width: 70%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(139,92,246,0.16), transparent);
  transform: skewX(-18deg) translateX(-140%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.custom-card:hover::before { transform: skewX(-18deg) translateX(420%); }
.custom-card-icon { animation: iconBreath 4s ease-in-out infinite alternate; }
@keyframes iconBreath {
  from { box-shadow: 0 8px 24px rgba(46,91,255,0.3); }
  to   { box-shadow: 0 10px 38px rgba(139,92,246,0.55); }
}

/* ── Video cards: glow ring on hover ─────────────────────── */
.video-card { transition: transform 0.3s, box-shadow 0.3s; }
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 54px rgba(79,70,229,0.22);
}

/* ── Reduced motion overrides for new fx ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ab, .ab-conic, .hero-aurora,
  .case-track, .case-track-rev,
  .hero-big-num, .hbn-digits, .custom-card-icon { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   VOLT v3.0 — subpage components
═══════════════════════════════════════════════════════════ */

/* ── Nav dropdown ────────────────────────────────────────── */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 14px); left: -18px;
  min-width: 230px; padding: 10px;
  background: rgba(12, 16, 38, 0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dd-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-dd-menu li a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
}
.nav-dd-menu li a:hover { background: rgba(46,91,255,0.18); color: #fff; }

/* ── Alibaba Trade Assurance band ────────────────────────── */
.ali-band {
  padding: 64px 0;
  background: linear-gradient(120deg, #131a3e 0%, #1a1240 100%);
  position: relative; overflow: hidden;
}
.ali-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #FF6A00, #FFB000, #FF6A00);
  opacity: 0.9;
}
.ali-band-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center;
}
.ali-band-icon {
  width: 80px; height: 80px; border-radius: 22px; flex-shrink: 0;
  background: linear-gradient(135deg, #FF6A00, #FFB000);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2.1rem;
  box-shadow: 0 14px 44px rgba(255, 106, 0, 0.4);
}
.ali-band-text h3 {
  color: #fff; font-size: 1.4rem; font-weight: 900; font-style: italic;
  text-transform: uppercase; margin-bottom: 8px;
}
.ali-band-text h3 span { color: #FFB000; }
.ali-band-text p { color: rgba(255,255,255,0.68); font-size: 0.93rem; margin: 0 0 14px; max-width: 640px; }
.ali-band-points { display: flex; flex-wrap: wrap; gap: 18px; }
.ali-band-points span {
  color: rgba(255,255,255,0.82); font-size: 0.84rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
}
.ali-band-points i { color: #FFB000; }
.ali-band-cta { text-align: center; }
.ali-band-cta small { display: block; margin-top: 10px; color: rgba(255,255,255,0.45); font-size: 0.75rem; }
.btn-ali {
  background: linear-gradient(120deg, #FF6A00, #FF8A00); color: #fff;
  box-shadow: 0 12px 40px rgba(255, 106, 0, 0.4);
}
.btn-ali:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 52px rgba(255, 106, 0, 0.55); }
@media (max-width: 900px) {
  .ali-band-inner { grid-template-columns: 1fr; text-align: center; }
  .ali-band-icon { margin: 0 auto; }
  .ali-band-points { justify-content: center; }
}

/* ── Product hero ────────────────────────────────────────── */
.prod-hero { padding-bottom: 90px; }
.prod-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  position: relative; z-index: 2;
}
.prod-hero-intro { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin-bottom: 26px; }
.prod-hero .hero-ctas { margin-bottom: 20px; }
.prod-hero-img {
  border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.prod-hero-img img { width: 100%; }
@media (max-width: 900px) {
  .prod-hero-grid { grid-template-columns: 1fr; }
  .prod-hero-img { max-width: 440px; }
}

/* ── Product gallery ─────────────────────────────────────── */
.prod-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-gallery-item {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
}
.prod-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.prod-gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 720px) { .prod-gallery { grid-template-columns: repeat(2, 1fr); } }

/* ── Spec table ──────────────────────────────────────────── */
.prod-spec-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: start; }
.spec-table {
  width: 100%; border-collapse: collapse; margin-top: 18px;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
}
.spec-table th, .spec-table td { padding: 14px 18px; text-align: left; font-size: 0.92rem; }
.spec-table th {
  width: 34%; background: var(--paper); color: var(--ink);
  font-family: var(--font-disp); font-weight: 700;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.spec-table td { color: var(--muted); border-bottom: 1px solid var(--line); background: var(--white); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.prod-features { display: flex; flex-direction: column; gap: 16px; }
.prod-feature-card {
  background: var(--paper); border: 1px solid var(--line);
}
.prod-feature-card h3 { color: var(--ink); }
.prod-feature-card p { color: var(--muted); }
@media (max-width: 900px) { .prod-spec-grid { grid-template-columns: 1fr; } }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-group { margin-bottom: 40px; }
.faq-group-title {
  font-size: 1.25rem; font-weight: 900; font-style: italic; text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-block;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  font-family: var(--font-disp); font-weight: 700; font-size: 1rem;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--volt-blue); transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] summary { color: var(--volt-blue); }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 0.93rem; }

/* ── Related products ────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.related-card {
  display: block; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  background: var(--white); transition: transform 0.3s, box-shadow 0.3s;
}
.related-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(79,70,229,0.2); }
.related-card img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.related-card span {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 13px 15px; font-family: var(--font-disp); font-weight: 700;
  font-size: 0.82rem; color: var(--ink);
}
.related-card span i { color: var(--volt-blue); }
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── About page ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.about-grid p { color: var(--muted); }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 64px rgba(20,23,43,0.18); }
.about-photo img { width: 100%; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ── Timeline ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px;
  background: var(--grad-main); border-radius: 2px; opacity: 0.4;
}
.timeline-item { position: relative; padding: 0 0 34px 24px; }
.timeline-item::before {
  content: ''; position: absolute; left: -22px; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad-main);
  box-shadow: 0 0 0 4px rgba(46,91,255,0.15), 0 0 16px rgba(46,91,255,0.5);
}
.timeline-year {
  font-family: var(--font-disp); font-weight: 900; font-style: italic; font-size: 1.5rem;
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: inline-block; line-height: 1;
}
.timeline-body h3 { font-size: 1.08rem; margin: 6px 0 6px; }
.timeline-body p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ── Legal content ───────────────────────────────────────── */
.legal-content h2 { font-size: 1.25rem; margin-top: 2em; font-style: normal; }
.legal-content p { color: var(--muted); }

/* trust-item as link */
a.trust-item { transition: transform 0.3s, box-shadow 0.3s; }
a.trust-item:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(46,91,255,0.18); }
a.trust-item strong { color: var(--ink); }

/* ── Stadium hero ────────────────────────────────────────── */
.hero-stadium .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-stadium .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  animation: stadiumZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes stadiumZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-stadium .hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg,
      rgba(7, 10, 26, 0.88) 0%,
      rgba(7, 10, 26, 0.62) 38%,
      rgba(9, 13, 32, 0.22) 68%,
      rgba(10, 14, 35, 0.05) 100%),
    linear-gradient(to top, rgba(7, 10, 26, 0.92) 0%, transparent 30%),
    linear-gradient(to bottom, rgba(7, 10, 26, 0.6) 0%, transparent 16%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-stadium .hero-bg img { animation: none; }
}

/* ── Factory strength section ────────────────────────────── */
.factory-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center;
}
.factory-text > p { color: var(--muted); }
.factory-caps { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.factory-caps li {
  display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto;
  column-gap: 14px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.factory-caps li:hover { transform: translateX(6px); box-shadow: 0 12px 36px rgba(46,91,255,0.14); }
.factory-caps i {
  grid-row: span 2;
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: 0 6px 18px rgba(46,91,255,0.3);
}
.factory-caps strong { font-family: var(--font-disp); font-size: 0.98rem; color: var(--ink); }
.factory-caps span { color: var(--muted); font-size: 0.83rem; grid-column: 2; }

.video-featured {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 26px 70px rgba(20, 23, 43, 0.25);
  border: 1px solid var(--line);
  background: var(--navy-2);
}
.video-featured .video-card-media video { width: 100%; height: 100%; object-fit: cover; }
.video-featured-label {
  position: absolute; left: 14px; top: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(7,10,26,0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-weight: 700; font-size: 0.8rem;
  padding: 8px 15px; border-radius: 999px;
  pointer-events: none;
}
.factory-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.factory-thumb {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.factory-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; }
.factory-thumb:hover img { transform: scale(1.06); }
.factory-thumb span {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(7,10,26,0.78); color: #fff;
  font-family: var(--font-disp); font-weight: 700; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 999px;
}
@media (max-width: 940px) { .factory-grid { grid-template-columns: 1fr; } }

/* ── Certification cards ─────────────────────────────────── */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cert-card::after {
  content: ''; position: absolute; inset: 10px; border-radius: 12px;
  border: 1.5px dashed rgba(46, 91, 255, 0.18);
  pointer-events: none;
}
.cert-card:hover { transform: translateY(-7px); box-shadow: 0 20px 56px rgba(79,70,229,0.22); }
.cert-ribbon {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-hot);
}
.cert-seal {
  width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--grad-main); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(46,91,255,0.35), 0 0 0 6px rgba(46,91,255,0.1);
  position: relative; z-index: 1;
}
.cert-title { font-size: 1.08rem; font-weight: 900; font-style: italic; text-transform: uppercase; margin-bottom: 2px; }
.cert-issuer {
  color: var(--volt-blue); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.cert-desc { color: var(--muted); font-size: 0.85rem; margin: 0 0 16px; position: relative; z-index: 1; }
.cert-stamp {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid rgba(22, 163, 74, 0.4); color: #16A34A;
  font-family: var(--font-disp); font-weight: 800; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(22, 163, 74, 0.06);
  transform: rotate(-2deg);
}
.cert-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 0.9rem; }
.cert-note a { font-weight: 700; }
@media (max-width: 980px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cert-grid { grid-template-columns: 1fr; } }

/* ═══ LIVING STADIUM — animated light layers over base ═════ */
/* light sources (floodlight glow, breathing) */
.fl-src {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(215, 235, 255, 0.95) 0%, rgba(130, 180, 255, 0.55) 22%,
    rgba(70, 120, 240, 0.22) 45%, transparent 68%);
  filter: blur(6px);
  transform: translate(-50%, -50%);
  animation: flPulse 4.2s ease-in-out infinite alternate;
  z-index: 1; pointer-events: none;
}
.fl-src-l { left: 11%; top: 9%; }
.fl-src-r { right: 11%; top: 9%; transform: translate(50%, -50%); animation-duration: 5.1s; }
@keyframes flPulse {
  from { opacity: 0.75; scale: 1; }
  to   { opacity: 1;    scale: 1.12; }
}

/* sweeping volumetric beams */
.fl-beam {
  position: absolute; top: 6%;
  width: 30vw; min-width: 380px; height: 120vh;
  background: linear-gradient(to bottom,
    rgba(160, 200, 255, 0.34) 0%, rgba(120, 165, 255, 0.16) 42%, transparent 78%);
  clip-path: polygon(50% 0%, 86% 100%, 14% 100%);
  filter: blur(12px);
  transform-origin: 50% 0%;
  z-index: 1; pointer-events: none;
  mix-blend-mode: screen;
}
.fl-beam-l { left: calc(11% - 15vw); animation: beamRockL 9s ease-in-out infinite alternate; }
.fl-beam-r { right: calc(11% - 15vw); animation: beamRockR 11s ease-in-out infinite alternate; }
@keyframes beamRockL {
  from { transform: rotate(-24deg); }
  to   { transform: rotate(-7deg); }
}
@keyframes beamRockR {
  from { transform: rotate(24deg); }
  to   { transform: rotate(7deg); }
}

/* light band sweeping across the pitch */
.pitch-sweep {
  position: absolute; left: -30%; bottom: 0; height: 46%;
  width: 34%;
  background: linear-gradient(100deg, transparent,
    rgba(120, 190, 255, 0.14) 35%, rgba(160, 210, 255, 0.2) 50%,
    rgba(120, 190, 255, 0.14) 65%, transparent);
  filter: blur(10px);
  transform: skewX(-14deg);
  animation: pitchSweep 13s ease-in-out infinite;
  z-index: 1; pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes pitchSweep {
  0%       { left: -35%; opacity: 0; }
  12%      { opacity: 1; }
  88%      { opacity: 1; }
  100%     { left: 101%; opacity: 0; }
}

/* factory fact chips (replaces duplicate photo thumbs) */
.factory-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.factory-fact {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 16px 14px; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.factory-fact:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(46,91,255,0.15); }
.factory-fact i {
  font-size: 1.15rem; margin-bottom: 8px; display: block;
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.factory-fact strong { display: block; font-family: var(--font-disp); font-weight: 800; font-size: 0.98rem; color: var(--ink); }
.factory-fact span { color: var(--muted); font-size: 0.78rem; }

@media (prefers-reduced-motion: reduce) {
  .fl-src, .fl-beam, .pitch-sweep { animation: none !important; }
}
@media (max-width: 768px) {
  .fl-beam { min-width: 260px; }
}

/* About page: 6-video tour grid */
.video-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .video-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid-3 { grid-template-columns: 1fr; } }

/* ═══ WORLD MAP HERO — global export network ══════════════ */
.hero-map .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-map .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 36%;
  animation: mapDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes mapDrift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.06) translateY(-1.5%); }
}
.hero-map .hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg,
      rgba(7, 9, 20, 0.82) 0%,
      rgba(7, 9, 20, 0.45) 40%,
      rgba(7, 9, 20, 0.08) 72%,
      rgba(7, 9, 20, 0) 100%),
    linear-gradient(to top, rgba(7, 9, 20, 0.9) 0%, transparent 26%),
    linear-gradient(to bottom, rgba(7, 9, 20, 0.5) 0%, transparent 14%);
}
/* routes canvas sits above image, below overlay text */
.hero-routes {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-map .hero-bg img { animation: none; }
  .hero-routes { display: none; }
}

/* ═══ v3.7 — map visibility + typography + neon pass ══════ */

/* map must be SEEN: much lighter overlay, brightness boost */
.hero-map .hero-bg img {
  filter: saturate(1.15) brightness(1.12);
}
.hero-map .hero-bg-overlay {
  background:
    linear-gradient(96deg,
      rgba(5, 6, 14, 0.72) 0%,
      rgba(5, 6, 14, 0.34) 36%,
      rgba(5, 6, 14, 0.02) 62%,
      rgba(5, 6, 14, 0) 100%),
    linear-gradient(to top, rgba(5, 6, 14, 0.85) 0%, transparent 20%),
    linear-gradient(to bottom, rgba(5, 6, 14, 0.4) 0%, transparent 12%);
}

/* typography: smaller headline block, bigger sub → map breathes */
.hero-map .hero-title {
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
.hero-map .hero-eyebrow { font-size: 0.76rem; padding: 7px 15px; margin-bottom: 20px; }
.hero-map .hero-sub { font-size: 1.16rem; max-width: 520px; color: rgba(235, 240, 255, 0.8); }
.hero-map .hero-inner { max-width: 690px; }

/* giant 27: smaller, corner-anchored, low opacity — stops hiding the map */
.hero-map .hero-big-num { right: 2.5%; top: 66%; }
.hero-map .hbn-digits {
  font-size: clamp(7rem, 13vw, 12.5rem);
  -webkit-text-stroke: 1.5px rgba(160, 190, 255, 0.2);
  background: linear-gradient(160deg, rgba(34,211,238,0.10), rgba(255,196,107,0.08));
  -webkit-background-clip: text; background-clip: text;
}
.hero-map .hbn-caption { font-size: clamp(0.65rem, 0.9vw, 0.85rem); color: rgba(255,255,255,0.34); }

/* gold accent joins the brand palette in hero */
.hero-map .hero-eyebrow { color: #FFC46B; border-color: rgba(255,196,107,0.3); background: rgba(255,196,107,0.07); }
.hero-map .hero-eyebrow i { color: #FFC46B; }
.hero-map .hero-badges i { color: #FFC46B; }

/* ── site-wide neon pass ─────────────────────────────────── */
/* CTA buttons: breathing neon glow */
.btn-grad { animation: btnNeon 3.2s ease-in-out infinite alternate; }
@keyframes btnNeon {
  from { box-shadow: 0 12px 44px rgba(46, 91, 255, 0.32); }
  to   { box-shadow: 0 12px 54px rgba(139, 92, 246, 0.55), 0 0 24px rgba(34, 211, 238, 0.25); }
}

/* stat numbers: flowing gradient */
.stat-num {
  background-size: 200% auto !important;
  animation: gradShift 5s linear infinite;
}

/* marquee: neon edge glow */
.marquee { box-shadow: 0 -6px 30px rgba(46,91,255,0.35), 0 6px 30px rgba(139,92,246,0.35); }

/* section tags: pulsing lead line */
.sec-tag::before { animation: tagPulse 2.6s ease-in-out infinite alternate; }
@keyframes tagPulse {
  from { width: 26px; opacity: 0.7; }
  to   { width: 40px; opacity: 1; }
}

/* nav CTA pickup of gold accent on hover */
.nav-cta .btn:hover { box-shadow: 0 10px 40px rgba(255, 196, 107, 0.35); }

@media (prefers-reduced-motion: reduce) {
  .btn-grad, .stat-num, .sec-tag::before { animation: none !important; }
}
