/* ======================================================
   THE SELF-BOOKING SYSTEM — Soft Luxury Design
   Light, airy, premium. Inspired by BossBabe.
   ====================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand — softened for luxury feel */
  --accent: #6b66e9;          /* softened periwinkle-blue */
  --accent-light: #eeecfc;    /* barely-there lavender */
  --accent-hover: #5753d0;
  --accent-glow: rgba(107,102,233,.18);
  --lime: #deff55;
  --lime-soft: #f2ffb8;        /* softened for backgrounds */
  --lime-glow: rgba(222,255,85,.25);

  /* Warm neutrals */
  --ivory: #fdfbf7;
  --cream: #f9f6f0;
  --blush: #fdf5f0;
  --warm-white: #fefefe;
  --taupe-100: #f0ece6;
  --taupe-200: #e4dfd7;
  --taupe-300: #cfc8bd;

  /* Text */
  --text: #000000;
  --text-soft: #7a7067;
  --text-muted: #a69e94;

  /* Soft reds/greens for compare cards */
  --soft-red-bg: #fef6f4;
  --soft-red-border: #f5ddd7;
  --soft-red-icon: #d4715a;
  --soft-green-bg: #f4faf4;
  --soft-green-border: #d4ecd4;
  --soft-green-icon: #5a9e6b;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --shadow-soft: 0 2px 12px rgba(61,54,49,.04);
  --shadow-card: 0 4px 24px rgba(61,54,49,.06);
  --shadow-lift: 0 8px 32px rgba(61,54,49,.08);
  --font: 'DM Sans', system-ui, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--text);
  font-size: 17px;
  line-height: 1.78;
  background: var(--warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
strong { font-weight: 600; color: var(--text); }
.text-center { text-align: center; }

/* ---------- TYPE ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); letter-spacing: -0.01em; margin-bottom: 24px; }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
h1 em, h2 em { color: var(--accent); font-style: italic; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin-top: 8px;
}
.text-center .eyebrow::after { margin-left: auto; margin-right: auto; }

.muted { color: var(--text-soft); }

/* ---------- LAYOUT ---------- */
.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 680px; margin-left: auto; margin-right: auto; }
.narrow > p { margin-bottom: 16px; }
.narrow > p:last-child { margin-bottom: 0; }
.narrow-lg { max-width: 820px; margin-left: auto; margin-right: auto; }

.section { padding: 80px 0; }
.section--ivory { background: var(--ivory); }
.section--blush { background: var(--blush); }

.section-sub { font-size: .98rem; color: var(--text-soft); max-width: 560px; margin: 0 0 12px; }

/* ---------- STICKY NAV ---------- */
.sticky-nav {
  position: fixed;
  top: -64px;
  left: 0; right: 0;
  z-index: 100;
  background: rgba(253,251,247,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--taupe-200);
  padding: 12px 24px;
  transition: top .4s var(--ease);
}
.sticky-nav.visible { top: 0; }
.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 28px;
  width: auto;
}
.nav-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-pill);
  transition: all .25s var(--ease);
}
.nav-btn:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-1px);
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .01em;
}
.announcement-bar strong { color: var(--lime); }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
  padding: 48px 24px 0;
  position: relative;
  overflow: hidden;
}
.hero-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 36px;
}
.hero h1 { margin-bottom: 20px; }
.hero-desc {
  font-size: .95rem;
  color: var(--text-soft);
  margin-bottom: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero .btn { margin-bottom: 48px; }
.screen-img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 18px 44px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn--lg { font-size: 17px; padding: 22px 52px; }

/* Lime CTA — used for hero and final high-impact buttons */
.btn--lime {
  background: var(--lime);
  color: var(--text);
  box-shadow: 0 4px 20px var(--lime-glow);
}
.btn--lime:hover {
  background: #d4f040;
  color: var(--text);
  box-shadow: 0 8px 28px var(--lime-glow);
}

.cta-row { text-align: center; margin-top: 44px; }
.micro {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
.micro span { font-style: italic; }

/* ---------- TRUST BAR ---------- */
.trust-bar { padding: 28px 0; background: var(--warm-white); border-bottom: 1px solid var(--taupe-100); }
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}
.trust-item svg { color: var(--accent); }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--taupe-300); }

