/* ============================================================
   CHAIVY Theme — Combined Styles
   Merged from chaivy_landing.html + chaivy_challenges.html
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --pink:         #F887A4;
  --orange:       #FFBB90;
  --gradient:     linear-gradient(135deg, #F887A4 0%, #FFBB90 100%);
  --gradient-btn: linear-gradient(135deg, #F887A4 0%, #FFBB90 100%);
  --pink-pale:    #FFF2F6;
  --pink-light:   #FFD6E4;
  --cream:        #FFF8FA;
  --charcoal:     #1C1C1E;
  --mid:          #5A5A6A;
  --wa-green-lt:  #5EE85E;
  --wa-green-dk:  #28A428;
  --white:        #FFFFFF;
  --radius:       18px;
  --shadow-pink:  0 8px 40px rgba(248,135,164,0.28);
  /* Challenge category colors */
  --cat-health:   #3BB08F;
  --cat-burnout:  #5B9BD5;
  --cat-mindset:  #9B7FD4;
  --cat-love:     #F887A4;
  --cat-money:    #E09B2D;
  --cat-vision:   #E07055;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--charcoal); }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── Typography ── */
.headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.subhead { font-family: 'DM Sans', sans-serif; font-weight: 800; }
.center  { text-align: center; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-btn);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(248,135,164,0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}
.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(248,135,164,0.5);
}
.cta-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── NAV ── */
nav,
body nav,
.site-header nav,
header nav {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 100 !important;
  background: linear-gradient(135deg, #F887A4 0%, #FFBB90 100%) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  padding: 0 24px !important;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo,
a.nav-logo {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.55rem !important;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  text-decoration: none !important;
  letter-spacing: 0.04em !important;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a,
nav .nav-links a {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: rgba(255,255,255,0.75) !important; -webkit-text-fill-color: rgba(255,255,255,0.75) !important; }
.nav-cta,
nav .nav-cta,
.nav-links .nav-cta {
  background: #fff !important;
  color: #F887A4 !important;
  -webkit-text-fill-color: #F887A4 !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
}
.nav-cta:hover { transform: translateY(-1px); opacity: 0.9; }

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-green 2.8s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.65); }
.wa-float svg { width: 34px; height: 34px; }
@keyframes pulse-green {
  0%, 70%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.35); }
  35%           { box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
}
/* 5s total cycle: pulse happens in first 35% then dormant */
.wa-float { animation-duration: 5s; }

/* ── SECTION COMMON ── */
section { padding: 64px 0; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-sub { font-size: 1.05rem; font-weight: 400; color: var(--mid); line-height: 1.75; max-width: 560px; }

/* ── STRIP / MARQUEE ── */
.strip { padding: 16px 0; overflow: hidden; background: var(--gradient); }
.strip-inner { display: flex; gap: 52px; animation: marquee 28s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-item {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-item::before { content: '\2736'; opacity: 0.65; }

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 68px;
  padding-bottom: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 55%, rgba(248,135,164,0.08) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 40px;
  margin-left: max(40px, calc((100vw - 1100px) / 2));
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.38);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(3rem, 7vw, 5.2rem);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; }
.hero-trust span {
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: inline-block;
}

/* ── WHAT IS CHAIVY ── */
.what { background: var(--cream); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.what-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(248,135,164,0.22);
}
.what-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.what-pill {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  gap: 12px;
  align-items: center;
}
.what-pill-icon { font-size: 2rem; }
.what-pill-text strong { display: block; font-size: 1rem; font-weight: 800; }
.what-pill-text span { font-size: 0.78rem; color: var(--mid); }
.check-list { list-style: none; margin: 28px 0; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.55;
}
.check-list li .chk {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #fff;
  font-weight: 900;
}

/* ── HOW IT WORKS ── */
.how { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.step-card {
  background: var(--white);
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius);
  padding: 32px 22px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-pink); transform: translateY(-4px); }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
  background: none;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.45;
}
.step-card h3 { font-weight: 800; font-size: 0.95rem; margin-bottom: 10px; color: var(--charcoal); }
.step-card p { font-size: 0.82rem; font-weight: 500; color: var(--mid); line-height: 1.65; }
.step-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--pink-light);
  z-index: 2;
}

/* ── WHY IT WORKS ── */
.why { background: var(--charcoal); }
.why .section-title { color: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-top: 52px; }
.why-pills { display: flex; flex-direction: column; gap: 16px; }
.why-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.3s, border-color 0.3s;
}
.why-pill:hover { background: rgba(248,135,164,0.1); border-color: rgba(248,135,164,0.3); }
.why-pill-icon { font-size: 1.6rem; flex-shrink: 0; }
.why-pill h4 { color: #fff; font-weight: 800; font-size: 0.92rem; margin-bottom: 5px; }
.why-pill p { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.6; }
.why-img-wrap { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%); }
.why-img-stat {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px 22px;
  color: #fff;
}
.why-img-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-img-stat span { font-size: 0.82rem; opacity: 0.75; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--pink-pale); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 28px rgba(248,135,164,0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-top { display: flex; gap: 16px; align-items: center; }
.testi-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 2.5px rgba(248,135,164,0.35);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.testi-name { font-weight: 800; font-size: 0.92rem; color: var(--charcoal); }
.testi-role { font-size: 0.75rem; font-weight: 500; color: var(--mid); margin-top: 2px; }
.testi-stars {
  font-size: 0.8rem;
  letter-spacing: 1px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1px;
}
.testi-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--charcoal);
  font-style: italic;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #F887A4, #FFBB90) 1;
  padding-left: 16px;
}

/* ── CHALLENGES GRID (landing preview) ── */
.challenges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.challenge-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.challenge-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.18); }
.challenge-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.challenge-card:hover img { transform: scale(1.06); }
.challenge-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.15) 60%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.challenge-tag {
  display: inline-block;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 9px;
  align-self: flex-start;
}
.challenge-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.challenge-sub { color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; line-height: 1.5; }

