/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #082B7A;
  --navy-d:  #051C52;
  --cyan:    #20A7E0;
  --sky:     #69C4EE;
  --white:   #FFFFFF;
  --bg:      #F7F9FC;
  --surface: #EEF3F8;
  --slate:   #64748B;
  --text:    #1E293B;
  --radius:  24px;
  --font-h:  'Manrope', sans-serif;
  --font-b:  'Inter', sans-serif;
  --px:      clamp(20px, 5vw, 60px);
}

html {
  scroll-behavior: auto;
  /* prevent horizontal scroll globally */
  overflow-x: hidden;
}

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
  /* ensure no accidental horizontal overflow */
  max-width: 100vw;
}

/* Hide cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  button { cursor: auto; }
  #cursor, #cursor-follower { display: none !important; }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; }

/* ===== CUSTOM CURSOR (desktop only) ===== */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: difference;
}
#cursor-follower {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .5;
  transition: opacity .3s;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 20px; height: 20px; }

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy-d);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
#loader-monogram {
  display: flex;
  gap: 4px;
  overflow: hidden;
}
.loader-letter {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(80px, 14vw, 140px);
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
  line-height: 1;
  opacity: 0;
}
#loader-logo {
  width: clamp(160px, 40vw, 220px);
  opacity: 0;
  filter: brightness(0) invert(1);
}
#loader-bar {
  width: clamp(140px, 40vw, 200px);
  height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
#loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--cyan);
  border-radius: 2px;
}

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(5, 28, 82, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--px);
  box-shadow: 0 2px 40px rgba(0,0,0,.3);
}
#nav-logo {
  height: 44px;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}
#nav a:first-child:hover #nav-logo,
#nav a:first-child:focus #nav-logo {
  filter: none;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cyan); }
#nav-cta {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cyan);
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
#nav-cta:hover { background: var(--sky); transform: translateY(-1px); }

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
#hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-d);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 40px;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: var(--font-h);
  font-size: clamp(24px, 7vw, 36px);
  font-weight: 800;
  color: white;
  min-height: 44px;
  display: flex;
  align-items: center;
}
#mobile-menu a:hover { color: var(--cyan); }
#mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO ===== */
#hero {
  min-height: 100svh;
  background: var(--navy-d);
  display: flex;
  align-items: center;
  padding: 100px var(--px) 80px;
  position: relative;
  overflow: hidden;
}
#hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(32,167,224,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32,167,224,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-1 {
  width: clamp(300px,50vw,600px);
  height: clamp(300px,50vw,600px);
  background: radial-gradient(circle, rgba(32,167,224,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  width: clamp(200px,30vw,400px);
  height: clamp(200px,30vw,400px);
  background: radial-gradient(circle, rgba(8,43,122,.4) 0%, transparent 70%);
  bottom: 50px; left: 200px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-h);
  font-size: clamp(10px,1.5vw,12px);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  opacity: 0;
}
.hero-headline {
  font-family: var(--font-h);
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
}
.hero-headline .word {
  display: inline-block;
  padding-bottom: 0.12em;
  overflow: hidden;
  margin-right: .22em;
  vertical-align: top;
}
.hero-headline .char { display: inline-block; }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
}
.btn-primary {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--cyan);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  transition: transform .25s, box-shadow .25s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(32,167,224,.4); }
.btn-ghost {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: transparent;
  color: white;
  padding: 15px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: border-color .25s, color .25s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

#scroll-indicator {
  position: absolute;
  bottom: 32px; left: var(--px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-h);
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--cyan);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ===== SECTION SHARED ===== */
.section-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.1;
  color: var(--navy);
}
.section-title.light { color: white; }

