/* ═══════════════════════════════════════════════════════════════
   NEQUA — Premium Water Brand Design System
   Palette: Deep Navy · Crystal Aqua · Pearl White · Gold
   Typography: Cormorant Garamond + Plus Jakarta Sans
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --navy-light: #1B3A6B;
  --aqua:       #4ECDC4;
  --aqua-light: #7EDDD6;
  --aqua-pale:  #C8F0EE;
  --gold:       #C9A84C;
  --gold-light: #E2C97E;
  --pearl:      #F7F9FC;
  --white:      #FFFFFF;
  --text-dark:  #0A1628;
  --text-mid:   #3D5A80;
  --text-light: #8BA3C0;
  --border:     rgba(78,205,196,0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.18);
  --shadow-aqua: 0 8px 32px rgba(78,205,196,0.25);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--pearl);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 300; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
em { font-style: italic; color: var(--aqua); }
p { font-size: 1rem; line-height: 1.75; color: var(--text-mid); }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 5rem; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}
.section__eyebrow--light { color: var(--aqua-light); }
.section__title { margin-bottom: 1.25rem; color: var(--navy); }
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--aqua-light); }
.section__body { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; }
.section__body--light { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--aqua), var(--aqua-light));
  color: var(--navy);
  box-shadow: var(--shadow-aqua);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(78,205,196,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline {
  background: transparent;
  color: var(--aqua);
  border: 1.5px solid var(--aqua);
}
.btn--outline:hover {
  background: var(--aqua);
  color: var(--navy);
}
.btn--nav {
  background: var(--aqua);
  color: var(--navy);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}
.btn--nav:hover { background: var(--aqua-light); }
.btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__logo-drop { font-size: 1.2rem; }
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: var(--aqua); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem 2rem;
  border-top: 1px solid rgba(78,205,196,0.15);
}
.nav__mobile a {
  padding: 0.85rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--aqua); }
.nav__mobile .btn--nav { margin-top: 1rem; text-align: center; justify-content: center; }
.nav__mobile.open { display: flex; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0D2B4E 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem clamp(1.5rem, 5vw, 4rem) 6rem;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--aqua), transparent);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--aqua-light), transparent);
  top: 50%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.hero__waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
}
.wave { width: 100%; height: 100%; }
.wave--1 { fill: var(--pearl); opacity: 0.08; }

/* Floating drops */
.drop {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: dropFloat linear infinite;
  pointer-events: none;
}
.drop--1 { left: 5%; top: 20%; animation-duration: 6s; animation-delay: 0s; }
.drop--2 { left: 15%; top: 70%; animation-duration: 8s; animation-delay: 1s; }
.drop--3 { right: 20%; top: 30%; animation-duration: 7s; animation-delay: 2s; }
.drop--4 { left: 30%; top: 15%; animation-duration: 9s; animation-delay: 0.5s; font-size: 1rem; }
.drop--5 { right: 35%; top: 65%; animation-duration: 5s; animation-delay: 3s; font-size: 0.8rem; }
@keyframes dropFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.5; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(78,205,196,0.12);
  border: 1px solid rgba(78,205,196,0.3);
  color: var(--aqua-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.badge__dot {
  width: 6px; height: 6px;
  background: var(--aqua);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero__title em { color: var(--aqua-light); }
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── CSS Bottle ── */
.hero__bottle {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}
.bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bottleFloat 4s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.bottle__cap {
  width: 44px; height: 28px;
  background: linear-gradient(180deg, var(--aqua-light), var(--aqua));
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -4px 12px rgba(78,205,196,0.4);
}
.bottle__neck {
  width: 52px; height: 40px;
  background: linear-gradient(180deg, rgba(200,240,238,0.6), rgba(200,240,238,0.3));
  border-radius: 4px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(78,205,196,0.3);
}
.bottle__body {
  width: 120px; height: 280px;
  background: linear-gradient(135deg,
    rgba(200,240,238,0.15) 0%,
    rgba(78,205,196,0.08) 30%,
    rgba(200,240,238,0.12) 60%,
    rgba(78,205,196,0.06) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(78,205,196,0.25);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 0 40px rgba(78,205,196,0.08),
    0 20px 60px rgba(10,22,40,0.5),
    0 0 0 1px rgba(78,205,196,0.1);
}
.bottle__label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  background: rgba(10,22,40,0.6);
  border: 1px solid rgba(78,205,196,0.3);
  border-radius: 8px;
  padding: 1rem 0.5rem;
  backdrop-filter: blur(4px);
}
.bottle__label-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}
.bottle__label-sub {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua-light);
  margin-top: 0.3rem;
}
.bottle__label-vol {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}
.bottle__shine {
  position: absolute;
  top: 0; left: 12px;
  width: 18px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent, rgba(255,255,255,0.05));
  border-radius: 0 0 8px 8px;
}
.bottle__water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(78,205,196,0.12), rgba(78,205,196,0.25));
  border-radius: 0 0 14px 14px;
  animation: waterSlosh 3s ease-in-out infinite;
}
@keyframes waterSlosh {
  0%, 100% { clip-path: polygon(0 8%, 25% 0%, 50% 6%, 75% 0%, 100% 8%, 100% 100%, 0 100%); }
  50% { clip-path: polygon(0 0%, 25% 8%, 50% 2%, 75% 8%, 100% 0%, 100% 100%, 0 100%); }
}
.bottle__base {
  width: 110px; height: 16px;
  background: linear-gradient(180deg, rgba(78,205,196,0.2), rgba(78,205,196,0.05));
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(78,205,196,0.2);
  border-top: none;
}
.bottle__shadow {
  width: 100px; height: 20px;
  background: radial-gradient(ellipse, rgba(78,205,196,0.3), transparent);
  border-radius: 50%;
  margin-top: 1rem;
  filter: blur(8px);
  animation: shadowPulse 4s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.6; }
  50% { transform: scaleX(0.8); opacity: 0.3; }
}
.bottle__ripple {
  width: 160px; height: 160px;
  border: 1px solid rgba(78,205,196,0.15);
  border-radius: 50%;
  position: absolute;
  bottom: -60px;
  animation: ripple 3s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  padding: 1.2rem 0;
  overflow: hidden;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.trust-item svg { color: var(--aqua); flex-shrink: 0; }
.trust-sep { color: rgba(78,205,196,0.3); font-size: 1.2rem; }

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about { background: var(--pearl); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__card-stack { position: relative; width: 280px; height: 320px; }
.about__card {
  position: absolute;
  width: 240px;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}
.about__card--back {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(78,205,196,0.2);
  top: 40px; right: 0;
  transform: rotate(6deg);
  box-shadow: var(--shadow-lg);
}
.about__card--front {
  background: linear-gradient(135deg, var(--aqua), var(--aqua-light));
  top: 0; left: 0;
  transform: rotate(-3deg);
  box-shadow: var(--shadow-aqua);
}
.about__card--front p { color: var(--navy); font-weight: 600; }
.about__card--back p { color: rgba(255,255,255,0.8); font-weight: 500; }
.about__card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.about__card:hover { transform: rotate(0deg) scale(1.03); }
.about__orb {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(78,205,196,0.08), transparent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about__text { padding-left: 1rem; }
.about__text .section__title { text-align: left; }
.about__text .section__body { text-align: left; margin: 0 0 1.25rem; }
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(78,205,196,0.08);
  border: 1px solid rgba(78,205,196,0.2);
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: var(--transition);
}
.pill:hover {
  background: rgba(78,205,196,0.15);
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════════
   PURITY PROCESS
══════════════════════════════════════════════════════════════ */
.purity {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.purity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(78,205,196,0.08), transparent 60%);
  pointer-events: none;
}
.purity__bg { position: absolute; top: 0; left: 0; right: 0; }
.purity__wave-top svg { width: 100%; height: 120px; fill: var(--pearl); }
.purity .section__header { margin-bottom: 4rem; }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(78,205,196,0.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}
.process__step:hover {
  background: rgba(78,205,196,0.08);
  border-color: rgba(78,205,196,0.3);
  transform: translateY(-6px);
}
.process__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(78,205,196,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.process__step h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.process__step p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}
.process__connector {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  margin-top: 4rem;
  flex-shrink: 0;
}
.process__connector svg { width: 60px; }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════════════════════ */
.products { background: var(--pearl); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(78,205,196,0.3);
}
.product-card--featured {
  border-color: var(--aqua);
  box-shadow: var(--shadow-aqua);
  transform: scale(1.04);
}
.product-card--featured:hover { transform: scale(1.04) translateY(-8px); }
.product-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-light));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.product-card__visual {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.product-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(78,205,196,0.15), transparent 60%);
}
.product-card__info { padding: 2rem; }
.product-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}
.product-card__info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  margin: 0.4rem 0 0.75rem;
}
.product-card__info p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.product-card__features {
  margin-bottom: 1.75rem;
}
.product-card__features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.05);
  font-weight: 500;
}

