/* ============================================
   Lokaa Exports — Static Site Styles
   Design tokens, layout, components, animations
   ============================================ */

:root {
  --navy: #0B1E39;
  --navy-deep: #060F24;
  --gold: #C9A66B;
  --gold-soft: #E1C48F;
  --graphite: #2A2E35;
  --graphite-muted: #4A5060;
  --ivory: #FAF8F4;
  --border: rgba(11, 30, 57, 0.10);
  --border-light: rgba(11, 30, 57, 0.06);

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(201, 166, 107, 0.35); color: var(--navy); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.font-display { font-family: var(--font-display); letter-spacing: -0.02em; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-balance { text-wrap: balance; }

.gold-gradient { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); }
.navy-gradient { background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%); }
.premium-shadow { box-shadow: 0 30px 80px -30px rgba(11,30,57,0.35), 0 8px 20px -10px rgba(11,30,57,0.15); }
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, rgba(201,166,107,0.6), transparent); }

.grain { position: relative; }
.grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================ NAV ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s var(--ease);
  background: transparent;
}
.nav.solid {
  background: rgba(6, 15, 36, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding: 0 40px; } }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 18px;
  box-shadow: 0 8px 24px -8px rgba(201,166,107,0.5);
}
.brand-text .name { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 15px; line-height: 1; }
.brand-text .sub { font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }

.nav-links { display: none; align-items: center; gap: 36px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  position: relative; transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; height: 1px; width: 0; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta-desktop { display: none; }
.nav-cta-mobile { display: flex; align-items: center; gap: 8px; }
@media (min-width: 1024px) {
  .nav-cta-desktop { display: inline-flex; }
  .nav-cta-mobile { display: none; }
}

.btn-quote {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px 10px 20px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 13px; font-weight: 600;
  transition: all 0.3s; box-shadow: 0 8px 24px -8px rgba(201,166,107,0.5);
}
.btn-quote:hover { background: var(--gold-soft); }
.btn-quote .icon-wrap {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.btn-quote:hover .icon-wrap { transform: rotate(45deg); }

.btn-quote-mini {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 6px 8px 14px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 600;
}
.btn-quote-mini .icon-wrap { width: 20px; height: 20px; border-radius: 999px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; }

.hamburger { padding: 8px; color: #fff; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy-deep); z-index: 60;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 24px; padding: 32px; }
.mobile-menu-inner a { font-family: var(--font-display); font-size: 32px; color: rgba(255,255,255,0.9); }
.mobile-menu-inner a:hover { color: var(--gold); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; height: 80px; padding: 0 24px; }

/* ============================================ HERO ============================================ */
.hero {
  position: relative; height: 100vh; min-height: 720px; overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0; will-change: transform;
  transform: translateZ(0);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,36,0.85) 0%, rgba(11,30,57,0.7) 45%, rgba(6,15,36,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 10; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 260px;
}
@media (min-width: 1024px) { .hero-content { padding-bottom: 128px; } }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
.eyebrow.muted { color: rgba(42,46,53,0.6); }
.eyebrow.muted::before { background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2.75rem, 7.5vw, 7rem);
  line-height: 0.98; letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 1100px;
}
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; margin-right: 0.25em; }
.hero-title .word > span {
  display: inline-block; transform: translateY(110%);
  animation: hero-word 1s var(--ease) forwards;
}
@keyframes hero-word { to { transform: translateY(0); } }

.hero-lede {
  margin-top: 32px; color: rgba(255,255,255,0.75);
  font-size: 18px; line-height: 1.6; max-width: 560px;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 1s var(--ease) forwards; animation-delay: 0.9s;
}
@media (min-width: 1024px) { .hero-lede { font-size: 20px; } }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.hero-actions {
  margin-top: 48px; display: flex; flex-direction: column; gap: 16px;
  opacity: 0; transform: translateY(20px);
  animation: fade-up 1s var(--ease) forwards; animation-delay: 1.1s;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 8px 12px 24px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 20px 60px -20px rgba(201,166,107,0.6);
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-primary .icon-wrap {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.btn-primary:hover .icon-wrap { transform: rotate(45deg); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 14px; font-weight: 500;
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); }
.btn-secondary svg { transition: transform 0.3s; }
.btn-secondary:hover svg { transform: translateX(4px); }

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(6,15,36,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0; animation: fade-up 1s var(--ease) forwards; animation-delay: 1.6s;
}
.hero-stats-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .hero-stats-inner { grid-template-columns: repeat(4, 1fr); padding: 0 40px; } }
.hero-stat { padding: 20px 16px; border-left: 1px solid rgba(255,255,255,0.1); }
.hero-stat:first-child { border-left: 0; }
@media (max-width: 1023px) { .hero-stat:nth-child(3) { border-left: 0; } }
.hero-stat .k { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-stat .v { margin-top: 6px; font-family: var(--font-display); color: #fff; font-size: 20px; }
@media (min-width: 1024px) { .hero-stat .v { font-size: 24px; } }

/* ============================================ MARQUEE ============================================ */
.marquee {
  background: var(--navy); padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.6); font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.marquee-item::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--gold); }

/* ============================================ REVEAL ============================================ */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ============================================ SECTIONS — GENERIC ============================================ */
.section { padding: 96px 0; }
@media (min-width: 1024px) { .section { padding: 160px 0; } }
.section-ivory { background: var(--ivory); }
.section-white { background: #fff; }
.section-navy { background: var(--navy); color: #fff; }
.section-navy-deep { background: var(--navy-deep); color: #fff; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02; letter-spacing: -0.02em; font-weight: 500;
  color: var(--navy);
}
.section-navy .section-title, .section-navy-deep .section-title { color: #fff; }
.section-title em { font-style: normal; color: var(--gold); }

/* ============================================ WHY LOKAA ============================================ */
.why-header { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
@media (min-width: 1024px) {
  .why-header { grid-template-columns: 5fr 1fr 6fr; }
  .why-header .sep { display: block; }
}
.why-header p { font-size: 18px; line-height: 1.75; color: var(--graphite-muted); }

.pillars { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(11,30,57,0.10); border-radius: 16px; overflow: hidden; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar { background: var(--ivory); padding: 32px; transition: background 0.5s; }
@media (min-width: 1024px) { .pillar { padding: 40px; } }
.pillar:hover { background: #fff; }
.pillar-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(11,30,57,0.95); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; transition: all 0.5s;
}
.pillar:hover .pillar-icon { background: var(--gold); color: var(--navy); }
.pillar h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; margin-bottom: 12px; }
.pillar p { color: rgba(42,46,53,0.7); font-size: 15px; line-height: 1.7; }

/* ============================================ NETWORK / MAP ============================================ */
.network-header { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
@media (min-width: 1024px) { .network-header { grid-template-columns: 6fr 5fr; gap: 40px; } }
.network-header p { color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.7; }

.map-wrap {
  border-radius: 24px; overflow: hidden; padding: 16px;
  background: #050B1B; border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) { .map-wrap { padding: 32px; } }
.map-wrap svg { width: 100%; height: auto; display: block; }

.shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 40%, #fff8e2 50%, var(--gold-soft) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.02em; color: #fff; }
.stat .lbl { margin-top: 8px; color: rgba(255,255,255,0.5); font-size: 14px; }

/* Route pulse animation */
.route { stroke-dasharray: 6 10; animation: dashmove 3s linear infinite; }
@keyframes dashmove { to { stroke-dashoffset: -100; } }

/* ============================================ CATEGORIES ============================================ */
.cats-head { display: flex; flex-direction: column; gap: 24px; margin-bottom: 64px; align-items: flex-start; }
@media (min-width: 1024px) { .cats-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.link-underline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 500;
  border-bottom: 1px solid rgba(11,30,57,0.3);
  padding-bottom: 4px; transition: all 0.3s;
}
.link-underline:hover { color: var(--gold); border-color: var(--gold); }

.cats-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.cat-tile {
  position: relative; display: block; overflow: hidden;
  border-radius: 16px; aspect-ratio: 16 / 11;
  box-shadow: 0 30px 80px -30px rgba(11,30,57,0.35);
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,15,36,0.9), rgba(11,30,57,0.3) 55%, transparent); }
.cat-tile-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: #fff; }
@media (min-width: 1024px) { .cat-tile-body { padding: 40px; } }
.cat-tile-idx { display: flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.cat-tile-idx::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.cat-tile h3 { font-family: var(--font-display); font-size: 30px; letter-spacing: -0.02em; margin-bottom: 8px; }
@media (min-width: 1024px) { .cat-tile h3 { font-size: 36px; } }
.cat-tile p { color: rgba(255,255,255,0.7); max-width: 460px; }
.cat-tile-cta { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.cat-tile-cta .circle {
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.cat-tile:hover .cat-tile-cta .circle { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============================================ PRODUCT GRID ============================================ */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card { display: block; }
.product-media {
  position: relative; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden;
  background: rgba(11,30,57,0.05);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: var(--navy);
}
.product-arrow {
  position: absolute; bottom: 16px; right: 16px; width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.95); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.product-card:hover .product-arrow { background: var(--gold); }

.product-info { margin-top: 20px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.product-info h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.02em; color: var(--navy); transition: color 0.3s; }
.product-card:hover .product-info h3 { color: var(--gold); }
.product-info .tagline { color: rgba(42,46,53,0.6); font-size: 14px; margin-top: 4px; }
.product-card > .circle-arrow {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid rgba(11,30,57,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; flex-shrink: 0;
}
.product-card:hover .circle-arrow { background: var(--gold); border-color: var(--gold); }
.product-certs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.product-certs .tag { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; background: rgba(11,30,57,0.05); color: rgba(11,30,57,0.7); }

/* ============================================ PROCESS ============================================ */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-card {
  padding: 28px; border-radius: 16px; background: #fff;
  border: 1px solid var(--border-light); transition: border-color 0.3s;
  height: 100%;
}
.process-card:hover { border-color: rgba(201,166,107,0.4); }
.process-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.process-num { font-family: var(--font-display); color: var(--gold); font-size: 40px; line-height: 1; }
.process-icon { width: 40px; height: 40px; border-radius: 999px; background: rgba(11,30,57,0.95); color: var(--gold); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.process-card:hover .process-icon { background: var(--gold); color: var(--navy); }
.process-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.process-card p { color: rgba(42,46,53,0.7); font-size: 14px; line-height: 1.6; }

/* ============================================ TESTIMONIALS ============================================ */
.testis { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .testis { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.testi {
  padding: 32px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
}
@media (min-width: 1024px) { .testi { padding: 40px; } }
.testi:hover { border-color: rgba(201,166,107,0.4); }
.testi-quote { font-family: var(--font-display); color: var(--gold); font-size: 48px; line-height: 1; margin-bottom: 24px; }
.testi p { font-family: var(--font-display); color: rgba(255,255,255,0.9); font-size: 20px; letter-spacing: -0.01em; line-height: 1.35; }
.testi-footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.testi-footer .name { font-weight: 600; font-size: 14px; }
.testi-footer .role { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 4px; }

/* ============================================ FINAL CTA ============================================ */
.final-cta {
  position: relative; overflow: hidden; border-radius: 24px;
  background: var(--navy-deep); color: #fff;
  padding: 40px;
}
@media (min-width: 1024px) { .final-cta { padding: 80px; } }
.final-cta-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: end; position: relative; z-index: 1; }
@media (min-width: 1024px) { .final-cta-grid { grid-template-columns: 2fr 1fr; } }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.02em; font-weight: 500; }
.final-cta p { margin-top: 24px; color: rgba(255,255,255,0.7); font-size: 18px; max-width: 640px; }
.final-cta-glow { position: absolute; top: -100px; right: -100px; width: 380px; height: 380px; border-radius: 50%; background: rgba(201,166,107,0.2); filter: blur(80px); animation: float-slow 8s ease-in-out infinite; }
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* ============================================ FOOTER ============================================ */
.footer { position: relative; background: var(--navy-deep); color: #fff; padding: 96px 0 40px; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,166,107,0.5), transparent); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 56px; padding-bottom: 64px; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 5fr 2fr 2fr 3fr; } }
.footer h4 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer li a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer li a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-brand .brand-logo { width: 44px; height: 44px; font-size: 20px; }
.footer-brand .name { font-size: 18px; }
.footer-tagline { font-family: var(--font-display); font-size: 28px; line-height: 1.15; letter-spacing: -0.02em; color: rgba(255,255,255,0.9); max-width: 460px; }
.footer-tagline .accent { color: var(--gold); }
.footer-contact { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-contact-row { display: flex; align-items: center; gap: 12px; }
.footer-contact-row svg { color: var(--gold); flex-shrink: 0; }
.footer-bottom { display: flex; flex-direction: column; gap: 16px; padding-top: 32px; font-size: 12px; color: rgba(255,255,255,0.5); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ============================================ PAGE HERO (secondary) ============================================ */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: var(--navy-deep); color: #fff; overflow: hidden;
}
.page-hero .glow { position: absolute; top: -160px; right: -160px; width: 500px; height: 500px; border-radius: 50%; background: rgba(201,166,107,0.10); filter: blur(80px); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 6.5vw, 5.5rem); line-height: 1.02; letter-spacing: -0.02em; font-weight: 500; max-width: 900px; }
.page-hero p { margin-top: 32px; color: rgba(255,255,255,0.7); font-size: 18px; max-width: 640px; }

/* ============================================ PRODUCTS FILTER ============================================ */
.filter-bar {
  position: sticky; top: 80px; z-index: 30;
  background: rgba(250,248,244,0.85); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,30,57,0.1);
}
.filter-inner {
  max-width: var(--container); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 12px; overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .filter-inner { padding: 16px 40px; } }
.filter-label { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(42,46,53,0.6); flex-shrink: 0; }
.chip {
  white-space: nowrap; padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: #fff; color: rgba(11,30,57,0.7);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.chip:hover { color: var(--navy); }
.chip.active { background: var(--navy); color: var(--ivory); border-color: var(--navy); }

/* ============================================ PRODUCT DETAIL ============================================ */
.pdp-back { display: inline-flex; align-items: center; gap: 8px; color: rgba(42,46,53,0.6); font-size: 14px; margin-bottom: 32px; transition: color 0.3s; }
.pdp-back:hover { color: var(--navy); }

.pdp-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .pdp-grid { grid-template-columns: 7fr 5fr; gap: 64px; } }

.pdp-gallery-main {
  position: relative; aspect-ratio: 4 / 3; border-radius: 24px; overflow: hidden;
  background: rgba(11,30,57,0.05); box-shadow: 0 30px 80px -30px rgba(11,30,57,0.35);
}
.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pdp-thumb { position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; opacity: 0.7; transition: all 0.3s; border: 2px solid transparent; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.active { opacity: 1; border-color: var(--gold); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); }
.pdp-tagline { margin-top: 16px; color: rgba(42,46,53,0.7); font-size: 18px; line-height: 1.6; }
.pdp-certs { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pdp-cert { display: flex; align-items: center; gap: 8px; color: var(--navy); font-size: 14px; }
.pdp-cert .tick { width: 24px; height: 24px; border-radius: 999px; background: rgba(201,166,107,0.15); color: var(--gold); display: flex; align-items: center; justify-content: center; }

.pdp-cta { display: inline-flex; align-items: center; gap: 12px; padding: 12px 8px 12px 24px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 600; margin-top: 32px; }
.pdp-cta:hover { background: var(--navy-deep); }
.pdp-cta .icon-wrap { width: 36px; height: 36px; border-radius: 999px; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.pdp-cta:hover .icon-wrap { transform: rotate(45deg); }

.pdp-sections { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .pdp-sections { grid-template-columns: 1fr 1fr; gap: 64px; } }

.spec-table { border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.spec-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 16px 24px; border-top: 1px solid var(--border); }
.spec-row:first-child { border-top: 0; }
.spec-row .k { color: rgba(42,46,53,0.6); font-size: 14px; }
.spec-row .v { color: var(--navy); font-weight: 500; text-align: right; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags .tag { padding: 8px 16px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 14px; }

.apps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.app-card { padding: 20px; border-radius: 12px; background: var(--ivory); border: 1px solid var(--border-light); font-size: 14px; font-weight: 500; color: var(--navy); }

.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pkg-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--navy); }
.pkg-list li::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--gold); margin-top: 10px; flex-shrink: 0; }

.pdp-logistics { margin-top: 56px; padding: 24px; border-radius: 16px; background: var(--navy); color: #fff; display: flex; align-items: flex-start; gap: 16px; }
.pdp-logistics svg { color: var(--gold); flex-shrink: 0; }
.pdp-logistics h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.pdp-logistics p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ============================================ RFQ FORM ============================================ */
.rfq-page { padding: 128px 0 96px; background: var(--ivory); min-height: 100vh; }
.rfq-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 1024px) { .rfq-grid { grid-template-columns: 4fr 8fr; } }

.rfq-aside h1 { font-family: var(--font-display); font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--navy); }
.rfq-aside h1 .accent { color: var(--gold); }
.rfq-aside .lede { margin-top: 20px; color: rgba(42,46,53,0.7); line-height: 1.7; }

.rfq-steps { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.rfq-step-item { display: flex; align-items: center; gap: 16px; opacity: 0.4; transition: opacity 0.3s; }
.rfq-step-item.active { opacity: 1; }
.rfq-step-item.done { opacity: 1; }
.rfq-step-num { width: 32px; height: 32px; border-radius: 999px; background: rgba(11,30,57,0.1); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }
.rfq-step-item.active .rfq-step-num { background: var(--navy); color: var(--gold); }
.rfq-step-item.done .rfq-step-num { background: var(--gold); color: var(--navy); }
.rfq-step-item span { font-family: var(--font-display); color: var(--navy); }

.rfq-card {
  background: #fff; border-radius: 24px; padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: 0 30px 80px -30px rgba(11,30,57,0.35);
}
@media (min-width: 1024px) { .rfq-card { padding: 48px; } }

.rfq-progress-track { height: 4px; background: rgba(11,30,57,0.1); border-radius: 999px; overflow: hidden; }
.rfq-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width 0.6s var(--ease); }
.rfq-progress-label { margin-top: 16px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(42,46,53,0.5); }

.rfq-panels { margin-top: 40px; }
.rfq-panel { display: none; opacity: 0; transform: translateX(20px); transition: all 0.4s var(--ease); }
.rfq-panel.active { display: block; opacity: 1; transform: translateX(0); }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(42,46,53,0.6); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(11,30,57,0.15); background: var(--ivory);
  color: var(--navy); font-family: inherit; font-size: 15px;
  transition: all 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(42,46,53,0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,166,107,0.15);
}
.field textarea { resize: none; }
.fields-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .fields-grid { grid-template-columns: repeat(2, 1fr); } }
.field.full { grid-column: 1 / -1; }

.rfq-review-table { border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.rfq-review-row { display: flex; align-items: flex-start; gap: 24px; padding: 14px 20px; border-top: 1px solid var(--border); }
.rfq-review-row:first-child { border-top: 0; }
.rfq-review-row .k { width: 120px; flex-shrink: 0; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(42,46,53,0.5); margin-top: 4px; }
.rfq-review-row .v { color: var(--navy); font-weight: 500; }

.rfq-actions { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; color: rgba(11,30,57,0.7); font-size: 14px; }
.btn-ghost:hover { color: var(--navy); }
.btn-ghost:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-next { display: inline-flex; align-items: center; gap: 8px; padding: 10px 8px 10px 24px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 600; }
.btn-next:hover { background: var(--navy-deep); }
.btn-next .icon-wrap { width: 32px; height: 32px; border-radius: 999px; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.btn-next:hover .icon-wrap { transform: translateX(2px); }
.btn-submit { display: inline-flex; align-items: center; gap: 8px; padding: 10px 8px 10px 24px; border-radius: 999px; background: var(--gold); color: var(--navy); font-size: 14px; font-weight: 600; }
.btn-submit:hover { background: var(--gold-soft); }
.btn-submit .icon-wrap { width: 32px; height: 32px; border-radius: 999px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }
.btn-submit:hover .icon-wrap { transform: rotate(45deg); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Success screen */
.rfq-success { padding: 160px 0 128px; background: var(--ivory); min-height: 100vh; text-align: center; }
.success-check { width: 80px; height: 80px; border-radius: 999px; background: linear-gradient(135deg, var(--gold), var(--gold-soft)); margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 60px -20px rgba(201,166,107,0.6); }
.success-check svg { color: var(--navy); }
.rfq-success h1 { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--navy); }
.rfq-success .lede { margin-top: 24px; color: rgba(42,46,53,0.7); font-size: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }
.ref-pill { margin-top: 40px; display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; border-radius: 16px; background: var(--navy); color: #fff; }
.ref-pill .k { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.ref-pill .v { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.1em; }
.success-summary { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 780px; margin-left: auto; margin-right: auto; text-align: left; }
@media (min-width: 768px) { .success-summary { grid-template-columns: repeat(3, 1fr); } }
.success-summary .cell { padding: 24px; border-radius: 16px; background: #fff; border: 1px solid var(--border-light); }
.success-summary .k { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(42,46,53,0.5); }
.success-summary .v { font-family: var(--font-display); color: var(--navy); margin-top: 8px; }
.success-actions { margin-top: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .success-actions { flex-direction: row; } }

/* ============================================ TOAST ============================================ */
.toast-host { position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; flex-direction: column; gap: 8px; }
.toast { padding: 12px 20px; border-radius: 12px; background: var(--navy); color: #fff; font-size: 14px; box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4); opacity: 0; transform: translateY(-10px); transition: all 0.3s var(--ease); }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #B91C1C; }
.toast.success { background: #065F46; }

/* ============================================ MISC ============================================ */
.icon-btn-arrow { display: inline-flex; align-items: center; gap: 8px; }
.hidden { display: none !important; }
