/*
 * ================================================================
 *  Understanding Your Negative Cycle — EFT Workbook Website
 *  Premium Stylesheet
 *  Version: 1.0
 * ================================================================
 *
 *  COLOUR SYSTEM
 *  --green-accent   #4F7C5F   Sage green — primary CTAs & accents
 *  --green-dark     #3A5C47   Hover state
 *  --green-soft     #EDF7ED   Section backgrounds (light green)
 *  --green-mid      #C8E6C9   Borders, mid-tones
 *  --blue-soft      #EDF4FB   Section backgrounds (light blue)
 *  --blue-mid       #C5DCF5   Borders, mid-tones
 *  --blue-accent    #3A6EA8   Secondary accent
 *  --black          #1A1A1A   Headings, nav
 *  --charcoal       #3D3D3D   Body text
 *  --gray           #6B6B6B   Secondary text
 *  --gray-light     #E0E0DE   Borders
 *  --gray-xlight    #F2F2F0   Light backgrounds
 *  --off-white      #FAFAF8   Warm white
 *  --warm-bg        #FAF7F2   Warm neutral sections
 * ================================================================
 */

/* ── 01 CSS CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Colours */
  --white:         #FFFFFF;
  --off-white:     #FAFAF8;
  --warm-bg:       #FAF7F2;
  --warm-mid:      #F0EBE3;

  --green-soft:    #EDF7ED;
  --green-mid:     #C8E6C9;
  --green-accent:  #4F7C5F;
  --green-dark:    #3A5C47;

  --blue-soft:     #EDF4FB;
  --blue-mid:      #C5DCF5;
  --blue-accent:   #3A6EA8;

  --black:         #1A1A1A;
  --charcoal:      #3D3D3D;
  --gray:          #6B6B6B;
  --gray-light:    #E0E0DE;
  --gray-xlight:   #F2F2F0;

  /* Typography */
  --font-heading:  'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Layout */
  --container:     1120px;

  /* Border Radius */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(0,0,0,.05);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,.09);
  --shadow-lg:  0 20px 56px rgba(0,0,0,.11);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.13);

  /* Transitions */
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --duration: 220ms;
}

/* ── 02 RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ── 03 TYPOGRAPHY ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }

p {
  line-height: 1.78;
  color: var(--gray);
  max-width: 66ch;
}

strong { color: var(--black); font-weight: 600; }

/* ── 04 LAYOUT ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
}

.section      { padding: 100px 0; }
.section-sm   { padding: 64px 0; }
.section-lg   { padding: 128px 0; }

.text-center { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: var(--green-soft);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-tag.blue {
  color: var(--blue-accent);
  background: var(--blue-soft);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ── 05 BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition:
    background var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--green-accent);
  color: var(--white);
  border-color: var(--green-accent);
  box-shadow: 0 4px 20px rgba(79,124,95,.28);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 8px 36px rgba(79,124,95,.38);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0); }

.btn-lg {
  padding: 19px 46px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 22px 52px;
  font-size: 1.15rem;
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-light);
}

.btn-secondary:hover {
  border-color: var(--charcoal);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── 06 NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--black);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.01em;
}

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}

.nav-price del {
  font-weight: 400;
  margin-right: 4px;
}

.nav-right .btn {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* ── 07 HERO ────────────────────────────────────────────────────── */
.hero {
  padding: 148px 0 108px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -120px; right: -180px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(237,247,237,.75) 0%, transparent 68%);
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: -180px; left: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(237,244,251,.65) 0%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero-content h1 {
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 54ch;
  color: var(--gray);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-price-note {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-price-note del {
  margin-right: 4px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
}

.trust-item svg {
  width: 15px; height: 15px;
  color: var(--green-accent);
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── 08 PROOF BAR ───────────────────────────────────────────────── */
.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-xlight);
  padding: 24px 0;
}

.proof-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
}

.proof-item svg {
  width: 18px; height: 18px;
  color: var(--green-accent);
  flex-shrink: 0;
}