/* Mini Bottles */
.mini-bottle {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bottleFloat 4s ease-in-out infinite;
}
.mini-bottle--sm .mini-bottle__body { width: 50px; height: 100px; }
.mini-bottle--md .mini-bottle__body { width: 65px; height: 140px; }
.mini-bottle--lg .mini-bottle__body { width: 90px; height: 180px; }
.mini-bottle__body {
  background: linear-gradient(135deg,
    rgba(200,240,238,0.2),
    rgba(78,205,196,0.1),
    rgba(200,240,238,0.15)
  );
  border-radius: 10px;
  border: 1px solid rgba(78,205,196,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(78,205,196,0.1), 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.mini-bottle__body::before {
  content: '';
  position: absolute;
  top: 0; left: 8px;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  border-radius: 3px;
}
.mini-bottle__body::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(78,205,196,0.1), rgba(78,205,196,0.2));
}
.mini-bottle__body span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   MINERALS
══════════════════════════════════════════════════════════════ */
.minerals {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.minerals__bg {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(78,205,196,0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.minerals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.minerals__text .section__title { text-align: left; }
.minerals__text .section__body { text-align: left; margin: 0 0 2rem; }
.minerals__highlight { display: flex; flex-direction: column; gap: 1.25rem; }
.mh-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--pearl);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}
.mh-item:hover {
  border-color: rgba(78,205,196,0.3);
  background: rgba(78,205,196,0.04);
}
.mh-icon { font-size: 1.8rem; flex-shrink: 0; }
.mh-item strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.mh-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.minerals__table-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(78,205,196,0.15);
}
.minerals__table-header {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: rgba(78,205,196,0.12);
  border-bottom: 1px solid rgba(78,205,196,0.15);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}
