/* =========================================
   HAPPY BODY — Sónia Russo
   Landing premium · Online + Presencial
   ========================================= */

:root {
  /* Paleta mestra */
  --bg: #F5EFE6;
  --bg-alt: #EFE7D9;
  --dark: #1A1A1A;
  --dark-soft: #2C2C2C;
  --gold: #B89968;
  --gold-deep: #9D7E4F;
  --stone: #9C9389;
  --terracotta: #C97B63;

  /* Cores por programa */
  --essential: #8A9A7B;
  --strong: #6B1F2A;
  --mama: #D4A5A5;

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 820px;
  --radius: 4px;
  --radius-lg: 16px;

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* ============ UTILS ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--max-w-narrow); }
.center { text-align: center; }

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section__eyebrow.center { display: block; text-align: center; }
.section__eyebrow.light { color: var(--gold); }

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.section__title.light { color: var(--bg); }

.section__sub {
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.section__sub.light { color: rgba(245, 239, 230, 0.8); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 153, 104, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--ghost:hover {
  background: var(--dark);
  color: var(--bg);
}
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn--xl { padding: 1.3rem 2.8rem; font-size: 1.05rem; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.nav__logo-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
}
.nav__logo-text em { color: var(--gold); font-style: normal; }
.nav__menu {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
}
.nav__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-soft);
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__menu a:hover::after { width: 100%; }
.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__lang {
  display: flex;
  gap: 0.25rem;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 20px;
  padding: 2px;
}
.nav__lang-btn {
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--stone);
  border-radius: 16px;
  transition: all 0.25s var(--ease);
}
.nav__lang-btn.active {
  background: var(--dark);
  color: var(--bg);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s var(--ease);
}

/* ============ 1. HERO ============ */
.hero {
  padding: var(--space-lg) 0 var(--space-xl);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(184, 153, 104, 0.3);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--dark-soft);
  max-width: 540px;
  margin-bottom: 1.25rem;
}
.hero__sub--second {
  font-size: 1.02rem;
  color: var(--stone);
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hero__badges {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.badge {
  display: flex;
  flex-direction: column;
}
.badge__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1;
}
.badge__label {
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(26, 26, 26, 0.25);
}
.hero__image-frame {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
}

/* ============ 2. PAIN ============ */
.pain {
  padding: var(--space-xl) 0;
  background: var(--bg);
  text-align: center;
}
.pain__intro {
  font-size: 1.2rem;
  color: var(--dark-soft);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pain__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  text-align: left;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.pain__list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--dark-soft);
}
.pain__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}
.pain__conclusion {
  font-size: 1.05rem;
  color: var(--stone);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pain__quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--gold-deep);
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-top: 2rem;
}
.pain__quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}

/* ============ 3. ABOUT ============ */
.about {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 20px 50px -15px rgba(26, 26, 26, 0.25);
}
.about__photo::before {
  content: '';
  position: absolute;
  inset: -15px 15px 15px -15px;
  border: 1px solid var(--gold);
  z-index: -1;
  border-radius: 4px;
}
.about__text p {
  margin-bottom: 1.1rem;
  color: var(--dark-soft);
  line-height: 1.7;
}
.about__text strong { color: var(--dark); font-weight: 600; }
.about__credentials {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}
.about__credentials li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--dark-soft);
}
.about__credentials li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 4px;
}

/* ============ 4. PROGRAMS ============ */
.programs {
  padding: var(--space-xl) 0;
  background: var(--bg);
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-top: 3px solid transparent;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -15px rgba(26, 26, 26, 0.15);
}
.card--essential { border-top-color: var(--essential); }
.card--strong { border-top-color: var(--strong); }
.card--mama { border-top-color: var(--mama); }
.card--featured {
  transform: scale(1.03);
  box-shadow: 0 20px 50px -15px rgba(26, 26, 26, 0.12);
}
.card--featured:hover { transform: scale(1.03) translateY(-6px); }