/* ── FOR YOU ── */
.foryou { background: var(--cream); }
.foryou-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; }
.foryou-box { border-radius: var(--radius); padding: 38px; }
.foryou-yes { background: #fff; border: 2px solid var(--pink-light); box-shadow: 0 4px 24px rgba(248,135,164,0.12); }
.foryou-no  { background: #F5F5F7; border: 2px solid #E5E5EA; }
.foryou-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.foryou-yes h3 { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.foryou-no h3  { color: var(--mid); }
.foryou-list { list-style: none; }
.foryou-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  gap: 12px;
  color: var(--charcoal);
}
.foryou-list li:last-child { border-bottom: none; }
.foryou-yes .foryou-list li .ico { color: #4BCF7A; font-weight: 800; }
.foryou-no  .foryou-list li .ico { color: #c0c0c0; font-weight: 700; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--gradient);
  padding: 108px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -260px; right: -120px;
}
.final-cta::after {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -180px; left: -100px;
}
.script-tag {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}
.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.05;
  position: relative;
}
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.final-cta .cta-btn {
  background: #fff;
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  font-size: 1rem;
  padding: 18px 44px;
  position: relative;
}
.final-cta .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 48px rgba(0,0,0,0.22); opacity: 1; }
.final-trust {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.final-trust span {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════
   CHALLENGES PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 52vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.18) 55%, rgba(248,135,164,0.12) 100%);
  z-index: 1;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-content { position: relative; z-index: 2; padding: 60px 0; animation: fadeUp 0.9s ease both; }
.page-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.38);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.page-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 8px; }
.page-hero-stat { color: #fff; display: flex; flex-direction: column; gap: 3px; }
.page-hero-stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.page-hero-stat span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.78; }

/* ── FILTER ── */
.challenges-section { padding: 64px 0 24px; background: var(--white); }
.filter-header { text-align: center; margin-bottom: 48px; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 16px; }
.filter-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 50px;
  border: 1.5px solid var(--pink-light);
  background: transparent; color: var(--mid);
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: all 0.22s; letter-spacing: 0.01em; white-space: nowrap;
}
.filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.filter-btn.active { background: var(--gradient-btn); color: #fff; border-color: transparent; box-shadow: 0 4px 18px rgba(248,135,164,0.38); }
.filter-btn .cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.filter-count-bar { text-align: center; margin-bottom: 40px; font-size: 0.82rem; font-weight: 600; color: var(--mid); }
.filter-count-bar span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }

/* ── CHALLENGE LISTING GRID ── */
.challenge-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.listing-card {
  background: #f7f7f8;
  border-radius: var(--radius);
  border: 1.5px solid rgba(248,135,164,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: cardIn 0.5s ease forwards;
}
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.listing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(248,135,164,0.25); }
.listing-card.hidden { display: none; }
.card-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.listing-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.18) 100%); }
.card-tier {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px; z-index: 2;
}
.tier-stark { background: var(--gradient-btn); color: #fff; box-shadow: 0 2px 10px rgba(248,135,164,0.45); }
.tier-mittel { background: rgba(255,255,255,0.92); color: #E09B2D; border: 1px solid rgba(224,155,45,0.3); }
.tier-neu { background: rgba(91,155,213,0.15); color: #5B9BD5; border: 1px solid rgba(91,155,213,0.4); backdrop-filter: blur(6px); }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-cta { margin-top: auto; }
.card-category {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.card-cat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: 2rem; line-height: 1.1; color: var(--charcoal); margin-bottom: 10px; letter-spacing: -0.01em;
}
.card-problem {
  font-size: 0.84rem; color: var(--mid); line-height: 1.55; margin-bottom: 6px;
  padding-left: 14px; border-left: 2px solid rgba(248,135,164,0.35);
}
.card-goal {
  font-size: 0.84rem; color: var(--charcoal); font-weight: 600; line-height: 1.55;
  margin-bottom: 18px; padding-left: 20px; position: relative;
}
.card-goal::before { content: '✓'; position: absolute; left: 0; color: var(--check-color, var(--cat-health)); font-weight: 800; }
.card-cta {
  display: block; text-align: center;
  background: transparent;
  color: var(--pink);
  border: 1.5px solid rgba(248,135,164,0.5);
  font-size: 0.84rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 10px 20px; border-radius: 50px;
  text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.card-cta:hover {
  background: var(--gradient-btn); color: #fff;
  border-color: transparent; transform: translateY(-1px);
}

/* ── ALTERNATING CATEGORY SECTIONS ── */
.challenge-sections-wrapper { padding-bottom: 60px; }
.cat-section { padding: 48px 0 40px; }
.cat-bg-white { background: #fff; }
.cat-bg-tinted { background: linear-gradient(135deg, rgba(248,135,164,0.13) 0%, rgba(176,143,212,0.15) 100%); }

/* ── CATEGORY SECTION HEADERS ── */
.cat-section-title {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.cat-section-title h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: 1.3rem; color: var(--charcoal); letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.cat-section-title h3 .cat-pill { width: 12px; height: 12px; border-radius: 50%; }
.cat-section-title::after { content: ''; flex: 1; height: 1px; background: rgba(248,135,164,0.2); }

/* ── HOW IT WORKS MINI ── */
.how-mini { background: var(--cream); padding: 80px 0; }
.how-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.how-mini-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 24px;
  border: 1.5px solid var(--pink-light); text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.how-mini-card:hover { box-shadow: var(--shadow-pink); transform: translateY(-4px); }
.how-mini-icon { font-size: 2.2rem; margin-bottom: 14px; }
.how-mini-card h4 { font-weight: 800; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 8px; }
.how-mini-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.65; }

/* ── PRICING STRIP ── */
.pricing-strip { background: var(--charcoal); padding: 60px 0; }
.pricing-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.price-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: background 0.3s, border-color 0.3s;
}
.price-card:hover { background: rgba(248,135,164,0.1); border-color: rgba(248,135,164,0.3); }
.price-card.popular { border-color: rgba(248,135,164,0.5); background: rgba(248,135,164,0.08); }
.price-card .popular-badge {
  display: inline-block; background: var(--gradient-btn); color: #fff;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
}
.price-card-icon { font-size: 2rem; margin-bottom: 14px; }
.price-card h4 { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.price-card-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.4rem;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px; line-height: 1;
}
.price-card-period { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.price-card p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer { background: var(--charcoal); padding: 60px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 200px; }
.footer-links h4 { color: rgba(255,255,255,0.55); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links a { display: block; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.82rem; margin-bottom: 9px; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════════════════
   SINGLE CHALLENGE
   ═══════════════════════════════════════════════════════════ */
.challenge-single { padding-top: 68px; }
.challenge-hero-section {
  min-height: 52vh; position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 68px;
}
.challenge-hero-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.challenge-hero-section::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.18) 55%, rgba(248,135,164,0.12) 100%);
}
.challenge-hero-content { position: relative; z-index: 2; padding: 60px 0; color: #fff; }
.challenge-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(3rem, 7vw, 5rem); line-height: 1; margin-bottom: 16px;
}
.challenge-hero-content .problem { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.65; max-width: 560px; margin-bottom: 28px; }
.challenge-goal-section { background: var(--cream); padding: 64px 0; }
.challenge-highlights-section { padding: 64px 0; }
.challenge-highlights-section h2,
.challenge-goal-section h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px;
}
.challenge-highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.highlight-item {
  background: var(--white); border: 1.5px solid var(--pink-light); border-radius: var(--radius);
  padding: 22px 24px; display: flex; gap: 14px; align-items: flex-start;
}
.highlight-item::before { content: '\2736'; color: var(--pink); font-size: 0.9rem; flex-shrink: 0; margin-top: 3px; }
.challenge-cta-section { background: var(--gradient); padding: 80px 0; text-align: center; }
.challenge-cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 28px;
}
.challenge-cta-section .cta-btn { background: #fff; color: var(--pink); -webkit-text-fill-color: var(--pink); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .what-grid, .why-grid, .foryou-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr 1fr; }
  .challenge-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .how-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-strip-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .hero-content { padding: 0 24px; margin-left: 0; }
  .why-img-wrap { display: none; }
  .challenge-highlights-grid { grid-template-columns: 1fr; }
  .page-hero-stats { gap: 20px; }
  /* NAV → Hamburger ab 900px (7 Items passen nicht mehr rein) */
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
}

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: linear-gradient(135deg, #F887A4 0%, #FFBB90 100%);
  z-index: 150;
  padding: 12px 24px 24px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: block;
  transition: opacity 0.15s;
}
.nav-mobile-menu a:hover { opacity: 0.75; }
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a.nav-cta {
  margin-top: 16px;
  background: #fff !important;
  color: #F887A4 !important;
  -webkit-text-fill-color: #F887A4 !important;
  text-align: center;
  border-radius: 50px;
  padding: 13px 24px !important;
  border-bottom: none;
  display: block;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; margin-left: 8px; }
.lang-current {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 1.5px solid rgba(248,135,164,0.4);
  border-radius: 50px; padding: 5px 12px; cursor: pointer;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  color: #F887A4; transition: border-color 0.2s, background 0.2s;
}
.lang-current:hover { border-color: #F887A4; background: rgba(248,135,164,0.07); }
.lang-current svg { opacity: 0.6; transition: transform 0.2s; }
.lang-switcher:hover .lang-current svg { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border-radius: 12px; min-width: 120px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); overflow: hidden;
  list-style: none; margin: 0; padding: 6px 0; z-index: 999;
}
.lang-switcher:hover .lang-dropdown { display: block; }
.lang-dropdown li a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; font-size: 0.82rem; font-weight: 600;
  color: #333; text-decoration: none; transition: background 0.15s;
}
.lang-dropdown li a:hover { background: rgba(248,135,164,0.08); color: #F887A4; }

/* Mobile lang switcher */
.lang-switcher-mobile {
  display: flex; gap: 8px; padding: 16px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.15); margin-top: 8px;
}
.lang-switcher-mobile ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.lang-switcher-mobile li a {
  display: block; padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25); text-decoration: none;
}
.lang-switcher-mobile li.current-lang a {
  background: #fff; color: #F887A4; border-color: #fff;
}

@media (max-width: 520px) {
  .steps-grid, .challenges-grid, .challenge-listing-grid { grid-template-columns: 1fr; }
  .foryou-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .how-mini-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 8px; }
  .filter-btn { font-size: 0.76rem; padding: 8px 14px; }
  .section-title { font-size: clamp(2.8rem, 9vw, 3.4rem); }
  .section-sub { font-size: 0.95rem; }
  .challenge-title { font-size: 1.68rem; }
  .hero h1 { font-size: clamp(2.6rem, 9vw, 3.5rem); }
  .cta-btn { font-size: 0.88rem; padding: 14px 22px; white-space: nowrap; }
  .wa-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}

/* ═══════════════════════════════════════════════════════════
   SUBPAGE — SHARED STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── PAGE HERO (subpages) ── */
.page-hero {
  min-height: 52vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.40) 100%);
  opacity: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  animation: fadeUp 0.8s ease both;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.page-hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 24px 0;
}
.faq-q {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  cursor: default;
}
.faq-q::before { content: 'Q '; color: var(--pink); font-weight: 800; }
.faq-a {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── FINAL CTA (reused) ── */
.final-cta {
  background: var(--charcoal);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(248,135,164,0.18) 0%, transparent 65%);
}
.final-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.final-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.final-cta .cta-btn {
  background: #fff;
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
  box-shadow: 0 8px 40px rgba(248,135,164,0.35);
  font-size: 1rem;
}
.final-cta .cta-btn svg path { fill: var(--pink); }
.final-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.final-trust span { color: rgba(255,255,255,0.45); font-size: 0.8rem; font-weight: 600; }