/* ---------- SOFT CARD ---------- */
.soft-card {
  background: var(--warm-white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 28px 0;
  box-shadow: var(--shadow-soft);
}
.soft-card p { margin-bottom: 14px; }
.soft-card p:last-child { margin-bottom: 0; }

/* ---------- ACCENT BLOCK ---------- */
.accent-block {
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px 32px;
  margin: 28px 0;
}
.small-label { font-size: .88rem; color: var(--text-muted); margin-bottom: 4px; }
.accent-big {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

/* ---------- TWO CARDS (compare) ---------- */
.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.mini-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid;
}
.mini-card h3 { font-family: var(--font); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.mini-card--soft-red { background: var(--soft-red-bg); border-color: var(--soft-red-border); }
.mini-card--soft-green { background: var(--soft-green-bg); border-color: var(--soft-green-border); }

/* ---------- ICON LISTS ---------- */
.icon-list { list-style: none; margin: 16px 0; }
.icon-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: .97rem;
  line-height: 1.6;
}
.icon-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: .85rem;
}
.icon-list--check li::before { content: '✓'; color: var(--soft-green-icon); }
.icon-list--x li::before { content: '✕'; color: var(--soft-red-icon); }
.icon-list--center { display: inline-block; text-align: left; }

/* ---------- SHORT STACK ---------- */
.short-stack { margin: 20px 0; }
.short-stack p { margin-bottom: 4px; }

.soft-stack { text-align: center; margin: 20px 0; }
.soft-stack p { color: var(--text-muted); margin-bottom: 3px; font-size: .95rem; }

/* ---------- PULL QUOTE ---------- */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  margin: 32px auto;
  padding: 24px 0;
  border-top: 1px solid var(--taupe-200);
  border-bottom: 1px solid var(--taupe-200);
  max-width: 500px;
  line-height: 1.45;
}

/* ---------- CENTERED STATEMENT ---------- */
.centered-statement {
  text-align: center;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 28px auto;
}

/* ---------- HIGHLIGHT CARD ---------- */
.highlight-card {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 28px 36px;
  border-radius: var(--radius);
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  box-shadow: 0 6px 28px var(--accent-glow);
}

/* ---------- ACCENT LINE ---------- */
.accent-line {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin: 28px auto;
}

/* ---------- INSET CARD ---------- */
.inset-card {
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  text-align: center;
  margin: 24px auto;
  max-width: 520px;
}
.inset-card p { margin: 0; font-size: 1.02rem; }

/* ---------- FLOW VISUAL ---------- */
.flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 36px 0;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.flow-circle {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  color: var(--accent);
}
.flow-step span { font-weight: 600; font-size: .88rem; color: var(--accent); }
.flow-line {
  width: 48px;
  height: 2px;
  background: var(--taupe-200);
  margin-bottom: 28px;
}

/* ---------- ITALIC BLOCK ---------- */
.italic-block {
  text-align: center;
  margin: 28px auto;
  padding: 24px 0;
  border-top: 1px solid var(--taupe-200);
  border-bottom: 1px solid var(--taupe-200);
}
.italic-block p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ---------- PILL LIST ---------- */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
}
.pill-list span {
  background: var(--accent-light);
  color: var(--text-soft);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 500;
}

/* ---------- DEPENDS ROW ---------- */
.depends-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 16px 0;
  font-size: .93rem;
  color: var(--text-soft);
}
.depends-row .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--taupe-300); }

/* ---------- SOFT GRID 3 ---------- */
.soft-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.soft-icon-card {
  background: var(--ivory);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.soft-icon-card svg { margin: 0 auto 12px; display: block; color: var(--accent); }
.soft-icon-card p { margin: 0; font-size: .93rem; color: var(--text-soft); }

/* ---------- OUTCOME GRID ---------- */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 520px;
  margin: 24px auto;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--warm-white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--text-soft);
  text-align: left;
}
.outcome-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.outcome-item strong { display: block; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.outcome-detail { font-size: .84rem; color: var(--text-muted); line-height: 1.45; }

/* ---------- PILLAR ROW ---------- */
.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.pillar-card {
  background: var(--warm-white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all .3s var(--ease);
}
.pillar-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.pillar-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  background: var(--lime);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.pillar-card p { font-size: .93rem; margin-bottom: 6px; }
.pillar-card p:last-child { margin-bottom: 0; }

/* ---------- STEPS GRID ---------- */
.included-intro { text-align: left; max-width: none; margin: 0 0 44px; }
.included-intro p { color: var(--text-soft); margin-bottom: 14px; }
.included-intro p:last-child { margin-bottom: 0; }
.included-intro strong { color: var(--text); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.step-card {
  background: var(--warm-white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all .3s var(--ease);
}
.step-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: .35;
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent);
  opacity: .15;
  z-index: -1;
  border-radius: 2px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { font-size: .93rem; color: var(--text-soft); margin-bottom: 8px; }

/* ---------- MODULES ---------- */
.module-list { margin-top: 36px; }
.module {
  background: var(--warm-white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s var(--ease);
}
.module:hover { box-shadow: var(--shadow-card); }
.module-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--taupe-100);
  flex-wrap: wrap;
}
.module-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.module-head h3 { margin: 0; font-size: 1.02rem; }
.module-sub { padding: 14px 28px 0; font-style: italic; color: var(--text-soft); font-size: .9rem; }
.module ul { margin: 10px 28px 16px; padding-left: 16px; }
.module li { font-size: .88rem; color: var(--text-soft); margin-bottom: 5px; line-height: 1.55; }
.module-note {
  padding: 12px 28px;
  border-top: 1px solid var(--taupe-100);
  font-size: .84rem;
  color: var(--accent);
  font-weight: 500;
}

/* Featured modules (4 & 5) */
.module--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.module-num--featured {
  background: var(--accent);
  color: white;
}

/* ---------- BONUSES ---------- */
.bonus-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.bonus-card {
  background: var(--warm-white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: all .3s var(--ease);
}
.bonus-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.bonus-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.bonus-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.bonus-card ul { list-style: none; margin-top: 14px; }
.bonus-card li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: .88rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.bonus-card li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 500; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.testimonial-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--taupe-200);
  box-shadow: var(--shadow-card);
  transition: all .3s var(--ease);
}
.testimonial-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.testimonial-img img { width: 100%; }

/* ---------- STATS ---------- */
.stats-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  margin: 32px auto;
  flex-wrap: wrap;
}
.stat-block { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc { font-size: .88rem; color: var(--text-soft); font-weight: 500; display: block; }

/* ---------- TESTIMONIAL PULL QUOTE ---------- */
.testimonial-pull {
  max-width: 520px;
  margin: 36px auto 0;
  text-align: center;
}
.testimonial-pull blockquote {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.testimonial-pull cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font);
  font-size: .88rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .02em;
}

