/* ══════════════════════════════════════════════
   TOKENS
   ══════════════════════════════════════════════ */
:root {
  /* Light blue palette */
  --void:       #F4F9FD;
  --deep:       #E8F3FB;
  --surface:    #FFFFFF;
  --surface-2:  #D4E8F7;
  --border:     rgba(26, 100, 160, 0.14);
  --border-h:   rgba(26, 123, 196, 0.35);

  --blue:       #1A7BC4;
  --blue-light: #4DA3E0;
  --blue-dark:  #0E5A94;
  --blue-soft:  #E3F2FC;
  --blue-glow:  rgba(26, 123, 196, 0.1);

  --gold:       #E8940A;
  --gold-light: #F5A623;
  --gold-dark:  #C47A08;
  --gold-glow:  rgba(245, 166, 35, 0.14);
  --gold-glow2: rgba(245, 166, 35, 0.08);

  --white:      #FFFFFF;
  --white-pure: #FFFFFF;
  --heading:    #0C2340;
  --silver:     #475569;
  --muted:      #64748B;
  --slate:      #334155;
  --light-bg:   #F0F7FD;
  --card-bg:    rgba(255, 255, 255, 0.9);
  --shadow:     rgba(14, 60, 100, 0.08);
  --shadow-md:  rgba(14, 60, 100, 0.14);
  --overlay:    rgba(12, 35, 64, 0.5);
  --on-accent:  #FFFFFF;

  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ══════════════════════════════════════════════
   RESET
   ══════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--deep);
  overflow-anchor: none;
}
body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--void); }
::-webkit-scrollbar-thumb { background:var(--gold-dark); border-radius:3px; }

/* ══════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__sun {
  width: 60px;
  height: 60px;
  position: relative;
}
.preloader__sun svg {
  width: 100%;
  height: 100%;
  animation: preloaderSpin 3s linear infinite;
}
@keyframes preloaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.preloader__bar {
  width: 120px;
  height: 2px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-top: 28px;
  overflow: hidden;
}
.preloader__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloaderFill 1.8s var(--ease-out-expo) forwards;
}
@keyframes preloaderFill {
  to { width: 100%; }
}
.preloader__text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 14px;
}

/* ══════════════════════════════════════════════
   CURSOR GLOW (desktop only)
   ══════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,123,196,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  display: none;
}
@media (hover: hover) and (min-width: 1024px) {
  .cursor-glow { display: block; }
}

/* ══════════════════════════════════════════════
   FLOATING ORBS (ambient)
   ══════════════════════════════════════════════ */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.orb--1 {
  width: 300px; height: 300px;
  background: rgba(77, 163, 224, 0.18);
  top: 10%; left: -5%;
  animation-duration: 25s;
}
.orb--2 {
  width: 200px; height: 200px;
  background: rgba(26, 123, 196, 0.14);
  top: 60%; right: -3%;
  animation-duration: 18s;
  animation-delay: -5s;
}
.orb--3 {
  width: 250px; height: 250px;
  background: rgba(148, 196, 230, 0.2);
  bottom: 5%; left: 30%;
  animation-duration: 22s;
  animation-delay: -10s;
}
@media (max-width: 1023px) {
  .orbs { display: none; }
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(30px, -40px) scale(1.05); }
}

