/* =============================================
   GELATINE SCULPT™ UK — PINK EDITION
   ============================================= */

:root {
  --pink:         #ec4899;
  --pink-dark:    #db2777;
  --pink-deep:    #be185d;
  --pink-soft:    #f9a8d4;
  --pink-light:   #fce7f3;
  --pink-lighter: #fdf2f8;
  --rose:         #f43f5e;
  --rose-light:   #ffe4e6;
  --peach:        #fff1f2;
  --cream:        #fef7f9;

  --navy:         #1f1023;
  --plum:         #4a1d3f;
  --slate:        #4b3540;
  --muted:        #8b6b7a;
  --border:       #fce7f3;
  --bg-light:     #fdf2f8;
  --white:        #ffffff;

  --font-body:  'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(190,24,93,.06);
  --shadow-md:  0 6px 24px rgba(190,24,93,.10);
  --shadow-lg:  0 16px 48px rgba(190,24,93,.16);
  --shadow-pink:0 8px 28px rgba(236,72,153,.32);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-top: 12px; }
.section-header p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-light);
  padding: 5px 14px;
  border-radius: 99px;
}

/* TYPOGRAPHY */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--slate); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(236,72,153,.40);
}
.btn--secondary {
  background: var(--white);
  color: var(--pink-dark);
  border-color: var(--pink);
}
.btn--secondary:hover {
  background: var(--pink-light);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.btn--gold {
  background: linear-gradient(135deg, var(--rose) 0%, var(--pink-deep) 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(244,63,94,.32);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(244,63,94,.45);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pink-light);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  font-family: var(--font-serif);
}
.nav__logo span { color: var(--pink-dark); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links li a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate);
  transition: color .15s;
}
.nav__links li a:hover { color: var(--pink-dark); }
.nav__cta {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 99px;
  font-weight: 600 !important;
  transition: transform .15s, box-shadow .15s !important;
  box-shadow: 0 4px 14px rgba(236,72,153,.30);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(236,72,153,.45);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--pink-light);
  gap: 4px;
  background: var(--white);
}
.nav__mobile a {
  padding: 10px 0;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid var(--pink-light);
  font-size: .95rem;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 160px 0 96px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(249,168,212,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(244,63,94,.18) 0%, transparent 65%),
    linear-gradient(135deg, var(--cream) 0%, var(--peach) 50%, var(--pink-lighter) 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236,72,153,.10) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: rgba(252,231,243,.8);
  border: 1px solid rgba(236,72,153,.2);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero__badge::before { content: '✨'; }
.hero__headline {
  color: var(--navy);
  margin-bottom: 20px;
}
.hero__headline em {
  font-style: italic;
  color: var(--pink-dark);
  font-family: var(--font-serif);
  font-weight: 600;
}
.hero__sub {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero__stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink-dark);
  font-family: var(--font-serif);
}
.stat-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__ctas .btn--ghost {
  background: var(--white);
  color: var(--pink-dark);
  border-color: var(--pink-light);
}
.hero__ctas .btn--ghost:hover {
  background: var(--pink-light);
}
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust span {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

/* PRODUCT CARD */
.hero__product-card {
  background: linear-gradient(160deg, rgba(255,255,255,.85) 0%, rgba(252,231,243,.5) 100%);
  border: 1px solid rgba(236,72,153,.15);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(16px);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(236,72,153,.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__product-img { margin-bottom: 24px; position: relative; }
.hero__product-img img {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(190,24,93,.25));
  transition: transform .4s ease;
}
.hero__product-img:hover img { transform: translateY(-6px); }
.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
}
.product-bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 24px 40px rgba(190,24,93,.30));
}
.bottle-cap {
  width: 32px;
  height: 44px;
  background: linear-gradient(180deg, #4a1d3f 0%, #1f1023 100%);
  border-radius: 5px 5px 0 0;
}
.bottle-body {
  width: 88px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(252,231,243,.85) 100%);
  border-radius: 10px 10px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset -10px 0 24px rgba(190,24,93,.08), inset 10px 0 16px rgba(255,255,255,.6);
}
.bottle-label {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  width: 66px;
  height: 144px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  box-shadow: 0 4px 12px rgba(190,24,93,.30);
}
.label-brand {
  color: white;
  font-size: .50rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.2;
}
.label-sub {
  color: rgba(255,255,255,.75);
  font-size: .32rem;
  text-align: center;
  line-height: 1.3;
}
.label-accent {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 1px;
  margin-top: 6px;
}
.hero__product-info { border-top: 1px solid var(--pink-light); padding-top: 20px; position: relative; }
.hero__product-name {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 8px;
}
.hero__stars {
  color: var(--pink-dark);
  font-size: .9rem;
}
.hero__stars span {
  color: var(--muted);
  font-size: .82rem;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
  padding: 22px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
}
.trust-icon { font-size: 1.15rem; }