/* ===== ABOUT ===== */
#about {
  padding: clamp(72px,10vw,120px) var(--px);
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: clamp(20px,3vw,32px) clamp(16px,2.5vw,28px);
  border: 1px solid rgba(8,43,122,.08);
  box-shadow: 0 4px 24px rgba(8,43,122,.06);
}
.stat-number {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--cyan); }
.stat-label {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

.about-right { padding-top: 8px; }
.about-desc {
  font-size: clamp(15px,1.5vw,17px);
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 40px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.value-card {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(32,167,224,.15);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(32,167,224,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
.value-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-desc { font-size: 12px; color: var(--slate); line-height: 1.5; }

/* ===== BRANDS ===== */
#brands {
  padding: clamp(72px,10vw,120px) var(--px);
  background: var(--navy-d);
  overflow: hidden;
}
#brands .section-label { color: var(--cyan); }
#brands .section-title { color: white; }
.brands-header {
  max-width: 1200px;
  margin: 0 auto clamp(48px,6vw,72px);
}

.brands-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: clamp(24px,3vw,36px) clamp(16px,2vw,28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: background .3s, border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32,167,224,.1), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.brand-card:hover { background: rgba(255,255,255,.09); border-color: rgba(32,167,224,.4); transform: translateY(-4px); }
.brand-card:hover::before { opacity: 1; }
.brand-logo-wrap {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-wrap img {
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: filter .3s, opacity .3s;
}
.brand-card:hover .brand-logo-wrap img {
  filter: none;
  opacity: 1;
}
.brand-type {
  font-size: 10px;
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
}

/* ===== PRODUCTS ===== */
#products {
  padding: clamp(72px,10vw,120px) var(--px);
  background: var(--bg);
}
.products-header {
  max-width: 1200px;
  margin: 0 auto clamp(40px,6vw,72px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(8,43,122,.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
  position: relative;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(8,43,122,.12); border-color: rgba(32,167,224,.3); }
.product-card:hover::after { transform: scaleX(1); }

/* Product image wrapper — white bg so transparent PNGs render cleanly */
.product-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8,43,122,.06);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.product-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-tag {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(32,167,224,.1);
  color: var(--cyan);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(32,167,224,.2);
}

/* ===== WHY US ===== */
#why {
  padding: clamp(72px,10vw,120px) var(--px);
  background: var(--navy);
  overflow: hidden;
}
.why-inner { max-width: 1200px; margin: 0 auto; }
.ticker-wrap {
  overflow: hidden;
  margin: 40px 0 64px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-move 25s linear infinite;
}
.ticker-item {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ticker-item::after {
  content: '·';
  color: var(--cyan);
  font-size: 20px;
}
@keyframes ticker-move { from{transform: translateX(0)} to{transform: translateX(-50%)} }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: clamp(24px,3vw,36px) clamp(20px,2.5vw,28px);
  transition: background .3s, border-color .3s;
}
.pillar:hover { background: rgba(255,255,255,.08); border-color: rgba(32,167,224,.3); }
.pillar-num {
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 800;
  color: rgba(32,167,224,.2);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
}
.pillar-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ===== CONTACT DROPDOWNS ===== */
.contact-group { position: relative; }
.contact-group-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  text-align: left;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  min-height: 60px;
}
.contact-group-btn:hover { transform: translateY(-2px); }
.contact-group-btn.btn-call  { background: var(--navy); color: white; box-shadow: 0 8px 32px rgba(8,43,122,.2); }
.contact-group-btn.btn-call:hover  { box-shadow: 0 16px 48px rgba(8,43,122,.3); }
.contact-group-btn.btn-wa   { background: #25D366; color: white; box-shadow: 0 8px 32px rgba(37,211,102,.2); }
.contact-group-btn.btn-wa:hover   { box-shadow: 0 16px 48px rgba(37,211,102,.35); }

.contact-dropdown {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 8px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(8,43,122,.18);
  border: 1px solid rgba(8,43,122,.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 50;
}
/* Desktop hover */
@media (hover: hover) {
  .contact-group:hover .contact-dropdown,
  .contact-group:focus-within .contact-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
/* Touch/mobile: JS toggles .open class */
.contact-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-section-label {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 14px 20px 6px;
}
.dropdown-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  transition: background .15s;
  text-decoration: none;
  min-height: 48px;
}
.dropdown-person:hover { background: var(--surface); }
.dp-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.dp-number {
  font-size: 13px;
  color: var(--slate);
  font-family: var(--font-b);
}
.dropdown-divider {
  height: 1px;
  background: var(--surface);
  margin: 4px 20px;
}

/* ===== CONTACT ===== */
#contact {
  padding: clamp(72px,10vw,120px) var(--px);
  background: var(--bg);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: start;
}
.contact-desc {
  font-size: clamp(15px,1.5vw,17px);
  color: var(--slate);
  line-height: 1.8;
  margin: 20px 0 40px;
}
.contact-btns { display: flex; flex-direction: column; gap: 14px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius);
  border: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 16px;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  min-height: 60px;
}
.contact-btn:hover { transform: translateY(-2px); }
.btn-call {
  background: var(--navy);
  color: white;
  box-shadow: 0 8px 32px rgba(8,43,122,.2);
}
.btn-call:hover { box-shadow: 0 16px 48px rgba(8,43,122,.3); }
.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 32px rgba(37,211,102,.2);
}
.btn-wa:hover { box-shadow: 0 16px 48px rgba(37,211,102,.35); }
.contact-btn-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-btn-icon svg { width: 22px; height: 22px; fill: white; }
.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--slate);
  min-height: 44px;
}
.contact-info-item a { color: var(--navy); font-weight: 600; transition: color .2s; }
.contact-info-item a:hover { color: var(--cyan); }
.info-icon {
  width: 36px; height: 36px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.social-row { display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.social-btn {
  width: 48px; height: 48px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.social-btn:hover { background: var(--navy); transform: translateY(-2px); }
.social-btn svg { width: 20px; height: 20px; fill: var(--navy); }
.social-btn:hover svg { fill: white; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: clamp(280px,40vw,380px);
  border: 1px solid rgba(8,43,122,.08);
  box-shadow: 0 8px 40px rgba(8,43,122,.08);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-d);
  padding: clamp(48px,8vw,64px) var(--px) clamp(24px,4vw,32px);
  color: rgba(255,255,255,.5);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.footer-brand img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-tagline { font-family: var(--font-h); font-size: 13px; color: rgba(255,255,255,.4); max-width: 320px; line-height: 1.7; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 13px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: var(--cyan); }

/* ===== TERMS PAGE ===== */
.terms-page { background: var(--bg); min-height: 100vh; cursor: auto; }
.terms-page #cursor,
.terms-page #cursor-follower { display: none; }
.terms-hero {
  background: var(--navy-d);
  padding: clamp(120px,18vw,160px) var(--px) clamp(48px,6vw,80px);
}
.terms-hero h1 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  color: white;
}
.terms-body {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(48px,8vw,80px) var(--px);
}
.terms-body h2 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin: 44px 0 14px;
}
.terms-body p { font-size: 16px; line-height: 1.85; color: var(--slate); margin-bottom: 14px; }
.terms-body ul { padding-left: 20px; color: var(--slate); font-size: 16px; line-height: 1.85; }
.terms-body ul li { margin-bottom: 8px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 36px;
  min-height: 44px;
}

/* ===== SCROLL REVEAL UTILITY ===== */
.reveal { opacity: 0; transform: translateY(40px); }

/* ===== RESPONSIVE — TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 40px; }
  .brands-track { grid-template-columns: repeat(3, 1fr); }
}

/* ===== RESPONSIVE — MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  /* Nav */
  #nav { padding: 14px 20px; }
  #nav.scrolled { padding: 12px 20px; }
  .nav-links, #nav-cta { display: none; }
  #hamburger { display: flex; }
  #nav-logo { height: 36px; }

  /* Hero */
  #hero { padding: 90px 20px 72px; min-height: 100svh; }
  .hero-headline { font-size: clamp(38px, 10vw, 56px); }
  .hero-sub { font-size: 15px; }
  .hero-ctas { gap: 12px; }
  .btn-primary, .btn-ghost { padding: 14px 24px; font-size: 13px; }
  #scroll-indicator { left: 20px; bottom: 24px; }

  /* About */
  #about { padding: 64px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Brands */
  #brands { padding: 64px 20px; }
  .brands-track { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Products */
  #products { padding: 64px 20px; }
  .products-grid { grid-template-columns: 1fr; gap: 18px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .product-img-wrap { height: 180px; }

  /* Why */
  #why { padding: 64px 20px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  #contact { padding: 64px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-group-btn { font-size: 15px; padding: 16px 20px; }
  /* On mobile dropdowns are click-toggled — ensure they stack above */
  .contact-dropdown { z-index: 60; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .footer-tagline { max-width: 100%; }
}

/* ===== RESPONSIVE — SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .brands-track { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brand-card { padding: 20px 14px; }
  .brand-logo-wrap img { max-height: 40px; max-width: 100px; }
  .stats-grid { gap: 12px; }
  .stat-card { padding: 18px 14px; }
  .hero-headline { font-size: clamp(34px, 9vw, 48px); }
  .dp-number { font-size: 12px; }
}

/* ===== PREVENT HORIZONTAL OVERFLOW ===== */
section, footer, nav, #mobile-menu {
  max-width: 100vw;
  overflow-x: hidden;
}