/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  padding-left: max(16px, var(--safe-left));
  padding-right: max(16px, var(--safe-right));
}

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 210;
  padding: 0;
  transition: all 0.5s var(--ease-out-expo);
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: max(16px, var(--safe-left));
  padding-right: max(16px, var(--safe-right));
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 101;
}
.logo__mark {
  width: 40px;
  height: 40px;
  position: relative;
}
.logo__mark svg { width:100%; height:100%; }
.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo__text em {
  font-style: italic;
  color: var(--blue);
  font-weight: 400;
}
.nav__links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  transition: width 0.4s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--heading); }
.nav__links a:hover::after { width: 100%; }
.nav__cta-wrap { display: none; }
.nav__cta {
  padding: 10px 28px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--on-accent);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: transform 0.3s, box-shadow 0.3s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.25);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 101;
  border-radius: 8px;
  transition: background 0.25s;
}
.hamburger:active { background: var(--blue-glow); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mob-menu.active {
  pointer-events: auto;
  visibility: visible;
}
.mob-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 35, 64, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}
.mob-menu.active .mob-menu__backdrop { opacity: 1; }
.mob-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, calc(100vw - 48px));
  max-width: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 64px var(--shadow-md);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.42s var(--ease-out-expo);
  padding-top: var(--safe-top);
  padding-bottom: var(--safe-bottom);
  padding-right: var(--safe-right);
  overflow: hidden;
}
.mob-menu.active .mob-menu__panel { transform: translateX(0); }
.mob-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-menu__head .logo__text { font-size: 1.1rem; }
.mob-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: background 0.2s, color 0.2s;
}
.mob-menu__close:active { background: var(--blue-glow); }
.mob-menu__close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.mob-menu__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 12px 20px;
}
.mob-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mob-menu__links a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--heading);
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mob-menu__links a:active,
.mob-menu__links a.active {
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.mob-menu__num {
  flex-shrink: 0;
  width: 28px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--blue);
  opacity: 0.85;
}
.mob-menu__label {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.3;
}
.mob-menu__foot {
  flex-shrink: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--blue-soft);
}
.mob-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.mob-menu__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--slate);
  min-height: 36px;
}
.mob-menu__contact a svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}
.mob-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--on-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mob-menu__cta:active {
  transform: scale(0.98);
  box-shadow: 0 4px 20px rgba(245,166,35,0.25);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, #dceefb 0%, #f0f8ff 38%, #fff9f0 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 123, 196, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}
.hero__sun {
  position: absolute;
  top: -80px;
  right: -60px;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.35) 0%, rgba(245, 166, 35, 0.08) 45%, transparent 70%);
  animation: heroSunPulse 8s ease-in-out infinite;
}
.hero__sun::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 120, 0.9) 0%, rgba(245, 166, 35, 0.5) 55%, transparent 72%);
  filter: blur(2px);
}
.hero__sun::after {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(245, 166, 35, 0.12) 12deg, transparent 24deg, transparent 30deg, rgba(245, 166, 35, 0.1) 42deg, transparent 54deg, transparent 60deg, rgba(245, 166, 35, 0.12) 72deg, transparent 84deg, transparent 90deg, rgba(245, 166, 35, 0.1) 102deg, transparent 114deg, transparent 120deg, rgba(245, 166, 35, 0.12) 132deg, transparent 144deg, transparent 150deg, rgba(245, 166, 35, 0.1) 162deg, transparent 174deg, transparent 180deg, rgba(245, 166, 35, 0.12) 192deg, transparent 204deg, transparent 210deg, rgba(245, 166, 35, 0.1) 222deg, transparent 234deg, transparent 240deg, rgba(245, 166, 35, 0.12) 252deg, transparent 264deg, transparent 270deg, rgba(245, 166, 35, 0.1) 282deg, transparent 294deg, transparent 300deg, rgba(245, 166, 35, 0.12) 312deg, transparent 324deg, transparent 330deg, rgba(245, 166, 35, 0.1) 342deg, transparent 354deg);
  animation: heroSunSpin 60s linear infinite;
}
@keyframes heroSunPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes heroSunSpin {
  to { transform: rotate(360deg); }
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero__glow--1 {
  width: 340px; height: 340px;
  bottom: 10%; left: -8%;
  background: rgba(26, 123, 196, 0.14);
  animation: heroGlowDrift 14s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 280px; height: 280px;
  top: 35%; left: 40%;
  background: rgba(245, 166, 35, 0.1);
  animation: heroGlowDrift 18s ease-in-out infinite alternate-reverse;
}
@keyframes heroGlowDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(30px, -20px); }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: calc(96px + var(--safe-top)) 0 calc(100px + var(--safe-bottom));
  align-items: stretch;
}
.hero__copy {
  width: 100%;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.2s both;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  margin-bottom: 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 123, 196, 0.18);
  box-shadow: 0 8px 24px rgba(14, 60, 100, 0.06);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__eyebrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--on-accent);
  flex-shrink: 0;
}
.hero__eyebrow-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(26, 123, 196, 0.16);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.06;
  margin-bottom: 18px;
  letter-spacing: -0.035em;
  max-width: 13ch;
}
.hero__title .gold {
  display: block;
  margin-top: 0.08em;
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 45%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGoldShimmer 6s linear infinite;
}
@keyframes heroGoldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero__sub {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 26px;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 24px;
}
.hero__actions .btn { width: 100%; }
.hero__actions .btn--gold svg,
.hero__actions .btn--wa svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.35s var(--ease-out-expo);
  flex-shrink: 0;
}
.hero__actions .btn--gold:hover svg { transform: translateX(4px); }
.btn--wa {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--on-accent);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.22);
}
.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.32);
}
.btn--wa svg { fill: currentColor; stroke: none; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding-top: 4px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
}
.hero__trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Visual card */
.hero__visual {
  position: relative;
  width: 100%;
  animation: heroFadeUp 0.85s var(--ease-out-expo) 0.4s both;
}
.hero__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 4px 0 rgba(26, 123, 196, 0.06),
    0 24px 64px rgba(14, 60, 100, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.hero__card-media {
  position: relative;
  overflow: hidden;
}
.hero__card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 35, 64, 0.62) 100%);
  pointer-events: none;
}
.hero__card img,
.hero__card video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 10s var(--ease-out-expo);
}
.hero__card:hover img,
.hero__card:hover video { transform: scale(1.05); }
.hero__card-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px 20px 18px;
  color: var(--white);
}
.hero__card-tag {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: rgba(245, 166, 35, 0.92);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-accent);
}
.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}
.hero__card-loc {
  font-size: 0.75rem;
  opacity: 0.88;
}
.hero__float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(14, 60, 100, 0.12);
  animation: heroFloat 5s ease-in-out infinite;
  color: inherit;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
}
.hero__float--wa:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.2);
}
.hero__float--brands {
  top: -12px;
  right: -4px;
  animation-delay: -1.5s;
}
.hero__float--wa {
  bottom: 130px;
  left: -8px;
  animation-delay: -3s;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
}
.hero__float-icon--gold {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold-dark);
}
.hero__float-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.hero__float--wa .hero__float-icon svg {
  fill: #25D366;
  stroke: none;
}
.hero__float-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.1;
}
.hero__float-label {
  font-size: 0.625rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
}
.hero__brand-pill {
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--blue-soft);
  border: 1px solid rgba(26, 123, 196, 0.12);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
}
.hero__brand-pill--more {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--on-accent);
}