/* =============================================
   SUBPAGE HERO (for inner pages)
   ============================================= */
.subhero {
  padding: 140px 0 72px;
  background:
    radial-gradient(ellipse 70% 60% at 70% 20%, rgba(249,168,212,.30) 0%, transparent 65%),
    linear-gradient(135deg, var(--cream) 0%, var(--peach) 50%, var(--pink-lighter) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subhero__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.subhero__crumbs {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.subhero__crumbs a { color: var(--pink-dark); }
.subhero__crumbs a:hover { text-decoration: underline; }
.subhero h1 { margin-bottom: 20px; }
.subhero h1 em {
  font-style: italic;
  color: var(--pink-dark);
  font-family: var(--font-serif);
  font-weight: 600;
}
.subhero p {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.7;
}

/* =============================================
   PROBLEM / SOLUTION
   ============================================= */
.problem { background: var(--white); }
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem__text .section-label { margin-bottom: 16px; }
.problem__text h2 { margin-bottom: 20px; }
.problem__text p { margin-bottom: 16px; line-height: 1.75; }
.problem__solution-card {
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.problem__solution-card h3 {
  margin-bottom: 24px;
  color: var(--pink-deep);
  font-family: var(--font-serif);
  font-size: 1.4rem;
}
.solution-list { display: flex; flex-direction: column; gap: 20px; }
.solution-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.solution-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.solution-list strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.solution-list p { font-size: .87rem; margin: 0; }

/* =============================================
   HOW IT WORKS / PHASES
   ============================================= */
.how-it-works { background: var(--bg-light); }
.phases { display: flex; flex-direction: column; gap: 2px; }
.phase {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--pink-light);
}
.phase:last-child { border-bottom: none; }
.phase__num {
  font-size: 5.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-family: var(--font-serif);
  text-align: center;
  opacity: .85;
}
.phase__content h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-serif);
  color: var(--navy);
}
.phase__tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-light);
  padding: 4px 12px;
  border-radius: 99px;
  font-family: var(--font-body);
}
.phase__content p { line-height: 1.75; margin-bottom: 18px; }
.phase__content ul { display: flex; flex-direction: column; gap: 8px; }
.phase__content li {
  font-size: .92rem;
  color: var(--slate);
  padding-left: 24px;
  position: relative;
}
.phase__content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pink-dark);
  font-weight: 700;
}

/* =============================================
   FORMULA / INGREDIENTS
   ============================================= */
.formula { background: var(--white); }
.ingredients { display: flex; flex-direction: column; gap: 24px; }
.ingredient {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.ingredient:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ingredient__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  background: var(--pink-light);
}
.ingredient__icon--rose { background: var(--rose-light); }
.ingredient__icon--peach { background: var(--peach); }
.ingredient__icon--cream { background: var(--cream); }
.ingredient__body h3 {
  margin-bottom: 4px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
}
.ingredient__tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 12px;
  display: block;
}
.ingredient__body p { font-size: .92rem; line-height: 1.72; }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison { background: var(--bg-light); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--pink-light); background: var(--white); }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.comparison-table th {
  padding: 18px 20px;
  text-align: center;
  font-weight: 600;
  background: var(--cream);
  border-bottom: 2px solid var(--pink-light);
  color: var(--navy);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.highlight {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
}
.comparison-table td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid var(--pink-light);
  color: var(--slate);
}
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.comparison-table td.highlight {
  background: var(--pink-lighter);
  font-weight: 600;
  color: var(--pink-deep);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--cream); }
.comparison-table tr:hover td.highlight { background: var(--pink-light); }

