:root {
  --cream: #f4f0e4;
  --cream-light: #faf8f2;
  --ink: #132219;
  --muted: #5b6d61;
  --green: #0f6b45;
  --green-dark: #09442d;
  --green-soft: #e8f3ec;
  --line: #d5e3d9;
  --white: #fff;
  --yellow: #f5d870;
  --shadow: 0 24px 70px rgba(20, 52, 34, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 4%, rgba(169, 216, 187, 0.42), transparent 23rem),
    var(--cream-light);
}
a { color: inherit; text-decoration: none; }
p { line-height: 1.65; }

.landing-header {
  width: min(1240px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.landing-brand { display: flex; align-items: center; gap: 12px; }
.landing-brand img { width: 54px; height: 54px; padding: 8px; border-radius: 16px; background: #f5ecd4; }
.landing-brand span { display: grid; }
.landing-brand strong { font-size: 1.05rem; }
.landing-brand small { color: var(--muted); font-weight: 600; }
.landing-nav { display: flex; gap: 30px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.landing-nav a:hover { color: var(--green); }

.button {
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 46px; padding: 0 20px; font-size: .9rem; }
.button--outline, .button--secondary { border-color: var(--line); background: rgba(255,255,255,.7); color: var(--green); }
.button--primary { background: var(--green); color: var(--white); box-shadow: 0 14px 32px rgba(15,107,69,.22); }
.button--cream { background: var(--cream); color: var(--green-dark); }
.button--ghost { border-color: rgba(255,255,255,.28); color: var(--white); }

.hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 680px;
  margin: 16px auto 0;
  padding: clamp(36px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(130deg, rgba(255,255,255,.98), rgba(242,249,244,.94)),
    var(--white);
  border: 1px solid rgba(15,107,69,.1);
  box-shadow: var(--shadow);
}
.eyebrow { margin: 0 0 12px; color: var(--green); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; }
.eyebrow--light { color: #9edab8; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 11ch; margin-bottom: 24px; font-size: clamp(3rem, 6vw, 6rem); line-height: .94; letter-spacing: -.065em; }
.hero-lead { max-width: 60ch; margin-bottom: 30px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions--center { justify-content: center; }
.hero-facts { margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; list-style: none; }
.hero-facts li { padding: 9px 13px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-size: .78rem; font-weight: 800; }

.plan-preview { position: relative; padding: 28px; border-radius: 30px; color: var(--white); background: linear-gradient(150deg, #0e5e3e, #073622); box-shadow: 0 35px 70px rgba(7,54,34,.28); transform: rotate(1.5deg); }
.plan-preview::before { content: ""; position: absolute; inset: -22px 26px 22px -26px; z-index: -1; border: 1px solid #a7cbb5; border-radius: 30px; transform: rotate(-3deg); }
.preview-top, .preview-course, .preview-shots li { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.preview-top { margin-bottom: 30px; font-weight: 800; }
.offline-badge { padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.13); font-size: .72rem; }
.preview-course { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.16); }
.preview-course div { display: grid; gap: 4px; }
.preview-course small, .preview-shots small { color: #a8c9b5; }
.wind-chip { max-width: 15ch; padding: 9px 11px; border-radius: 12px; color: var(--green-dark); background: var(--yellow); text-align: center; font-size: .72rem; font-weight: 800; }
.preview-shots { margin: 0; padding: 18px 0 0; list-style: none; }
.preview-shots li { padding: 16px 0; }
.preview-shots li + li { border-top: 1px solid rgba(255,255,255,.12); }
.shot-number { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-weight: 800; }
.preview-shots div { flex: 1; display: grid; gap: 3px; }
.preview-shots li > span:last-child { color: #b5d6c2; font-size: .74rem; font-weight: 700; text-align: right; }
.preview-note { margin: 16px 0 0; padding: 15px; border-radius: 15px; color: #d7ebdf; background: rgba(255,255,255,.08); font-size: .78rem; }

.trust-strip { width: min(1160px, calc(100% - 64px)); margin: -28px auto 0; padding: 26px 34px; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 15px 45px rgba(26,55,36,.08); }
.trust-strip div { display: grid; gap: 4px; }
.trust-strip div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--green); }
.trust-strip span { color: var(--muted); font-size: .8rem; }

.section, .access-section, .premium-section, .final-cta { width: min(1160px, calc(100% - 40px)); margin: 110px auto 0; }
.section-intro { max-width: 700px; }
.section-intro--center { margin-inline: auto; text-align: center; }
h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4.5vw, 4.2rem); line-height: 1; letter-spacing: -.05em; }
.section-intro > p:last-child, .access-copy > p { color: var(--muted); font-size: 1.05rem; }
.steps-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 270px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: 28px; background: var(--white); }
.step-card--accent { color: var(--white); border-color: var(--green); background: var(--green); }
.step-index { margin-bottom: auto; color: var(--green); font-size: 2rem; font-weight: 800; }
.step-card--accent .step-index { color: var(--yellow); }
.step-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.step-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.step-card--accent p { color: #d1e7da; }

.access-section { padding: clamp(32px, 6vw, 70px); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 7vw, 80px); align-items: center; border-radius: 36px; background: #edf5ef; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--green); font-weight: 800; }
.text-link span { font-size: 1.4rem; }
.feature-list { display: grid; gap: 12px; }
.feature-list article { padding: 20px; display: flex; gap: 15px; border-radius: 20px; background: rgba(255,255,255,.82); }
.feature-mark { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-weight: 800; }
.feature-list strong { font-size: 1rem; }
.feature-list p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }

.premium-section { padding: clamp(34px, 6vw, 72px); color: var(--white); border-radius: 40px; background: linear-gradient(140deg, #0d5e3e, #082f21); box-shadow: 0 30px 80px rgba(8,47,33,.22); }
.premium-head { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.premium-head h2 { max-width: 12ch; }
.premium-head p { max-width: 58ch; color: #c4ddce; }
.price-card { min-width: 150px; padding: 22px; display: grid; border-radius: 24px; color: var(--green-dark); background: var(--yellow); text-align: center; transform: rotate(2deg); }
.price-card strong { font-size: 2.1rem; }
.price-card span { font-size: .75rem; font-weight: 800; }
.premium-grid { margin: 46px 0 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.premium-grid article { min-height: 150px; padding: 22px; display: flex; gap: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.06); }
.premium-grid article > span { color: var(--yellow); font-size: 1.4rem; }
.premium-grid p { margin: 6px 0 0; color: #bdd7c7; font-size: .8rem; }
.premium-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.comparison { margin-top: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); }
.comparison-row { min-height: 66px; padding: 16px 24px; display: grid; grid-template-columns: 1fr 130px 130px; align-items: center; gap: 15px; border-top: 1px solid var(--line); }
.comparison-row:first-child { border-top: 0; }
.comparison-head { color: var(--white); background: var(--green-dark); }
.comparison-row b, .comparison-row i { text-align: center; font-size: 1.2rem; font-style: normal; }
.comparison-row b { color: var(--green); }
.comparison-head strong { text-align: center; }
.comparison-head strong:first-child { text-align: left; }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 0 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.faq-list summary { padding: 20px 0; cursor: pointer; font-weight: 800; }
.faq-list p { margin: -5px 0 20px; color: var(--muted); font-size: .9rem; }

.final-cta { padding: 68px 30px; border-radius: 38px; color: var(--white); background: var(--green-dark); text-align: center; }
.final-cta img { width: 68px; height: 68px; margin-bottom: 20px; padding: 10px; border-radius: 20px; background: var(--cream); }
.final-cta h2 { max-width: 18ch; margin-inline: auto; }
.landing-footer { width: min(1160px, calc(100% - 40px)); margin: 42px auto 30px; padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .82rem; }
.landing-footer div, .landing-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
.landing-footer nav a:hover { color: var(--green); }

@media (max-width: 900px) {
  .landing-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .plan-preview { max-width: 620px; transform: none; }
  .steps-grid, .premium-grid { grid-template-columns: 1fr 1fr; }
  .access-section, .faq-section { grid-template-columns: 1fr; }
  .faq-section { gap: 24px; }
}

@media (max-width: 620px) {
  .landing-header { width: min(100% - 24px, 1240px); min-height: 76px; }
  .landing-brand img { width: 46px; height: 46px; }
  .landing-brand small { display: none; }
  .landing-header .button { min-height: 42px; padding: 0 15px; }
  .hero { width: calc(100% - 20px); min-height: 0; margin-top: 4px; padding: 34px 22px 30px; gap: 46px; border-radius: 28px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 7px; }
  .plan-preview { padding: 20px 17px; border-radius: 22px; }
  .plan-preview::before { display: none; }
  .preview-course { align-items: flex-end; }
  .preview-shots li { align-items: flex-start; }
  .trust-strip { width: calc(100% - 40px); margin-top: 18px; padding: 22px; grid-template-columns: 1fr; }
  .trust-strip div + div { padding: 15px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .section, .access-section, .premium-section, .final-cta { width: calc(100% - 20px); margin-top: 72px; }
  .steps-grid, .premium-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 230px; }
  .access-section, .premium-section { padding: 34px 20px; border-radius: 28px; }
  .premium-head { display: grid; }
  .price-card { width: 150px; }
  .premium-grid article { min-height: 0; }
  .premium-actions .button { width: 100%; }
  .comparison { border-radius: 18px; }
  .comparison-row { min-height: 62px; padding: 14px 13px; grid-template-columns: 1fr 64px 72px; gap: 6px; font-size: .76rem; }
  .comparison-head strong:not(:first-child) { font-size: .68rem; }
  .faq-list details { padding-inline: 17px; }
  .final-cta { padding: 48px 20px; border-radius: 28px; }
  .landing-footer, .landing-footer div, .landing-footer nav { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