/* Bottom brand strip */
.hero__strip {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 14px 0 calc(16px + var(--safe-bottom));
  border-top: 1px solid rgba(26, 123, 196, 0.1);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.65s both;
}
.hero__strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.hero__strip-label {
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}
.hero__strip-track {
  display: flex;
  gap: 10px;
  animation: heroMarquee 28s linear infinite;
  white-space: nowrap;
}
.hero__strip-track span {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate);
}
@keyframes heroMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Floating WhatsApp button */
.wa-fab {
  position: fixed;
  right: max(18px, var(--safe-right));
  bottom: calc(22px + var(--safe-bottom));
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--on-accent);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}
.wa-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.c-detail__value a {
  color: var(--blue);
  font-weight: 600;
  transition: color 0.2s;
}
.c-detail__value a:hover { color: var(--blue-dark); }
.contact__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--on-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.contact__wa-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.contact__wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 28px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--on-accent);
}
.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), #fff3c4);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn--gold:hover::before { opacity: 1; }
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,166,35,0.3);
}
.btn--gold span { position: relative; z-index: 1; }
.btn--ghost {
  color: var(--heading);
  border: 1.5px solid rgba(26, 123, 196, 0.28);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--blue-soft);
}
.btn--ghost-dark {
  color: var(--slate);
  border: 1.5px solid rgba(0,0,0,0.12);
}
.btn--ghost-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.hero__scroll {
  position: absolute;
  bottom: calc(72px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeUp 0.7s var(--ease-out-expo) 1.1s both;
}
.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  position: relative;
  overflow: hidden;
  background: rgba(26, 123, 196, 0.15);
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--blue);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@media (max-width: 639px) {
  .hero__inner {
    padding: calc(88px + var(--safe-top)) 0 calc(24px + var(--safe-bottom));
    gap: 28px;
  }
  .hero__title { max-width: 11ch; font-size: clamp(2.1rem, 10vw, 2.75rem); }
  .hero__title .gold { display: inline; }
  .hero__sub { font-size: 0.9375rem; max-width: 36ch; }
  .hero__float--brands { top: 8px; right: 8px; padding: 10px 12px; }
  .hero__float--wa { bottom: 120px; left: 8px; padding: 10px 12px; }
  .hero__float-num { font-size: 0.875rem; }
  .hero__card img,
  .hero__card video { height: 240px; }
  .hero__strip-label { display: none; }
  .hero__strip-inner { justify-content: flex-start; }
}

