 
/* Arcade Motion - Design Draft */

/* -------- Design Tokens -------- */
:root {
  --bg-0: #07090F;
  --bg-1: #0B0F1A;
  --bg-2: #111827;
  --bg-3: #1A2032;
  --bg-4: #232B3F;
  --line: #2A3247;
  --line-soft: #1E2536;
  --text-0: #FFFFFF;
  --text-1: #E6EAF2;
  --text-2: #A6B0C3;
  --text-3: #6E7891;
  --brand: #FF6B1A;
  --brand-hot: #FF8A3D;
  --brand-deep: #E0540B;
  --accent: #00E5FF;
  --accent-2: #7C5CFF;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --grad-fire: linear-gradient(135deg, #FF6B1A 0%, #FF2D55 100%);
  --grad-cool: linear-gradient(135deg, #00E5FF 0%, #7C5CFF 100%);
  --grad-night: linear-gradient(180deg, #07090F 0%, #111827 100%);
  --grad-glow: radial-gradient(circle at 30% 30%, rgba(255,107,26,0.25), transparent 60%);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 40px rgba(255,107,26,0.25);
  --container: 1280px;
  --header-h: 76px;
  --t-fast: 160ms ease;
  --t-base: 240ms cubic-bezier(.2,.8,.2,1);
  --t-slow: 480ms cubic-bezier(.2,.8,.2,1);
  --f-en: Inter,Manrope,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --f-zh: "Noto Sans SC","PingFang SC","Microsoft Yahei",sans-serif;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-en);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; color: var(--text-0); line-height: 1.2; }
p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }
html[lang="zh-CN"] body, html[lang="zh"] body { font-family: var(--f-zh); }

/* -------- Layout -------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); padding: 6px 14px; border: 1px solid rgba(255,107,26,0.3);
  border-radius: 999px; background: rgba(255,107,26,0.08);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 10px var(--brand); }
.section-title { font-size: clamp(28px, 4vw, 48px); margin: 16px 0 12px; }
.section-sub { color: var(--text-2); font-size: 17px; max-width: 720px; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin: 0 auto; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base), color var(--t-base);
  white-space: nowrap;
}
.btn-primary { background: var(--grad-fire); color: #fff; box-shadow: 0 8px 24px rgba(255,107,26,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,26,0.55); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text-0); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--brand); color: var(--text-0); }
.btn-outline { border: 1.5px solid var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(4px); }

/* -------- Header / Nav -------- */
.site-header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 110;
  height: var(--header-h);
  background: rgba(7,9,15,0.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base);
}
.site-header.scrolled { background: rgba(7,9,15,0.92); border-color: var(--line-soft); }
.nav { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--text-0); }
.brand-logo {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--grad-fire);
  display: grid; place-items: center;
  box-shadow: 0 0 24px rgba(255,107,26,0.4);
  position: relative; overflow: hidden;
}
.brand-logo::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 50%); }
.brand-logo svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.brand small { display: block; font-size: 10px; font-weight: 500; color: var(--text-3); letter-spacing: 0.2em; margin-top: 2px; }

.nav-menu { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; color: var(--text-1);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--text-0); background: rgba(255,255,255,0.06); }
.nav-menu .has-arrow::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 4px; }

.nav-tools { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px; border: 1px solid var(--line);
  font-size: 13px; color: var(--text-1); background: rgba(255,255,255,0.02);
  cursor: pointer;
}
.lang-switch:hover { border-color: var(--brand); }
.lang-switch .globe { color: var(--brand); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px;
  padding: 6px; box-shadow: var(--shadow-md); display: none; z-index: 10;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; }
.lang-menu a:hover { background: rgba(255,255,255,0.06); color: var(--text-0); }
.lang-menu .flag {
  width: 20px; height: 14px; border-radius:2px; display: inline-block;
  background: linear-gradient(180deg, #888 0%, #555 100%);
  flex-shrink: 0;
}
/* Polylang renders a <select> dropdown for the language switcher.
   Strip the browser-default chrome so it matches the dark site design. */
.lang-switch .pll-switcher-select,
.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: var(--text-0);
  border: none;
  outline: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0 26px 0 0;
  margin: 0;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.lang-switch .pll-switcher-select option,
.lang-switch select option {
  background: #111827;
  color: #fff;
}
.nav-menu--fallback { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 4px; flex: 1; justify-content: center; }
.nav-menu--fallback > li > a { display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 8px; color: var(--text-1); font-size: 14px; font-weight: 600; letter-spacing: 0.01em; transition: color .15s ease, background .15s ease; }
.nav-menu--fallback > li > a:hover { color: var(--text-0); background: rgba(255,107,26,0.08); }
.nav-menu--fallback > li.current-menu-item > a,
.nav-menu--fallback > li.current_page_item > a { color: var(--brand); }
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--line); }
.menu-toggle:hover { border-color: var(--brand); }

/* -------- Hero -------- */
.hero {
  position: relative; min-height: 100vh; padding-top: calc(var(--topbar-h) + var(--header-h));
  background: var(--grad-night); overflow: hidden; display: flex; align-items: center;
}
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-glow); pointer-events: none; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1; padding: 80px 0;
}
.hero h1 { font-size: clamp(36px, 6vw, 76px); letter-spacing: -0.02em; line-height: 1.05; }
.hero h1 .grad {
  background: var(--grad-fire); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { color: var(--text-2); font-size: 18px; margin-top: 24px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px; display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid var(--line-soft); flex-wrap: wrap;
}
.hero-meta .item .num { font-size: 32px; font-weight: 800; color: var(--text-0); }
.hero-meta .item .num .unit { color: var(--brand); font-size: 18px; margin-left: 4px; }
.hero-meta .item .label { font-size: 13px; color: var(--text-3); margin-top: 4px; letter-spacing: 0.05em; }

.hero-visual {
  position: relative; height: 540px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #1A2032, #0B0F1A);
  border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow-md), 0 0 80px rgba(255,107,26,0.15);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,107,26,0.4), transparent 50%);
}
.hero-visual .machine {
  position: absolute; inset: 12% 8%; border-radius: var(--r-lg);
  background: linear-gradient(160deg, #2A3247 0%, #111827 100%);
  border: 1px solid rgba(255,107,26,0.4);
  display: grid; place-items: center; overflow: hidden;
}
.hero-visual .machine::before {
  content: ""; position: absolute; inset: 16px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,26,0.15), rgba(0,229,255,0.1));
  border: 1px dashed rgba(255,107,26,0.3);
}
.hero-visual .machine .screen {
  width: 70%; aspect-ratio: 16/9; border-radius: 8px;
  background: radial-gradient(ellipse at center, #FF6B1A 0%, #7C2A00 60%, #000 100%);
  box-shadow: 0 0 60px rgba(255,107,26,0.6); position: relative;
}
.hero-visual .machine .screen::after {
  content: "PLAY"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 28px; font-weight: 800; letter-spacing: 0.2em; color: rgba(255,255,255,0.85);
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}
.hero-visual .float-tag {
  position: absolute; padding: 10px 14px; border-radius: 10px;
  background: rgba(11,15,26,0.85); border: 1px solid var(--line);
  backdrop-filter: blur(12px); font-size: 12px; color: var(--text-1);
  box-shadow: var(--shadow-md);
}
.hero-visual .float-tag .k { font-weight: 700; color: var(--text-0); }
.hero-visual .float-tag .v { color: var(--brand); margin-left: 4px; }
.hero-visual .t1 { top: 32px; left: -16px; }
.hero-visual .t2 { bottom: 60px; right: -16px; }
.hero-visual .t3 { top: 50%; left: -8px; transform: translateY(-50%); }

/* -------- Marquee -------- */
.marquee {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 24px 0; overflow: hidden; background: rgba(11,15,26,0.6);
}
.marquee .track {
  display: flex; gap: 64px; white-space: nowrap; animation: scroll 30s linear infinite;
  align-items: center;
}
.marquee .item {
  display: inline-flex; align-items: center; gap: 10px; color: var(--text-3); font-weight: 600;
  letter-spacing: 0.08em; font-size: 14px; text-transform: uppercase;
}
.marquee .item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------- Section: Product Categories -------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative; padding: 28px; border-radius: var(--r-lg);
  background: var(--bg-2); border: 1px solid var(--line-soft);
  overflow: hidden; transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
  min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
}
.cat-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,107,26,0.18), transparent 60%);
  opacity: 0; transition: opacity var(--t-base);
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--brand); background: var(--bg-3); }
.cat-card:hover::before { opacity: 1; }
.cat-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,107,26,0.1); border: 1px solid rgba(255,107,26,0.25);
  display: grid; place-items: center; color: var(--brand);
}
.cat-card h3 { font-size: 20px; margin-top: 16px; }
.cat-card p { color: var(--text-2); font-size: 14px; margin-top: 6px; }
.cat-card .arrow-link {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand); font-size: 13px; font-weight: 600;
}
.cat-card .count { font-size: 12px; color: var(--text-3); letter-spacing: 0.1em; margin-top: auto; }