/* ── FINAL CTA: gradient variant (landing page) ── */
.final-cta-gradient {
  background: linear-gradient(135deg, #F887A4 0%, #FFBB90 100%) !important;
}
.final-cta-gradient::before { background: rgba(255,255,255,0.07) !important; }
.final-cta-gradient .script-tag { color: rgba(255,255,255,0.9) !important; }
.final-cta-gradient h2 { color: #fff; }
.final-cta-gradient p { color: rgba(255,255,255,0.85) !important; }
.final-cta-gradient .cta-btn { box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important; }
.final-cta-gradient .final-trust span { color: rgba(255,255,255,0.75) !important; }

.script-tag {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--pink);
  display: block;
  margin-bottom: 12px;
}

/* ── TESTIMONIALS (reused across pages) ── */
.testimonials { background: var(--cream); padding: 80px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(248,135,164,0.1);
}
.testi-top { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.testi-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2.5px solid var(--pink-light); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-stars { color: #FFB800; font-size: 0.85rem; margin-bottom: 3px; }
.testi-name { font-weight: 800; font-size: 0.95rem; color: var(--charcoal); }
.testi-role { font-size: 0.75rem; color: var(--mid); }
.testi-text { color: var(--mid); font-size: 0.92rem; line-height: 1.75; font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Steps Timeline ── */
.how-steps { background: var(--white); }
.steps-timeline { margin-top: 64px; max-width: 820px; margin-left: auto; margin-right: auto; }
.step-timeline-item {
  display: grid;
  grid-template-columns: 64px 48px 1fr;
  gap: 0 24px;
  align-items: start;
  position: relative;
}
.step-timeline-item--last { }
.step-tl-icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  background: var(--pink-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-tl-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--pink);
  opacity: 0.28;
  line-height: 1;
  padding-top: 8px;
  text-align: center;
}
.step-tl-body { padding-bottom: 12px; }
.step-tl-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.1;
}
.step-tl-body p { color: var(--mid); font-size: 0.96rem; line-height: 1.75; margin-bottom: 12px; }
.step-tl-tip {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.step-tl-connector {
  width: 2px;
  height: 40px;
  background: var(--pink-light);
  margin: 10px 0 10px 31px;
}
.step-support-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.support-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid;
}
.support-pill--light { color: var(--mid); border-color: rgba(90,90,106,0.3); }
.support-pill--personal { color: var(--pink); border-color: var(--pink); background: var(--pink-pale); }
.support-pill--vip { color: #E09B2D; border-color: #E09B2D; background: rgba(224,155,45,0.08); }

/* ── Sample Week ── */
.sample-week { background: var(--charcoal); padding: 80px 0; }
.sample-week-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.sample-goal-card {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-top: 28px;
}
.sample-goal-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 6px;
}
.sample-goal-card strong { color: #fff; font-size: 1rem; line-height: 1.4; }
.sample-days-grid { display: flex; flex-direction: column; gap: 10px; }
.sample-day {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.sample-day--last {
  background: linear-gradient(135deg, rgba(248,135,164,0.2) 0%, rgba(255,187,144,0.15) 100%);
  border-color: rgba(248,135,164,0.35);
}
.sample-day-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  min-width: 44px;
}
.sample-day-task { color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 1.5; }

/* ── Why Reasons ── */
.hiw-why { background: var(--cream); }
.why-reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.why-reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(248,135,164,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.why-reason-icon { font-size: 2rem; margin-bottom: 14px; }
.why-reason-card h4 { font-weight: 800; font-size: 1.05rem; margin-bottom: 10px; }
.why-reason-card p { color: var(--mid); font-size: 0.92rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Fit Quiz ── */
.fit-quiz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.fit-quiz-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid rgba(0,0,0,0.06);
  position: relative;
}
.fit-quiz-highlight {
  border-color: var(--pink);
  box-shadow: 0 8px 40px rgba(248,135,164,0.2);
  transform: translateY(-6px);
}
.fit-quiz-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.fit-quiz-icon { font-size: 2.4rem; margin-bottom: 14px; }
.fit-quiz-card h4 { font-weight: 800; font-size: 1.05rem; margin-bottom: 14px; }
.fit-quiz-card ul { list-style: none; }
.fit-quiz-card ul li { font-size: 0.88rem; color: var(--mid); padding: 6px 0; padding-left: 20px; position: relative; line-height: 1.5; }
.fit-quiz-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--pink); font-weight: 800; }

/* ── Pricing Cards ── */
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 28px;
  border: 2px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-featured {
  border-color: var(--pink);
  box-shadow: 0 16px 60px rgba(248,135,164,0.22);
  transform: translateY(-10px);
}
.pricing-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-tier-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.tier-light { background: rgba(90,90,106,0.1); color: var(--mid); }
.tier-personal { background: var(--pink-pale); color: var(--pink); }
.tier-vip { background: rgba(224,155,45,0.12); color: #C47F00; }
.pricing-icon { font-size: 2.4rem; margin-bottom: 12px; }
.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.9rem;
  margin-bottom: 6px;
}
.pricing-tagline { font-size: 0.88rem; color: var(--mid); margin-bottom: 24px; line-height: 1.5; }
.pricing-price { margin-bottom: 28px; display: flex; align-items: baseline; gap: 6px; }
.price-from { font-size: 0.75rem; color: var(--mid); }
.price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-period { font-size: 0.8rem; color: var(--mid); }
.pricing-features { list-style: none; margin-bottom: 28px; flex-grow: 1; }
.pricing-features li {
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.pf-chk { font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.pf-no { opacity: 0.4; }
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 12px;
}
.pricing-cta:hover { opacity: 0.9; transform: translateY(-2px); }
.pricing-cta--light { background: var(--charcoal); color: #fff; }
.pricing-cta--personal { background: var(--gradient); color: #fff; box-shadow: 0 8px 32px rgba(248,135,164,0.4); }
.pricing-cta--vip { background: linear-gradient(135deg, #E09B2D 0%, #C47F00 100%); color: #fff; }
.pricing-sub-note { font-size: 0.76rem; color: var(--mid); text-align: center; }
.pricing-trust-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 52px;
  padding: 28px 32px;
  background: var(--pink-pale);
  border-radius: var(--radius);
}
.pricing-trust-row span { font-size: 0.85rem; font-weight: 600; color: var(--mid); }

/* ── Supporters ── */
.supporters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.supporter-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(248,135,164,0.1);
}
.supporter-avatar {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pink-pale);
}
.supporter-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.supporter-avatar--mateo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.supporter-initials {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.supporter-info { padding: 20px; }
.supporter-info h4 { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; }
.supporter-specialty {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 10px;
}
.supporter-info p { font-size: 0.84rem; color: var(--mid); line-height: 1.65; font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Story ── */
.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.about-story-img {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}
.about-story-img > img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(248,135,164,0.2);
}
.about-story-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  text-align: center;
}
.about-story-stat-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-story-stat-card span { font-size: 0.78rem; color: var(--mid); line-height: 1.4; max-width: 100px; display: block; }
.about-body-text { font-size: 0.98rem; color: var(--mid); line-height: 1.82; margin-bottom: 18px; }

/* ── Name Meaning ── */
.name-meaning { background: var(--charcoal); padding: 96px 0; }
.name-meaning-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.name-parts {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
  flex-wrap: wrap;
}
.name-part {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 32px 36px;
  flex: 1;
  min-width: 220px;
  text-align: left;
}
.name-part-letters {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}
.name-part-meaning strong { color: #fff; font-size: 1rem; display: block; margin-bottom: 8px; }
.name-part-meaning p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }
.name-part-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--pink);
  opacity: 0.6;
}
.name-phonetic {
  margin-top: 36px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.name-phonetic em { color: var(--orange); font-style: normal; font-weight: 700; }
.name-closing {
  margin-top: 20px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.name-closing strong { color: #fff; }

/* ── Mission ── */
.about-mission { background: var(--white); }
.mission-text-center {
  max-width: 700px;
  margin: 36px auto 52px;
  text-align: center;
}
.mission-text-center p { font-size: 1rem; color: var(--mid); line-height: 1.82; margin-bottom: 14px; }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(248,135,164,0.1);
  text-align: center;
}
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h4 { font-weight: 800; font-size: 0.95rem; margin-bottom: 10px; }
.value-card p { font-size: 0.84rem; color: var(--mid); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */

.contact-section { background: var(--cream); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.contact-aside { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.06);
  border: 2px solid transparent;
}
.contact-card--primary {
  border-color: #25D366;
  box-shadow: 0 10px 48px rgba(37,211,102,0.18);
}
.contact-card--email { }
.contact-card--hours { }
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact-icon--wa {
  width: 68px;
  height: 68px;
  background: #25D366;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}
.contact-icon--email {
  display: block;
}
.contact-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #25D366;
  margin-bottom: 8px;
}
.contact-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 12px;
}
.contact-card p { font-size: 0.95rem; color: var(--mid); line-height: 1.72; margin-bottom: 18px; }
.contact-perks { list-style: none; margin-bottom: 28px; }
.contact-perks li { font-size: 0.9rem; color: var(--mid); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.contact-wa-btn { background: #25D366; box-shadow: 0 8px 32px rgba(37,211,102,0.4); font-size: 1.05rem; padding: 18px 36px; width: 100%; justify-content: center; }
.contact-wa-btn:hover { opacity: 0.92; }
.contact-email-link {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--pink);
  text-decoration: none;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--pink-light);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.contact-email-link:hover { border-color: var(--pink); }
.contact-note { font-size: 0.78rem; color: rgba(0,0,0,0.35); font-style: italic; margin-top: 12px; }
.hours-grid { display: flex; flex-direction: column; gap: 14px; }
.hours-row { display: grid; grid-template-columns: 80px 1fr; gap: 12px; font-size: 0.88rem; }
.hours-day { font-weight: 700; color: var(--charcoal); }
.hours-time { color: var(--mid); line-height: 1.5; }
.contact-reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.contact-reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1.5px solid rgba(248,135,164,0.15);
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.contact-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(248,135,164,0.16);
  border-color: var(--pink);
}
.contact-reason-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-reason-card h4 { font-weight: 800; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 8px; }
.contact-reason-card p { font-size: 0.84rem; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.contact-reason-link { font-size: 0.82rem; font-weight: 700; color: var(--pink); }

/* ═══════════════════════════════════════════════════════════
   SUBPAGE RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .sample-week-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .fit-quiz-grid { grid-template-columns: 1fr; }
  .fit-quiz-highlight { transform: none; }
  .supporters-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-stat-card { right: 16px; bottom: -16px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-reason-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .name-parts { flex-direction: column; }
}
@media (max-width: 520px) {
  .step-timeline-item { grid-template-columns: 48px 1fr; }
  .step-tl-num { display: none; }
  .sample-days-grid { gap: 8px; }
  .supporters-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-reasons-grid { grid-template-columns: 1fr 1fr; }
  .pricing-trust-row { flex-direction: column; gap: 12px; align-items: center; text-align: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(2.6rem, 9vw, 4rem); }
}

/* ============================================================
   CHALLENGE PAGE — Fitness Comeback (& future challenge pages)
   ============================================================ */

/* ── Hero ── */
.challenge-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.challenge-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.challenge-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.22) 55%, rgba(248,135,164,0.10) 100%);
  z-index: 1;
}
.challenge-hero-inner {
  position: relative;
  z-index: 2;
}
.challenge-hero-content {
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}
.challenge-label {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.challenge-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
}
.challenge-hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 520px;
  margin-bottom: 14px;
  line-height: 1.55;
}
.challenge-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-style: italic;
  margin-bottom: 32px;
}