@media (max-width: 639px) and (max-height: 720px) {
  .hero__inner { padding-top: calc(76px + var(--safe-top)); gap: 20px; }
  .hero__title { font-size: clamp(1.875rem, 9vw, 2.35rem); margin-bottom: 12px; }
  .hero__sub { margin-bottom: 18px; }
  .hero__card img,
  .hero__card video { height: 200px; }
}

@media (max-width: 639px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    position: relative;
  }
  section,
  .header,
  .footer,
  .container {
    max-width: 100%;
  }
  .container,
  .nav {
    padding-left: max(16px, var(--safe-left));
    padding-right: max(16px, var(--safe-right));
  }
  .rv-left,
  .rv-right {
    transform: translateY(28px);
  }
  .rv-left.vis,
  .rv-right.vis {
    transform: translateY(0);
  }
  .stats,
  .about,
  .products,
  .gallery,
  .showcase,
  .why,
  .epc,
  .testimonials,
  .contact,
  .footer {
    overflow-x: hidden;
  }
  .about__metrics,
  .stats__grid {
    gap: 16px 10px;
  }
  .metric,
  .pcard,
  .wcard,
  .contact__form {
    border-radius: 18px;
  }
  .gallery__grid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .testimonials {
    padding: 64px 0;
  }
  .test-header {
    margin-bottom: 28px;
    padding: 0 16px;
  }
  .test-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
    padding: 0;
  }
  .tcard {
    flex: none;
    max-width: none;
    width: 100%;
  }
  .test-dots {
    display: none;
  }
  .contact::before {
    display: none;
  }
  .contact__form {
    padding: 28px 18px;
  }
  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════ */
.stats {
  position: relative;
  z-index: 5;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 12px;
}
.stat {
  text-align: center;
  position: relative;
}
.stat__number {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 5.5vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ══════════════════════════════════════════════
   REVEAL SYSTEM
   ══════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }
.rv-d5 { transition-delay: 0.5s; }
.rv-d6 { transition-delay: 0.6s; }

.rv-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.rv-left.vis { opacity: 1; transform: translateX(0); }

.rv-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.rv-right.vis { opacity: 1; transform: translateX(0); }

.rv-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.rv-scale.vis { opacity: 1; transform: scale(1); }

