:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE6D8;
  --fg: #1A1A18;
  --fg-muted: #5C5852;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --sand: #C9B99A;
  --white: #FFFFFF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navigation */
.site-nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--sand);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* Hero */
.hero {
  padding: 80px 48px 96px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.1;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-tag {
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Site Mockup */
.site-frame {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(27,67,50,0.12), 0 4px 16px rgba(27,67,50,0.08);
  overflow: hidden;
  border: 1px solid rgba(201,185,154,0.4);
}
.frame-topbar {
  background: #F0EBE3;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #E0D8CC;
}
.frame-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
}
.frame-url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  background: var(--white);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid #E0D8CC;
}
.frame-body {
  padding: 24px;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EDE6D8;
}
.mock-logo {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.mock-links {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--fg-muted);
}
.mock-hero {
  margin-bottom: 24px;
}
.mock-h1 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 14px;
}
.mock-cta {
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
}
.mock-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.mock-stat {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
}
.stat-label {
  font-size: 10px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.mock-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.3px;
}
.badge-icon {
  color: #FFD700;
  margin-right: 4px;
}

/* Problem Section */
.problem {
  background: var(--accent);
  padding: 96px 48px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-label, .howitworks-label, .services-label, .testimonials-label, .pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.2;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 28px;
}
.problem-card.right {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.problem-icon {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--white);
}
.problem-card.wrong .problem-icon { color: #E8A0A0; }
.problem-card.right .problem-icon { color: #A8D8B8; }
.problem-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
}
.problem-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* How It Works */
.howitworks {
  background: var(--bg-alt);
  padding: 96px 48px;
}
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.howitworks-headline {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 56px;
  line-height: 1.2;
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--sand);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--sand);
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Services */
.services { background: var(--bg); padding: 96px 48px; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-headline {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 48px;
  line-height: 1.2;
  max-width: 600px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 32px;
}
.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Pricing */
.pricing { background: var(--accent); padding: 96px 48px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing .pricing-label { color: var(--sand); }
.pricing-headline {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 32px;
}
.pricing-card.featured {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--white);
  margin-bottom: 20px;
}
.pricing-period {
  font-size: 18px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.55);
}
.pricing-badge {
  background: var(--sand);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-features {
  list-style: none;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.pricing-features li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.6;
}

/* Testimonials */
.testimonials { background: var(--bg-alt); padding: 96px 48px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-headline {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 48px;
  max-width: 600px;
  line-height: 1.2;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 28px;
}
.testimonial-quote {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-attr {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.math-box {
  background: var(--accent);
  border-radius: 10px;
  padding: 32px;
}
.math-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.math-item { text-align: center; }
.math-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
}
.math-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.math-divider { opacity: 0.4; }
.math-eq { font-size: 28px; color: var(--white); }

/* Closing */
.closing { background: var(--bg); padding: 96px 48px; }
.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  background: var(--accent);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-info {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  text-align: right;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .site-nav { padding: 16px 24px; }
  .hero { padding: 48px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .hero-mockup { order: -1; }
  .hero-sub { font-size: 16px; }
  .problem { padding: 64px 24px; }
  .problem-headline { font-size: 28px; }
  .problem-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 64px 24px; }
  .howitworks-headline { font-size: 28px; }
  .step { grid-template-columns: 50px 1fr; gap: 16px; }
  .step-num { font-size: 32px; }
  .step-title { font-size: 20px; }
  .services { padding: 64px 24px; }
  .services-headline { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-headline { font-size: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 64px 24px; }
  .testimonials-headline { font-size: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .math-inner { flex-direction: column; gap: 16px; }
  .closing { padding: 64px 24px; }
  .closing-headline { font-size: 32px; }
  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-info { text-align: center; max-width: 100%; }
}