:root {
  --bg: #FAF7F2;
  --bg-alt: #F0EBE3;
  --fg: #2C2926;
  --fg-muted: #6B6560;
  --accent: #5B8C6A;
  --accent-light: #E8F0EB;
  --accent-dark: #3D6B4A;
  --warm: #C4956A;
  --warm-light: #FDF0E6;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 120px 24px 100px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-light) 0%, var(--bg) 100%);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.5;
  z-index: 0;
}

/* ═══ PROBLEM ═══ */
.problem {
  padding: 100px 24px;
  background: var(--bg);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem-label,
.services-label,
.plans-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem h2,
.services h2,
.plans h2,
.trust h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 48px;
  font-weight: 400;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
}

.problem-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}

.problem-card p {
  font-size: 1rem;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ═══ SERVICES ═══ */
.services {
  padding: 100px 24px;
  background: white;
}

.services-inner {
  max-width: 960px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-item {
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.service-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.service-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ═══ PLANS ═══ */
.plans {
  padding: 100px 24px;
  background: var(--bg);
}

.plans-inner {
  max-width: 960px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.plan-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.plan-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 40px rgba(91,140,106,0.12);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.plan-card ul {
  list-style: none;
  padding: 0;
}

.plan-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.plan-card ul li:last-child {
  border-bottom: none;
}

.plan-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--warm);
  font-weight: 600;
}

.plans-also {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ═══ TRUST ═══ */
.trust {
  padding: 100px 24px;
  background: white;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
}

.trust h2 {
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-item {
  text-align: left;
}

.trust-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 12px;
}

.trust-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-light) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 660px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 24px;
  font-weight: 400;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ═══ FOOTER ═══ */
.site-footer {
  padding: 48px 24px;
  background: var(--fg);
  color: var(--bg-alt);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: white;
}

.footer-detail {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer-email {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; }
  .problem, .services, .plans, .trust, .closing { padding: 64px 20px; }

  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero-accent { display: none; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 2rem; }
  .problem h2, .services h2, .plans h2, .trust h2, .closing h2 { font-size: 1.6rem; }
}