/* -------- Featured Products -------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-card {
  background: var(--bg-2); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden; transition: transform var(--t-base), border-color var(--t-base);
}
.prod-card:hover { transform: translateY(-6px); border-color: rgba(255,107,26,0.5); }
.prod-card .media {
  aspect-ratio: 16/10; background: linear-gradient(135deg, #1A2032, #0B0F1A);
  position: relative; overflow: hidden;
}
.prod-card .media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 70%, rgba(255,107,26,0.35), transparent 60%);
}
.prod-card .badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.1em;
}
.prod-card .badge.new { background: var(--accent); color: #001018; }
.prod-card .badge.hot { background: var(--grad-fire); }
.prod-card .body { padding: 20px; }
.prod-card h4 { font-size: 18px; margin-bottom: 8px; }
.prod-card .desc { color: var(--text-2); font-size: 13.5px; min-height: 42px; }
.prod-card .meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.prod-card .meta .price { font-weight: 700; color: var(--brand); font-size: 15px; }
.prod-card .meta .moq { color: var(--text-3); font-size: 12px; }

/* -------- Stats -------- */
.stats { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stats-grid .stat { text-align: center; padding: 16px; }
.stats-grid .stat .num {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em;
  background: var(--grad-fire); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stats-grid .stat .num .unit { font-size: 0.5em; color: var(--brand); margin-left: 4px; -webkit-text-fill-color: var(--brand); }
.stats-grid .stat .label { margin-top: 12px; color: var(--text-2); font-size: 14px; }

/* -------- Scene / Solutions -------- */
.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scene-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #1A2032 0%, #0B0F1A 100%);
}
.scene-card .visual { position: absolute; inset: 0; opacity: 0.7; }
.scene-card .visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,107,26,0.3), transparent 60%);
}
.scene-card .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px; background: linear-gradient(180deg, transparent, rgba(7,9,15,0.95));
}
.scene-card h4 { font-size: 20px; }
.scene-card p { color: var(--text-2); font-size: 13.5px; margin-top: 6px; }
.scene-card .tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,107,26,0.15); border: 1px solid rgba(255,107,26,0.3);
  font-size: 11px; color: var(--brand); margin-bottom: 10px; letter-spacing: 0.1em;
}

/* -------- Process -------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process::before {
  content: ""; position: absolute; top: 32px; left: 6%; right: 6%;
  height: 2px; background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-2));
  opacity: 0.3;
}
.process .step { position: relative; text-align: center; padding: 0 8px; }
.process .step .dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid var(--brand);
  display: grid; place-items: center; margin: 0 auto 16px;
  color: var(--brand); font-weight: 800; font-size: 22px;
  position: relative; z-index: 1;
  box-shadow: 0 0 24px rgba(255,107,26,0.25);
}
.process .step h5 { font-size: 16px; margin-bottom: 6px; }
.process .step p { color: var(--text-2); font-size: 13px; }

/* -------- Projects / Case -------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proj-card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--bg-2);
  border: 1px solid var(--line-soft); transition: transform var(--t-base);
}
.proj-card:hover { transform: translateY(-4px); }
.proj-card .media { aspect-ratio: 16/9; background: linear-gradient(135deg, #1A2032, #0B0F1A); position: relative; }
.proj-card .media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0,229,255,0.25), transparent 60%);
}
.proj-card .meta-line {
  position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between;
}
.proj-card .meta-line .pill {
  background: rgba(7,9,15,0.75); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; color: var(--text-1);
  border: 1px solid var(--line);
}
.proj-card .body { padding: 20px; }
.proj-card .loc { color: var(--accent); font-size: 12px; letter-spacing: 0.1em; margin-bottom: 6px; }
.proj-card h4 { font-size: 18px; }
.proj-card p { color: var(--text-2); font-size: 13.5px; margin-top: 6px; }
.proj-card .stats-row {
  display: flex; gap: 18px; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--line-soft); font-size: 12.5px; color: var(--text-2);
}
.proj-card .stats-row b { color: var(--text-0); font-weight: 700; }

/* -------- Certifications -------- */
.cert-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cert-item {
  aspect-ratio: 1; background: var(--bg-2); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); display: grid; place-items: center;
  color: var(--text-2); font-weight: 700; font-size: 13px; letter-spacing: 0.05em;
  transition: border-color var(--t-base), color var(--t-base);
}
.cert-item:hover { border-color: var(--brand); color: var(--brand); }

/* -------- Testimonials -------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  padding: 28px; border-radius: var(--r-lg);
  background: var(--bg-2); border: 1px solid var(--line-soft);
  position: relative;
}
.testi-card .quote-mark {
  position: absolute; top: 20px; right: 24px; font-size: 48px; color: var(--brand);
  opacity: 0.4; line-height: 1; font-family: Georgia, serif;
}
.testi-card p { color: var(--text-1); font-size: 15px; line-height: 1.7; }
.testi-card .who {
  display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testi-card .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-fire);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 16px;
}
.testi-card .who .name { font-weight: 700; color: var(--text-0); font-size: 14px; }
.testi-card .who .role { color: var(--text-3); font-size: 12px; margin-top: 2px; }

/* -------- Global / Map -------- */
.global-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.global-map {
  aspect-ratio: 4/3; border-radius: var(--r-lg);
  background: radial-gradient(circle at 30% 40%, rgba(0,229,255,0.2), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(255,107,26,0.2), transparent 50%),
              var(--bg-2);
  border: 1px solid var(--line-soft); position: relative; overflow: hidden;
}
.global-map .pin {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 12px var(--brand);
}
.global-map .pin::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid var(--brand); opacity: 0.4; animation: ping 2s infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2); opacity: 0; } }
.global-list { display: grid; gap: 12px; margin-top: 24px; }
.global-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; background: var(--bg-2); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); transition: border-color var(--t-base);
}
.global-list li:hover { border-color: var(--brand); }
.global-list .flag {
  width: 28px; height: 18px; border-radius: 3px; background: var(--bg-4);
  display: inline-block; margin-right: 10px; vertical-align: middle;
}
.global-list .country { display: flex; align-items: center; }
.global-list .num { color: var(--text-3); font-size: 13px; }

/* -------- FAQ -------- */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line-soft); border-radius: var(--r-md);
  background: var(--bg-2); margin-bottom: 12px; overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.open { border-color: rgba(255,107,26,0.4); }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--text-0); font-size: 16px;
}
.faq-q .ico {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,107,26,0.1);
  color: var(--brand); display: grid; place-items: center; transition: transform var(--t-base);
  flex-shrink: 0; margin-left: 12px;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height var(--t-slow);
  color: var(--text-2); font-size: 14.5px; line-height: 1.7;
}
.faq-a-inner { padding: 0 24px 20px; }

/* -------- CTA banner -------- */
.cta-banner {
  position: relative; padding: 80px 32px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #1A2032 0%, #0B0F1A 100%);
  border: 1px solid var(--line); overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,107,26,0.3), transparent 60%);
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0,229,255,0.2), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); }
.cta-banner p { color: var(--text-2); margin: 16px auto 28px; max-width: 600px; }
.cta-banner .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* -------- Footer -------- */
.site-footer {
  background: var(--bg-0); border-top: 1px solid var(--line-soft);
  padding: 64px 0 24px; color: var(--text-2);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-col h5 { color: var(--text-0); font-size: 14px; margin-bottom: 16px; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--brand); }
.footer-about p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-newsletter input {
  width: 100%; height: 44px; padding: 0 16px; border-radius: 8px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text-0);
  margin-bottom: 10px; font-size: 14px;
}
.footer-newsletter input:focus { outline: none; border-color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text-3);
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 36px; height: 36px; border-radius: 8px; background: var(--bg-2);
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: border-color var(--t-base), color var(--t-base);
}
.footer-bottom .socials a:hover { border-color: var(--brand); color: var(--brand); }

/* -------- Page head -------- */
.page-head {
  padding: calc(var(--header-h) + 80px) 0 64px;
  background: var(--grad-night); position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-glow); opacity: 0.7;
}
.page-head h1 { font-size: clamp(32px, 5vw, 56px); position: relative; }
.page-head p { color: var(--text-2); margin-top: 16px; max-width: 720px; font-size: 17px; position: relative; }
.breadcrumb {
  position: relative; display: flex; gap: 8px; font-size: 13px; color: var(--text-3);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { color: var(--text-3); }

/* -------- Filters -------- */
.filters {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft); margin-bottom: 32px;
}
.filters .group { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13px; color: var(--text-1); background: rgba(255,255,255,0.02);
  cursor: pointer; transition: all var(--t-fast);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.search-box {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px; background: var(--bg-2);
  border: 1px solid var(--line);
}
.search-box input { background: transparent; border: none; flex: 1; color: var(--text-0); font-size: 14px; outline: none; }
.search-box .ico { color: var(--text-3); }

/* -------- Product Detail -------- */
.pd-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.pd-gallery { display: grid; gap: 12px; }
.pd-main {
  aspect-ratio: 1; border-radius: var(--r-lg);
  background: linear-gradient(135deg, #1A2032, #0B0F1A);
  border: 1px solid var(--line-soft); overflow: hidden; position: relative;
}
.pd-main::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 70%, rgba(255,107,26,0.3), transparent 60%);
}
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-thumbs .thumb {
  aspect-ratio: 1; border-radius: var(--r-md);
  background: var(--bg-2); border: 1px solid var(--line-soft);
  cursor: pointer; transition: border-color var(--t-base);
}
.pd-thumbs .thumb:hover, .pd-thumbs .thumb.active { border-color: var(--brand); }

.pd-info h1 { font-size: clamp(28px, 4vw, 40px); }
.pd-info .sub { color: var(--text-2); margin-top: 12px; }
.pd-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.pd-tags .t {
  padding: 4px 10px; border-radius: 6px; background: rgba(0,229,255,0.1);
  color: var(--accent); font-size: 12px; border: 1px solid rgba(0,229,255,0.2);
}
.pd-price-row {
  display: flex; align-items: baseline; gap: 16px; margin: 24px 0;
  padding: 20px; border-radius: var(--r-md);
  background: var(--bg-2); border: 1px solid var(--line-soft);
}
.pd-price-row .price { font-size: 28px; font-weight: 800; color: var(--brand); }
.pd-price-row .moq { color: var(--text-2); font-size: 13px; }
.pd-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.pd-meta {
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line-soft);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.pd-meta .row { display: flex; gap: 12px; font-size: 13.5px; }
.pd-meta .row .k { color: var(--text-3); min-width: 100px; }
.pd-meta .row .v { color: var(--text-0); }

/* -------- Tabs -------- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line-soft); margin-bottom: 32px; flex-wrap: wrap; }
.tabs button {
  padding: 14px 20px; font-size: 14.5px; color: var(--text-2);
  border-bottom: 2px solid transparent; transition: color var(--t-fast), border-color var(--t-fast);
}
.tabs button:hover { color: var(--text-0); }
.tabs button.active { color: var(--brand); border-color: var(--brand); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--text-2); margin-bottom: 14px; line-height: 1.8; }
.tab-panel ul { padding-left: 18px; }
.tab-panel ul li { color: var(--text-2); margin-bottom: 8px; list-style: disc; }

/* -------- Specs table -------- */
.specs-table {
  width: 100%; border-collapse: collapse; background: var(--bg-2);
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line-soft);
}
.specs-table tr { border-bottom: 1px solid var(--line-soft); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 14px 20px; font-size: 14px; }
.specs-table td:first-child { color: var(--text-3); width: 200px; background: var(--bg-1); }
.specs-table td:last-child { color: var(--text-1); }

/* -------- Contact page -------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  padding: 24px; border-radius: var(--r-lg); background: var(--bg-2);
  border: 1px solid var(--line-soft); display: flex; gap: 16px; align-items: flex-start;
  transition: border-color var(--t-base);
}
.contact-card:hover { border-color: var(--brand); }
.contact-card .ico {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,107,26,0.1); color: var(--brand);
  display: grid; place-items: center;
}
.contact-card h5 { font-size: 15px; margin-bottom: 4px; }
.contact-card p { color: var(--text-2); font-size: 14px; }

.contact-form {
  background: var(--bg-2); padding: 32px; border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--text-2); }
.field input, .field select, .field textarea {
  padding: 12px 14px; border-radius: 8px;
  background: var(--bg-1); border: 1px solid var(--line);
  color: var(--text-0); font-size: 14px; outline: none;
  transition: border-color var(--t-base);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); }
.field textarea { resize: vertical; min-height: 100px; }

/* -------- About page -------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.about-stats .item {
  padding: 20px; border-radius: var(--r-md);
  background: var(--bg-2); border: 1px solid var(--line-soft);
}
.about-stats .num { font-size: 28px; font-weight: 800; color: var(--brand); }
.about-stats .label { font-size: 13px; color: var(--text-2); margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--bg-2); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden;
}
.team-card .avatar-box {
  aspect-ratio: 1; background: linear-gradient(135deg, #1A2032, #0B0F1A); position: relative;
}
.team-card .avatar-box::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,107,26,0.3), transparent 60%);
}
.team-card .body { padding: 16px; }
.team-card .name { font-weight: 700; }
.team-card .role { color: var(--text-3); font-size: 13px; margin-top: 4px; }

/* -------- Value pillars -------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  padding: 28px; border-radius: var(--r-lg); background: var(--bg-2);
  border: 1px solid var(--line-soft); position: relative; overflow: hidden;
}
.value-card .ico {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(255,107,26,0.1); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 16px;
}
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p { color: var(--text-2); font-size: 14px; }

/* -------- Responsive -------- */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid, .global-section, .about-hero, .pd-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .cat-grid, .prod-grid, .scene-grid, .proj-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process::before { display: none; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .cat-grid, .prod-grid, .scene-grid, .proj-grid, .testi-grid, .form-row, .pd-meta { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 280px; }
  .nav-tools .btn { display: none; }
  .value-grid { grid-template-columns: 1fr; }
}
/* -------- Pagination -------- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.pagination a {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  color: var(--text-1); font-size: 14px; font-weight: 600; transition: all .2s;
}
.pagination a:hover { border-color: var(--brand); color: var(--brand); }
.pagination a.active { background: var(--brand); color: #001018; border-color: var(--brand); }
.pagination .arrow { width: auto; padding: 0 14px; }

/* -------- Page head subtitle / breadcrumb fix -------- */
.page-head h1::after { display: none; }

/* -------- Product detail tabs -------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line-soft); margin-bottom: 24px; flex-wrap: wrap; }
.tabs .tab {
  padding: 12px 20px; background: transparent; border: none; color: var(--text-2);
  font-size: 14px; font-weight: 600; cursor: pointer; position: relative;
  border-bottom: 2px solid transparent; transition: all .2s;
}
.tabs .tab:hover { color: var(--text-0); }
.tabs .tab.active { color: var(--brand); border-bottom-color: var(--brand); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* -------- Specs table -------- */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--line-soft); }
.specs-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.specs-table td:first-child { color: var(--text-3); width: 200px; }
.specs-table td:last-child { color: var(--text-0); }

/* -------- Contact form -------- */
.contact-form { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 6px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-md); color: var(--text-0); font-size: 14px;
  font-family: inherit; outline: none; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); }
.field textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* -------- Project filter (extra) -------- */
.proj-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.proj-filter .chip { cursor: pointer; }

/* -------- FAQ page category tabs -------- */
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

/* -------- CTA banner (page level, smaller) -------- */
.page-cta { padding: 60px 32px; }
/* -------- Page head decorations -------- */
.page-head .ph-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,107,26,0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0,229,255,0.12), transparent 45%);
  pointer-events: none;
}
.page-head .container .breadcrumb { position: relative; z-index: 1; padding-top: 12px; }
.page-head { overflow: hidden; }
/* ============================================================
 * single-project.html & pd-sale-tag / spec-table / timeline
 * ============================================================ */
.pd-sale-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px;
  background: var(--brand); color: #0B0F1A;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  border-radius: var(--r-sm);
  box-shadow: 0 6px 20px rgba(255,107,26,0.45);
}
.pd-rating { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.pd-rating .stars { color: #FFB52E; font-size: 16px; letter-spacing: 2px; }
.pd-rating .num { font-size: 13px; color: var(--text-2); }

.pd-price-row .unit { color: var(--text-2); font-size: 13px; margin-left: 4px; }
.pd-price-row .pd-stock { margin-left: auto; }
.pd-stock { padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 999px; letter-spacing: 0.5px; }
.pd-stock.in { background: rgba(0,229,255,0.15); color: #00E5FF; border: 1px solid rgba(0,229,255,0.35); }
.pd-stock.out { background: rgba(233,69,96,0.15); color: #E94560; border: 1px solid rgba(233,69,96,0.35); }

.pd-info .pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.pd-info .pd-actions .btn-primary,
.pd-info .pd-actions .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: var(--r-md); font-weight: 700; font-size: 14px;
  text-decoration: none; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.pd-info .pd-actions .btn-primary { background: var(--brand); color: #0B0F1A; }
.pd-info .pd-actions .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,26,0.4); }
.pd-info .pd-actions .btn-ghost { background: transparent; color: var(--text-0); border: 1px solid var(--line); }
.pd-info .pd-actions .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.pd-info .pd-meta { list-style: none; padding: 0; margin: 22px 0 0; border-top: 1px solid var(--line-soft); }
.pd-info .pd-meta li {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px dashed var(--line-soft); font-size: 14px;
}
.pd-info .pd-meta li b { color: var(--text-3); min-width: 100px; font-weight: 600; }
.pd-info .pd-meta li span { color: var(--text-0); flex: 1; }

.spec-table { border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden; }
.spec-row {
  display: grid; grid-template-columns: 1.4fr 1.4fr 0.8fr; gap: 12px;
  padding: 14px 18px; border-bottom: 1px solid var(--line-soft); font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(odd) { background: rgba(255,255,255,0.02); }
.spec-row .k { color: var(--text-3); }
.spec-row .v { color: var(--text-0); font-weight: 600; }
.spec-row .u { color: var(--brand); text-align: right; font-weight: 700; }

.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 110px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, var(--brand) 0%, rgba(255,107,26,0.15) 100%);
}
.timeline li { display: grid; grid-template-columns: 100px 1fr; gap: 32px; padding: 14px 0; position: relative; }
.timeline li::before {
  content: ''; position: absolute; left: 106px; top: 22px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(255,107,26,0.18);
}
.timeline .t-date { color: var(--brand); font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }
.timeline .t-body { color: var(--text-2); line-height: 1.7; }

.related { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--line-soft); }

@media (max-width: 768px) {
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .spec-row .u { text-align: left; }
  .timeline::before { left: 8px; }
  .timeline li { grid-template-columns: 1fr; gap: 6px; padding-left: 28px; }
  .timeline li::before { left: 4px; top: 18px; }
}

/* V2 visual upgrade: cinematic hero, image bands, Ken Burns, reveal animations */

.hero--cinematic {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--topbar-h) + var(--header-h));
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #050810;
}
.hero--cinematic .hero-bg {
  position: absolute;
  inset: -2%;
  z-index: -3;
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
  filter: saturate(1.05) contrast(1.05);
}
@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero--cinematic .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7,9,15,0.55) 0%, rgba(7,9,15,0.35) 35%, rgba(7,9,15,0.95) 100%),
    radial-gradient(ellipse at 18% 38%, rgba(255,107,26,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 70%, rgba(0,229,255,0.10) 0%, transparent 50%);
}
.hero--cinematic .hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero--cinematic .hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  max-width: 920px;
}
.hero--cinematic .hero-title {
  font-size: clamp(44px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-top: 24px;
  text-shadow: 0 4px 48px rgba(0,0,0,0.65), 0 1px 0 rgba(255,107,26,0.15);
}
.hero--cinematic .hero-title .grad {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 24px rgba(255,107,26,0.35));
}
.hero--cinematic .hero-lede {
  color: rgba(232,238,247,0.85);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  margin-top: 28px;
  max-width: 620px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.hero--cinematic .hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero--cinematic .btn-ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.hero--cinematic .btn-ghost-light:hover {
  border-color: var(--brand);
  background: rgba(255,107,26,0.12);
}
.hero--cinematic .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,107,26,0.4);
  border-radius: 999px;
  background: rgba(255,107,26,0.12);
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--brand) 50%, transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%      { transform: scaleY(1.4); opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 800ms ease, transform 800ms cubic-bezier(0.16,1,0.3,1); }
.hero-inner .reveal:nth-child(1) { transition-delay: 100ms; }
.hero-inner .reveal:nth-child(2) { transition-delay: 250ms; }
.hero-inner .reveal:nth-child(3) { transition-delay: 400ms; }
.hero-inner .reveal:nth-child(4) { transition-delay: 550ms; }