.rv-pop {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.rv-pop.vis { opacity: 1; transform: scale(1) translateY(0); }

/* Micro-animations */
@keyframes microFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes microShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes microPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stat:hover .stat__number {
  animation: microFloat 2s ease-in-out infinite;
}
.btn--gold:active { transform: scale(0.97); }
.wcard__icon {
  margin-bottom: 14px;
  transition: transform 0.4s var(--ease-out-expo);
}
.wcard:hover .wcard__icon {
  transform: scale(1.08) rotate(-4deg);
}
.pcard__tag {
  animation: microPulse 3s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════ */
.sec-eye {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sec-eye::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--blue);
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading);
  margin-bottom: 16px;
}
.sec-title--dark { color: var(--heading); }
.sec-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--slate);
  max-width: 580px;
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.about {
  padding: 64px 0;
  position: relative;
  z-index: 5;
  background: var(--void);
}
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about__visual {
  position: relative;
  border-radius: 12px;
}
.about__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 140px 140px;
  gap: 10px;
}
.about__collage-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.about__collage-item:hover img { transform: scale(1.08); }
.about__collage-item--main {
  grid-row: span 2;
  grid-column: span 1;
}
.about__collage-item--video {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 160px;
}
.about__collage-item--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__collage-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,8,16,0.25);
  pointer-events: none;
}
.about__collage-play span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,166,35,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: microPulse 2.5s ease-in-out infinite;
}
.about__collage-play span svg {
  width: 16px;
  height: 16px;
  fill: var(--void);
  margin-left: 2px;
}
.about__text p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 14px;
}
.about__vision {
  margin: 20px 0 8px;
  padding: 20px;
  background: var(--surface);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
}
.about__vision p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.about__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.metric {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.metric:hover {
  border-color: var(--border-h);
  background: var(--blue-soft);
  box-shadow: 0 8px 24px var(--shadow);
}
.metric__num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.metric__label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════ */
.products {
  padding: 80px 0;
  position: relative;
  z-index: 5;
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.pcard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  transition: border-color 0.5s, transform 0.5s var(--ease-out-expo);
}
.pcard:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-6px);
}
.pcard__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out-expo);
}
.pcard:hover .pcard__bg { transform: scale(1.08); }
.pcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(4,8,16,0.95) 0%,
    rgba(4,8,16,0.5) 40%,
    rgba(4,8,16,0.15) 100%
  );
}
.pcard__content {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
}
.pcard__tag {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 14px;
}
.pcard__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pcard__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard__link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease-out-expo);
}
.pcard__link:hover { gap: 14px; }
.pcard__link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ══════════════════════════════════════════════
   PARALLAX BANNER (Manufacturing)
   ══════════════════════════════════════════════ */
.parallax-banner {
  position: relative;
  padding: 100px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 5;
}
.parallax-banner__bg {
  position: absolute;
  inset: -20%;
  background: url('https://images.unsplash.com/photo-1559302504-64aae6ca6b6d?w=1920&q=85') center/cover no-repeat;
  will-change: transform;
}
.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 244, 252, 0.94) 0%, rgba(212, 232, 247, 0.88) 100%);
}
.parallax-banner__content {
  position: relative;
  z-index: 2;
}
.mfg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}
.mfg-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.mfg-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-soft);
  border: 1px solid rgba(26, 123, 196, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, border-color 0.4s;
}
.mfg-item:hover .mfg-icon {
  background: rgba(26, 123, 196, 0.15);
  border-color: var(--blue);
}
.mfg-icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue); fill: none; stroke-width: 1.5;
}
.mfg-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.mfg-desc {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════
   VISUAL GALLERY (marquee + grid)
   ══════════════════════════════════════════════ */
.gallery {
  padding: 48px 0 56px;
  background: var(--void);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.gallery__head {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 16px;
}
.gallery__marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
.gallery__marquee:hover { animation-play-state: paused; }
.gallery__marquee-track {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}
.gallery__shot {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s;
}
.gallery__shot:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--border-h);
}
.gallery__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__shot-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 12px 10px;
  background: linear-gradient(transparent, rgba(4,8,16,0.9));
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
  padding: 0 16px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.gallery__grid-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery__grid-item img,
