/* ==========================================
   Youngness Institute — visual system (warm editorial)
   ========================================== */

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

:root {
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  /* Ink / terracotta / brass / sage — warm paper surfaces */
  --navy: #1e3d52; --navy-deep: #0f2433; --navy-light: #2f5a78;
  --red: #c45c3e; --red-dark: #a34a31; --red-deep: #6d3220;
  --green: #0f766e; --green-dark: #0d9488; --green-deep: #115e59;
  --gold: #b8952f; --gold-dark: #9a7d26; --gold-deep: #6b5618;
  --cream: #faf6ef; --bg: #fffcf8; --bg-light: #f3ebe1; --bg-soft: #e8dfd2; --border: #ddd2c4;
  --text: #171412; --text-light: #5a534c; --text-muted: #7a7268;
  --shadow-sm: 0 2px 8px rgba(23, 20, 18, 0.06);
  --shadow-md: 0 8px 24px rgba(23, 20, 18, 0.08);
  --shadow-card: 0 16px 48px rgba(15, 36, 51, 0.1);
  --shadow-lg: 0 28px 64px rgba(15, 36, 51, 0.14);
  --glow-gold: 0 0 48px rgba(184, 149, 47, 0.18);
  --radius-sm: 10px; --radius: 14px; --radius-lg: 22px; --radius-xl: 32px;
  --grid-color: rgba(30, 61, 82, 0.05);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text); background: var(--bg); line-height: 1.65;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

::selection {
  background: rgba(184, 149, 47, 0.35);
  color: var(--navy-deep);
}

