/* ─── Variables ───────────────────────────────────────────────────────────── */
:root {
  --green: #2d4a3e;
  --green-light: #3d6b5c;
  --gold: #c8a96e;
  --bg: #f8f7f4;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --font: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.65; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-title { font-family: var(--font); font-size: 2rem; font-weight: normal; text-align: center; margin-bottom: 3rem; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn { display: inline-block; padding: 0.7rem 1.5rem; border-radius: 6px; font-size: 0.95rem; font-weight: 500; text-decoration: none; cursor: pointer; transition: all 0.15s; border: 2px solid transparent; }
.btn--primary { background: var(--green); color: white; }
.btn--primary:hover { background: var(--green-light); }
.btn--outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn--outline:hover { background: var(--green); color: white; }
.btn--ghost { color: var(--text-muted); }
.btn--ghost:hover { color: var(--text); }
.btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; background: var(--white); border-bottom: 1px solid var(--border); z-index: 100; }
.nav__inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__logo { font-family: var(--font); font-size: 1.4rem; color: var(--green); text-decoration: none; }
.nav__links { display: flex; align-items: center; gap: 1.5rem; }
.nav__links a:not(.btn) { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; }
.nav__links a:not(.btn):hover { color: var(--text); }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 6rem 2rem 5rem; text-align: center; background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%); }
.hero__inner { max-width: 760px; margin: 0 auto; }
.hero__badge { display: inline-block; background: var(--gold); color: var(--green); font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.9rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.hero__title { font-family: var(--font); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: normal; line-height: 1.15; margin-bottom: 1.5rem; color: var(--text); }
.accent { color: var(--green); }
.hero__sub { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Story ───────────────────────────────────────────────────────────────── */
.story { padding: 5rem 2rem; background: var(--green); color: white; }
.story__block { max-width: 700px; margin: 0 auto; text-align: center; }
.story__quote { font-family: var(--font); font-size: 1.35rem; font-style: italic; line-height: 1.6; color: var(--gold); margin-bottom: 2rem; }
.story__text { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

/* ─── How it works ────────────────────────────────────────────────────────── */
.how { padding: 5rem 2rem; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.feature__icon { font-size: 2rem; margin-bottom: 1rem; }
.feature h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Views ───────────────────────────────────────────────────────────────── */
.views { padding: 5rem 2rem; background: var(--bg); }
.views__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.view-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; text-align: center; }
.view-icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
.view-card strong { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.view-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── Pricing ─────────────────────────────────────────────────────────────── */
.pricing { padding: 5rem 2rem; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.plan { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.plan--featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green); position: relative; }
.plan__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.8rem; border-radius: 20px; white-space: nowrap; }
.plan__name { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.plan__price { font-family: var(--font); font-size: 2rem; color: var(--text); }
.plan__price span { font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-muted); }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.plan__features li { font-size: 0.875rem; padding-left: 1.25rem; position: relative; }
.plan__features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); text-align: center; }
.footer__logo { font-family: var(--font); font-size: 1.2rem; color: var(--green); display: block; margin-bottom: 0.5rem; }
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }
