:root {
  --bg: #f7f2e9;
  --paper: #fffaf2;
  --card: #ffffff;
  --ink: #12322f;
  --muted: #61726c;
  --brand: #124a45;
  --brand-2: #1d6b61;
  --sage: #c9dbcf;
  --sage-soft: #edf5ee;
  --terracotta: #d9815c;
  --gold: #d9b96f;
  --blue-soft: #e8f1f4;
  --line: rgba(18, 74, 69, 0.14);
  --shadow: 0 24px 70px rgba(14, 48, 43, 0.12);
  --shadow-soft: 0 14px 40px rgba(14, 48, 43, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 219, 207, .55), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(217, 185, 111, .22), transparent 28%),
    linear-gradient(180deg, #fbf6ed 0%, #f7f2e9 60%, #f4eee4 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section { padding: 86px 0; }
.card {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 242, 233, .86);
  border-bottom: 1px solid rgba(18, 74, 69, .10);
  backdrop-filter: blur(16px);
}
.topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: .82rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .95rem;
}
.nav a:hover { color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #0c3835);
  box-shadow: 0 16px 36px rgba(18, 74, 69, .26);
}
.btn--secondary {
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--line);
}
.btn--ghost {
  color: var(--brand);
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--line);
}
.btn--small { min-height: 40px; padding: 0 16px; font-size: .92rem; }
.btn--large { min-height: 58px; padding-inline: 26px; }
.btn--full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  padding: 82px 0 98px;
}
.hero__bg {
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  opacity: .8;
}
.hero__bg--one {
  width: 390px;
  height: 390px;
  right: -150px;
  top: 40px;
  background: var(--terracotta);
  opacity: .18;
}
.hero__bg--two {
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: 30px;
  background: var(--sage);
  opacity: .6;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 50px;
  align-items: center;
}
.badge, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  background: var(--sage-soft);
  border: 1px solid rgba(18, 74, 69, .10);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hero h1, h2 {
  margin: 14px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.05em;
  color: var(--brand);
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.65rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 {
  margin: 0 0 9px;
  font-size: 1.17rem;
  line-height: 1.18;
  letter-spacing: -.02em;
}
p { margin: 0 0 16px; color: var(--muted); }
.hero__lead {
  max-width: 650px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  color: #3d5851;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.hero__proof span {
  display: inline-flex;
  align-items: center;
  color: #274d46;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .94rem;
}
.price-card {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}
.price-card--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 560px;
  gap: 20px;
  padding: 16px 18px;
}
.price-card__label {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}
.price-card__price {
  display: block;
  color: var(--brand);
  font-size: 2.2rem;
  line-height: 1;
}
.price-card__note { color: var(--muted); font-size: .95rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.secure-line { font-size: .92rem; color: #6b746f; margin-top: 14px; }
.secure-line--center { text-align: center; }

.hero__visual { position: relative; }
.mockup-stack { position: relative; max-width: 500px; margin-inline: auto; }
.planner-cover {
  position: relative;
  margin: 0;
  padding: 16px;
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(18,74,69,.16);
  box-shadow: 0 34px 90px rgba(18, 74, 69, .22);
  transform: rotate(1.8deg);
}
.planner-cover::after {
  content: "";
  position: absolute;
  inset: 32px -16px -20px 32px;
  border-radius: 30px;
  background: rgba(18, 74, 69, .10);
  z-index: -1;
}
.planner-cover img { border-radius: 22px; }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 12px 14px;
  color: #2f4f49;
  font-size: .92rem;
  font-weight: 750;
  max-width: 255px;
}
.floating-card__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}
.floating-card--top { top: 42px; left: -32px; }
.floating-card--bottom { bottom: 70px; right: -38px; }

.two-columns {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 42px;
  align-items: center;
}
.two-columns--wide { grid-template-columns: 1.1fr .9fr; }
.pain-card { padding: 30px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
  color: var(--brand);
  font-size: .8rem;
  font-weight: 900;
}
.check-list--soft li::before { background: #fff4e9; color: #b7603c; }

.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading p { font-size: 1.06rem; }

.benefit-grid, .bonus-grid, .trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-card, .bonus-card, .trust-card { padding: 24px; }
.icon-bubble {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--sage-soft), #fff);
  color: var(--brand);
  border: 1px solid var(--line);
  font-weight: 900;
}
.benefit-card:nth-child(2n) .icon-bubble, .bonus-card:nth-child(2n) .bonus-card__tag {
  background: #fff2e9;
  color: #a65338;
}