.btn:focus-visible,
.sticky-bar__btn:focus-visible,
.faq__question:focus-visible,
.popup-notif__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: none;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Highlight helpers ---------- */
.hl-green { color: var(--green); }
.hl-gold { color: var(--gold); }
.hl-gold-box { display: inline-block; background: var(--gold); color: var(--navy-deep); padding: 2px 14px; border-radius: 6px; font-weight: 800; }

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-header--light .section-title,
.section-header--light .section-sub { color: #fff; }

.section-label {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--red-dark); margin-bottom: 14px; padding: 8px 16px;
  background: rgba(196, 92, 62, 0.1); border-radius: 999px; border: 1px solid rgba(196, 92, 62, 0.15);
}
.section-label--gold { color: var(--gold-deep); background: rgba(184, 149, 47, 0.14); border-color: rgba(184, 149, 47, 0.22); }
.section-title {
  font-family: var(--font-display); font-size: 42px; font-weight: 700;
  color: var(--navy-deep); line-height: 1.15; letter-spacing: -0.02em;
}
.section-title--light { color: #fff; }
.section-sub { margin-top: 16px; font-size: 17px; color: var(--text-light); line-height: 1.6; }
.section-sub--light { color: rgba(255,255,255,0.72); }

.section-header .section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--red));
  opacity: 0.85;
}
.section-header--light .section-title::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.35), var(--gold), rgba(255,255,255,0.35));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 16px; border: none;
  border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  padding: 14px 24px; line-height: 1; white-space: nowrap;
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth), color 0.25s var(--ease-smooth), border-color 0.25s var(--ease-smooth);
}
.btn--full { width: 100%; }
.btn--xl { padding: 20px 40px; font-size: 18px; border-radius: 12px; }
.btn--red {
  background: linear-gradient(165deg, #d66f4f 0%, var(--red) 45%, var(--red-dark) 100%);
  color: #fff; box-shadow: 0 8px 24px rgba(196, 92, 62, 0.35);
}
.btn--red:hover {
  background: linear-gradient(165deg, #e07d5c 0%, var(--red-dark) 100%);
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196, 92, 62, 0.42);
}
.btn--red:active { transform: translateY(0); }
.btn--header {
  background: linear-gradient(165deg, #d66f4f 0%, var(--red) 100%);
  color: #fff; padding: 10px 20px; font-size: 14px; box-shadow: 0 4px 16px rgba(196, 92, 62, 0.32);
}
.btn--header:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--loading { opacity: 0.7; pointer-events: none; }

/* ==========================================
   1. URGENCY BAR
   ========================================== */
.urgency-bar {
  background: linear-gradient(90deg, var(--navy-deep) 0%, #1a3344 40%, var(--navy-deep) 100%);
  color: #fff; padding: 11px 0; font-size: 14px; font-weight: 500; position: sticky; top: 0; z-index: 110;
  border-bottom: 1px solid rgba(184, 149, 47, 0.25);
}
.urgency-bar__inner { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; text-align: center; }
.urgency-bar__dot {
  width: 10px; height: 10px; background: #fff; border-radius: 50%;
  animation: urgency-pulse 1.4s ease-in-out infinite; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
}
.urgency-bar__sep { opacity: 0.5; margin: 0 6px; }
.urgency-bar__text strong { font-weight: 700; }
@keyframes urgency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ==========================================
   2. STICKY HEADER
   ========================================== */
.header {
  background: rgba(30, 61, 82, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0; position: sticky; top: 44px; z-index: 100;
  box-shadow: 0 4px 24px rgba(15, 36, 51, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@supports not (backdrop-filter: blur(1px)) {
  .header { background: var(--navy); }
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header__logo { display: flex; align-items: center; gap: 10px; }
.header__logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--gold); color: var(--navy-deep);
  font-weight: 800; font-size: 15px; border-radius: 10px; flex-shrink: 0;
}
.header__logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.header__nav { display: flex; gap: 32px; }
.header__nav a {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.82);
  transition: color 0.25s var(--ease-smooth);
  position: relative;
  padding: 4px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s var(--ease-smooth);
}
.header__nav a:hover { color: var(--gold); }
.header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ==========================================
   3–7. HERO
   ========================================== */
.hero {
  padding: 56px 0 80px;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(184, 149, 47, 0.12), transparent 55%),
    linear-gradient(180deg, #fff9f3 0%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }

/* 3. Attention Pill */
.hero__attention {
  display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center;
  background: rgba(255, 252, 248, 0.85); color: var(--text); border: 1px solid rgba(184, 149, 47, 0.35);
  padding: 12px 24px; border-radius: 999px; font-size: 14px; font-weight: 500;
  max-width: 760px; line-height: 1.4;
  box-shadow: var(--shadow-sm);
}
.hero__attention-label { font-weight: 800; color: var(--red); }

/* 4. Headline */
.hero__title {
  font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 56px); font-weight: 800;
  color: var(--navy-deep); line-height: 1.12; letter-spacing: -0.03em; max-width: 980px;
}
.hero__subline { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 16px; color: var(--text-light); font-weight: 500; }
.hero__subline strong { color: var(--navy); font-weight: 700; }
.hero__sub-sep { color: var(--gold); }

/* 5. Hero visual — navy circle frame */
.hero__visual { position: relative; margin: 16px 0 24px; }
.hero__circle {
  width: clamp(260px, 48vw, 460px); height: clamp(260px, 48vw, 460px);
  border-radius: 50%; background: var(--navy); padding: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(30,61,82,0.06);
}
.hero__img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.hero__circle-badge {
  position: absolute; bottom: 12px; right: -8px;
  background: var(--green); color: #fff; padding: 10px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 20px rgba(15,118,110,0.35);
}

/* 6. Info cards 2x2 */
.info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; max-width: 920px; margin: 8px 0; }
.info-card {
  background: linear-gradient(180deg, #fff 0%, rgba(250, 246, 239, 0.65) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(184, 149, 47, 0.45);
  border-radius: var(--radius);
  padding: 20px 16px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-smooth), border-color 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 149, 47, 0.5);
  box-shadow: var(--shadow-md);
}
.info-card__label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 8px; }
.info-card__value { display: block; font-size: 15px; font-weight: 700; color: var(--navy-deep); line-height: 1.3; }

/* 7. Primary CTA */
.hero__cta { margin-top: 8px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__cta-note { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ==========================================
   8. TRUST BADGES
   ========================================== */
.badges {
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 50%, #fff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.badges__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge { display: flex; align-items: center; gap: 12px; justify-content: center; color: var(--navy); }
.badge svg { color: var(--green); flex-shrink: 0; }
.badge span { display: flex; flex-direction: column; line-height: 1.2; font-size: 13px; color: var(--text-light); }
.badge strong { color: var(--navy-deep); font-weight: 700; font-size: 14px; margin-bottom: 2px; }

/* ==========================================
   9. STATS STRIP
   ========================================== */
.stats-strip {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 40%, var(--navy-deep) 100%);
  color: #fff;
  padding: 52px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.stats-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat { position: relative; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
.stat__num {
  display: block; font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px); font-weight: 800; color: var(--gold);
  line-height: 1; letter-spacing: -1.5px;
}
.stat__plus { color: var(--gold); font-size: 0.85em; }
.stat__lbl { display: block; margin-top: 10px; font-size: 14px; color: rgba(255,255,255,0.72); font-weight: 500; letter-spacing: 0.5px; }

/* ==========================================
   10. WHAT YOU GET (grid-bg card section)
   ========================================== */
.grid-bg {
  background-color: var(--bg-light);
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 32px 32px;
}
.what-you-get { padding: 80px 0; }
.what-you-get__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  margin-top: 2px;
}
.check-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.check-list li span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

/* ==========================================
   11. CTA BAND
   ========================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 48%, #1a4a5c 100%);
  padding: 48px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 120% at 100% 50%, rgba(196, 92, 62, 0.35), transparent 55%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.cta-band .btn--red {
  background: #fff;
  color: var(--red);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.cta-band .btn--red:hover { background: var(--cream); color: var(--red-dark); }

/* ==========================================
   12. RESULTS (dark bg)
   ========================================== */
.results {
  padding: 90px 0;
  background: var(--navy-deep);
  position: relative;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 0%, rgba(184, 149, 47, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(196, 92, 62, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.results .container { position: relative; z-index: 1; }
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
}
.result-card:hover { transform: translateY(-6px); }
.result-card__image-wrap {
  background: #000;
  overflow: hidden;
}
.result-card__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s var(--ease-smooth);
}
.result-card:hover .result-card__image { transform: scale(1.05); }
.result-card__caption {
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border-top: 3px solid var(--gold);
}
.result-card__caption strong { font-size: 16px; color: var(--navy-deep); font-weight: 700; }
.result-card__caption span { font-size: 14px; color: var(--text-muted); }
.results__disclaimer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ==========================================
   13. AUDIENCE
   ========================================== */
.audience { padding: 90px 0; }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.persona {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  box-shadow: var(--shadow-sm);
}
.persona:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--green);
}
.persona__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(15,118,110,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.persona h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.persona p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

/* ==========================================
   14. BONUS PACKAGE
   ========================================== */
.bonus {
  padding: 90px 0;
  background: var(--navy-deep);
  position: relative;
}
.bonus::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(184,149,47,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184,149,47,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.bonus .container { position: relative; z-index: 1; }
.bonus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.bonus-card {
  background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(184,149,47,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--glow-gold), var(--shadow-card);
  transition: transform .3s, box-shadow .3s;
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(184,149,47,0.25), var(--shadow-lg);
}
.bonus-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.bonus-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(184,149,47,0.12);
  border: 1px solid rgba(184,149,47,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.bonus-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.bonus-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin-bottom: 22px;
}
.bonus-card__price {
  padding-top: 18px;
  border-top: 1px solid rgba(184,149,47,0.2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bonus-card__value {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
  font-weight: 500;
}
.bonus-card__free {
  font-size: 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.3px;
}
.bonus__total {
  margin-top: 40px;
  text-align: center;
  padding: 24px 32px;
  background: rgba(184,149,47,0.08);
  border: 1px solid rgba(184,149,47,0.3);
  border-radius: var(--radius-lg);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50%;
  transform: translateX(-50%);
  gap: 4px;
}
.bonus__total-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}
.bonus__total-amount {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
}
.bonus__total-included {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

/* ==========================================
   15. COMPARE (before / after life)
   ========================================== */
.compare { padding: 90px 0; }
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.compare__card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.compare__card:hover { transform: translateY(-5px); }
.compare__card--before {
  background: linear-gradient(155deg, #a84a3d 0%, var(--red-deep) 100%);
}
.compare__card--after {
  background: linear-gradient(155deg, var(--green-dark) 0%, var(--green-deep) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.compare__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.compare__chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.compare__chip--red { background: rgba(255,255,255,0.2); color: #fff; }
.compare__chip--green { background: var(--gold); color: var(--navy-deep); }
.compare__card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.compare__list { display: flex; flex-direction: column; gap: 16px; }
.compare__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
}
.compare__icon { flex-shrink: 0; margin-top: 2px; }
.compare__icon--x {
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 3px;
  border-radius: 50%;
}
.compare__icon--check {
  background: var(--gold);
  color: var(--green-deep);
  padding: 3px;
  border-radius: 50%;
}

/* ==========================================
   16. PROCESS
   ========================================== */
.process {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 35%, #fff 100%);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  pointer-events: none;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(184, 149, 47, 0.35);
}
.process-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 8px;
}
.process-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(30,61,82,0.2);
}
.process-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.process-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================
   17. EXPERT
   ========================================== */
.expert {
  padding: 90px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.expert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(184,149,47,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.expert__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.expert__photo-col { position: relative; display: flex; justify-content: center; }
.expert__photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--glow-gold), var(--shadow-lg);
  background: var(--navy-deep);
}
.expert__svg { display: block; }
.expert__photo-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.expert__bio .section-title { margin-bottom: 12px; }
.expert__intro {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.6;
}
.expert__list { display: flex; flex-direction: column; gap: 14px; }
.expert__list li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.expert__list svg {
  flex-shrink: 0;
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 50%;
  padding: 3px;
  width: 26px; height: 26px;
}

/* ==========================================
   18. IMAGINE
   ========================================== */
.imagine {
  padding: 90px 0;
  background: var(--navy-deep);
  color: #fff;
  position: relative;
}
.imagine::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 10%, rgba(184,149,47,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.imagine .container { position: relative; z-index: 1; }
.imagine__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.imagine__item {
  background: #fff;
  color: var(--navy-deep);
  border-radius: 50px;
  padding: 18px 28px 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .25s;
}
.imagine__item:hover { transform: translateX(6px); }
.imagine__bullet {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.imagine__item p { font-size: 16px; color: var(--navy-deep); line-height: 1.5; font-weight: 500; margin: 0; }
.imagine__item p strong { font-weight: 800; color: var(--navy-deep); }

/* ==========================================
   19. CHOICE (crossroad)
   ========================================== */
.choice {
  padding: 90px 0;
  background: #fff;
}
.choice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 40px;
}
.choice__card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.choice__card--bad { background: linear-gradient(155deg, #a84a3d 0%, var(--red-deep) 100%); }
.choice__card--good {
  background: linear-gradient(155deg, var(--green-dark) 0%, var(--green-deep) 100%);
  border: 2px solid var(--gold);
  box-shadow: var(--glow-gold), var(--shadow-card);
}
.choice__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.choice__card--good .choice__label { background: var(--gold); color: var(--navy-deep); }
.choice__card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.choice__card p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 22px;
}
.choice__outcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(0,0,0,0.25);
}
.choice__card--good .choice__outcome { background: var(--gold); color: var(--green-deep); }
.choice__cta { text-align: center; }

/* ==========================================
   20. FAQ
   ========================================== */
.faq { padding: 90px 0; background: var(--bg-light); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.faq__item.active { border-color: var(--green); box-shadow: 0 4px 16px rgba(15,118,110,0.08); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.5) 0%, transparent 100%);
  border: none;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease-smooth), color 0.2s;
}
.faq__question:hover { background: rgba(184, 149, 47, 0.06); }
.faq__chevron { transition: transform .3s; flex-shrink: 0; color: var(--green); }
.faq__item.active .faq__chevron { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__item.active .faq__answer { max-height: 300px; }
.faq__answer p { padding: 0 24px 20px; font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ==========================================
   21. BOOKING
   ========================================== */
.booking {
  padding: 90px 0;
  background: var(--navy-deep);
  position: relative;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(184,149,47,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.booking__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.booking__info .section-title { margin-bottom: 16px; }
.booking__info-text {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Countdown */
.countdown {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,149,47,0.3);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 32px;
}
.countdown__label {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.countdown__timer {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown__unit {
  flex: 1;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 12px 6px 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.countdown__unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.countdown__unit span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.countdown__sep {
  color: var(--gold);
  font-weight: 800;
  font-size: 20px;
  align-self: center;
}

.booking__contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.booking__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.booking__contact-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}
.booking__contact-item a,
.booking__contact-item span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.booking__contact-item a:hover { color: var(--gold); }

.booking__form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.booking__form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 6px;
}
.booking__form-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.req { color: var(--red); }

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--navy-deep);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,61,82,0.1);
}
.form-group input:focus-visible,
.form-group select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.phone-input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-light);
  transition: border-color .2s, box-shadow .2s;
}
.phone-input:focus-within {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,61,82,0.1);
}
.phone-input__prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--bg-soft);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  border-right: 1.5px solid var(--border);
}
.phone-input input {
  border: none;
  background: transparent;
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}
.phone-input input:focus { box-shadow: none; background: transparent; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}
.form-success { text-align: center; padding: 24px 16px; }
.form-success svg { margin: 0 auto 12px; }
.form-success h4 { font-size: 22px; color: var(--green); margin-bottom: 8px; font-family: var(--font-display); }
.form-success p { font-size: 15px; color: var(--text-light); }
.form-error {
  text-align: center;
  padding: 14px;
  margin-top: 12px;
  background: #f5f5f5;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.form-error p { font-size: 14px; color: var(--red); }
.form-error a { font-weight: 700; color: var(--red); text-decoration: underline; }

/* ==========================================
   22. FOOTER
   ========================================== */
.footer {
  background: linear-gradient(180deg, #0a1520 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__brand .header__logo { margin-bottom: 16px; }
.footer__brand .header__logo-text { color: #fff; }
.footer__brand p { font-size: 15px; line-height: 1.7; max-width: 360px; }
.footer__social { display: flex; gap: 14px; margin-top: 20px; }
.footer__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background .2s, color .2s;
}
.footer__social-link:hover { background: var(--gold); color: #fff; }
.footer__links h4,
.footer__contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__links a,
.footer__contact a,
.footer__contact p {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s var(--ease-smooth), text-decoration-color 0.2s;
  text-decoration: none;
  text-underline-offset: 5px;
}
.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(184, 149, 47, 0.65);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__disclaimer { font-style: italic; max-width: 600px; }

/* ==========================================
   23. STICKY BOTTOM BAR
   ========================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid rgba(184, 149, 47, 0.45);
  box-shadow: 0 -12px 40px rgba(15, 36, 51, 0.08);
  padding: 12px 0;
  transition: transform .35s ease;
}
.sticky-bar--hidden { transform: translateY(100%); }
.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.sticky-bar__info strong {
  font-size: 14px;
  color: var(--navy-deep);
  font-weight: 700;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-bar__info span { font-size: 12px; color: var(--text-muted); }
.sticky-bar__actions { display: flex; gap: 8px; flex-shrink: 0; }
.sticky-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.sticky-bar__btn--call {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(30,61,82,0.25);
}
.sticky-bar__btn--call:hover { background: var(--navy-light); transform: translateY(-1px); }
.sticky-bar__btn--book {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(196,92,62,0.35);
}
.sticky-bar__btn--book:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.animate-in { opacity: 1 !important; transform: translateY(0) !important; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .section-title { font-size: 36px; }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .badges__inner { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .check-list { grid-template-columns: 1fr; }
  .results__grid,
  .audience__grid,
  .bonus__grid,
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bonus__grid .bonus-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .compare__grid,
  .choice__grid,
  .booking__inner { grid-template-columns: 1fr; gap: 24px; }
  .expert__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .expert__list li { justify-content: center; }
  .process__grid::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Header */
  .urgency-bar { font-size: 12px; padding: 8px 0; }
  .urgency-bar__sep { display: none; }
  .urgency-bar__inner { gap: 8px; }
  .header { padding: 12px 0; }
  .header__nav { display: none; }
  .header__logo-icon { width: 36px; height: 36px; font-size: 14px; }
  .header__logo-text { font-size: 19px; }
  .btn--header { padding: 9px 14px; font-size: 13px; }

  /* Hero */
  .hero { padding: 36px 0 56px; }
  .hero__inner { gap: 24px; }
  .hero__attention { font-size: 13px; padding: 9px 18px; }
  .hero__title { font-size: 28px; line-height: 1.18; }
  .hero__subline { font-size: 14px; gap: 8px; }
  .hero__circle-badge { right: -4px; padding: 8px 14px; font-size: 12px; }
  .info-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .info-card { padding: 14px 10px; }
  .info-card__value { font-size: 13px; }
  .info-card__label { font-size: 10px; }
  .btn--xl { padding: 16px 28px; font-size: 16px; }

  /* Badges */
  .badges { padding: 18px 0; }
  .badges__inner { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .badge { gap: 6px; flex-direction: column; text-align: center; }
  .badge svg { width: 22px; height: 22px; }
  .badge span { font-size: 11px; line-height: 1.15; align-items: center; }
  .badge strong { font-size: 12px; margin-bottom: 1px; }
  .badge span { font-size: 12px; }
  .badge strong { font-size: 13px; }

  /* Stats */
  .stats-strip { padding: 32px 0; }
  .stats-strip__inner { gap: 12px; }
  .stat__lbl { font-size: 11px; letter-spacing: 0.3px; }
  .stat + .stat { padding-left: 8px; margin-left: 0; }

  /* Section sizing */
  .section-title { font-size: 26px; }
  .section-sub { font-size: 15px; }
  .section-header { margin-bottom: 36px; }
  .what-you-get,
  .results,
  .audience,
  .bonus,
  .compare,
  .process,
  .expert,
  .imagine,
  .choice,
  .faq,
  .booking { padding: 56px 0; }

  /* What you get */
  .what-you-get__card { padding: 28px 22px; }
  .check-list li strong { font-size: 15px; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; gap: 16px; }
  .cta-band__title { font-size: 22px; }

  /* Results / Audience / Bonus */
  .results__grid,
  .audience__grid,
  .bonus__grid,
  .process__grid { grid-template-columns: 1fr; }
  .bonus__grid .bonus-card:last-child { max-width: none; }
  .bonus__total { margin-left: 0; transform: none; width: 100%; }
  .bonus__total-amount { font-size: 36px; }

  /* Compare */
  .compare__card { padding: 28px 22px; }
  .compare__card h3 { font-size: 22px; }

  /* Expert */
  .expert__photo { max-width: 260px; }
  .expert__list li { font-size: 15px; text-align: left; }

  /* Imagine */
  .imagine__item { padding: 14px 20px 14px 14px; border-radius: 18px; gap: 14px; }
  .imagine__bullet { width: 38px; height: 38px; font-size: 14px; }
  .imagine__item p { font-size: 14px; }

  /* Choice */
  .choice__card { padding: 28px 22px; }
  .choice__card h3 { font-size: 22px; }

  /* FAQ */
  .faq__question { font-size: 15px; padding: 16px 20px; }
  .faq__answer p { padding: 0 20px 18px; font-size: 14px; }

  /* Booking */
  .booking__inner { gap: 32px; }
  .booking__form-wrapper { padding: 26px 22px; }
  .countdown { padding: 16px 14px; }
  .countdown__unit strong { font-size: 22px; }
  .countdown__unit span { font-size: 9px; }
  .countdown__sep { font-size: 16px; }
  .countdown__label { font-size: 12px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* Sticky bar */
  .sticky-bar { display: block; padding: 8px 0; }
  .sticky-bar__info { display: none; }
  .sticky-bar__actions { width: 100%; gap: 8px; }
  .sticky-bar__btn { flex: 1; justify-content: center; padding: 12px 12px; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 24px; }
  .hero__attention { font-size: 12px; }
  .section-title { font-size: 22px; }
  .stat__num { font-size: 32px; }
  .booking__form-wrapper { padding: 22px 18px; }
  .btn--xl { padding: 15px 22px; font-size: 15px; }
}

/* Hide sticky bar on very small heights (avoid covering form) */
@media (max-height: 500px) {
  .sticky-bar { display: none; }
  body { padding-bottom: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================
   CUSTOM CONTENT ADDITIONS
   ========================================== */

/* Social Proof Popup */
.popup-notif {
  position: fixed;
  bottom: 100px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 36px 12px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  max-width: 290px;
  z-index: 150;
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease;
  pointer-events: none;
}
.popup-notif--visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.popup-notif__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--navy-deep);
  flex-shrink: 0;
}
.popup-notif__content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
  flex: 1;
}
.popup-notif__tag {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.popup-notif__name {
  font-size: 14px;
  color: var(--navy-deep);
  font-weight: 700;
}
.popup-notif__msg {
  font-size: 12px;
  color: var(--text-light);
}
.popup-notif__dot {
  width: 10px;
  height: 10px;
  background: var(--green-dark);
  border-radius: 50%;
  position: absolute;
  top: 14px;
  right: 14px;
  box-shadow: 0 0 0 0 rgba(13,148,136,0.7);
  animation: notif-pulse 2s ease-in-out infinite;
}
.popup-notif__close {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: none;
  padding: 0;
}
.popup-notif:hover .popup-notif__close { display: block; }
@keyframes notif-pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,148,136,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(13,148,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,148,136,0); }
}
@media (max-width: 768px) {
  .popup-notif { bottom: 84px; left: 12px; max-width: 240px; padding: 10px 30px 10px 12px; }
  .popup-notif__avatar { width: 36px; height: 36px; font-size: 14px; }
}

/* Thank You Page */
.thankyou-page {
  padding: 64px 0 96px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}
.thankyou-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 4px solid var(--green);
}
.thankyou-card__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  background: rgba(15,118,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  animation: thankyou-pulse 2s ease-out infinite;
}
@keyframes thankyou-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(15,118,110,0.25); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 16px rgba(15,118,110,0); }
}
.thankyou-card__title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.2;
  color: var(--navy-deep);
  margin: 12px 0 14px;
}
.thankyou-card__lead {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 32px;
}
.thankyou-next {
  text-align: left;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
}
.thankyou-next__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.thankyou-next__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.thankyou-next__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.thankyou-next__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.thankyou-next__list strong {
  display: block;
  font-size: 15px;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.thankyou-next__list span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.thankyou-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
  text-align: left;
}
.thankyou-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
}
.thankyou-contact__item svg {
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}
.thankyou-contact__item strong {
  display: block;
  font-size: 13px;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.thankyou-contact__item a,
.thankyou-contact__item span {
  font-size: 14px;
  color: var(--text-light);
}
.thankyou-contact__item a:hover { color: var(--red); }
.thankyou-card__actions {
  margin-top: 28px;
}
.thankyou-card__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .thankyou-page { padding: 32px 0 56px; }
  .thankyou-card { padding: 32px 22px; border-radius: var(--radius); }
  .thankyou-card__icon { width: 72px; height: 72px; }
  .thankyou-card__icon svg { width: 54px; height: 54px; }
  .thankyou-card__title { font-size: 26px; }
  .thankyou-card__lead { font-size: 15px; }
  .thankyou-next { padding: 18px; }
  .thankyou-contact { grid-template-columns: 1fr; }
}

/* Booking Page (standalone) */
.booking-page-body { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); min-height: 100vh; }
.booking-page { padding: 48px 0 80px; }
.booking-page__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.booking-page__info .section-label {
  margin-bottom: 14px;
}
.booking-page__title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: 12px;
}
.booking-page__lead {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}
.countdown--on-booking {
  background: var(--navy);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.countdown--on-booking .countdown__label {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 13px;
}
.countdown--on-booking .countdown__unit strong {
  color: var(--gold);
}
.countdown--on-booking .countdown__unit span {
  color: rgba(255,255,255,0.7);
}
.booking-page__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-page__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.booking-page__benefits li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
  background: rgba(15,118,110,0.12);
  padding: 3px;
  border-radius: 50%;
  box-sizing: content-box;
}
.booking__contact-info--light {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.booking__contact-info--light .booking__contact-item {
  color: var(--text);
}
.booking__contact-info--light .booking__contact-item svg {
  color: var(--navy);
}
.booking__contact-info--light .booking__contact-item strong {
  color: var(--navy-deep);
}
.booking__contact-info--light .booking__contact-item a,
.booking__contact-info--light .booking__contact-item span {
  color: var(--text-light);
}
.booking__form-wrapper--page {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--border);
}
.form-hint {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.btn--header-back {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  box-shadow: none;
}
.btn--header-back:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

@media (max-width: 900px) {
  .booking-page__inner {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 32px;
  }
  .booking-page__title { font-size: 28px; }
  .booking__form-wrapper--page { padding: 24px; }
}

/* Real brand logo (header + footer) */
.header .header__logo-img,
.header__logo-img {
  height: 44px !important;
  width: 44px !important;
  max-height: 44px !important;
  max-width: 44px !important;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.footer .footer__logo-img,
.footer__logo-img {
  height: 72px !important;
  width: 72px !important;
  max-height: 72px !important;
  max-width: 72px !important;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .header__logo-img,
  .header .header__logo-img {
    height: 36px !important;
    width: 36px !important;
    max-height: 36px !important;
    max-width: 36px !important;
  }
}

/* Hero Sliding Marquee (replaces circular frame) */
.hero__visual--slider {
  width: 100%;
  position: relative;
  margin: 32px 0;
}
.hero__inner--bottom {
  padding-top: 32px;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(184, 149, 47, 0.12);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
  background: var(--navy);
  padding: 18px 0;
}
.slider__track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 0 14px;
  animation: slider-scroll 30s linear infinite;
}
.slider:hover .slider__track {
  animation-play-state: paused;
}
.slider__card {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.slider__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.slider__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}
.slider__fade--right {
  right: 0;
  background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%);
}
@keyframes slider-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}

.hero__circle-badge--floating {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(15,118,110,0.4);
  z-index: 3;
}

@media (max-width: 768px) {
  .slider__card { width: 200px; }
  .slider__fade { width: 40px; }
  .hero__circle-badge--floating { bottom: -14px; right: 12px; font-size: 12px; padding: 8px 14px; }
}

/* Video Gallery (YouTube sliding) */
.video-gallery {
  padding: 96px 0 0;
  background: var(--bg-light);
}
.video-gallery .section-header { margin-bottom: 48px; }

.video-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding: 36px 0;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.video-slider__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 20px;
  animation: slider-scroll 60s linear infinite;
}
.video-slider:hover .video-slider__track {
  animation-play-state: paused;
}
.video-card {
  flex-shrink: 0;
  width: 270px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  position: relative;
  border: 2px solid rgba(184,149,47,0.2);
  transition: transform .3s ease, border-color .3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-slider__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.video-slider__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep) 0%, transparent 100%);
}
.video-slider__fade--right {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-deep) 0%, transparent 100%);
}
@media (max-width: 768px) {
  .video-gallery { padding-top: 64px; }
  .video-card { width: 220px; }
  .video-slider__fade { width: 40px; }
  .video-slider__track { animation-duration: 40s; }
}

/* Hero short line + dual CTA */
.hero__subline--text {
  max-width: 720px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.65;
}
.hero__shortline {
  max-width: 620px;
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: -12px;
}
.hero__cta--dual {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn--outline {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 4px 14px rgba(30,61,82,0.1);
}
.btn--outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30,61,82,0.25);
}