/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: var(--white); }
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 48px;
}
.review-card {
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-card--featured {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), var(--shadow-md);
  background: linear-gradient(160deg, var(--white) 0%, var(--pink-lighter) 100%);
}
.review__stars { color: var(--pink-dark); letter-spacing: .1em; font-size: 1rem; }
.review-card blockquote {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--slate);
  font-style: italic;
  flex: 1;
}
.review-card blockquote::before { content: '"'; }
.review-card blockquote::after  { content: '"'; }
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.review__author strong { display: block; font-size: .92rem; }
.review__author span  { font-size: .78rem; color: var(--muted); }
.review__result {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 5px 14px;
  border-radius: 99px;
  align-self: flex-start;
}
.reviews__rating-bar {
  border-top: 1px solid var(--pink-light);
  padding-top: 36px;
  display: flex;
  justify-content: center;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
}
.rating-big {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--pink-deep);
  line-height: 1;
  font-family: var(--font-serif);
}
.rating-stars-lg { color: var(--pink-dark); font-size: 1.3rem; margin-bottom: 4px; }
.rating-summary > div > span { font-size: .85rem; color: var(--muted); }

/* =============================================
   CERTIFICATIONS
   ============================================= */
.certifications { background: var(--bg-light); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cert-card {
  text-align: center;
  padding: 36px 22px;
  background: var(--white);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  transition: box-shadow .25s, transform .25s;
}
.cert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.cert-icon { font-size: 2.2rem; margin-bottom: 14px; }
.cert-card h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-serif); }
.cert-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* =============================================
   PRICING / ORDER
   ============================================= */
.order { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 72px;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.pricing-card--popular {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
  transform: translateY(-8px);
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
}
.pricing-card--popular:hover {
  transform: translateY(-11px);
}
.pricing-card--best {
  border-color: var(--pink-deep);
  box-shadow: 0 8px 32px rgba(190,24,93,.20);
}
.pricing-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(236,72,153,.35);
}
.pricing-card__badge--gold {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-deep) 100%);
}
.pricing-card__image {
  background: linear-gradient(160deg, var(--cream) 0%, var(--pink-lighter) 100%);
  border-radius: var(--radius-md);
  margin: -10px -10px 24px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.pricing-card__image img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(190,24,93,.18));
  transition: transform .3s ease;
}
.pricing-card:hover .pricing-card__image img { transform: scale(1.04); }
.pricing-card__header { margin-bottom: 22px; }
.pricing-card__header h3 { font-size: 1.4rem; margin-bottom: 6px; font-family: var(--font-serif); }
.pricing-card__header p { font-size: .87rem; color: var(--muted); }
.pricing-card__price {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-amount { font-size: 2.6rem; font-weight: 800; color: var(--pink-deep); font-family: var(--font-serif); }
.price-per { font-size: .85rem; color: var(--muted); }
.pricing-card__savings {
  font-size: .85rem;
  color: var(--pink-dark);
  font-weight: 600;
  margin-bottom: 26px;
}
.pricing-card__savings s { color: var(--muted); font-weight: 400; margin-right: 4px; }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}
.pricing-card__features li {
  font-size: .89rem;
  color: var(--slate);
}
.pricing-card__total {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 14px;
}
.pricing-card__total span { text-decoration: line-through; }

/* BONUSES */
.order__bonuses {
  background: linear-gradient(160deg, var(--cream) 0%, var(--pink-lighter) 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 56px;
}
.order__bonuses h3 { text-align: center; margin-bottom: 40px; font-size: 1.45rem; font-family: var(--font-serif); }
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bonus {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--pink-light);
}
.bonus-value {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.bonus h4 { margin-bottom: 8px; font-size: 1rem; font-family: var(--font-serif); }
.bonus p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink-dark) 50%, var(--pink) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.guarantee__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.guarantee__badge { display: flex; justify-content: center; }
.guarantee__circle {
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,.15);
  border: 3px solid rgba(255,255,255,.45);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.guarantee__circle span:first-child { font-size: 2.8rem; font-weight: 800; line-height: 1; font-family: var(--font-serif); }