/* ── 09 PROBLEM SECTION ─────────────────────────────────────────── */
.problem {
  background: #111;
  padding: 108px 0;
}

.problem .section-tag {
  color: #86C49A;
  background: rgba(79,124,95,.18);
}

.problem .section-header h2 {
  color: var(--white);
}

.problem .section-header p {
  color: rgba(255,255,255,.58);
  font-size: 1.12rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--duration) var(--ease);
}

.problem-card:hover { background: rgba(255,255,255,.07); }

.problem-icon {
  width: 46px; height: 46px;
  background: rgba(79,124,95,.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #86C49A;
}

.problem-card h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.problem-card p {
  color: rgba(255,255,255,.52);
  font-size: 0.9rem;
  max-width: none;
  line-height: 1.7;
}

/* ── 10 REFRAME / CYCLE SECTION ──────────────────────────────────── */
.reframe {
  background: var(--green-soft);
  padding: 108px 0;
}

.reframe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.reframe-content .section-tag { margin-bottom: 20px; }
.reframe-content h2 { margin-bottom: 20px; }

.reframe-content p {
  margin-bottom: 18px;
  max-width: none;
  font-size: 1.02rem;
}

.reframe-highlight {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 32px;
  border-left: 4px solid var(--green-accent);
}

.reframe-highlight p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  max-width: none;
  margin: 0;
}

.cycle-diagram {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
}

/* ── 11 WHAT'S INSIDE ───────────────────────────────────────────── */
.whats-inside {
  background: var(--white);
  padding: 108px 0;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.inside-card {
  background: var(--off-white);
  border: 1px solid var(--gray-xlight);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--duration) var(--ease);
}

.inside-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-mid);
}

.inside-icon {
  width: 50px; height: 50px;
  background: var(--green-soft);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  margin-bottom: 18px;
}

.inside-card h4 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.inside-card p {
  font-size: 0.88rem;
  color: var(--gray);
  max-width: none;
  line-height: 1.65;
}

/* ── 12 PREVIEW SECTION ──────────────────────────────────────────── */
.preview {
  background: var(--warm-bg);
  padding: 108px 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.preview-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration) var(--ease);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}

.preview-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.preview-page {
  flex: 1;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pp-cover-bg {
  flex: 1;
  background: linear-gradient(145deg, #3A5C47, #4F7C5F);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 6px;
}

.pp-title-line {
  height: 7px;
  background: rgba(255,255,255,.85);
  border-radius: 4px;
  width: 80%;
}

.pp-title-line-sm {
  height: 5px;
  background: rgba(255,255,255,.5);
  border-radius: 3px;
  width: 60%;
}

.pp-sub-line {
  height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  width: 50%;
  margin-top: 4px;
}

.pp-h {
  height: 8px;
  background: var(--black);
  border-radius: 4px;
  width: 65%;
}

.pp-line {
  height: 4px;
  background: var(--gray-xlight);
  border-radius: 2px;
}

.pp-line-short { width: 75%; }
.pp-line-med { width: 88%; }

.pp-box {
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 4px 0;
}

.pp-box-green { background: var(--green-soft); }
.pp-box-blue  { background: var(--blue-soft); }
.pp-box-warm  { background: var(--warm-bg); }

.pp-dot-row {
  display: flex;
  gap: 5px;
  align-items: center;
}

.pp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pp-dot-green { background: var(--green-accent); }
.pp-dot-blue  { background: var(--blue-accent); }

.pp-write-area {
  flex: 1;
  border: 1px solid var(--gray-xlight);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
}

.pp-write-line {
  height: 1px;
  background: var(--gray-light);
}

.pp-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-arrows {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.pp-arrow-line {
  height: 4px;
  background: var(--green-soft);
  border-radius: 2px;
  width: 90%;
}

.preview-label {
  padding: 10px 14px;
  background: var(--gray-xlight);
  border-top: 1px solid var(--gray-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
  text-align: center;
}

/* ── 13 BENEFITS ────────────────────────────────────────────────── */
.benefits {
  background: var(--white);
  padding: 108px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  max-width: 880px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px; height: 48px;
  background: var(--green-soft);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-accent);
  flex-shrink: 0;
}

.benefit-item h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--black);
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: none;
  line-height: 1.65;
}

/* ── 14 MID-PAGE CTA ─────────────────────────────────────────────── */
.mid-cta {
  background: var(--green-soft);
  padding: 80px 0;
  text-align: center;
}

.mid-cta h2 { margin-bottom: 16px; }

.mid-cta p {
  margin: 0 auto 36px;
  font-size: 1.08rem;
  text-align: center;
  max-width: 56ch;
}

/* ── 15 ABOUT SECTION ───────────────────────────────────────────── */
.about {
  background: var(--white);
  padding: 108px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 88px;
  align-items: center;
}

.about-grid--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.about-photo-wrap { position: relative; }

.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--green-soft);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo-placeholder {
  text-align: center;
  color: var(--gray);
  padding: 40px;
}