.preview-section {
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
}
.safe-preview-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 18px 22px;
  margin: -6px 0 22px;
  background: rgba(255, 255, 255, .72);
}
.safe-preview-note strong { color: var(--brand); }
.safe-preview-note span { color: var(--muted); }
.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.preview-card {
  border: 0;
  text-align: left;
  color: inherit;
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.preview-card--safe { cursor: default; }
.preview-sheet {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(18,74,69,.10);
  background:
    radial-gradient(circle at 92% 8%, rgba(201,219,207,.72), transparent 18%),
    linear-gradient(180deg, #fffaf2 0%, #fbf5ec 100%);
  padding: 26px 22px;
}
.preview-pill {
  display: block;
  width: 72px;
  height: 16px;
  border-radius: 999px;
  background: var(--brand);
  opacity: .92;
  margin-bottom: 18px;
}
.preview-title-line {
  display: block;
  width: 78%;
  height: 24px;
  border-radius: 10px;
  background: rgba(18,74,69,.88);
  margin-bottom: 20px;
}
.preview-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(18,74,69,.18);
  margin: 10px 0;
}
.preview-line.w-85 { width: 85%; }
.preview-line.w-75 { width: 75%; }
.preview-line.w-65 { width: 65%; }
.preview-line.w-55 { width: 55%; }
.preview-table {
  height: 122px;
  margin-top: 22px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(18,74,69,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,74,69,.10) 1px, transparent 1px),
    rgba(232,241,244,.58);
  background-size: 100% 24px, 25% 100%, 100% 100%;
}
.preview-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 18px;
}
.preview-grid-mini i {
  height: 64px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(18,74,69,.10);
}
.preview-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 18px;
}
.preview-checks i {
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(18,74,69,.12);
}
.preview-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 128px;
  display: grid;
  place-items: end center;
  padding: 0 18px 22px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,250,242,0) 0%, rgba(18,74,69,.74) 72%, rgba(18,74,69,.92) 100%);
  backdrop-filter: blur(1px);
}
.preview-card span {
  display: block;
  margin: 12px 4px 2px;
  color: var(--brand);
  font-size: .96rem;
  font-weight: 850;
}

.module-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.module-list div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.module-list strong { color: var(--brand); }
.module-list span { color: var(--muted); }
.included-card { padding: 30px; }

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 24px;
}
.comparison__col {
  padding: 26px;
  border-radius: 22px;
}
.comparison__col--bad { background: #fff7f2; border: 1px solid rgba(217,129,92,.18); }
.comparison__col--good { background: #edf7ef; border: 1px solid rgba(18,74,69,.12); }
.comparison__col ul { margin: 0; color: var(--muted); }
.comparison__arrow {
  align-self: center;
  color: var(--brand);
  font-size: 2.2rem;
  font-weight: 900;
}

.bonus-card__tag {
  display: inline-flex;
  color: var(--brand);
  background: var(--sage-soft);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 14px;
}

.offer-section { padding-top: 36px; }
.offer-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(201,219,207,.55), transparent 32%),
    #fff;
}
.offer-items {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.offer-items div {
  display: flex;
  gap: 10px;
  color: var(--muted);
  align-items: flex-start;
}
.offer-items span { color: var(--brand); font-weight: 900; }
.checkout-card {
  background: var(--brand);
  color: #fff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 26px 70px rgba(18,74,69,.25);
}
.checkout-card p, .checkout-card .secure-line, .checkout-card .disclaimer { color: rgba(255,255,255,.74); }
.checkout-card__top {
  text-align: center;
  padding: 8px 0 20px;
}
.checkout-card__top span, .checkout-card__top small {
  display: block;
  color: rgba(255,255,255,.76);
}
.checkout-card__top strong {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 8px 0;
}
.guarantee-box {
  margin-top: 20px;
  padding: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
}
.guarantee-box strong { display: block; margin-bottom: 6px; }
.disclaimer { font-size: .85rem; margin-top: 16px; }

.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 20px 22px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--brand);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 12px 0 0; }

.final-cta { padding-top: 40px; }
.final-cta__box {
  text-align: center;
  padding: 76px 22px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 20%, rgba(201,219,207,.8), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(217,129,92,.22), transparent 24%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.final-cta__box p { max-width: 590px; margin-inline: auto; }

.footer {
  padding: 44px 0 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.34);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
}
.footer p { margin: 6px 0; font-size: .92rem; }

.sticky-buy {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.sticky-buy strong { display: block; color: var(--brand); line-height: 1; }
.sticky-buy span { display: block; color: var(--muted); font-size: .82rem; }


@media (max-width: 980px) {
  .preview-gallery { grid-template-columns: 1fr; }
  .nav, .topbar .btn { display: none; }
  .hero { padding: 52px 0 72px; min-height: auto; }
  .hero__grid, .two-columns, .two-columns--wide, .offer-grid {
    grid-template-columns: 1fr;
  }
  .hero__grid { gap: 32px; }
  .hero__copy { text-align: left; }
  .mockup-stack { max-width: 420px; }
  .floating-card--top { left: -8px; }
  .floating-card--bottom { right: -8px; }
  .benefit-grid, .bonus-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .comparison__arrow { transform: rotate(90deg); justify-self: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .sticky-buy { display: flex; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 58px 0; }
  .topbar__inner { min-height: 64px; }
  .brand span:last-child { max-width: 210px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero h1 { font-size: clamp(2.42rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero__actions, .price-card--inline { align-items: stretch; flex-direction: column; }
  .hero__actions .btn { width: 100%; white-space: normal; }
  .benefit-grid, .bonus-grid, .trust-grid { grid-template-columns: 1fr; }
  .module-list div { grid-template-columns: 1fr; gap: 2px; }
  .offer-grid { padding: 20px; border-radius: 26px; }
  .checkout-card { padding: 22px; }
  .floating-card { display: none; }
  .planner-cover { max-width: 320px; margin-inline: auto; }
  .footer { padding-bottom: 110px; }
}
