/* ================================================================
   MAUKOA — REDESIGN
   Aesthetic: Tropical Luxury Wellness
   Palette: White · Silver · Metallic · Ivory · Tropical Green ·
            Azure · Mint · Pastel Azure
   Typography: Cormorant Garamond + Nunito
   ================================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Base surfaces */
  --white:       #ffffff;
  --ivory:       #f7faf7;
  --ivory-warm:  #f4f9f4;
  --surface-mint:#f0fbf7;
  --surface-az:  #eaf7fd;

  /* Silver / Metallic */
  --silver-pale: #edf3f5;
  --silver:      #c4d8de;
  --silver-mid:  #9ab6be;
  --silver-dk:   #6e8e96;
  --metallic-grad: linear-gradient(135deg, #daeef4 0%, #f0f8fb 45%, #c8e0e8 100%);
  --shimmer:     linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.7) 50%, transparent 60%);

  /* Tropical Green */
  --tg:          #1e7a5c;
  --tg-mid:      #2d9b74;
  --tg-lt:       #4db88a;
  --tg-pale:     #c8eede;
  --tg-ultra:    #e4f8f0;

  /* Azure */
  --az:          #3ab8d4;
  --az-mid:      #5dc8e2;
  --az-lt:       #7cd4e8;
  --az-pale:     #caf0f8;
  --az-ultra:    #e8f7fd;

  /* Mint */
  --mint:        #5dbfaa;
  --mint-lt:     #8ed4c4;
  --mint-pale:   #d4f2ec;
  --mint-ultra:  #ecfaf6;

  /* Text */
  --ink:         #152e26;
  --ink-mid:     #2d5047;
  --ink-soft:    #4a7067;
  --ink-muted:   #7a9990;

  /* Borders */
  --bdr:         rgba(94,191,170,0.2);
  --bdr-silver:  rgba(196,216,222,0.5);
  --bdr-tg:      rgba(30,122,92,0.2);

  /* Gradients */
  --grad-main:   linear-gradient(135deg, var(--tg) 0%, var(--az) 100%);
  --grad-soft:   linear-gradient(135deg, var(--tg-pale) 0%, var(--az-pale) 100%);
  --grad-mint-az:linear-gradient(135deg, var(--mint-pale) 0%, var(--az-pale) 100%);
  --grad-text:   linear-gradient(135deg, var(--tg) 0%, var(--az) 100%);

  /* Shadows */
  --sh-sm:   0 2px 12px rgba(30,122,92,0.08);
  --sh-md:   0 8px 32px rgba(30,122,92,0.1);
  --sh-lg:   0 20px 60px rgba(30,122,92,0.14);
  --sh-glow: 0 0 40px rgba(58,184,212,0.18);
  --sh-silver: 0 4px 20px rgba(154,182,190,0.25);

  /* Geometry */
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 100px;

  /* Layout */
  --max-w: 1180px;
  --sxl: 100px;
  --slg: 80px;
  --smd: 60px;

  --tr: 0.28s 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; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
em { font-style: italic; }

/* Gradient text */
.g-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ── Global Helpers ──────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.sec-lbl {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tg);
  margin-bottom: 12px;
}
.sec-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head__p { font-size: 1rem; color: var(--ink-soft); max-width: 56ch; margin: 16px auto 0; }

/* Wave separators */
.wave-sep { line-height: 0; }
.wave-sep svg { display: block; width: 100%; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: var(--r-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-main);
  color: white;
  box-shadow: 0 6px 24px rgba(30,122,92,0.28), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-main::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--shimmer);
  transition: left 0.5s ease;
}
.btn-main:hover::after { left: 100%; }
.btn-main:hover {
  box-shadow: 0 10px 32px rgba(30,122,92,0.35);
  transform: translateY(-2px);
}
.btn-main.btn-full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: var(--r-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--tg);
  border: 2px solid var(--tg);
  transition: var(--tr);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--tg-ultra);
  border-color: var(--tg-mid);
}

.btn-silver {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: var(--r-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--metallic-grad);
  color: var(--ink);
  border: 1px solid var(--silver);
  box-shadow: var(--sh-silver), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: var(--tr);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-silver::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--shimmer);
  transition: left 0.5s ease;
}
.btn-silver:hover::after { left: 100%; }
.btn-silver:hover { box-shadow: 0 8px 28px rgba(154,182,190,0.4); transform: translateY(-2px); }

