/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-deep:    #1c3031;
  --green-mid:     #2a4a4b;
  --green-light:   #3d6b6d;
  --blue-soft:     #e3ecfd;
  --blue-mid:      #c2d6fa;
  --gold:          #c9a84c;
  --gold-light:    #f0d580;
  --white:         #ffffff;
  --neutral-50:    #f9fafb;
  --neutral-100:   #f1f4f3;
  --neutral-200:   #dde5e4;
  --neutral-600:   #4a5e5f;
  --neutral-700:   #3a4e4f;
  --neutral-800:   #2c3e3f;
  --text-body:     #374040;
  --red-soft:      #fdf0f0;
  --red-border:    #f5c6c6;
  --red-text:      #c0392b;
  --green-soft:    #f0f7f5;
  --green-border:  #a8d5c8;
  --green-text:    #1a7a5e;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --shadow-soft:   0 4px 24px rgba(28,48,49,.10);
  --shadow-card:   0 8px 40px rgba(28,48,49,.13);
  --transition:    all .3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--green-deep);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.15rem); font-weight: 600; }

p {
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.8;
}

img { max-width: 100%; display: block; }

/* ============================================
   LAYOUT
============================================ */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.eyebrow--light {
  color: var(--gold-light);
}

.divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 28px;
  border-radius: 2px;
}

.divider--left {
  margin-left: 0;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--neutral-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  padding: 16px 40px;
}

.btn--primary {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 6px 28px rgba(201,168,76,.38);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,.50);
}

.btn--large {
  padding: 20px 52px;
  font-size: 1.05rem;
}

.btn--nav {
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 24px;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 50px;
}

.btn--nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cta__sub {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
  padding: 16px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,.20);
}

.nav__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .01em;
}

.nav__logo span {
  color: var(--gold);
}

/* ============================================
   HERO
============================================ */
.hero {
  background: var(--green-deep);
  padding: 110px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%,
      rgba(62,107,109,.40) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 90%,
      rgba(201,168,76,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.30);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero__headline {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  margin-top: 8px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.80);
  max-width: 580px;
  margin-bottom: 0;
}

.hero__cta {
  margin-top: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  color: rgba(255,255,255,.65);
}

.trust__check {
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================
   CONSEQUENCE
============================================ */
.consequence {
  background: var(--neutral-50);
}

.consequence__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.consequence__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 4px solid var(--red-text);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.consequence__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.consequence__card h4 {
  color: var(--red-text);
  margin-bottom: 8px;
}

.consequence__card p {
  font-size: .9rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ============================================
   PROBLEM
============================================ */
.problem {
  background: var(--white);
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem__text p {
  margin-bottom: 16px;
  color: var(--neutral-600);
}

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--blue-soft);
  border-radius: var(--radius-sm);
}

.problem__bullet {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.problem__item h4 {
  color: var(--green-deep);
  margin-bottom: 6px;
  font-size: 1rem;
}

.problem__item p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SOLUTION
============================================ */
.solution {
  background: var(--green-deep);
}

.solution .section__header h2 {
  color: var(--white);
}

.solution .section__sub {
  color: rgba(255,255,255,.72);
}

.solution__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.solution__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.solution__card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}

.s__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.solution__card h4 {
  color: var(--gold-light);
  margin-bottom: 10px;
}

.solution__card p {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.6;
}

/* ============================================
   DIFFERENTIATION
============================================ */
.differentiation {
  background: var(--white);
}

.diff__statement {
  text-align: center;
  padding: 48px;
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
}

.diff__statement p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--neutral-600);
  margin-bottom: 12px;
}

.diff__statement h2 {
  color: var(--green-deep);
  margin-bottom: 16px;
}

.diff__statement h2 em {
  color: var(--green-light);
  font-style: italic;
}

.diff__tag {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin: 0;
}

.diff__rule {
  width: 100%;
  height: 1px;
  background: var(--neutral-200);
  margin: 48px 0;
}

.scenarios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.scenario__card {
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid var(--green-deep);
  transition: var(--transition);
}

.scenario__card:hover {
  background: var(--blue-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.scenario__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neutral-200);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.scenario__card h4 {
  color: var(--green-deep);
  margin-bottom: 8px;
}

.scenario__card p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ============================================
   WHAT YOU GET
============================================ */
.what-you-get {
  background: var(--neutral-50);
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.module__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.module__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--gold));
}

.module__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.module__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.module__body h4 {
  color: var(--green-deep);
  margin-bottom: 6px;
}

.module__body p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.module__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--blue-soft);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================
   BEFORE / AFTER
============================================ */
.before-after {
  background: var(--white);
}

.ba__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.ba__card {
  border-radius: var(--radius-md);
  padding: 36px 28px;
}

.ba__card--before {
  background: var(--red-soft);
  border: 1px solid var(--red-border);
}

.ba__card--after {
  background: var(--green-soft);
  border: 1px solid var(--green-border);
}

.ba__label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.ba__card--before .ba__label { color: var(--red-text); }
.ba__card--after  .ba__label { color: var(--green-text); }

.ba__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ba__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
}

.ba__dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

.ba__dot--x {
  background: var(--red-border);
  color: var(--red-text);
}

.ba__dot--check {
  background: var(--green-border);
  color: var(--green-text);
}

/* ============================================
   OUTCOME
============================================ */
.outcome {
  background: var(--green-deep);
}

