/* ===========================
   HYDRL ELECTROLYTES — STYLES
   Redesign: Women 40-55, warm & elegant
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

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

:root {
  --blue:    #5B7A8A;
  --blue-dk: #3E5A68;
  --blue-lt: #8AAABB;
  --coral:   #E8A020;
  --coral-lt:#F0BC60;
  --coral-dk:#C47E10;
  --lavender:#9B6B9B;
  --lav-lt:  #C4A0C4;
  --lav-dk:  #7A4E7A;
  --cream:   #FAF7F2;
  --cream-dk:#F0EAE0;
  --warm-wh: #FDFBF8;
  --text:    #2C2C2C;
  --text-md: #5A5A5A;
  --text-lt: #8A8A8A;
  --white:   #FFFFFF;
  --border:  rgba(91,122,138,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

h4, h5, .label-font {
  font-family: 'Lato', sans-serif;
}

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

/* ---- UTILITY ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--warm-wh); }
.section--cream-dk { background: var(--cream-dk); }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 40px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.tag--lav {
  color: var(--lavender);
  border-color: var(--lavender);
}

.tag--blue {
  color: var(--blue);
  border-color: var(--blue);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--coral);
}

.section-title .lav { color: var(--lavender); }
.section-title .blue { color: var(--blue); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-md);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.8;
  font-weight: 300;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- DIVIDER ---- */
.divider {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--coral), var(--lavender));
  margin: 0 0 32px;
}

.divider--center { margin: 0 auto 32px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  border: none;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,114,58,0.35);
}

.btn-primary:hover {
  background: var(--coral-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,114,58,0.45);
}

.btn-amazon {
  background: var(--coral);
  color: var(--white);
  font-size: 0.92rem;
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(232,114,58,0.35);
}

.btn-amazon:hover {
  background: var(--coral-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,114,58,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lav {
  background: var(--lavender);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(155,107,155,0.3);
}

.btn-lav:hover {
  background: var(--lav-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155,107,155,0.4);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.nav__logo span {
  font-style: italic;
  color: var(--coral);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-md);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--coral);
}

.nav__links .btn-amazon {
  font-size: 0.75rem;
  padding: 10px 22px;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--cream);
}

/* Soft decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,107,155,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,114,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__line {
  width: 40px; height: 2px;
  background: var(--coral);
  border-radius: 1px;
}

.hero__eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.1;
}

.hero__title em {
  font-style: italic;
  color: var(--coral);
}

.hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--lavender);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__body {
  font-size: 1.05rem;
  color: var(--text-md);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero__trust-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
  background: var(--cream-dk);
  border-radius: 30px;
  padding: 5px 14px;
}

/* Hero visual side */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__product-card {
  background: var(--white);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(91,122,138,0.15), 0 4px 16px rgba(91,122,138,0.08);
  position: relative;
  max-width: 340px;
  width: 100%;
}

.hero__product-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--coral-lt), var(--lav-lt), var(--blue-lt));
  z-index: -1;
  opacity: 0.4;
}

.hero__product-icon { font-size: 5rem; margin-bottom: 16px; }

.hero__product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}

.hero__product-flavor {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.hero__product-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__stat {
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 10px;
}

.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-top: 3px;
}

.hero__product-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-md);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--blue);
  padding: 22px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.trust-item__icon { font-size: 1.3rem; }

.trust-item__text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---- BENEFIT CARDS ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--lavender));
  opacity: 0;
  transition: opacity 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(91,122,138,0.12);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-card__icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}

.benefit-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 0.92rem;
  color: var(--text-md);
  line-height: 1.75;
  font-weight: 300;
}

/* ---- QUOTE / PULL QUOTE ---- */
.pull-quote {
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  padding: 80px 0;
  text-align: center;
}

.pull-quote__mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 0.6;
  color: rgba(255,255,255,0.2);
  margin-bottom: 20px;
  display: block;
}