.hero-meta-light .item .num { color: #fff; text-shadow: 0 0 32px rgba(255,107,26,0.4); }
.hero-meta-light .item .label { color: rgba(232,238,247,0.7); }

.eyebrow-light { color: var(--brand); border-color: rgba(255,107,26,0.4); background: rgba(255,107,26,0.12); }

.showreel {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.showreel-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.showreel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  animation: kenburns 28s ease-in-out infinite alternate;
}
.showreel-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7,9,15,0.92) 0%, rgba(7,9,15,0.6) 50%, rgba(7,9,15,0.92) 100%);
}
.showreel-inner { position: relative; z-index: 1; padding: 96px 0; }
.showreel-copy { max-width: 720px; }
.showreel-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 18px;
  color: #fff;
}
.showreel-sub {
  color: rgba(232,238,247,0.78);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 600px;
}
.showreel .hero-meta { margin-top: 32px; border-color: rgba(255,255,255,0.1); }
.showreel .btn-outline-light {
  margin-top: 36px;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.showreel .btn-outline-light:hover {
  border-color: var(--brand);
  background: rgba(255,107,26,0.1);
}

.factory-band {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0;
}
.factory-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.7);
}
.factory-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(7,9,15,0.85) 0%, rgba(7,9,15,0.45) 60%, rgba(255,107,26,0.15) 100%);
}
.factory-inner { position: relative; z-index: 1; text-align: center; }
.factory-title {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.factory-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 48px auto 40px;
  max-width: 880px;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.factory-meta .num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.factory-meta .num .unit { font-size: 0.55em; color: var(--brand); -webkit-text-fill-color: var(--brand); margin-left: 4px; }
.factory-meta .label { color: rgba(232,238,247,0.7); font-size: 13px; margin-top: 6px; letter-spacing: 0.05em; }

.prod-card--img .media {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.prod-card--img .media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0) 40%, rgba(7,9,15,0.4) 100%);
  z-index: 1;
}
.prod-card--img .badge { z-index: 2; }
.prod-card--img:hover .media { transform: scale(1.04); transition: transform 600ms ease; }
.prod-card--img .media { transition: transform 600ms ease; }

.proj-card--img .media {
  background-size: cover;
  background-position: center;
  position: relative;
}
.proj-card--img .media::after {
  background: linear-gradient(180deg, rgba(7,9,15,0) 40%, rgba(7,9,15,0.7) 100%);
}
.proj-card--img:hover .media { transform: scale(1.04); transition: transform 600ms ease; }
.proj-card--img .media { transition: transform 600ms ease; overflow: hidden; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery .g-item {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  transition: transform var(--t-base), border-color var(--t-base);
}
.gallery .g-item:hover { transform: scale(1.02); border-color: var(--brand); }

@media (max-width: 1024px) {
  .showreel-inner { padding: 72px 0; }
  .factory-band { padding: 96px 0; min-height: 480px; }
  .factory-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero--cinematic .hero-inner { padding: 100px 0 60px; }
  .hero-scroll { display: none; }
  .factory-meta { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* V2 page-head cinematic variant */
.page-head--cinematic {
  padding: calc(var(--header-h) + 120px) 0 100px;
  min-height: 520px;
  background: #050810;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head--cinematic .ph-bg {
  position: absolute;
  inset: -2%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenburns 24s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}
.page-head--cinematic .ph-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,9,15,0.6) 0%, rgba(7,9,15,0.35) 45%, rgba(7,9,15,0.9) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(255,107,26,0.15) 0%, transparent 55%);
}
.page-head--cinematic h1 {
  font-size: clamp(40px, 6vw, 80px) !important;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.page-head--cinematic h1 .grad {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(255,107,26,0.35));
}
.page-head--cinematic p {
  color: rgba(232,238,247,0.85);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.page-head--cinematic .breadcrumb { color: rgba(255,255,255,0.7); }
.page-head--cinematic .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-head--cinematic .breadcrumb .sep { color: rgba(255,255,255,0.4); }
.page-head--cinematic .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,107,26,0.4);
  border-radius: 999px;
  background: rgba(255,107,26,0.12);
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 18px;
}
.page-head--cinematic .ph-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .page-head--cinematic { padding: calc(var(--header-h) + 80px) 0 64px; min-height: 420px; }
}
/* ============================================================
 *  Topbar, social icons, floating chat, news section
 *  (Appended 2026-09-15)
 * ============================================================ */
:root { --topbar-h: 40px; }

