:root {
  --bg: #FDFBF7;
  --fg: #1A1A1A;
  --accent: #2D6A4F;
  --accent-light: #40916C;
  --accent-bg: #D8F3DC;
  --warm: #F7F0E6;
  --warm-dark: #EDE4D4;
  --card-bg: #FFFFFF;
  --muted: #6B705C;
  --red-muted: #BC4749;
  --red-bg: #FFF0F0;
  --green-bg: #F0FFF4;
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(170deg, #2D6A4F 0%, #1B4332 60%, #081C15 100%);
  color: #fff;
  padding: 100px 24px 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 36px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: #95D5B2;
}
.stat-label {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ─── PROBLEM ─── */
.problem {
  padding: 100px 24px;
  background: var(--warm);
}
.problem-inner {
  max-width: 860px;
  margin: 0 auto;
}
.problem h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 48px;
  text-align: center;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.comp-card {
  border-radius: var(--radius);
  padding: 36px 32px;
}
.comp-them {
  background: var(--red-bg);
  border: 1px solid #F5C6C6;
}
.comp-us {
  background: var(--green-bg);
  border: 1px solid #B7E4C7;
}
.comp-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(0,0,0,0.06);
}
.comp-them .comp-label { color: var(--red-muted); }
.comp-us .comp-label { color: var(--accent); }
.comp-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comp-card li {
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
  color: var(--fg);
}
.comp-them li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--red-muted);
  font-weight: 700;
}
.comp-us li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 24px;
  background: var(--bg);
}
.services-inner {
  max-width: 960px;
  margin: 0 auto;
}
.services h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 52px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-item {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── HOW ─── */
.how {
  padding: 100px 24px;
  background: var(--warm);
}
.how-inner {
  max-width: 680px;
  margin: 0 auto;
}
.how h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 52px;
  text-align: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.05);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-bg);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ─── CLOSING ─── */
.closing {
  padding: 100px 24px;
  background: linear-gradient(170deg, #1B4332 0%, #081C15 100%);
  color: #fff;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
  line-height: 1.25;
}
.closing p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-location {
  font-weight: 600;
  color: #95D5B2 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 48px 24px;
  background: #081C15;
  text-align: center;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.footer-location {
  font-size: 0.8rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero {
    padding: 72px 20px 60px;
    min-height: auto;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .problem h2, .services h2, .how h2, .closing h2 {
    font-size: 1.7rem;
  }
}

/* ─── CTA BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: 0.1px;
}
.btn-primary:hover {
  background: #E8F5EE;
  transform: translateY(-2px);
}
.btn-primary-dark {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-primary-dark:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ─── HERO CTA ─── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ─── SERVICE CARD FOOTER (pricing + book link) ─── */
.service-item {
  display: flex;
  flex-direction: column;
}
.service-item p {
  flex: 1;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.service-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
}
.service-book-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
.service-book-link:hover { color: var(--accent-light); }

/* ─── SERVICES SECTION CTA ─── */
.services-cta {
  text-align: center;
  margin-top: 48px;
}