.gallery__grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.gallery__grid-item:hover img,
.gallery__grid-item:hover video { transform: scale(1.06); }
.gallery__grid-cap {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 12px;
  background: rgba(4,8,16,0.75);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   SHOWCASE VIDEO STRIP
   ══════════════════════════════════════════════ */
.showcase {
  padding: 56px 0;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
.showcase__tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
  cursor: pointer;
}
.showcase__tile video,
.showcase__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,8,16,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.4s;
}
.showcase__tile:hover .showcase__tile-overlay {
  background: linear-gradient(0deg, rgba(4,8,16,0.92) 0%, rgba(4,8,16,0.2) 100%);
}
.showcase__tile-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  transform: translateY(8px);
  opacity: 0.9;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.4s;
}
.showcase__tile:hover .showcase__tile-title {
  transform: translateY(0);
  opacity: 1;
}
.showcase__tile-meta {
  font-size: 0.6875rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   WHY CHOOSE
   ══════════════════════════════════════════════ */
.why {
  padding: 80px 0;
  background: var(--light-bg);
  position: relative;
  z-index: 5;
}
.why__header { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.wcard {
  padding: 0;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}
.wcard__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.wcard:hover .wcard__img { transform: scale(1.06); }
.wcard__body {
  padding: 22px 22px 26px;
}
.wcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.wcard:hover::before { transform: scaleX(1); }
.wcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-md);
}
.wcard__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.wcard__icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue); fill: none; stroke-width: 1.5;
}
.wcard__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.wcard__desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════
   EPC SOLUTIONS
   ══════════════════════════════════════════════ */
.epc {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  z-index: 5;
}
.epc__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(232, 244, 252, 0.96) 0%, rgba(228, 241, 251, 0.82) 100%),
    url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?w=1920&q=80') center/cover no-repeat;
}
.epc__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.epc__grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.epc__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 480px;
}
.epc__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease-out-expo);
}
.epc__visual img:hover { transform: scale(1.04); }
.epc__visual img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; }
.epc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.epc__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
}
.epc__list li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  stroke: var(--gold); fill: none; stroke-width: 2.5;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials {
  padding: 80px 0;
  background: var(--void);
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--border);
}
.test-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.test-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 12px;
  scroll-snap-type: none;
}
.test-track::-webkit-scrollbar { display: none; }
.tcard {
  flex: 0 0 92%;
  max-width: 420px;
  scroll-snap-align: none;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  box-shadow: 0 4px 20px var(--shadow);
}
.tcard:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-md);
}
.tcard__photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.tcard__body {
  padding: 24px 22px 22px;
}
.tcard__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
}
.tcard__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.tcard__stars svg { width: 14px; height: 14px; fill: var(--gold); }
.tcard__text {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.tcard__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-glow), var(--surface-2));
  border: 1.5px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold);
}
.tcard__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
}
.tcard__role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}
.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.test-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--surface-2);
  border: none;
  transition: background 0.3s, width 0.3s;
}
.test-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--blue);
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact {
  padding: 80px 0;
  background: var(--deep);
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 123, 196, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.contact__info { max-width: 520px; }
.contact__info > p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
}
.c-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.c-detail__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-soft);
  border: 1px solid rgba(26, 123, 196, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-detail__icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none; stroke-width: 1.5;
}
.c-detail__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.c-detail__value {
  font-size: 0.9rem;
  color: var(--heading);
  font-weight: 500;
}

.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}
.contact__form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.cf-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 28px;
}
.f-group { margin-bottom: 18px; }
.f-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--blue-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--blue);
  background: var(--surface);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--muted); }