.about-photo-placeholder svg {
  margin: 0 auto 14px;
  opacity: .4;
}

.about-photo-placeholder p {
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: none;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-accent);
  line-height: 1;
}

.about-badge span {
  font-size: 0.76rem;
  color: var(--gray);
}

.about-content h2 { margin-bottom: 20px; }
.about-content p { max-width: none; margin-bottom: 18px; }

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-xlight);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
}

.credential svg {
  width: 13px; height: 13px;
  color: var(--green-accent);
}

/* ── 16 TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  background: var(--blue-soft);
  padding: 108px 0;
}

.testimonials .section-tag {
  color: var(--blue-accent);
  background: rgba(58,110,168,.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.tcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tcard-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.tcard-stars svg {
  width: 16px; height: 16px;
  color: #F5A623;
}

.tcard-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: .8;
  color: var(--green-soft);
  margin-bottom: 8px;
  display: block;
}

.tcard-text {
  font-size: 0.97rem;
  line-height: 1.73;
  color: var(--charcoal);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-xlight);
}

.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-accent);
  flex-shrink: 0;
}

.tcard-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--black);
}

.tcard-loc {
  font-size: 0.8rem;
  color: var(--gray);
}

.testimonial-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

/* ── 17 FAQ SECTION ──────────────────────────────────────────────── */
.faqs {
  background: var(--white);
  padding: 108px 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--gray-xlight); }
.faq-item:first-child { border-top: 1px solid var(--gray-xlight); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--black);
  transition: color var(--duration) var(--ease);
}

.faq-question:hover { color: var(--green-accent); }

.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gray-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
  color: var(--gray);
}

.faq-item.open .faq-toggle {
  background: var(--green-accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 24px;
}

.faq-answer-inner p {
  color: var(--gray);
  font-size: 0.96rem;
  max-width: none;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-disclaimer {
  max-width: 780px;
  margin: 40px auto 0;
  background: var(--gray-xlight);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── 18 PRICING SECTION ──────────────────────────────────────────── */
.pricing {
  background: var(--warm-bg);
  padding: 108px 0;
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 52px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-accent), var(--blue-accent));
}

.pricing-tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-accent);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.pricing-subtitle {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.pricing-was {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 36px;
}

.pricing-divider {
  height: 1px;
  background: var(--gray-xlight);
  margin: 32px 0;
}

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.pricing-feature svg {
  width: 20px; height: 20px;
  color: var(--green-accent);
  flex-shrink: 0;
}

.pricing-cta .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.pricing-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--gray);
}

.pricing-secure svg { width: 13px; height: 13px; }

/* ── CRO ADDITIONS ───────────────────────────────────────────────── */