/* ── Real Talk ── */
.challenge-real-talk {
  background: var(--cream);
  padding: 72px 0;
}
.challenge-real-talk-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.real-talk-quote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  border: none;
  margin: 0;
  padding: 0;
}

/* ── Promise ── */
.challenge-promise {
  padding: 80px 0;
  background: #fff;
}
.challenge-promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.challenge-promise-text p {
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.challenge-promise-note {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--pink) !important;
}
.challenge-promise-stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promise-stat-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 3px solid var(--pink);
}
.promise-stat-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.promise-stat-card span {
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Experience ── */
.challenge-experience {
  background: var(--charcoal);
  padding: 80px 0;
}
.challenge-experience .section-label { color: rgba(255,255,255,0.55); }
.challenge-experience .section-title { color: #fff; }
.challenge-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.challenge-exp-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.challenge-exp-item--highlight {
  border-color: rgba(248,135,164,0.4);
  background: rgba(248,135,164,0.08);
}
.challenge-exp-item p {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.exp-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

/* ── Mirror ── */
.challenge-mirror {
  background: var(--cream);
  padding: 80px 0;
}
.challenge-mirror-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.mirror-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mirror-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--charcoal);
}
.mirror-chk {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ── Mid CTA ── */
.challenge-mid-cta {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid rgba(248,135,164,0.15);
  border-bottom: 1px solid rgba(248,135,164,0.15);
}
.challenge-mid-cta p {
  color: var(--mid);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ── Pricing (compact) ── */
.challenge-pricing {
  background: var(--charcoal);
  padding: 80px 0;
}
.challenge-pricing .section-label { color: rgba(255,255,255,0.55); }
.challenge-pricing .section-title { color: #fff; }
.challenge-pricing .section-sub { color: rgba(255,255,255,0.65); }
.challenge-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.challenge-price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.challenge-price-card--featured {
  border-color: var(--pink);
  background: rgba(248,135,164,0.1);
  transform: scale(1.03);
}
.challenge-price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.challenge-price-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.challenge-price-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.challenge-price-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.challenge-support-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.challenge-support-link:hover { color: var(--pink); }

/* ── Final CTA extras ── */
.challenge-text-cta {
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}
.challenge-urgency {
  margin-top: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  font-style: italic;
}
.cta-btn--white {
  background: #fff;
  color: var(--charcoal);
}
.cta-btn--white svg path { fill: var(--pink); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .challenge-promise-grid { grid-template-columns: 1fr; gap: 40px; }
  .challenge-mirror-inner { grid-template-columns: 1fr; gap: 32px; }
  .challenge-exp-grid { grid-template-columns: repeat(2, 1fr); }
  .challenge-price-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .challenge-price-card--featured { transform: none; }
}
@media (max-width: 520px) {
  .challenge-exp-grid { grid-template-columns: 1fr; }
  .challenge-hero h1 { font-size: clamp(2.8rem, 10vw, 3.8rem); }
}

/* ═══════════════════════════════════════════════════════════
   UPGRADE PACK — added 2026-04
   ═══════════════════════════════════════════════════════════ */

/* ── STATS BAR (Aufgabe 1) ── */
.stats-bar {
  background: var(--cream);
  border-top: 1px solid rgba(248,135,164,0.15);
  border-bottom: 1px solid rgba(248,135,164,0.15);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ── WHATSAPP CHAT MOCKUP (Aufgabe 2) ── */
.wa-mockup {
  background: #ECE5DD;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  max-width: 340px;
  width: 100%;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
}
.wa-mockup-header {
  background: #075E54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-mockup-avatar {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.wa-mockup-name { color: #fff; font-weight: 600; font-size: 0.9rem; }
.wa-mockup-status { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.wa-mockup-body {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 380px;
  overflow-y: auto;
}
.wa-msg { display: flex; flex-direction: column; }
.wa-msg--incoming { align-items: flex-start; }
.wa-msg--outgoing { align-items: flex-end; }
.wa-bubble {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.45;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.wa-msg--incoming .wa-bubble { background: #fff; border-top-left-radius: 2px; color: #1c1c1e; }
.wa-msg--outgoing .wa-bubble { background: #DCF8C6; border-top-right-radius: 2px; color: #1c1c1e; }
.wa-msg--evening .wa-bubble { background: #fff3cd; border-left: 3px solid var(--orange); }
.wa-time {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.38);
  margin-top: 3px;
  padding: 0 4px;
}
/* Phone frame wrapper (desktop) */
.what-img-wrap { display: flex; justify-content: center; align-items: center; }
@media (max-width: 860px) {
  .wa-mockup { max-width: 100%; border-radius: 12px; }
  .wa-mockup-body { max-height: 280px; }
}

/* ── TEAM SECTION — COMPACT (Aufgabe 3) ── */
.team-section { padding: 72px 0; }
.team-avatars-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.team-avatar-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.team-avatar-img {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--pink-light);
  box-shadow: 0 4px 16px rgba(248,135,164,0.18);
}
.team-avatar-img img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-name { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.team-avatar-spec { font-size: 0.72rem; color: var(--mid); }
.team-process-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.team-process-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 500;
}
.team-process-icon { font-size: 1.1rem; flex-shrink: 0; }
@media (max-width: 520px) {
  .team-avatars-row { gap: 24px; }
  .team-process-points { padding: 20px; }
}

/* ── FOOTER LOCATIONS (Aufgabe 4) ── */
.footer-locations {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ── MICRO-ANIMATIONS (Aufgabe 8) ── */

/* Scroll reveal — base state set by JS, fallback if JS fails */
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Challenge cards — hover lift */
.challenge-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}

/* CTA button — scale on hover (already has opacity/translateY, add scale) */
.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

/* FAQ accordion smooth open/close */
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 16px;
}

/* ── PREFERS-REDUCED-MOTION — respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .wa-float { animation: none; }
  .strip-inner { animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   CHALLENGE DETAIL v2 — New Sections (2026-04)
   ═══════════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.challenge-breadcrumb {
  position: relative; z-index: 2;
  padding-top: 100px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.challenge-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.challenge-breadcrumb a:hover { color: #fff; }

/* ── Category Badge ── */
.challenge-category-badge {
  display: inline-block;
  background: rgba(248,135,164,0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(248,135,164,0.35);
  margin-bottom: 12px;
}

/* ── SECTION 3: Day-by-Day Timeline ── */
.challenge-journey {
  padding: 80px 0;
  background: var(--cream);
}
.journey-timeline {
  max-width: 720px;
  margin: 48px auto 0;
}
.journey-day {
  position: relative;
  margin-bottom: 0;
}
.journey-day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  transition: color 0.2s;
}
.journey-day-header:hover { color: var(--pink); }
.journey-day-num {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}
.journey-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  transition: background 0.3s;
  flex-shrink: 0;
  z-index: 1;
}
.journey-day--open .journey-circle,
.journey-day-header:hover .journey-circle {
  background: var(--gradient);
}
.journey-line {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 18px);
  background: rgba(28,28,30,0.12);
  z-index: 0;
}
.journey-day-title {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.journey-emoji { font-size: 1.2rem; flex-shrink: 0; }
.journey-toggle {
  font-size: 1.4rem;
  color: var(--mid);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.journey-day--open .journey-toggle { transform: rotate(45deg); }

/* Day body — collapsed by default, open on .journey-day--open */
.journey-day-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 64px;
}
.journey-day--open .journey-day-body {
  max-height: 400px;
  padding: 0 0 24px 64px;
}
.journey-day-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: 12px;
}
.journey-task {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  border: 1px solid rgba(248,135,164,0.15);
}
.journey-task-label {
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.journey-task-time {
  margin-left: auto;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
}

/* Desktop: all days open */
@media (min-width: 861px) {
  .journey-day-body {
    max-height: 400px !important;
    padding: 0 0 24px 64px !important;
  }
  .journey-toggle { display: none; }
  .journey-day .journey-circle {
    background: var(--gradient);
  }
}

/* ── SECTION 4: Concrete Outcomes ── */
.challenge-outcomes {
  padding: 80px 0;
  background: #fff;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.outcome-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(248,135,164,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.outcome-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.outcome-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.outcome-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.outcome-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── SECTION 5: Comparison Table ── */
.challenge-compare {
  padding: 80px 0;
  background: var(--cream);
}
.compare-table {
  max-width: 800px;
  margin: 48px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-col {
  padding: 16px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-col--alone {
  background: #f0f0f0;
  color: var(--mid);
}
.compare-col--chaivy {
  background: var(--gradient);
  color: #fff;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.compare-cell {
  padding: 20px 24px;
  font-size: 0.88rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compare-cell--alone {
  background: #fafafa;
  color: var(--mid);
}
.compare-cell--chaivy {
  background: #fff;
  color: var(--charcoal);
}
.compare-x {
  color: #e74c3c;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}
.compare-check {
  color: #27ae60;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ── SECTION 6: Challenge FAQ ── */
.challenge-faq {
  padding: 80px 0;
  background: #fff;
}
.faq-accordion {
  max-width: 700px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(28,28,30,0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--pink); }
.faq-toggle {
  font-size: 1.3rem;
  color: var(--pink);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item--open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item--open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--mid);
}

/* ── SECTION 10: Related Challenges ── */
.challenge-related {
  padding: 80px 0;
  background: var(--cream);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(248,135,164,0.12);
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.related-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  background: rgba(248,135,164,0.1);
  padding: 4px 12px;
  border-radius: 12px;
}
.related-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 4px 0;
}
.related-arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  margin-top: auto;
}

/* ── Challenge Detail v2 — Responsive ── */
@media (max-width: 860px) {
  .outcomes-grid { grid-template-columns: 1fr; max-width: 480px; }
  .compare-table { border-radius: 12px; }
  .compare-header { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell--alone { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.04); }
  .related-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .challenge-breadcrumb { padding-top: 80px; }
}
@media (max-width: 520px) {
  .journey-day-header { gap: 10px; font-size: 0.9rem; }
  .journey-day-body { padding-left: 52px !important; }
  .journey-circle { width: 36px; height: 36px; font-size: 0.9rem; }
  .journey-day-num { width: 40px; }
  .outcome-card { padding: 24px 20px; }
  .compare-col { padding: 12px 16px; font-size: 0.85rem; }
  .compare-cell { padding: 16px; font-size: 0.82rem; }
}

/* ============================================================
   FREEBIE PAGES — 2026-04
   Free Tools, Life Check, Daily Habits, Stress Reset,
   Morning Blueprint, Dream Life
   ============================================================ */

/* ── Shared: .cta-btn--outline ── */
.cta-btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--pink);
  color: var(--pink);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta-btn--outline:hover { background: var(--pink); color: #fff; }

/* ── Shared: .free-mini-btn ── */
.free-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(248,135,164,0.35);
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.free-mini-btn:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-pale); }

/* ── Free Tools Hub ── */
.free-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.free-tool-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid rgba(248,135,164,0.15);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 2px 16px rgba(248,135,164,0.07);
}
.free-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(248,135,164,0.18);
  border-color: var(--pink);
}
.free-tool-icon { font-size: 2.2rem; margin-bottom: 12px; }
.free-tool-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.free-tool-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.free-tool-card p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.free-tool-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pink);
  margin-top: auto;
}

/* ── Life Check ── */
.life-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.life-area-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid rgba(248,135,164,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.life-area-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.life-area-icon { font-size: 2rem; }
.life-area-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--pink);
  text-transform: uppercase;
}
.life-area-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 2px 0 0;
}
.life-area-question {
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.5;
}
.life-area-desc {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.life-area-scale { margin-top: 4px; }
.life-area-scale-label { margin-bottom: 8px; }
.scale-low { font-size: 0.78rem; color: #e06060; font-weight: 600; }
.scale-high { font-size: 0.78rem; color: #5BBE7A; font-weight: 600; }
.life-area-dots {
  display: flex;
  gap: 6px;
  margin: 8px 0;
  flex-wrap: wrap;
}
.life-area-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid);
  cursor: default;
}
.dot-low { border-color: #e06060; color: #e06060; background: #fff0f0; }
.dot-high { border-color: #5BBE7A; color: #5BBE7A; background: #f0fff4; }
.life-check-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}
.lc-area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 50px;
  border: 1.5px solid rgba(248,135,164,0.2);
  font-size: 0.88rem;
  color: var(--charcoal);
}
.lc-area-pill a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
}
.lc-area-pill a:hover { text-decoration: underline; }

/* ── Daily Habits ── */
.daily-routine-section { background: #fff; }
.daily-routine-section:nth-child(even) { background: var(--cream); }
.daily-routine-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.daily-routine-emoji { font-size: 3rem; }
.daily-routine-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin: 0; }
.daily-routine-tagline { font-size: 1rem; color: var(--mid); margin: 4px 0 0; font-style: italic; }
.daily-habits-list { display: flex; flex-direction: column; gap: 16px; }
.daily-habit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1.5px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.daily-routine-section:nth-child(even) .daily-habit-item { background: #fff; }
.daily-habit-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.daily-habit-body { flex: 1; }
.daily-habit-name { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin: 0 0 6px; }
.daily-habit-detail { font-size: 0.9rem; color: var(--mid); line-height: 1.6; margin: 0; }
.daily-habit-check {
  font-size: 1.3rem;
  color: rgba(0,0,0,0.2);
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}
.daily-habit-check:hover { color: #5BBE7A; }

/* ── Stress Reset ── */
.stress-technique-section { padding: 24px 0; }
.stress-technique-section:nth-child(odd) { background: var(--cream); }
.stress-technique-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid rgba(248,135,164,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.stress-tech-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.stress-tech-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}
.stress-tech-icon { font-size: 2.2rem; flex-shrink: 0; }
.stress-tech-title { font-size: 1.4rem; font-weight: 800; color: var(--charcoal); margin: 0 0 6px; }
.stress-tech-tags { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.stress-tech-time {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--pink-pale);
  color: var(--pink);
  padding: 3px 10px;
  border-radius: 20px;
}
.stress-tech-tag {
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 600;
}
.stress-tech-intro {
  font-size: 0.98rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.stress-tech-steps { margin-bottom: 20px; }
.stress-tech-steps h4 { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.stress-tech-steps ol { padding-left: 20px; }
.stress-tech-steps ol li { font-size: 0.93rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 6px; }
.stress-tech-tip {
  background: var(--cream);
  border-left: 3px solid var(--pink);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}
.tip-label { font-weight: 700; color: var(--charcoal); margin-right: 6px; }

/* ── Morning Blueprint ── */
.mb-habit-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1.5px solid rgba(248,135,164,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}
.mb-habit-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mb-habit-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}
.mb-habit-icon { font-size: 2rem; flex-shrink: 0; }
.mb-habit-title { font-size: 1.2rem; font-weight: 800; color: var(--charcoal); margin: 0 0 4px; }
.mb-habit-time {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--pink-pale);
  color: var(--pink);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.mb-habit-body { display: flex; flex-direction: column; gap: 12px; }
.mb-habit-why, .mb-habit-how {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.7;
}
.mb-habit-science {
  background: var(--cream);
  border-left: 3px solid var(--orange);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}
.science-label { font-weight: 700; color: var(--charcoal); margin-right: 4px; }
.mb-checklist {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mb-check-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.06);
}
.mb-check-icon { font-size: 1.3rem; flex-shrink: 0; }
.mb-check-title { font-size: 0.93rem; font-weight: 700; color: var(--charcoal); flex: 1; }
.mb-check-time { font-size: 0.78rem; color: var(--mid); flex-shrink: 0; }

/* ── Dream Life ── */
.dl-step-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid rgba(248,135,164,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}
.dl-step-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dl-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
}
.dl-step-icon { font-size: 2.2rem; flex-shrink: 0; }
.dl-step-title { font-size: 1.25rem; font-weight: 800; color: var(--charcoal); margin: 0 0 6px; }
.dl-step-tagline { font-size: 0.92rem; color: var(--pink); font-weight: 600; font-style: italic; margin: 0; }
.dl-step-body { display: flex; flex-direction: column; gap: 20px; }
.dl-step-content { font-size: 0.96rem; color: var(--charcoal); line-height: 1.75; margin: 0; }
.dl-exercise-box {
  background: var(--pink-pale);
  border-radius: 14px;
  padding: 24px;
}
.dl-exercise-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.dl-exercise-box p { font-size: 0.92rem; color: var(--charcoal); line-height: 1.7; margin: 0; }
.dl-prompts { background: var(--cream); border-radius: 14px; padding: 20px 24px; }
.dl-prompts-label { font-size: 0.82rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.dl-prompts ul { padding-left: 16px; margin: 0; }
.dl-prompts ul li { font-size: 0.9rem; color: var(--charcoal); line-height: 1.65; margin-bottom: 6px; font-style: italic; }

/* ── Freebie Responsive ── */
@media (max-width: 900px) {
  .free-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .life-areas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .free-tools-grid { grid-template-columns: 1fr; }
  .stress-technique-card { padding: 28px 20px; }
  .mb-habit-card { padding: 24px 20px; }
  .dl-step-card { padding: 28px 20px; }
  .dl-step-header { gap: 12px; }
  .dl-step-num { font-size: 1.8rem; }
  .life-area-card { padding: 24px 20px; }
  .daily-habit-item { padding: 18px 16px; }
}