/* Tags */
.tag-badge {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  background: var(--grad-soft);
  color: var(--tg);
  border: 1px solid var(--bdr-tg);
  margin-bottom: 20px;
  width: fit-content;
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--bdr-silver);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-mid);
  box-shadow: var(--sh-sm);
}
.chip svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══ HEADER ════════════════════════════════════════════════ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(94,191,170,0.15);
  transition: box-shadow 0.2s;
}
.hdr.scrolled { box-shadow: 0 2px 24px rgba(30,122,92,0.08); }

.hdr__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.hdr__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr__logomark { width: 34px; height: 34px; flex-shrink: 0; }
.hdr__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hdr__nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.hdr__link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--tr);
}
.hdr__link:hover { color: var(--tg); }
.hdr__cta { margin-left: 12px; padding: 10px 22px; font-size: 0.8rem; }

.hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  margin-left: auto;
}
.hdr__burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--tr); }
.hdr__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(94,191,170,0.15);
  gap: 4px;
}
.mobile-link {
  display: block;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--bdr);
}

/* ═══ HERO ══════════════════════════════════════════════════ */
.hero {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  padding: var(--slg) 0 0;
  padding-bottom: 0;
}

/* Ambient blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__blob--a {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(93,191,170,0.18) 0%, transparent 70%);
}
.hero__blob--b {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(58,184,212,0.15) 0%, transparent 70%);
}
.hero__blob--c {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,238,222,0.3) 0%, transparent 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Image frame */
.hero__frame {
  position: relative;
}
.hero__frame-ring {
  position: absolute;
  inset: -16px;
  border-radius: var(--r-xl);
  border: 2px dashed rgba(93,191,170,0.3);
  pointer-events: none;
  animation: spin-slow 24s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero__img {
  border-radius: var(--r-xl);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(93,191,170,0.1);
  position: relative;
}

.hero__pill {
  position: absolute;
  bottom: 28px; left: -24px;
  background: white;
  border: 1px solid var(--bdr-tg);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tg);
  box-shadow: var(--sh-md);
  letter-spacing: 0.05em;
}
.hero__pill svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero__badge {
  position: absolute;
  top: 28px; right: -20px;
  background: var(--grad-main);
  border-radius: var(--r);
  padding: 14px 20px;
  text-align: center;
  color: white;
  box-shadow: var(--sh-md);
}
.hero__badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.hero__badge span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }

/* Content side */
.hero__h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero__acts { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__chips { display: flex; gap: 8px; flex-wrap: wrap; }

/* Hero wave */
.hero__wave { line-height: 0; margin-top: var(--slg); }
.hero__wave svg { display: block; width: 100%; }

/* ═══ TRUST STRIP ════════════════════════════════════════════ */
.tstrip {
  background: var(--surface-mint);
  border-top: 1px solid var(--tg-pale);
  border-bottom: 1px solid var(--tg-pale);
}
.tstrip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 18px 28px;
}
.tstrip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.tstrip__item svg { width: 16px; height: 16px; flex-shrink: 0; }
.tstrip__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

/* ═══ FOR WHOM ═══════════════════════════════════════════════ */
.whom {
  padding: var(--slg) 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.whom__blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(58,184,212,0.07) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Stacked images */
.whom__visual { position: relative; height: 480px; overflow: visible; }
.whom__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.whom__ring--out {
  inset: -20px;
  border: 1.5px dashed rgba(93,191,170,0.25);
  border-radius: var(--r-xl);
  animation: spin-slow 30s linear infinite reverse;
}
.whom__ring--in {
  inset: -8px;
  border: 1px solid rgba(58,184,212,0.15);
  border-radius: var(--r-xl);
}
.whom__main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.whom__sec {
  position: absolute;
  bottom: 20px; right: 0;
  width: 46%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  border: 3px solid white;
}

.whom__txt .sec-h2 { margin-bottom: 16px; }
.whom__intro { font-size: 1rem; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.8; }

/* Checklist */
.cl { display: flex; flex-direction: column; gap: 14px; }
.cl li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.96rem; color: var(--ink-mid); line-height: 1.65; }
.cl__ico {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--tg-ultra);
  border: 1.5px solid var(--tg-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cl__ico svg { width: 12px; height: 12px; }
.cl li strong { color: var(--ink); }

/* ═══ BENEFITS ══════════════════════════════════════════════ */
.benefits {
  padding: var(--slg) 0;
  background: white;
}
.ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ben-card {
  padding: 32px 26px;
  border-radius: var(--r);
  background: white;
  border: 1px solid var(--bdr-silver);
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}
.ben-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity var(--tr);
}
.ben-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); border-color: var(--bdr-tg); }
.ben-card:hover::before { opacity: 1; }
.ben-ico { margin-bottom: 18px; }
.ben-ico svg { width: 48px; height: 48px; }
.ben-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); }
.ben-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; }

