/* ── Urgency Bar ──────────────────────────────────────── */
.urgency-bar {
  background: #111827;
  color: #fff;
  padding: .6rem 1rem;
  text-align: center;
  font-size: .875rem;
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.countdown {
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: .2rem .6rem;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
}

/* ── Story Section ────────────────────────────────────── */
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story__photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  border: 2px dashed var(--text-muted);
}

.story__photos { width: 100%; }

.story__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.story__img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.story__img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.story__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .5rem;
  line-height: 1.3;
}

.story__label--before {
  background: rgba(239,68,68,.85);
  color: #fff;
}

.story__label--after {
  background: rgba(34,197,94,.85);
  color: #fff;
}

.story__content .badge { margin-bottom: 1rem; display: inline-block; }
.story__content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; }
.story__content p { color: var(--text-muted); margin-bottom: .75rem; font-size: .95rem; }
.story__content p strong { color: var(--text); }
.story__content .btn { margin-top: 1rem; }

@media (max-width: 700px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__photo-placeholder { max-width: 220px; margin-inline: auto; }
}

/* ── Scroll animations ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --green-light: #dcfce7;
  --text:        #111827;
  --text-muted:  #6b7280;
  --bg:          #ffffff;
  --bg-alt:      #f9fafb;
  --border:      #e5e7eb;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.12);
  --font:        'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Utilities ────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: 5rem; }
.section--alt { background: var(--bg-alt); }

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: .75rem;
}

.section__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--sm  { padding: .5rem 1rem;   font-size: .875rem; background: var(--green-light); color: var(--green-dark); }
.btn--lg  { padding: .85rem 2rem;  font-size: 1rem; }
.btn--xl  { padding: 1rem 2.5rem;  font-size: 1.1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34,197,94,.4);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34,197,94,.45);
}
.btn--primary:active { transform: translateY(0); }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding-block: 5rem 4rem;
  background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border);
}

.hero__inner { text-align: center; }

.badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .3rem .9rem;
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero__actions { margin-bottom: 1rem; }

.hero__note {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.proof-item { font-size: .95rem; color: var(--text-muted); }
.proof-item strong { color: var(--text); font-weight: 700; display: block; font-size: 1.1rem; }
.proof-divider { width: 1px; height: 2rem; background: var(--border); }

/* ── Problem ──────────────────────────────────────────── */
.problem__inner { max-width: 680px; margin-inline: auto; text-align: center; }
.problem__inner h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; margin-bottom: 1.5rem; }

.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.problem__list li {
  background: #fff1f2;
  color: #9f1239;
  border-left: 4px solid #f43f5e;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  text-align: left;
  font-size: .95rem;
}

.problem__bridge {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── Benefits ─────────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.benefit-card__icon { font-size: 2rem; margin-bottom: .75rem; }
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.benefit-card p { font-size: .9rem; color: var(--text-muted); }

/* ── How it works ─────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
  margin-inline: auto;
  margin-top: 1rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.step__body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; }
.step__body p  { font-size: .9rem; color: var(--text-muted); }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.testimonial__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial p { font-size: .95rem; color: var(--text); margin-bottom: 1rem; font-style: italic; }
.testimonial__author { font-size: .85rem; font-weight: 600; color: var(--text-muted); }

/* ── Pricing / Buy ────────────────────────────────────── */
.buy__inner { display: flex; flex-direction: column; align-items: center; }
.buy__inner .section__title { margin-bottom: 2rem; }

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.pricing-card__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .25rem .8rem;
  margin-bottom: 1.25rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.pricing-card__old {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-card__current {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-card__includes {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
}

.pricing-card__includes li {
  font-size: .95rem;
  color: var(--text);
}

.pricing-card__guarantee {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq__inner { max-width: 680px; margin-inline: auto; }
.faq__inner .section__title { margin-bottom: 2rem; }

.faq__list { display: flex; flex-direction: column; gap: .75rem; }

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  background: var(--bg);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
}

.faq__q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--green);
  transition: transform .2s;
  flex-shrink: 0;
}

.faq__q[aria-expanded="true"] { background: var(--green-light); }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq__a {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  color: var(--text-muted);
  background: var(--bg);
}

.faq__a--open { display: block; }

/* ── Footer CTA ───────────────────────────────────────── */
.footer-cta__inner {
  text-align: center;
}

.footer-cta__inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.footer-cta__inner p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding-block: 1.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}

.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer__links a:hover { color: #fff; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 600px) {
  .hero { padding-block: 3rem 2.5rem; }
  .section { padding-block: 3.5rem; }
  .proof-divider { display: none; }
  .hero__proof { gap: 1rem; }
  .pricing-card { padding: 2rem 1.25rem; }
  .footer__inner { justify-content: center; text-align: center; }
}
