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

:root {
  --teal:       #1a7a6e;
  --teal-dark:  #145e54;
  --teal-light: #e8f5f3;
  --gold:       #c9921a;
  --gold-light: #fdf3e0;
  --gold-bright:#e6a620;
  --text:       #1c1c1e;
  --text-soft:  #4a4a4f;
  --text-muted: #8e8e93;
  --bg:         #fafaf8;
  --white:      #ffffff;
  --border:     #e5e5ea;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; line-height: 1.25; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.1rem;
  margin-bottom: 56px;
}

.gold { color: var(--gold); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,146,26,.35); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn--outline-sm { padding: 8px 18px; font-size: .9rem; background: transparent; color: var(--teal); border-color: var(--teal); border-radius: 6px; }
.btn--outline-sm:hover { background: var(--teal); color: #fff; }
.btn--full { width: 100%; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 8px; font-family: 'Lora', serif; font-weight: 700; font-size: 1.25rem; color: var(--teal-dark); }
.nav__logo-icon { font-size: 1.4rem; }
.nav__wordmark { letter-spacing: .02em; }
.nav__links { display: flex; align-items: center; gap: 28px; font-size: .95rem; font-weight: 500; color: var(--text-soft); }
.nav__links a:not(.btn):hover { color: var(--teal); }
.nav__hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--teal-dark); padding: 4px; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--teal-dark) 0%, #0e4f46 55%, #1a2e2c 100%);
  padding-top: 64px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,146,26,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,122,110,.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; padding: 80px 24px; }
.hero__eyebrow { font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px; }
.hero__headline { font-size: clamp(2.8rem, 6vw, 5rem); color: #fff; line-height: 1.1; margin-bottom: 24px; }
.hero__sub { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 40px; line-height: 1.65; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero__stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.stat__num { display: block; font-family: 'Lora', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold-bright); }
.stat__label { display: block; font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── Problem ──────────────────────────────────────── */
.problem { background: var(--white); }
.problem__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.problem__card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: box-shadow .2s; }
.problem__card:hover { box-shadow: var(--shadow); }
.problem__icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.problem__card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--teal-dark); }
.problem__card p { font-size: .95rem; color: var(--text-soft); }

/* ── Bridge ───────────────────────────────────────── */
.bridge { background: var(--teal-dark); padding: 72px 0; }
.bridge__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.bridge__text { font-family: 'Lora', serif; font-size: clamp(1.2rem, 2.2vw, 1.55rem); color: rgba(255,255,255,.88); line-height: 1.7; }
.bridge__emphasis { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 700; color: var(--gold-bright); }

/* ── How It Works ─────────────────────────────────── */
.how { background: var(--bg); }
.how__flow { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0 48px; }
.how__divider { background: var(--border); }
.how__side-label { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; display: inline-block; margin-bottom: 32px; }
.teal-label { background: var(--teal-light); color: var(--teal-dark); }
.gold-label  { background: var(--gold-light); color: var(--gold); }
.how__step { display: flex; gap: 16px; margin-bottom: 32px; }
.how__num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.how__num--gold { background: var(--gold); }
.how__step h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.how__step p { font-size: .93rem; color: var(--text-soft); line-height: 1.6; }
.how__step--bonus { opacity: .85; }

/* ── Features ─────────────────────────────────────── */
.features { background: var(--white); }
.features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.feature { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); transition: all .2s; }
.feature:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature__icon { font-size: 2rem; margin-bottom: 14px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--teal-dark); }
.feature p { font-size: .93rem; color: var(--text-soft); }

/* ── Pricing ──────────────────────────────────────── */
.pricing { background: var(--bg); }
.pricing__card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 48px; box-shadow: var(--shadow); margin-bottom: 32px; }
.pricing__rate { font-family: 'Lora', serif; font-size: 4rem; font-weight: 700; color: var(--teal-dark); line-height: 1; margin-bottom: 8px; }
.pricing__rate-label { font-size: .9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 24px; }
.pricing__note { font-size: .95rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 16px; }
.pricing__includes { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing__includes li { font-size: .95rem; color: var(--text-soft); }
.pricing__example { text-align: center; font-size: .95rem; color: var(--text-soft); background: var(--teal-light); border-radius: 8px; padding: 16px 24px; }

/* ── Quote ────────────────────────────────────────── */
.quote-section { background: var(--gold-light); padding: 80px 0; }
.quote__block { max-width: 720px; margin: 0 auto; text-align: center; }
.quote__block p { font-family: 'Lora', serif; font-size: clamp(1.1rem, 2vw, 1.4rem); font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.quote__block cite { font-size: .9rem; color: var(--text-muted); font-style: normal; }

/* ── CTA ──────────────────────────────────────────── */
.cta { background: var(--teal-dark); }
.cta__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: #fff; margin-bottom: 16px; }
.cta__inner > p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 40px; }
.cta__form { display: flex; flex-direction: column; gap: 14px; }
.cta__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta__form input { width: 100%; padding: 14px 16px; border: 2px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.1); color: #fff; font-size: 1rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color .15s; }
.cta__form input::placeholder { color: rgba(255,255,255,.5); }
.cta__form input:focus { border-color: var(--gold-bright); }
.cta__fine { font-size: .82rem; color: rgba(255,255,255,.45); text-align: center; }

/* ── Footer ───────────────────────────────────────── */
.footer { background: #0d1f1d; padding: 48px 0 32px; }
.footer__inner { display: flex; flex-direction: column; gap: 24px; }
.footer__wordmark { font-family: 'Lora', serif; font-weight: 700; font-size: 1.1rem; color: rgba(255,255,255,.9); letter-spacing: .02em; }
.footer__brand p { font-size: .9rem; color: rgba(255,255,255,.45); margin-top: 8px; max-width: 340px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer__links a:hover { color: var(--gold-bright); }
.footer__legal { font-size: .78rem; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }

/* ── Scroll reveal ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; z-index: 99; }
  .hero__ctas { flex-direction: column; }
  .hero__stats { gap: 20px; }
  .stat__divider { display: none; }
  .how__flow { grid-template-columns: 1fr; }
  .how__divider { display: none; }
  .pricing__card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .cta__form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.4rem; }
  .pricing__rate { font-size: 3rem; }
}