/* --- Topbar (slim strip above header) --- */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: linear-gradient(90deg, #050810 0%, #0c1322 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #cfd5e0;
  font-size: 12.5px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.topbar-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-left { flex: 1; min-width: 0; }
.topbar-tag { color: #ff8b4a; letter-spacing: 0.04em; font-weight: 500; }
.topbar-link { color: #cfd5e0; display: inline-flex; align-items: center; gap: 6px; transition: color .15s ease; }
.topbar-link:hover { color: #ff8b4a; }
.topbar-link svg { color: #ff8b4a; }
.topbar-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.topbar-social a { color: #cfd5e0; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.04); transition: all .15s ease; }
.topbar-social a:hover { color: #fff; background: var(--brand); transform: translateY(-1px); }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-switch .lang-fallback { font-size: 12px; font-weight: 600; color: #cfd5e0; padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; }
@media (max-width: 880px) {
  .topbar-tag { display: none; }
  .topbar-left { gap: 10px; }
}
@media (max-width: 640px) {
  .topbar-link span, .topbar-tag { display: none; }
  .topbar-link { gap: 0; }
}

/* --- Social icon lists (header / footer / topbar) --- */
.social-icons { list-style: none; margin: 0; padding: 0; display: inline-flex; flex-wrap: wrap; gap: 10px; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: inherit; transition: color .15s ease, transform .15s ease; }
.social-icons a:hover { color: var(--brand); transform: translateY(-2px); }
.footer-social { gap: 14px; }
.footer-social a { color: #cfd5e0; }
.footer-social a:hover { color: var(--brand); }
/* Footer social: force a single horizontal row regardless of parent layout. */
.footer-social { list-style: none; margin: 0; padding: 0; display: inline-flex; flex-direction: row; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-social li { list-style: none; }
.footer-social a { color: #cfd5e0; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: color .15s ease, background .15s ease, border-color .15s ease, transform .15s ease; }
.footer-social a:hover { color: var(--brand); border-color: var(--brand); background: rgba(255,107,26,0.12); transform: translateY(-2px); }

/* --- Floating social rail (right edge) --- */
.floating-social { position: fixed; right: 18px; bottom: 24px; z-index: 50; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.floater {
  position: relative;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #0c1322; color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  border: 0; cursor: pointer;
}
.floater:hover { transform: translateY(-3px) scale(1.05); }
.floater--wa { background: #25d366; }
.floater--wa:hover { background: #1ebe5a; }
.floater--tg { background: #229ed9; }
.floater--tg:hover { background: #1a8ec4; }
.floater--quote { background: var(--brand); color: #fff; }
.floater--quote:hover { background: #ff6f1a; }
.floater--back { background: rgba(12,19,34,0.85); }
.floater-tip { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); white-space: nowrap; background: #0c1322; color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; opacity: 0; pointer-events: none; transition: opacity .15s ease; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
.floater:hover .floater-tip { opacity: 1; }
@media (max-width: 640px) {
  .floating-social { right: 12px; bottom: 14px; }
  .floater { width: 42px; height: 42px; }
}

/* --- News & Insights band --- */
.news-band { padding: 96px 0 80px; background: linear-gradient(180deg, #06090f 0%, #0a1020 100%); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.news-band--related { background: transparent; border: 0; padding: 64px 0 0; }
.band-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.band-head h2 { font-size: clamp(26px, 3vw, 38px); margin: 8px 0 6px; }
.band-head .eyebrow { display: inline-block; padding: 4px 12px; border: 1px solid rgba(255,107,26,0.4); border-radius: 999px; background: rgba(255,107,26,0.12); color: var(--brand); font-size: 11px; letter-spacing: 0.18em; font-weight: 600; text-transform: uppercase; }
.band-sub { color: #98a2b3; max-width: 640px; }
.band-more { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; }
.band-more:hover { color: var(--brand); border-color: var(--brand); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-grid--archive { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .news-grid, .news-grid--archive { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid, .news-grid--archive { grid-template-columns: 1fr; } }

.news-card { position: relative; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); border-color: rgba(255,107,26,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.news-card-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card-media img { transform: scale(1.05); }
.news-card-placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(255,107,26,0.2), rgba(0,180,255,0.15)); }
.news-card-date { position: absolute; left: 14px; bottom: 14px; background: rgba(8,11,19,0.85); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 6px 10px; text-align: center; line-height: 1; backdrop-filter: blur(6px); }
.news-card-date strong { display: block; color: #fff; font-size: 18px; font-weight: 800; }
.news-card-date span { display: block; color: var(--brand); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 2px; }
.news-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-cat { font-size: 11px; letter-spacing: 0.18em; color: var(--brand); font-weight: 700; text-transform: uppercase; }
.news-card-title { font-size: 19px; line-height: 1.35; margin: 0; font-weight: 700; }
.news-card-title a { color: #fff; }
.news-card-title a:hover { color: var(--brand); }
.news-card-excerpt { color: #98a2b3; font-size: 14px; line-height: 1.6; margin: 0; }
.news-card-more { margin-top: auto; color: #fff; font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; padding-top: 6px; }
.news-card-more:hover { color: var(--brand); }
.news-card-more span { transition: transform .15s ease; }
.news-card-more:hover span { transform: translateX(3px); }

.news-archive { padding: 64px 0 96px; }
.news-pagination { margin-top: 48px; display: flex; justify-content: center; }

/* --- Single news --- */
.single-news { background: #050810; }
.single-news .page-head--cinematic { min-height: 320px; padding: calc(var(--header-h) + var(--topbar-h) + 64px) 0 56px; }
.single-news-meta { color: #98a2b3; display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 14px; }
.single-news-cover { padding: 32px 0; }
.single-news-cover img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); }
.single-news-body { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 56px; padding: 24px 0 80px; align-items: start; }
@media (max-width: 960px) { .single-news-body { grid-template-columns: 1fr; } }
.single-news-content { color: #d4d9e3; font-size: 17px; line-height: 1.8; }
.single-news-content h2 { color: #fff; margin-top: 36px; font-size: 26px; }
.single-news-content h3 { color: #fff; margin-top: 28px; font-size: 20px; }
.single-news-content p { margin: 18px 0; }
.single-news-content a { color: var(--brand); border-bottom: 1px solid rgba(255,107,26,0.4); }
.single-news-content blockquote { border-left: 3px solid var(--brand); margin: 24px 0; padding: 8px 18px; color: #cfd5e0; font-style: italic; }
.single-news-content img { border-radius: 12px; margin: 24px 0; }
.single-news-side { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 24px; position: sticky; top: calc(var(--header-h) + var(--topbar-h) + 24px); }
.single-news-side h6 { color: #fff; margin: 18px 0 10px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.single-news-side h6:first-child { margin-top: 0; }
.side-note { color: #98a2b3; font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.tag-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tag-list li a { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,0.05); color: #cfd5e0; font-size: 12px; }
.tag-list li a:hover { background: var(--brand); color: #fff; }
.recent-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.recent-list li { display: flex; flex-direction: column; gap: 2px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.recent-list li:last-child { border: 0; padding-bottom: 0; }
.recent-list li a { color: #fff; font-size: 14px; font-weight: 600; line-height: 1.4; }
.recent-list li a:hover { color: var(--brand); }
.recent-list li small { color: #98a2b3; font-size: 12px; }

/* --- Empty state --- */
.empty-state { text-align: center; color: #98a2b3; padding: 64px 24px; border: 1px dashed rgba(255,255,255,0.1); border-radius: 14px; }

/* ===== V3 Cinematic multi-slide hero ===== */
.hero--slideshow {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--topbar-h) + var(--header-h));
  overflow: hidden;
  background: #04060c;
  isolation: isolate;
  display: flex;
  align-items: stretch;
}
.hero--slideshow .hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--slideshow .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1100ms ease;
  pointer-events: none;
}
.hero--slideshow .hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero--slideshow .hero-slide-bg {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
  will-change: transform;
}
.hero--slideshow .hero-slide.is-active .hero-slide-bg {
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero--slideshow .hero-slide-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(255,107,26,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 84% 80%, rgba(0,229,255,0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(4,6,12,0.55) 0%, rgba(4,6,12,0.4) 40%, rgba(4,6,12,0.95) 100%);
}
.hero--slideshow .hero-slide-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.hero--slideshow .hero-stage-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  flex: 1;
}
.hero--slideshow .hero-slide-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 800ms ease 200ms, transform 1000ms cubic-bezier(0.16,1,0.3,1) 200ms;
  pointer-events: none;
  position: absolute;
  inset: 0;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}
.hero--slideshow .hero-slide-row.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}
.hero--slideshow .hero-copy {
  max-width: 620px;
}
.hero--slideshow .hero-copy .eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(255,107,26,0.45);
  border-radius: 999px;
  background: rgba(255,107,26,0.14);
  color: #ffb27a;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero--slideshow .hero-title {
  font-size: clamp(40px, 6.4vw, 96px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 60px rgba(0,0,0,0.7);
}
.hero--slideshow .hero-title .grad {
  background: linear-gradient(95deg, #ff8a3d 0%, #ff5b1f 35%, #ffb27a 70%, #ff5b1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(255,107,26,0.45));
  background-size: 200% 200%;
  animation: grad-pan 6s ease-in-out infinite;
}
@keyframes grad-pan {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.hero--slideshow .hero-lede {
  margin: 26px 0 0;
  max-width: 580px;
  color: rgba(232,238,247,0.86);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0,0,0,0.65);
}
.hero--slideshow .hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero--slideshow .btn-primary.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 14px 40px -10px rgba(255,107,26,0.55);
}
.hero--slideshow .btn-ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 16px 26px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.hero--slideshow .btn-ghost-light:hover {
  border-color: var(--brand);
  background: rgba(255,107,26,0.12);
}
.hero--slideshow .hero-trustbar {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
}
.hero--slideshow .hero-trustbar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero--slideshow .hero-trustbar-item strong {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero--slideshow .hero-trustbar-item span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(232,238,247,0.6);
  text-transform: uppercase;
  font-weight: 600;
}
.hero--slideshow .hero-visual {
  position: relative;
  height: clamp(420px, 64vh, 640px);
  border-radius: 24px;
  isolation: isolate;
}
.hero--slideshow .hero-visual-glow {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,107,26,0.45), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(0,229,255,0.30), transparent 60%);
  filter: blur(40px);
  z-index: -2;
  animation: glow-drift 12s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-3%,2%,0) scale(1.08); }
}
.hero--slideshow .hero-product {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
  transform-origin: center bottom;
  animation: prod-float 7s ease-in-out infinite;
}
@keyframes prod-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
.hero--slideshow .hero-product--placeholder {
  background: linear-gradient(135deg, rgba(255,107,26,0.3), rgba(0,229,255,0.2));
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero--slideshow .hero-product-card {
  position: absolute;
/* keep the product card inside the hero visual on all viewport sizes */
  left: 16px;
  bottom: 24px;
  width: min(240px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  overflow: hidden;
  padding: 18px 18px 14px;
  border-radius: 18px;
  background: rgba(8,11,20,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  z-index: 2;
  animation: card-rise 0.9s 600ms cubic-bezier(0.16,1,0.3,1) backwards;
}
@keyframes card-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero--slideshow .hero-product-card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #ffb27a;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.35);
  font-weight: 700;
  text-transform: uppercase;
}
.hero--slideshow .hero-product-card-price {
  display: block;
  margin-top: 12px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero--slideshow .hero-product-card-specs {
  margin: 14px 0 0;
  padding: 12px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 6px;
}
.hero--slideshow .hero-product-card-specs li {
  font-size: 12px;
  color: rgba(232,238,247,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero--slideshow .hero-product-card-specs li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}
.hero--slideshow .hero-product-badge {
  position: absolute;
  top: 24px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8,11,20,0.7);
  border: 1px solid rgba(34,211,124,0.4);
  color: #6cf6a8;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 3;
}
.hero--slideshow .hero-product-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22d374;
  box-shadow: 0 0 12px #22d374;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.hero--slideshow .hero-controls {
  position: absolute;
  z-index: 5;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(8,11,20,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(12px);
}
.hero--slideshow .hero-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 200ms ease;
}
.hero--slideshow .hero-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.hero--slideshow .hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero--slideshow .hero-dot {
  position: relative;
  width: 56px;
  height: 38px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.hero--slideshow .hero-dot-num {
  transition: color 200ms ease;
}
.hero--slideshow .hero-dot-progress {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.hero--slideshow .hero-dot.is-active {
  color: #fff;
}
.hero--slideshow .hero-dot.is-active .hero-dot-progress {
  background: rgba(255,255,255,0.2);
}
.hero--slideshow .hero-dot.is-active .hero-dot-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand), #ffb27a);
  transform-origin: left;
  animation: dot-progress 7s linear forwards;
}
@keyframes dot-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@media (max-width: 980px) {
  .hero--slideshow .hero-slide-row,
  .hero--slideshow .hero-slide-row.is-active {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 80px;
  }
  .hero--slideshow .hero-visual {
    height: 360px;
    order: 2;
  }
  .hero--slideshow .hero-trustbar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .hero--slideshow .hero-product-card {
    left: 12px;
    bottom: 16px;
    width: 200px;
    padding: 16px;
  }
  .hero--slideshow .hero-controls {
    right: 16px;
    bottom: 16px;
  }
}

/* ===== Trust strip (categories/channels marquee) ===== */
.trust-strip {
  position: relative;
  padding: 36px 0;
  background: linear-gradient(180deg, #04060c, #0a0e1a);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.trust-strip-label {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(232,238,247,0.55);
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-strip-label::after {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255,107,26,0.6);
  display: inline-block;
}
.trust-strip-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trust-strip-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.trust-strip-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  color: rgba(232,238,247,0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 240ms ease;
}
.trust-strip-item:hover {
  border-color: rgba(255,107,26,0.5);
  color: #fff;
  transform: translateY(-2px);
}
.trust-strip-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 880px) {
  .trust-strip-inner { flex-direction: column; gap: 18px; }
  .trust-strip-label::after { display: none; }
}

/* ===== Showreel band (video preview) ===== */
.showreel-band {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #04060c;
}
.showreel-band .showreel-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: kenburns 26s ease-in-out infinite alternate;
  filter: saturate(1.1) contrast(1.05);
}
.showreel-band .showreel-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(4,6,12,0.92) 0%, rgba(4,6,12,0.6) 50%, rgba(4,6,12,0.9) 100%);
}
.showreel-band .container { position: relative; z-index: 1; width: 100%; padding: 96px 32px; }
.showreel-band .showreel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.showreel-band .showreel-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(0,229,255,0.4);
  border-radius: 999px;
  background: rgba(0,229,255,0.12);
  color: #6fefff;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
}
.showreel-band h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 22px 0 0;
  color: #fff;
}
.showreel-band h2 .grad {
  background: linear-gradient(95deg, #6fefff, #00d4ff 50%, #ff5b1f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.showreel-band p {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(232,238,247,0.78);
  max-width: 560px;
}
.showreel-band .showreel-meta {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  max-width: 560px;
}
.showreel-band .showreel-meta .num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.showreel-band .showreel-meta .label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(232,238,247,0.6);
  text-transform: uppercase;
  margin-top: 4px;
}
.showreel-band .showreel-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.showreel-band .showreel-player {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08);
  aspect-ratio: 16 / 10;
  cursor: pointer;
  isolation: isolate;
  background: #000;
}
.showreel-band .showreel-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.showreel-band .showreel-player:hover img {
  transform: scale(1.05);
}
.showreel-band .showreel-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.showreel-band .showreel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255,107,26,0.95);
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 2;
  box-shadow: 0 16px 50px rgba(255,107,26,0.45);
  transition: transform 240ms ease;
}
.showreel-band .showreel-play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(255,107,26,0.5);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.showreel-band .showreel-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.showreel-band .showreel-player:hover .showreel-play {
  transform: translate(-50%, -50%) scale(1.1);
}
.showreel-band .showreel-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.showreel-band .showreel-caption strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
@media (max-width: 980px) {
  .showreel-band .showreel-grid { grid-template-columns: 1fr; gap: 36px; }
  .showreel-band .showreel-meta { grid-template-columns: repeat(2, 1fr); }
}

/* ===== V3 stats band ===== */
.stats-band { padding: 96px 0; position: relative; }
.stats-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255,107,26,0.10), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0,229,255,0.10), transparent 50%);
  pointer-events: none;
}
.stats-band-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
  max-width: 720px;
}
.stats-band-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,107,26,0.4);
  border-radius: 999px;
  background: rgba(255,107,26,0.12);
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
}
.stats-band-head .section-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
}
.stats-cell {
  padding: 44px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 240ms ease;
}
.stats-cell:last-child { border-right: none; }
.stats-cell:hover {
  background: rgba(255,107,26,0.06);
}
.stats-num {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-fire);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stats-unit {
  font-size: 0.45em;
  color: var(--brand);
  -webkit-text-fill-color: var(--brand);
  font-weight: 700;
  letter-spacing: 0;
}
.stats-label {
  margin-top: 14px;
  color: rgba(232,238,247,0.7);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-cell:nth-child(2n) { border-right: none; }
  .stats-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ===== Featured band V3 ===== */
.featured-band { padding: 100px 0; }
.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.featured-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,107,26,0.4);
  border-radius: 999px;
  background: rgba(255,107,26,0.12);
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.featured-head .section-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin: 14px 0 0;
}
.featured-sub {
  margin-top: 12px;
  color: rgba(232,238,247,0.65);
  font-size: 15px;
  max-width: 540px;
  line-height: 1.6;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1), border-color 320ms ease, box-shadow 320ms ease;
  display: flex;
  flex-direction: column;
}
.feat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,26,0.5);
  box-shadow: 0 30px 80px -20px rgba(255,107,26,0.25);
}
.feat-card-media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0c1322, #050810);
  overflow: hidden;
}
.feat-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.16,1,0.3,1);
  filter: saturate(1.05);
}
.feat-card:hover .feat-card-media img { transform: scale(1.08); }
.feat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4,6,12,0.85) 100%);
  pointer-events: none;
}
.feat-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.feat-card-price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(255,107,26,0.45);
}
.feat-card-body {
  padding: 22px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.feat-card-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.feat-card-moq {
  color: rgba(232,238,247,0.55);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}
.feat-card-arrow {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 240ms ease;
}
.feat-card:hover .feat-card-arrow {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateX(4px);
}
@media (max-width: 980px) {
  .featured-head { flex-direction: column; align-items: flex-start; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .featured-grid { grid-template-columns: 1fr; }
}
/* ============================================================
 *  Responsive hardening (v1.4.3) - prevent overflow on mobile,
 *  keep brand + nav readable, tighten the floating chat rail.
 * ============================================================ */
html, body { overflow-x: hidden; }

/* --- Tablet / small desktop ---------------------------------- */
@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .nav-menu, .nav-menu--fallback { gap: 0; }
  .nav-menu > li > a,
  .nav-menu--fallback > li > a { padding: 8px 10px; font-size: 13.5px; }
  .nav-tools .btn-sm { padding: 0 14px; }
}

/* --- Phone ---------------------------------------------------- */
@media (max-width: 880px) {
  /* topbar: strip everything except social row + lang switcher */
  .site-topbar { font-size: 0; }
  .site-topbar .topbar-left { display: none; }
  .site-topbar .topbar-right { gap: 10px; }
  .topbar-social a { width: 24px; height: 24px; }

  /* header: brand shrinks, nav collapses behind the menu-toggle, CTA hides */
  .site-header { height: 60px; }
  :root { --header-h: 60px; }
  .brand { gap: 8px; font-size: 15px; min-width: 0; max-width: 56vw; }
  .brand > span,
  .brand small { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand small { display: none; }
  .brand-logo { width: 30px; height: 30px; flex-shrink: 0; }
  .brand-logo svg { width: 18px; height: 18px; }

  .nav { gap: 8px; }
  .nav-menu, .nav-menu--fallback {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(7,9,15,0.98);
    backdrop-filter: blur(16px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
    z-index: 109;
  }
  .nav-menu--fallback > li > a,
  .nav-menu > li > a { padding: 12px 14px; font-size: 15px; width: 100%; white-space: nowrap; }
  .site-header.menu-open .nav-menu,
  .site-header.menu-open .nav-menu--fallback { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-tools .btn-sm { display: none; }

  /* floating chat: keep within viewport */
  .floating-social { right: 10px; bottom: 14px; }
  .floater { width: 42px; height: 42px; }
  .floater-tip { display: none; }

  /* hero meta grid: prevent 4-col overflow */
  .hero--slideshow .hero-trustbar { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* generic safety: any oversized element should not push the page */
  img, svg, video { max-width: 100%; height: auto; }
}

/* --- Small phone ---------------------------------------------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .brand { max-width: 50vw; }
  .floating-social { right: 8px; bottom: 12px; }
  .floater { width: 40px; height: 40px; }
}

/* --- Never let the lang-switch or topbar row push the page ---- */
.topbar-row, .nav { min-width: 0; }
html { -webkit-text-size-adjust: 100%; }