/* ---------- GUARANTEE ---------- */
.guarantee-card {
  background: var(--ivory);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  padding: 52px 44px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.guarantee-card h2 { margin-bottom: 20px; }
.guarantee-body p { color: var(--text-soft); margin-bottom: 12px; font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 32px; }
.faq {
  background: var(--warm-white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq:hover { border-color: var(--accent); }
.faq[open] { border-color: var(--accent); box-shadow: var(--shadow-soft); }
.faq summary {
  padding: 18px 24px;
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { flex: 1; }
.faq-icon { flex-shrink: 0; color: var(--accent); transition: transform .3s var(--ease); }
.faq[open] .faq-icon { transform: rotate(180deg); }
.faq-body { padding: 0 24px 20px; }
.faq-body p { color: var(--text-soft); font-size: .93rem; margin-bottom: 8px; }

/* ---------- FINAL COPY ---------- */
.final-copy { max-width: 560px; margin: 0 auto; }
.final-copy p { color: var(--text-soft); margin-bottom: 14px; }
.final-copy strong { color: var(--text); }

/* ---------- RECAP ---------- */
.recap-card {
  background: var(--ivory);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 540px;
  margin: 12px auto 32px;
  box-shadow: var(--shadow-soft);
}
.recap-card p { font-weight: 500; margin-bottom: 8px; }
.recap-divider { height: 1px; background: var(--taupe-200); margin: 20px 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--cream);
  color: var(--text-soft);
  padding: 44px 24px;
  border-top: 1px solid var(--taupe-200);
}
.footer-logo { max-width: 150px; margin: 0 auto 16px; opacity: .5; }
.footer p { font-size: 13px; margin-bottom: 4px; }
.footer a { color: var(--text-soft); }
.footer a:hover { color: var(--accent); }

/* ---------- MEET BREE ---------- */
.meet-bree {
  display: grid;
  grid-template-columns: .4fr .6fr;
  gap: 40px;
  align-items: center;
}
.bree-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.bree-text .eyebrow { margin-bottom: 8px; }
.bree-text h2 { margin-bottom: 16px; }
.bree-text p { color: var(--text-soft); margin-bottom: 12px; font-size: .95rem; }

/* ---------- FEATURED STEP CARDS ---------- */
.step-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
}
.step-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- GUARANTEE SECTION ---------- */
.section--guarantee {
  background: linear-gradient(180deg, var(--warm-white), var(--ivory));
}

/* ---------- COURSE MOCKUP ---------- */
.mockup-scene {
  display: flex;
  justify-content: center;
  margin: 48px auto 40px;
  max-width: 780px;
}

/* Devices */
.device--laptop { z-index: 3; }
.device--tablet { z-index: 4; position: absolute; right: 60px; bottom: 20px; }
.device--phone { z-index: 5; position: absolute; right: 10px; bottom: 14px; }
.device--papers { z-index: 2; position: absolute; left: 10px; bottom: 20px; }

/* Laptop */
.device__bezel {
  background: #2d2a2e;
  border-radius: 10px 10px 0 0;
  padding: 8px 8px 6px;
  width: 360px;
}
.device__screen {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.device__base {
  background: linear-gradient(180deg, #c8c4c0, #d8d4d0);
  height: 12px;
  width: 400px;
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
  margin-left: -20px;
  position: relative;
}
.device__base::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #b8b4b0;
  border-radius: 2px;
}

/* Tablet */
.device__bezel--tablet {
  border-radius: 14px;
  padding: 10px;
  width: 200px;
}
.device__bezel--tablet .device__screen { aspect-ratio: 3 / 4; }

/* Phone */
.device__bezel--phone {
  border-radius: 18px;
  padding: 8px 6px;
  width: 120px;
}
.device__bezel--phone .device__screen { aspect-ratio: 9 / 16; border-radius: 6px; }

/* Screen Content Shared */
.screen-content { padding: 10px; height: 100%; display: flex; flex-direction: column; }
.sc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--taupe-100);
  margin-bottom: 8px;
}
.sc-header span { font-size: 7px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .05em; }
.sc-header--alt { border-bottom-color: var(--accent-light); }
.sc-header--alt span { color: var(--accent); font-size: 6px; }
.sc-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.sc-hero-block { padding: 8px 0; }
.sc-badge {
  display: inline-block;
  font-size: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: white;
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.sc-line { border-radius: 2px; margin-bottom: 4px; }
.sc-line--lg { height: 5px; width: 85%; background: var(--taupe-200); }
.sc-line--md { height: 4px; width: 65%; background: var(--taupe-100); }
.sc-line--sm { height: 3px; width: 50%; background: var(--taupe-100); }

.sc-modules { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sc-mod {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  background: var(--ivory);
  border-radius: 3px;
  border: 1px solid var(--taupe-100);
}
.sc-mod-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); border: 1px solid var(--accent); flex-shrink: 0; }

.sc-img-placeholder {
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-light), var(--blush));
  border-radius: 4px;
  margin-bottom: 6px;
}
.sc-btn-mini {
  width: 50%;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  margin: 6px auto 0;
}