/* ═══ PRODUCT ═══════════════════════════════════════════════ */
.product {
  padding: var(--slg) 0;
  background: var(--surface-mint);
  position: relative;
  overflow: hidden;
}
.product__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.product__blob--1 {
  width: 480px; height: 480px;
  left: -160px; top: -160px;
  background: radial-gradient(circle, rgba(93,191,170,0.2) 0%, transparent 65%);
}
.product__blob--2 {
  width: 360px; height: 360px;
  right: -100px; bottom: -80px;
  background: radial-gradient(circle, rgba(58,184,212,0.15) 0%, transparent 65%);
}
.product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Concentric rings stage */
.product__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}
.product__ring {
  position: absolute;
  border-radius: 50%;
}
.product__ring--a {
  width: 400px; height: 400px;
  border: 1px dashed rgba(93,191,170,0.25);
  animation: spin-slow 20s linear infinite;
}
.product__ring--b {
  width: 300px; height: 300px;
  border: 1.5px solid rgba(58,184,212,0.2);
  animation: spin-slow 15s linear infinite reverse;
}
.product__ring--c {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,238,222,0.5) 0%, transparent 70%);
  filter: blur(20px);
}
.product__img {
  position: relative;
  max-width: 320px;
  width: 100%;
  z-index: 2;
  filter: drop-shadow(0 24px 48px rgba(30,122,92,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.product__info .sec-h2 { margin-bottom: 16px; }
.product__desc { font-size: 0.97rem; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.8; }
.product__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bdr-silver);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--bdr-silver);
  margin-bottom: 32px;
}
.pspec {
  background: white;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pspec__k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tg);
}
.pspec__v { font-size: 0.9rem; color: var(--ink); font-weight: 600; }

/* ═══ LIFESTYLE ══════════════════════════════════════════════ */
.lifestyle {
  padding: var(--slg) 0;
  background: var(--surface-az);
}
.lf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.lf-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--bdr-silver);
  transition: box-shadow var(--tr), transform var(--tr);
}
.lf-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.lf-card--mid { transform: translateY(-12px); }
.lf-card--mid:hover { transform: translateY(-16px); }

.lf-card__img { aspect-ratio: 16/10; overflow: hidden; }
.lf-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lf-card:hover .lf-card__img img { transform: scale(1.07); }

.lf-card__body { padding: 28px; }
.lf-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}
.lf-card__body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.lf-card__body p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.75; }