.minerals__table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.minerals__table-row:hover { background: rgba(78,205,196,0.05); }
.minerals__table-row span:first-child { color: rgba(255,255,255,0.75); font-weight: 500; }
.minerals__table-row span:last-child {
  color: var(--aqua-light);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
}
.minerals__table-row--highlight {
  background: rgba(78,205,196,0.06);
}
.minerals__table-row--highlight span:first-child { color: var(--white); font-weight: 600; }
.minerals__table-footer {
  padding: 1rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  border-top: 1px solid rgba(78,205,196,0.1);
}

/* ══════════════════════════════════════════════════════════════
   WHY NEQUA
══════════════════════════════════════════════════════════════ */
.why { background: var(--pearl); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(78,205,196,0.2);
}
.why-card__icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.why-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   LABEL SHOWCASE
══════════════════════════════════════════════════════════════ */
.label-showcase { background: var(--white); }
.label-showcase__wrap {
  display: flex;
  justify-content: center;
}
.label-display {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.label-panel {
  width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.label-panel:hover { transform: translateY(-8px) rotate(1deg); }
.label-panel--front { background: linear-gradient(160deg, #0A1628, #1B3A6B); }
.label-panel--back { background: linear-gradient(160deg, #112240, #0A1628); }
.label-panel__inner {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: var(--radius-lg);
  height: 100%;
}
.label-logo-area { text-align: center; margin-bottom: 1rem; }
.label-brand {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}
.label-drops { font-size: 1rem; margin-top: 0.25rem; opacity: 0.7; }
.label-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,205,196,0.4), transparent);
  margin: 1rem 0;
}
.label-info p, .label-address p {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 0;
}
.label-address { margin-top: 0.75rem; }
.label-license {
  margin-top: 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aqua-light);
}
.label-crush {
  margin-top: 0.5rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.label-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(78,205,196,0.2);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  text-align: center;
}
.label-specs { margin-bottom: 1rem; }
.label-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.label-spec-row span:first-child { color: rgba(255,255,255,0.65); }
.label-spec-row span:last-child { color: var(--aqua-light); }
.label-spec-row--vol {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(78,205,196,0.2);
}
.label-spec-row--vol span:first-child { color: var(--white); font-weight: 700; }
.label-spec-header {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.5rem;
}
.label-spec-row--em span:first-child { color: var(--white); font-weight: 700; }
.label-storage {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.label-barcode { text-align: center; }
.barcode-lines {
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.8) 0px,
    rgba(255,255,255,0.8) 2px,
    transparent 2px,
    transparent 4px,
    rgba(255,255,255,0.6) 4px,
    rgba(255,255,255,0.6) 5px,
    transparent 5px,
    transparent 8px
  );
  border-radius: 2px;
  margin-bottom: 0.3rem;
}
.barcode-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials { background: var(--pearl); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(10,22,40,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(78,205,196,0.1);
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testi-card__avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--aqua), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-card__author span { font-size: 0.8rem; color: var(--text-light); }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.contact__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--aqua), transparent);
  top: -200px; right: -100px;
}
.contact__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -150px; left: -100px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__info .section__title { text-align: left; }
.contact__info .section__body { text-align: left; margin: 0 0 2.5rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__detail-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact__detail strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.contact__detail p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.contact__form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(78,205,196,0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
}
.form__group { margin-bottom: 1.25rem; }
.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form__group select option { background: var(--navy); color: var(--white); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--aqua);
  background: rgba(78,205,196,0.08);
  box-shadow: 0 0 0 3px rgba(78,205,196,0.1);
}
.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.footer__wave {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
}
.footer__wave svg { width: 100%; height: 80px; fill: rgba(78,205,196,0.04); }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem clamp(1.5rem, 5vw, 4rem) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(78,205,196,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--aqua);
  color: var(--navy);
  border-color: var(--aqua);
}
.footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1.25rem;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid,
  .minerals__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { height: 300px; }
  .products__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .product-card--featured { transform: none; }
  .product-card--featured:hover { transform: translateY(-8px); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { transform: rotate(90deg); margin: 0; }
  .process__step { width: 100%; max-width: 400px; }
}
@media (max-width: 768px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    gap: 3rem;
  }
  .hero__content { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__bottle { margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__text .section__title,
  .about__text .section__body { text-align: center; }
  .about__pills { justify-content: center; }
  .minerals__text .section__title,
  .minerals__text .section__body { text-align: center; }
  .minerals__highlight { align-items: center; }
  .contact__info .section__title,
  .contact__info .section__body { text-align: center; }
  .contact__details { align-items: flex-start; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .label-display { flex-direction: column; align-items: center; }
  .trust-bar__inner { gap: 1rem; }
  .trust-sep { display: none; }
}
@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 1rem; }
  .stat__divider { width: 40px; height: 1px; }
  .contact__form-wrap { padding: 2rem 1.5rem; }
}