.sc-email-line {
  height: 3px;
  width: 90%;
  background: var(--taupe-100);
  border-radius: 2px;
  margin-bottom: 3px;
}
.sc-email-line--short { width: 60%; }

/* Papers */
.device--papers { display: flex; position: relative; width: 130px; height: 170px; }
.paper {
  position: absolute;
  background: white;
  border: 1px solid var(--taupe-200);
  border-radius: 6px;
  padding: 10px;
  box-shadow: var(--shadow-card);
  width: 120px;
}
.paper--back { transform: rotate(4deg); top: 0; left: 8px; height: 150px; }
.paper--front { transform: rotate(-3deg); top: 10px; left: 0; height: 150px; z-index: 1; }
.paper-header {
  font-size: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent-light);
}
.paper-lines { display: flex; flex-direction: column; gap: 5px; }
.paper-checklist { display: flex; flex-direction: column; gap: 5px; }
.paper-check {
  display: flex;
  align-items: center;
  gap: 5px;
}
.paper-check span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--taupe-300);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Discount Badge */
.mockup-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -220px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
  z-index: 10;
  animation: badgePulse 3s ease-in-out infinite;
}
.badge-percent { font-size: 20px; font-weight: 700; line-height: 1; }
.badge-off { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Mockup responsive */
@media (max-width: 700px) {
  .device--laptop .device__bezel { width: 280px; }
  .device--laptop .device__base { width: 310px; margin-left: -15px; }
}

/* ---------- ANIMATIONS ---------- */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.anim.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .hero { padding: 40px 20px 0; }
  .two-cards { grid-template-columns: 1fr; }
  .pillar-row { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .bonus-row { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .outcome-grid { grid-template-columns: 1fr; max-width: 400px; }
  .stats-row { gap: 28px; }
  .meet-bree { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .bree-photo img { max-width: 280px; margin: 0 auto; }
  .nav-logo { height: 22px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .hero { padding: 40px 16px 0; }
  .container { padding: 0 16px; }
  .btn { padding: 16px 36px; font-size: 14px; width: 100%; }
  .btn--lg { padding: 18px 40px; font-size: 15px; }
  .soft-card { padding: 24px; }
  .accent-block { padding: 22px 24px; }
  .mini-card { padding: 22px; }
  .highlight-card { padding: 22px 24px; font-size: 1.05rem; }
  .step-card { padding: 24px; }
  .module-head { padding: 16px 20px; }
  .module ul { margin-left: 20px; margin-right: 20px; }
  .module-sub { padding: 12px 20px 0; }
  .module-note { padding: 10px 20px; }
  .bonus-card { padding: 22px; }
  .guarantee-card { padding: 36px 24px; }
  .recap-card { padding: 28px 24px; }
  .faq summary { padding: 14px 18px; font-size: .93rem; }
  .faq-body { padding: 0 18px 16px; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .pill-list span { font-size: .84rem; padding: 6px 14px; }
  .depends-row { flex-direction: column; gap: 4px; }
  .depends-row .sep { display: none; }
  .trust-dot { display: none; }
  .trust-items { gap: 16px; }
}