/* ═══ WELLNESS ══════════════════════════════════════════════ */
.wellness {
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
}
.wellness__fg {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wellness__fg--1 {
  width: 500px; height: 500px;
  top: -150px; left: -150px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
}
.wellness__fg--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(58,184,212,0.2) 0%, transparent 65%);
}
.wellness__layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.wellness__visual { position: relative; overflow: hidden; }
.wellness__visual img { width: 100%; height: 100%; object-fit: cover; }
.wellness__visual-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(30,122,92,0.6) 100%);
}
.wellness__txt { padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; }
.wellness__txt p { color: rgba(255,255,255,0.8); font-size: 0.97rem; margin-bottom: 14px; line-height: 1.8; }
.well-stats { display: flex; gap: 16px; margin: 28px 0 36px; }
.well-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r);
  padding: 14px 20px;
  min-width: 76px;
}
.well-stat strong { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 800; color: white; line-height: 1; }
.well-stat span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ═══ REVIEWS ════════════════════════════════════════════════ */
.reviews {
  padding: var(--slg) 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.reviews__bg {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(200,238,222,0.2) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.rev-card {
  padding: 32px 26px;
  border-radius: var(--r);
  background: white;
  border: 1px solid var(--bdr-silver);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--tr);
}
.rev-card:hover { box-shadow: var(--sh-md); }
.rev-card--feat {
  background: var(--grad-main);
  border: none;
  box-shadow: var(--sh-lg);
  position: relative;
}
.rev-qdeco {
  position: absolute;
  top: 12px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
}
.rev-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.rev-stars svg { width: 14px; height: 14px; }
.rev-card blockquote {
  font-style: italic;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 22px;
  position: relative;
}
.rev-card--feat blockquote { color: rgba(255,255,255,0.85); }
.rev-aut { display: flex; align-items: center; gap: 12px; }
.rev-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1.5px solid var(--bdr-tg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tg);
  flex-shrink: 0;
}
.rev-av--lt { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: white; }
.rev-aut > div { display: flex; flex-direction: column; }
.rev-aut strong { font-size: 0.9rem; }
.rev-aut span { font-size: 0.77rem; color: var(--ink-muted); }

/* ═══ ORDER ══════════════════════════════════════════════════ */
.order {
  padding: var(--slg) 0;
  background: var(--ivory-warm);
  position: relative;
  overflow: hidden;
}
.order__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(93,191,170,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(58,184,212,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.order__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.order__left .sec-h2 { margin-bottom: 16px; }
.order__desc { font-size: 0.97rem; color: var(--ink-soft); margin-bottom: 28px; line-height: 1.8; }
.order__perks { display: flex; flex-direction: column; gap: 14px; }
.order__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-mid);
  font-weight: 600;
}
.perk-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-main);
  flex-shrink: 0;
}

.order__card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--bdr-silver);
}
.order__card-hd {
  background: var(--grad-main);
  padding: 28px 32px;
}
.order__card-hd h3 { color: white; font-size: 1.25rem; margin-bottom: 4px; }
.order__card-hd p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

.order__form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fi-row { display: flex; flex-direction: column; gap: 6px; }
.fi-lbl { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mid); }
.fi-inp {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--bdr-silver);
  border-radius: var(--r-sm);
  background: var(--ivory);
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
  -webkit-appearance: none;
}
.fi-inp:focus { outline: none; border-color: var(--tg); box-shadow: 0 0 0 3px rgba(30,122,92,0.1); }
.fi-sel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a7067' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.fi-check-row { display: flex; align-items: flex-start; gap: 10px; }
.fi-chk { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--tg); cursor: pointer; }
.fi-chk-lbl { font-size: 0.8rem; color: var(--ink-muted); line-height: 1.6; }
.fi-chk-lbl a { color: var(--tg); text-decoration: underline; }
.fi-note { font-size: 0.75rem; color: var(--ink-muted); text-align: center; }
.fi-note a { color: var(--tg); text-decoration: underline; }

/* ═══ FAQ ════════════════════════════════════════════════════ */
.faq {
  padding: var(--slg) 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.faq__orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(93,191,170,0.08) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.faq__wrap { max-width: 760px; position: relative; z-index: 1; }
.faq-list { display: flex; flex-direction: column; margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--bdr-silver); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color var(--tr);
}
.faq-btn:hover { color: var(--tg); }
.faq-btn[aria-expanded="true"] { color: var(--tg); }
.faq-arr {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--tg-ultra);
  border: 1px solid var(--tg-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tg);
  transition: transform var(--tr), background var(--tr);
}
.faq-btn[aria-expanded="true"] .faq-arr { transform: rotate(180deg); background: var(--tg); color: white; }
.faq-arr svg { width: 16px; height: 16px; }
.faq-ans { padding-bottom: 22px; }
.faq-ans p { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.8; }
.faq-ans a { color: var(--tg); text-decoration: underline; }