.f-group textarea { resize: vertical; min-height: 100px; }
.f-group select { appearance: none; cursor: pointer; }
.f-group select option { background: var(--surface); color: var(--heading); }
.f-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.f-submit { width: 100%; margin-top: 8px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  position: relative;
  z-index: 5;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 18px;
  max-width: 340px;
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--blue); }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.footer__social a:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}
.footer__social svg { width: 16px; height: 16px; fill: var(--silver); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.footer__copy {
  font-size: 0.7rem;
  color: var(--slate);
  line-height: 1.6;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { font-size: 0.7rem; color: var(--slate); transition: color 0.3s; }
.footer__legal a:hover { color: var(--blue); }

/* ══════════════════════════════════════════════
   DESKTOP
   ══════════════════════════════════════════════ */
@media (min-width: 640px) {
  .container { padding-left: max(24px, var(--safe-left)); padding-right: max(24px, var(--safe-right)); }
  .nav { padding-left: max(24px, var(--safe-left)); padding-right: max(24px, var(--safe-right)); }
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: calc(100px + var(--safe-top)) 0 calc(48px + var(--safe-bottom));
  }
  .hero__copy { flex: 1; max-width: 580px; }
  .hero__visual { flex: 0 1 440px; max-width: 46%; }
  .hero__title { font-size: clamp(2.75rem, 4.5vw, 3.75rem); max-width: 12ch; }
  .hero__sub { font-size: 1.0625rem; margin-bottom: 28px; max-width: 40ch; }
  .hero__actions { flex-direction: row; flex-wrap: wrap; width: auto; margin-bottom: 28px; }
  .hero__actions .btn { width: auto; }
  .hero__card img,
  .hero__card video { height: 340px; }
  .hero__scroll { display: flex; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .stat__number { font-size: 2.75rem; }
  .gallery__shot { width: 280px; height: 200px; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); padding: 0 24px; }
  .gallery__grid-item--wide { grid-column: span 2; }
  .showcase__grid { grid-template-columns: repeat(3, 1fr); }
  .about__collage { grid-template-rows: 180px 180px; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .mfg-grid { grid-template-columns: 1fr 1fr; }
  .tcard { flex: 0 0 60%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .sec-title { font-size: 2.25rem; }
  .f-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta-wrap { display: block; }
  .hamburger { display: none; }

  .hero__title { font-size: clamp(3.25rem, 4.5vw, 4.25rem); max-width: 11ch; }
  .hero__sub { font-size: 1.125rem; max-width: 44ch; }
  .hero__visual { flex: 0 1 480px; max-width: 44%; }
  .hero__card img,
  .hero__card video { height: 400px; }
  .hero__float--brands { top: -18px; right: -16px; }
  .hero__float--wa { bottom: 150px; left: -20px; }
  .hero__scroll {
    bottom: calc(80px + var(--safe-bottom));
    left: auto;
    right: max(32px, var(--safe-right));
    transform: none;
  }

  .stats { padding: 56px 0; }
  .stat { border-right: 1px solid var(--border); }
  .stat:last-child { border-right: none; }

  .about { padding: 120px 0; }
  .about__grid { flex-direction: row; align-items: center; gap: 64px; }
  .about__visual { flex: 1.1; min-width: 0; }
  .about__collage { grid-template-rows: 220px 220px; }
  .about__collage-item--video { min-height: 200px; }
  .epc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .epc__visual { max-width: none; }
  .about__text { flex: 1; min-width: 0; }

  .products { padding: 120px 0; }
  .products__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pcard { min-height: 460px; }

  .parallax-banner { padding: 140px 0; }
  .mfg-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }

  .why { padding: 120px 0; }
  .why__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .epc { padding: 140px 0; }

  .testimonials { padding: 120px 0; }
  .tcard { flex: 0 0 380px; }

  .contact { padding: 120px 0; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }

  .sec-title { font-size: 2.625rem; }
}

@media (min-width: 1280px) {
  .hero__inner { gap: 72px; }
  .hero__visual { flex: 0 1 520px; }
  .hero__card img,
  .hero__card video { height: 440px; }
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rv, .rv-left, .rv-right, .rv-scale, .rv-pop { opacity: 1; transform: none; }
  .hero__copy, .hero__visual, .hero__strip { opacity: 1; transform: none; animation: none; }
  .hero__title .gold { animation: none; -webkit-text-fill-color: transparent; background: linear-gradient(120deg, var(--blue), var(--blue-light)); -webkit-background-clip: text; background-clip: text; }
  .hero__strip-track { animation: none; }
  .gallery__marquee { animation: none; transform: none; }
  .stat:hover .stat__number { animation: none; }
  .pcard__tag { animation: none; }
}