/* Hero stars */
.hero-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stars-row {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.stars-label {
  font-size: 0.88rem;
  color: var(--charcoal);
  margin: 0;
  font-weight: 500;
}

/* Hero launch tag */
.hero-launch-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF8E7;
  border: 1px solid #F59E0B;
  color: #92620A;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* Hero price block */
.hero-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-was {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: line-through;
}

.hero-now {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-aud {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-save-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #5C4200;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(212,175,55,.35);
}

/* Launch offer badge — pricing card */
.launch-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFF8E7;
  border: 1px solid #F59E0B;
  color: #92620A;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

/* Pricing display block */
.pricing-display {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-was-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-was-label {
  font-size: 0.82rem;
  color: var(--gray);
}

.pricing-strikethrough {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 500;
}

.pricing-current-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.pricing-aud-label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--black);
  align-self: flex-end;
  margin-bottom: 8px;
}

.pricing-save-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #5C4200;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 3px 12px rgba(212,175,55,.4);
  flex-shrink: 0;
}

.pricing-one-time {
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-urgency {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 0;
}

/* Value stack */
.value-stack {
  background: var(--green-soft);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 28px;
  text-align: left;
}

.value-stack-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-accent);
  margin-bottom: 14px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(79,124,95,.1);
  font-size: 0.9rem;
  color: var(--charcoal);
}

.value-item:last-of-type { border-bottom: none; }

.value-name { flex: 1; }

.value-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray);
  text-decoration: line-through;
  white-space: nowrap;
}

.value-included {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-accent);
  white-space: nowrap;
}

.value-total-row,
.value-today-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
}

.value-total-row {
  border-top: 2px solid rgba(79,124,95,.15);
  margin-top: 8px;
}

.value-total-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.value-total-price {
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 600;
}

.value-today-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}

.value-today-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-dark, #2D5238);
  letter-spacing: -0.02em;
}

/* CTA sub-text */
.pricing-cta-sub {
  font-size: 0.82rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Trust grid */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-xlight);
  margin-top: 4px;
}

.trust-grid-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}

.trust-grid-item svg {
  color: var(--green-accent);
  flex-shrink: 0;
}

/* Risk reversal section */
.risk-reversal {
  background: var(--green-pale, #F0F7F2);
}

.risk-reversal-inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.risk-reversal-icon {
  width: 60px;
  height: 60px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.risk-reversal-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.risk-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.risk-item svg { flex-shrink: 0; margin-top: 2px; }

/* Mid-CTA pricing display */
.mid-cta-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mid-cta-was {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 600;
}

.mid-cta-now {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}

.mid-cta-save {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #5C4200;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(212,175,55,.3);
}

.mid-cta-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.55);
}

/* Final CTA price row */
.final-cta-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.final-was {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
  font-weight: 600;
}

.final-now {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.final-save {
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  color: #5C4200;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(212,175,55,.35);
}

/* ── 19 FINAL CTA ────────────────────────────────────────────────── */
.final-cta {
  background: var(--black);
  padding: 132px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,124,95,.13) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 22px;
}

.final-cta p {
  color: rgba(255,255,255,.55);
  font-size: 1.1rem;
  max-width: 55ch;
  margin: 0 auto 44px;
  text-align: center;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta-note {
  color: rgba(255,255,255,.35);
  font-size: 0.82rem;
}

/* ── 20 FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 52px 0 32px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }

.footer-brand p {
  color: rgba(255,255,255,.35);
  font-size: 0.83rem;
  max-width: 30ch;
  line-height: 1.65;
}

.footer-links-group { display: flex; gap: 40px; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

.footer-col li + li { margin-top: 10px; }

.footer-col a {
  color: rgba(255,255,255,.4);
  font-size: 0.87rem;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover { color: rgba(255,255,255,.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
}

.footer-bottom p {
  color: rgba(255,255,255,.22);
  font-size: 0.78rem;
  max-width: none;
  text-align: center;
  line-height: 1.7;
}

.footer-disclaimer {
  color: rgba(255,255,255,.2);
  font-size: 0.76rem;
  text-align: center;
  line-height: 1.7;
  margin-top: 16px;
}

/* ── 21 LEGAL PAGES ──────────────────────────────────────────────── */
.legal-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-xlight);
  position: sticky;
  top: 0;
  z-index: 200;
}