/* Why Choose Us split */
.why-us-split {
  padding: 96px 0;
  background: var(--bg-light);
  position: relative;
}
.why-us-split.grid-bg {
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: var(--bg-light);
}
.why-us-split__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.why-us-split__content .section-header {
  text-align: left;
  margin-bottom: 32px;
  margin-left: 0;
}
.why-us-split__content .section-title {
  text-align: left;
  font-size: 38px;
  margin-bottom: 12px;
}
.why-us-split__content .section-sub {
  text-align: left;
}
.usp-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.usp-list__icon {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 3px;
  background: rgba(15,118,110,0.12);
  padding: 4px;
  border-radius: 50%;
  box-sizing: content-box;
}
.usp-list strong {
  display: block;
  font-size: 17px;
  color: var(--navy-deep);
  margin-bottom: 2px;
}
.usp-list span {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.55;
}
.why-us-split__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us-split__img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(184, 149, 47, 0.2), 0 0 0 10px rgba(255, 252, 248, 0.55);
  transition: box-shadow 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}
.why-us-split__visual:hover .why-us-split__img {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184, 149, 47, 0.35), 0 0 0 10px rgba(255, 252, 248, 0.7);
}
@media (max-width: 1024px) {
  .why-us-split__img { height: auto; max-height: none; aspect-ratio: 1; }
}