.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}
.card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.card__subtitle {
  font-style: italic;
  color: var(--stone);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}
.card__body {
  color: var(--dark-soft);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.card__list {
  margin-bottom: 1.5rem;
}
.card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--dark-soft);
  line-height: 1.5;
}
.card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.card__for {
  background: var(--bg);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  margin-top: auto;
}
.card__for strong { color: var(--dark); }

/* ============ 5. PRINCIPLES ============ */
.principles {
  padding: var(--space-xl) 0;
  background: var(--dark);
  color: var(--bg);
}
.principles .section__title { color: var(--bg); }
.principles .section__sub { color: rgba(245, 239, 230, 0.7); }
.principles .section__eyebrow { color: var(--gold); }

.principles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 4rem;
}
.principle {
  padding: 2rem 0;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
}
.principle__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.principle__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--bg);
}
.principle p {
  color: rgba(245, 239, 230, 0.75);
  line-height: 1.65;
}

/* ============ 5b. SHOWCASE ============ */
.showcase {
  padding: var(--space-xl) 0;
  background: var(--bg);
}
.showcase__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 1.75rem;
  align-items: stretch;
}
.showcase__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 30px 60px -25px rgba(26, 26, 26, 0.22);
  min-height: 420px;
}
.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.showcase__item:hover img { transform: scale(1.04); }
.showcase__item--tall { min-height: 520px; }
.showcase__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.75rem 1.75rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.78) 0%, rgba(26, 26, 26, 0.45) 60%, rgba(26, 26, 26, 0) 100%);
  color: var(--bg);
}
.showcase__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.showcase__caption p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--bg);
  max-width: 32ch;
}

/* ============ 6. STEPS ============ */
.steps {
  padding: var(--space-xl) 0;
  background: var(--bg);
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  opacity: 0.4;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px var(--bg);
}
.step__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.step p {
  color: var(--dark-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ============ 7. TESTIMONIALS ============ */
.testimonials {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}
.testimonials__stars {
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}
.testimonials__stars span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.4rem;
  letter-spacing: 0.15em;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quote {
  background: #fff;
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(26, 26, 26, 0.08);
}
.quote::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
}
.quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  margin-top: auto;
}
.quote__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.quote__name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}
.quote__city {
  display: block;
  font-size: 0.85rem;
  color: var(--stone);
  margin-left: auto;
  font-style: italic;
}

/* ============ 8. LEAD MAGNET ============ */
.lead {
  padding: var(--space-xl) 0;
  background: var(--dark);
  color: var(--bg);
}
.lead__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1080px;
  margin: 3rem auto 0;
}
.lead__card {
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.1);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(5px);
}
.lead__book {
  padding: 2.5rem 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}
.lead__book--essential {
  background: linear-gradient(135deg, #8A9A7B 0%, #6B7E60 100%);
}
.lead__book--strong {
  background: linear-gradient(135deg, #6B1F2A 0%, #3D1218 100%);
}
.lead__book--mama {
  background: linear-gradient(135deg, #D4A5A5 0%, #A87373 100%);
}
.lead__card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--bg);
}
.lead__desc {
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.lead__meta {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.lead__card input {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  background: rgba(245, 239, 230, 0.07);
  border: 1px solid rgba(245, 239, 230, 0.15);
  border-radius: var(--radius);
  color: var(--bg);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease);
}
.lead__card input::placeholder { color: rgba(245, 239, 230, 0.4); }
.lead__card input:focus {
  outline: none;
  border-color: var(--gold);
}
.lead__feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--gold);
  line-height: 1.5;
}
.lead__feedback a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.lead__feedback a:hover { color: var(--gold); }