.outcome .section__header h2 {
  color: var(--white);
}

.outcome__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.outcome__item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.10);
  transition: var(--transition);
}

.outcome__item:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-3px);
}

.outcome__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.outcome__item h4 {
  color: var(--gold-light);
  margin-bottom: 8px;
}

.outcome__item p {
  color: rgba(255,255,255,.70);
  font-size: .88rem;
  line-height: 1.6;
}

/* ============================================
   PRICE
============================================ */
.price {
  background: var(--neutral-50);
}

.price__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-card);
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.price__context {
  color: var(--neutral-600);
  font-size: .97rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.price__context strong {
  color: var(--green-deep);
}

.price__display {
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
}

.price__descriptor {
  font-family: 'Inter', sans-serif;
  font-size: .83rem;
  color: var(--neutral-600);
  display: block;
  margin-bottom: 8px;
}

.price__amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
}

.price__amount sup {
  font-size: 40%;
  vertical-align: super;
  margin-right: 2px;
}

.price__label {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  color: var(--neutral-600);
  display: block;
}

.price__includes {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.price__includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
}

.price__includes li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================
   OBJECTIONS
============================================ */
.objections {
  background: var(--white);
}

.obj__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.obj__card {
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}

.obj__q {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--neutral-700);
  font-size: 1rem;
  margin-bottom: 12px;
}

.obj__a {
  color: var(--green-deep);
  font-size: .93rem;
  line-height: 1.7;
}

.obj__tagline {
  text-align: center;
  margin-top: 48px;
  padding: 36px;
  background: var(--green-deep);
  border-radius: var(--radius-md);
}

.obj__tagline p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,.90);
  margin: 0;
  line-height: 1.6;
}

.obj__tagline em {
  color: var(--gold-light);
}

/* ============================================
   GUARANTEE
============================================ */
.guarantee {
  background: var(--blue-soft);
}

.guarantee__box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  max-width: 740px;
  margin: 0 auto;
}

.guarantee__seal {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,168,76,.15);
  padding: 12px;
}

.seal__num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.seal__days {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  display: block;
}

.seal__text {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
  display: block;
  margin-top: 4px;
}

.guarantee__text h3 {
  color: var(--green-deep);
  margin-bottom: 14px;
}

.guarantee__text p {
  color: var(--neutral-600);
  font-size: .95rem;
  margin-bottom: 10px;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  background: var(--green-deep);
  padding: 110px 0;
}

.final__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final__inner h2 {
  color: var(--white);
}

.final__inner h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.final__sub {
  color: rgba(255,255,255,.75);
  font-size: clamp(.97rem, 2vw, 1.1rem);
  margin-top: 16px;
  line-height: 1.8;
}

.final__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px auto;
  max-width: 400px;
  text-align: left;
}

.final__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .97rem;
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,.85);
}

.final__check {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.final-cta .cta__sub {
  color: rgba(255,255,255,.50);
  margin-top: 14px;
}

/* ============================================
   SUPPORT
============================================ */
.support {
  background: var(--neutral-100);
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.support__item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.support__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.support__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.support__item h4 {
  color: var(--green-deep);
  margin-bottom: 8px;
}

.support__item p {
  font-size: .88rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--neutral-800);
  padding: 48px 24px;
  text-align: center;
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo span {
  color: var(--gold);
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 2;
  margin-bottom: 16px;
}

.footer__copy a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer__copy a:hover {
  color: var(--gold);
}

.footer__disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: rgba(255,255,255,.30);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   STICKY BAR
============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--green-deep);
  border-top: 2px solid var(--gold);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.20);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar p {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.sticky-bar .btn {
  padding: 10px 28px;
  font-size: .88rem;
  white-space: nowrap;
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .problem__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ba__wrapper {
    grid-template-columns: 1fr;
  }

  .guarantee__box {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }

  .diff__statement {
    padding: 28px 20px;
  }

  .price__box {
    padding: 36px 20px;
  }

  .sticky-bar {
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
  }

  .sticky-bar p {
    font-size: .82rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 56px 0;
  }

  .btn--large {
    padding: 18px 32px;
    font-size: .97rem;
  }

  .hero {
    padding: 80px 0 72px;
  }

  .nav__logo {
    font-size: .9rem;
  }
}
/* ============================================
   CREATOR / ABOUT SECTION
============================================ */
.creator {
  background: var(--white);
  padding: 96px 0;
}

.creator__inner {
  max-width: 900px;
  margin: 0 auto;
}

.creator__badge {
  text-align: center;
  margin-bottom: 8px;
}

.creator__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}

.creator__text h2 {
  color: var(--green-deep);
  margin-bottom: 8px;
}

.creator__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--green-deep);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.creator__text p {
  color: var(--neutral-600);
  margin-bottom: 16px;
  font-size: .97rem;
  line-height: 1.8;
}

.creator__closing {
  color: var(--green-deep) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

.creator__sig {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sig__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
}

.sig__est {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--neutral-600);
  letter-spacing: .05em;
}

/* STATS */
.creator__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat__card {
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.stat__card:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--neutral-600);
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* QUOTE */
.creator__quote {
  background: var(--green-deep);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-top: 4px;
}

.creator__quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .97rem;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin: 0 0 14px;
}

.quote__attr {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .06em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .creator__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .creator__stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat__card {
    flex: 1;
    min-width: 140px;
  }
}