/* ═══ CONTACT ════════════════════════════════════════════════ */
.contact {
  padding: var(--slg) 0;
  background: var(--surface-mint);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact__info > p { font-size: 0.97rem; color: var(--ink-soft); margin-bottom: 32px; line-height: 1.8; }
.ci-list { display: flex; flex-direction: column; gap: 20px; }
.ci { display: flex; align-items: flex-start; gap: 16px; }
.ci__ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: white;
  border: 1px solid var(--bdr-silver);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci__ico svg { width: 18px; height: 18px; }
.ci div { display: flex; flex-direction: column; gap: 2px; padding-top: 6px; }
.ci strong { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid); }
.ci a, .ci span { font-size: 0.93rem; color: var(--ink-soft); }
.ci a:hover { color: var(--tg); }

.contact__panels { display: flex; flex-direction: column; gap: 18px; }
.ct-panel {
  background: white;
  border-radius: var(--r);
  padding: 26px;
  border: 1px solid var(--bdr-silver);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--tr);
}
.ct-panel:hover { box-shadow: var(--sh-md); }
.ct-panel__ico svg { width: 40px; height: 40px; }
.ct-panel h3 { font-size: 1.05rem; }
.ct-panel p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.7; }

/* ═══ FOOTER ═════════════════════════════════════════════════ */
.ftr {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
}
.ftr__body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 28px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.ftr__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.38); line-height: 1.7; margin-top: 12px; }
.ftr__col { display: flex; flex-direction: column; gap: 10px; }
.ftr__col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-lt);
  margin-bottom: 4px;
}
.ftr__col a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--tr); }
.ftr__col a:hover { color: var(--mint-lt); }
.ftr__base {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.ftr__base p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.ftr__disc { font-size: 0.76rem; color: rgba(255,255,255,0.22); line-height: 1.7; margin-top: 8px; }
.ftr__disc a { color: rgba(255,255,255,0.38); text-decoration: underline; }

/* ═══ LEGAL PAGES ════════════════════════════════════════════ */
.legal-page { max-width: 800px; margin: 0 auto; padding: 80px 28px; }
.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.legal-page .legal-date { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 48px; }
.legal-page h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--ink); }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 20px; }
.legal-page a { color: var(--tg); text-decoration: underline; }

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  background: var(--ivory);
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 2px solid var(--bdr-tg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.success-icon svg { width: 36px; height: 36px; }
.success-page h1 { font-size: 2rem; margin-bottom: 16px; }
.success-page p { font-size: 1rem; color: var(--ink-soft); max-width: 50ch; margin: 0 auto 28px; line-height: 1.75; }

/* ═══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --slg: 64px; --smd: 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__frame { max-width: 420px; margin: 0 auto; }
  .hero__frame-ring { display: none; }
  .hero__pill { left: 0; }
  .hero__badge { right: 0; }
  .whom__grid { grid-template-columns: 1fr; gap: 40px; }
  .whom__visual { height: 320px; }
  .ben-grid { grid-template-columns: repeat(2, 1fr); }
  .product__layout { grid-template-columns: 1fr; gap: 48px; }
  .product__stage { height: 360px; }
  .product__ring--a { width: 320px; height: 320px; }
  .product__ring--b { width: 240px; height: 240px; }
  .product__img { max-width: 240px; }
  .lf-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .lf-card--mid { transform: none; }
  .wellness__layout { grid-template-columns: 1fr; }
  .wellness__visual { aspect-ratio: 16/8; }
  .wellness__visual-tint { background: linear-gradient(to bottom, transparent 50%, rgba(30,122,92,0.5) 100%); }
  .wellness__txt { padding: 48px 40px; }
  .rev-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .order__layout { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .ftr__body { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --slg: 48px; }
  .hdr__nav, .hdr__cta { display: none; }
  .hdr__burger { display: flex; }
  .hdr__mobile.open { display: flex; }
  .ben-grid { grid-template-columns: 1fr; }
  .hero__acts { flex-direction: column; }
  .hero__acts .btn-main, .hero__acts .btn-outline { text-align: center; justify-content: center; }
  .well-stats { flex-wrap: wrap; gap: 10px; }
  .product__specs { grid-template-columns: 1fr 1fr; }
  .ftr__body { grid-template-columns: 1fr; gap: 28px; }
  .ftr__col { display: none; }
  .ftr__brand { display: block; }
}

@media (max-width: 480px) {
  .hero__chips { flex-direction: column; }
  .order__form { padding: 22px; }
  .order__card-hd { padding: 22px; }
  .tstrip__sep { display: none; }
}