.guarantee__circle span:nth-child(2) { font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.guarantee__circle span:last-child  { font-size: .72rem; opacity: .8; }
.guarantee__text h2 { color: var(--white); margin-bottom: 16px; }
.guarantee__text p { color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 16px; }
.guarantee__text .btn--primary {
  background: var(--white);
  color: var(--pink-deep);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}
.guarantee__text .btn--primary:hover {
  background: var(--cream);
  color: var(--pink-deep);
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 22px 28px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .98rem;
  transition: background .15s;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--pink-lighter); }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--pink-dark);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-body {
  padding: 0 28px 22px;
  border-top: 1px solid var(--pink-light);
  padding-top: 18px;
}
.faq-body p { font-size: .92rem; line-height: 1.75; margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 50%, var(--pink-deep) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(249,168,212,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(236,72,153,.15) 0%, transparent 65%);
}
.final-cta__inner { max-width: 680px; margin: 0 auto; position: relative; }
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta p { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 36px; line-height: 1.7; }
.final-cta .btn--primary {
  background: var(--white);
  color: var(--pink-deep);
  box-shadow: 0 12px 32px rgba(0,0,0,.20);
}
.final-cta .btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.final-cta__trust {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta__trust span {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* =============================================
   CONTENT PAGES (rich text)
   ============================================= */
.content { padding: 64px 0 96px; background: var(--white); }
.content__body { max-width: 760px; margin: 0 auto; }
.content__body h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  color: var(--navy);
}
.content__body h2:first-child { margin-top: 0; }
.content__body h3 {
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: 1.25rem;
  color: var(--pink-deep);
}
.content__body p {
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--slate);
}
.content__body ul,
.content__body ol {
  margin: 0 0 22px 1.5rem;
}
.content__body li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--slate);
}
.content__body ul li { list-style: disc; }
.content__body ol li { list-style: decimal; }
.content__body strong { color: var(--navy); }
.content__body a { color: var(--pink-dark); text-decoration: underline; }
.content__body a:hover { color: var(--pink-deep); }
.content__body blockquote {
  border-left: 4px solid var(--pink);
  background: var(--pink-lighter);
  padding: 20px 28px;
  margin: 24px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--slate);
}
.content__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.content__body th {
  background: var(--pink-light);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}
.content__body td {
  padding: 12px 16px;
  border-top: 1px solid var(--pink-light);
  font-size: .9rem;
}
.content__highlight {
  background: linear-gradient(160deg, var(--cream) 0%, var(--pink-lighter) 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.content__highlight h3 { margin-top: 0; color: var(--pink-deep); }
.content__highlight p:last-child { margin-bottom: 0; }
.content__cta {
  background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--cream) 100%);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 48px 0;
}
.content__cta h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 12px; color: var(--navy); }
.content__cta p { margin-bottom: 24px; color: var(--slate); }

/* =============================================
   REVIEWS PAGE — extended grid
   ============================================= */
.reviews-page__filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 99px;
  background: var(--white);
  border: 1px solid var(--pink-light);
  font-size: .85rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
}
.filter-chip.active,
.filter-chip:hover {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: var(--white);
  border-color: transparent;
}
.reviews-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-info { padding: 32px; background: linear-gradient(160deg, var(--cream) 0%, var(--pink-lighter) 100%); border-radius: var(--radius-lg); border: 1px solid var(--pink-light); }
.contact-info h3 { margin-bottom: 18px; font-family: var(--font-serif); }
.contact-info p { margin-bottom: 14px; }
.contact-info strong { color: var(--navy); display: block; }
.contact-form { padding: 32px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--pink-light); box-shadow: var(--shadow-sm); }
.contact-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy);
  background: var(--cream);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(180deg, #1f1023 0%, #0d0612 100%);
  padding-top: 72px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-dark) 50%, var(--pink-deep) 100%);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-serif);
}
.footer__logo span { color: var(--pink-soft); }
.footer__brand > p {
  color: rgba(255,255,255,.5);
  font-size: .87rem;
  margin: 14px 0 20px;
  line-height: 1.65;
}
.footer__company {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}
.footer__company strong { color: rgba(255,255,255,.7); }
.footer__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  color: var(--pink-soft);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.footer__col a {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  transition: color .15s;
}
.footer__col a:hover { color: var(--pink-soft); }
.footer__bottom { padding: 28px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer__bottom p {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  margin: 0;
}
.footer__disclaimer {
  max-width: 100%;
  margin: 0 auto;
  font-size: .72rem !important;
  line-height: 1.6;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 120px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__stats { gap: 24px; }
  .hero__ctas { flex-direction: column; }

  .subhero { padding: 120px 0 56px; }

  .trust-bar__inner { justify-content: center; gap: 14px 24px; }

  .problem__inner { grid-template-columns: 1fr; gap: 40px; }
  .phase { grid-template-columns: 90px 1fr; gap: 20px; padding: 32px 0; }
  .phase__num { font-size: 3.8rem; }

  .reviews__grid,
  .reviews-page__grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--popular { transform: none; }

  .bonuses-grid { grid-template-columns: 1fr; }
  .order__bonuses { padding: 36px 24px; }

  .guarantee__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .guarantee__badge { justify-content: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  .content__cta { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 14px; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .phase { grid-template-columns: 1fr; }
  .phase__num { font-size: 2.8rem; text-align: left; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .final-cta__trust { flex-direction: column; gap: 10px; }
  .ingredient { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 24px; }
}