.pull-quote__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.pull-quote__attr {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---- HOW TO USE ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.step {
  padding: 48px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-right: none; }

.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dk);
  line-height: 1;
  margin-bottom: 16px;
}

.step__icon { font-size: 2rem; margin-bottom: 12px; display: block; }

.step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-md);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, #F5EDE6 0%, #EDE5F0 50%, #E8F0F5 100%);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  color: var(--text);
}

.cta-band__title em { color: var(--coral); }

.cta-band__sub {
  color: var(--text-md);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ---- ABOUT PAGE ---- */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,107,155,0.1) 0%, transparent 70%);
}

.page-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 20px;
  line-height: 1.05;
}

.page-hero__sub {
  font-size: 1.1rem;
  color: var(--text-md);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

/* Founder section */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.founder-visual {
  position: relative;
}

.founder-card {
  background: var(--white);
  border-radius: 24px;
  padding: 52px 44px;
  box-shadow: 0 12px 48px rgba(91,122,138,0.12);
  text-align: center;
  position: relative;
}

.founder-card::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-lt), var(--lav-lt));
  opacity: 0.3;
  z-index: -1;
}

.founder-card__avatar { font-size: 5rem; margin-bottom: 16px; }

.founder-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.founder-card__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.founder-card__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-md);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.founder-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.founder-text p {
  color: var(--text-md);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Diff cards */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.diff-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border-top: 4px solid var(--coral);
  box-shadow: 0 4px 20px rgba(91,122,138,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.diff-card:nth-child(2) { border-top-color: var(--lavender); }
.diff-card:nth-child(3) { border-top-color: var(--blue); }
.diff-card:nth-child(4) { border-top-color: var(--coral-lt); }

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(91,122,138,0.12);
}

.diff-card__icon { font-size: 2rem; margin-bottom: 14px; display: block; }

.diff-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.diff-card__text {
  font-size: 0.9rem;
  color: var(--text-md);
  line-height: 1.75;
  font-weight: 300;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.value-card { padding: 40px 24px; }

.value-card__icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }

.value-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 0.9rem;
  color: var(--text-md);
  line-height: 1.75;
  font-weight: 300;
}

/* ---- BENEFITS PAGE ---- */
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.science-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(91,122,138,0.07);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.science-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(91,122,138,0.12);
}

.science-card__icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }

.science-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.science-card__text {
  font-size: 0.92rem;
  color: var(--text-md);
  line-height: 1.8;
  font-weight: 300;
}

/* Ingredients */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ing-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 14px;
  padding: 26px 24px;
  border: 1px solid var(--border);
}

.ing-card__icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }

.ing-card__dose {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 2px;
}

.ing-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.ing-card__text {
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.65;
  font-weight: 300;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 26px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(91,122,138,0.12);
}

.audience-card__icon { font-size: 2.8rem; margin-bottom: 18px; display: block; }

.audience-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.audience-card__text {
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.75;
  font-weight: 300;
}

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(91,122,138,0.07);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
}

.compare-table thead tr {
  background: var(--blue);
}

.compare-table thead th {
  padding: 18px 22px;
  text-align: left;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--cream); }

.compare-table tbody td {
  padding: 16px 22px;
  color: var(--text-md);
  font-weight: 300;
}

.compare-table tbody td:first-child {
  color: var(--text);
  font-weight: 700;
}

.check { color: #4CAF50; font-size: 1.1rem; }
.cross { color: #E57373; font-size: 1.1rem; }

/* ---- FOOTER ---- */
.footer {
  background: var(--text);
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer__logo span { color: var(--coral); font-style: italic; }

.footer__tagline {
  color: rgba(250,247,242,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(250,247,242,0.55);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid rgba(250,247,242,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  color: rgba(250,247,242,0.35);
  font-size: 0.8rem;
  font-weight: 300;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__product-card { max-width: 400px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .science-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .trust-bar__inner { gap: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.4rem; }

  /* Mobile nav */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(250,247,242,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; color: var(--text); }
  .nav__toggle { display: flex; z-index: 100; position: relative; }
}