/* Testimonials */
.testimonials {
  padding: 96px 0;
  background: var(--bg-light);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth), border-left-color 0.28s;
  box-shadow: var(--shadow-sm);
}
.tm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-left-color: var(--gold);
}
.tm-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.tm-card__stars .tm-star { color: var(--gold); display: inline-flex; }
.tm-card__text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.tm-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.tm-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.tm-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--navy-deep);
}
.tm-card__author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Treatment Info (long-form) */
.treatment-info {
  padding: 96px 0;
  background: var(--cream);
}
.treatment-info__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.treatment-info__content .section-label { margin-bottom: 12px; }
.treatment-info__content .section-title {
  text-align: left;
  font-size: 36px;
  margin-bottom: 24px;
}
.section-title--left { text-align: left !important; }
.treatment-info__content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}
.treatment-info__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(184, 149, 47, 0.15);
  position: sticky;
  top: 100px;
  transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth);
}
.treatment-info__visual:hover .treatment-info__img {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184, 149, 47, 0.28);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-us-split__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-split__visual { order: -1; max-width: 540px; margin: 0 auto; }
  .treatment-info__inner { grid-template-columns: 1fr; gap: 40px; }
  .treatment-info__img { position: static; max-width: 540px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .why-us-split { padding: 64px 0; }
  .why-us-split__content .section-title { font-size: 30px; }
  .testimonials { padding: 64px 0; }
  .tm-card { padding: 24px; }
  .treatment-info { padding: 64px 0; }
  .treatment-info__content .section-title { font-size: 28px; }
  .hero__cta--dual { flex-direction: column; width: 100%; }
  .hero__cta--dual .btn { width: 100%; }
}