/* ============ 9. PRICING ============ */
.pricing {
  padding: var(--space-xl) 0;
  background: var(--bg);
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 3rem;
}
.price {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid rgba(26, 26, 26, 0.06);
}
.price:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(26, 26, 26, 0.12);
}
.price--featured {
  background: var(--dark);
  color: var(--bg);
  padding: 3rem 2rem;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -15px rgba(26, 26, 26, 0.35);
}
.price--featured:hover { transform: scale(1.05) translateY(-4px); }
.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.price--featured .price__label { color: rgba(245, 239, 230, 0.7); }
.price__value {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 3.75rem;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}
.price__currency {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  margin-left: 0.25rem;
  letter-spacing: 0.02em;
  vertical-align: 0.3em;
}
.price__currency--chf {
  font-size: 1.05rem;
  vertical-align: 0.45em;
  letter-spacing: 0.06em;
}
.price--featured .price__value { color: var(--bg); }
.price__unit {
  font-size: 0.95rem;
  color: var(--stone);
  margin-bottom: 1rem;
}
.price--featured .price__unit { color: rgba(245, 239, 230, 0.7); }
.price__where {
  font-size: 0.92rem;
  color: var(--dark-soft);
  margin-bottom: 2rem;
  line-height: 1.5;
  min-height: 2.8em;
}
.price--featured .price__where { color: rgba(245, 239, 230, 0.85); }
.pricing__note {
  text-align: center;
  color: var(--stone);
  font-size: 0.88rem;
  margin-top: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============ 10. FAQ ============ */
.faq {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
}
.faq__list {
  margin-top: 3rem;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.faq__item[open] {
  box-shadow: 0 10px 30px -10px rgba(26, 26, 26, 0.1);
}
.faq__item summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--dark);
  position: relative;
  list-style: none;
  padding-right: 3rem;
  transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__item summary:hover { color: var(--gold-deep); }
.faq__item p {
  padding: 0 2rem 1.75rem;
  color: var(--dark-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ============ 11. CTA FINAL ============ */
.cta-final {
  position: relative;
  padding: var(--space-xxl) 0;
  overflow: hidden;
  text-align: center;
  color: var(--bg);
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.cta-final__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 100%);
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cta-final__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--bg);
}
.cta-final__sub {
  font-size: 1.15rem;
  color: rgba(245, 239, 230, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.cta-final__note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(245, 239, 230, 0.7);
  font-style: italic;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(245, 239, 230, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 1rem;
}
.footer__logo em { color: var(--gold); font-style: normal; }
.footer__brand p { line-height: 1.6; font-size: 0.95rem; }
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col p {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer__col a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 239, 230, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.footer__bottom {
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.5);
}

/* ============ SCROLL REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner,
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__image { max-width: 480px; margin: 0 auto; }
  .about__photo { max-width: 420px; }
  .programs__grid { grid-template-columns: 1fr; }
  .card--featured { transform: none; }
  .card--featured:hover { transform: translateY(-6px); }
  .testimonials__grid,
  .pricing__grid,
  .lead__grid { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .showcase__item--tall,
  .showcase__item { min-height: 320px; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .nav__menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg); padding: 2rem; flex-direction: column; gap: 1.2rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
  .nav__menu.is-open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__right { gap: 0.6rem; }
  .nav__lang { display: flex; }
  .nav__lang-btn { padding: 0.28rem 0.5rem; font-size: 0.7rem; }

  .hero { padding: 2rem 0 4rem; }
  .hero__title { font-size: 2.25rem; }
  .hero__sub { font-size: 1.02rem; }
  .hero__badges { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  .pain__list { grid-template-columns: 1fr; }
  .pain__quote { font-size: 1.5rem; }

  .principles__grid { grid-template-columns: 1fr; gap: 1rem; }

  .steps__grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps__grid::before { display: none; }

  .lead__grid { grid-template-columns: 1fr; }

  .faq__item summary { font-size: 0.98rem; padding: 1.25rem 1.5rem; padding-right: 2.5rem; }
  .faq__item summary::after { right: 1.5rem; }
  .faq__item p { padding: 0 1.5rem 1.5rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }

  .cta-final { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero__title { font-size: 2rem; }
  .section__title { font-size: 1.75rem; }
  .footer__grid { grid-template-columns: 1fr; }
}