.legal-body {
  padding: 60px 0 100px;
}

.legal-body .container { max-width: 760px; }

.legal-body h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.legal-body .updated {
  color: var(--gray);
  font-size: 0.86rem;
  margin-bottom: 48px;
  display: block;
}

.legal-body h2 {
  font-size: 1.25rem;
  margin: 44px 0 12px;
  padding-top: 4px;
}

.legal-body h3 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
}

.legal-body p,
.legal-body li {
  color: var(--gray);
  font-size: 0.96rem;
  margin-bottom: 14px;
  max-width: none;
  line-height: 1.75;
}

.legal-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}

.legal-body a {
  color: var(--green-accent);
  text-decoration: underline;
}

/* ── 22 THANK YOU PAGE ───────────────────────────────────────────── */
.ty-page {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.ty-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.ty-icon {
  width: 80px; height: 80px;
  background: var(--green-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--green-accent);
}

.ty-card h1 { font-size: 2.2rem; margin-bottom: 14px; }

.ty-card .ty-lead {
  font-size: 1.05rem;
  margin: 0 auto 36px;
  text-align: center;
}

.ty-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.ty-actions .btn { width: 100%; justify-content: center; }

.ty-divider {
  border: none;
  border-top: 1px solid var(--gray-xlight);
  margin: 36px 0;
}

.ty-support p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
  text-align: center;
}

.ty-small {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 20px;
  text-align: center;
  max-width: none;
}

/* ── 23 ANIMATIONS ───────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── 24 RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }

  .reframe-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .reframe-content p { margin-left: auto; margin-right: auto; }
  .reframe-visual { order: -1; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .about-photo-wrap { max-width: 280px; margin: 0 auto; }
  .credential-list { justify-content: center; }
  .about-content p { margin-left: auto; margin-right: auto; }

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

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

  .problem-grid { grid-template-columns: 1fr; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .proof-bar-inner { gap: 24px; }

  .footer-main { flex-direction: column; }
  .footer-links-group { flex-direction: column; gap: 32px; }

  .pricing-card { padding: 40px 28px; }
  .pricing-amount { font-size: 3.8rem; }

  .nav-price { display: none; }

  .ty-card { padding: 40px 24px; }

  .about-badge { display: none; }
}

@media (max-width: 560px) {
  .inside-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* CRO elements mobile */
  .hero-stars { gap: 8px; }
  .hero-price-block { gap: 8px; }
  .hero-now { font-size: 2rem; }
  .hero-was { font-size: 1.1rem; }

  .pricing-card { padding: 40px 24px; }
  .pricing-current-row { gap: 10px; }
  .pricing-amount { font-size: 3.8rem; }
  .pricing-save-badge { font-size: 0.7rem; padding: 6px 13px; }
  .pricing-cta .btn { width: 100%; justify-content: center; }

  .value-stack { padding: 20px 18px; }
  .value-item { font-size: 0.84rem; gap: 8px; }
  .value-included, .value-price { font-size: 0.68rem; }

  .trust-grid { gap: 10px 14px; }
  .trust-grid-item { font-size: 0.75rem; }

  .risk-reversal-inner { padding: 36px 24px; }

  .mid-cta-now { font-size: 1.6rem; }
  .final-now { font-size: 1.6rem; }
}

@media (max-width: 420px) {
  .preview-grid { grid-template-columns: 1fr; }
  .pricing-save-badge { display: none; } /* avoid wrap on very small screens — gold badge in hero still shows */
}

/* ── 25 PRINT ────────────────────────────────────────────────────── */
@media print {
  .nav, .final-cta, footer { display: none !important; }
  body { font-size: 11pt; color: #000; }
  a { color: #000; }
  h2 { page-break-after: avoid; }
}
