/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1a3a2a;
  --forest-mid: #2d5a42;
  --forest-light: #3d7a59;
  --cream: #f8f4ef;
  --cream-dark: #eee8df;
  --amber: #e8a94b;
  --amber-dark: #c88c2a;
  --charcoal: #1c1c1c;
  --muted: #6b7c72;
  --border: rgba(26, 58, 42, 0.12);
  --green-badge: #d4edda;
  --green-badge-text: #155724;
  --amber-badge: #fff3cd;
  --amber-badge-text: #856404;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navigation ───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  background: rgba(248, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* ─── Shared ──────────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 3rem;
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  padding: clamp(6rem, 15vh, 10rem) clamp(1.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Hero Illustration */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ilust-container {
  position: relative;
  width: 360px;
  height: 320px;
}

.ilust-circle {
  position: absolute;
  border-radius: 50%;
}

.ilust-circle-1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle at 40% 40%, var(--forest-light) 0%, var(--forest-mid) 60%, var(--forest) 100%);
  top: 20px; left: 40px;
  opacity: 0.15;
}

.ilust-circle-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle at 50% 50%, var(--forest-light) 0%, var(--forest) 100%);
  top: 60px; left: 80px;
  opacity: 0.1;
}

.ilust-circle-3 {
  width: 140px; height: 140px;
  background: radial-gradient(circle at 45% 45%, var(--amber) 0%, var(--forest) 100%);
  top: 90px; left: 110px;
  opacity: 0.12;
}

.ilust-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 4px 24px rgba(26, 58, 42, 0.1), 0 1px 4px rgba(26, 58, 42, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 180px;
  animation: floatCard 6s ease-in-out infinite;
}

.card-email  { top: 0;   left: 20px;  animation-delay: 0s; }
.card-cal    { top: 80px; right: 10px; animation-delay: 1.5s; }
.card-support { bottom: 70px; left: 0;  animation-delay: 3s; }
.card-social  { bottom: 10px; right: 20px; animation-delay: 4.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

.card-icon {
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 2px;
}

.card-line {
  height: 6px;
  border-radius: 3px;
  background: var(--cream-dark);
}

.card-line-1 { width: 90%; }
.card-line-2 { width: 70%; }
.card-line-3 { width: 55%; }

.card-badge {
  position: absolute;
  top: -8px; right: -4px;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-green { background: var(--green-badge); color: var(--green-badge-text); }
.badge-amber { background: var(--amber-badge); color: var(--amber-badge-text); }

/* Stat Row */
.hero-stat-row {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─── Services ─────────────────────────────────────────── */
.services {
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: white;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--forest-light);
  box-shadow: 0 4px 24px rgba(26, 58, 42, 0.07);
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── How It Works ─────────────────────────────────────── */
.howitworks {
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--forest);
}

.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.howitworks .section-label { color: var(--amber); }
.howitworks .section-headline { color: var(--cream); }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step {
  flex: 1;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(248, 244, 239, 0.6);
  line-height: 1.65;
}

.step-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
}

/* ─── Difference ───────────────────────────────────────── */
.difference {
  padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
}

.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.diff-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.diff-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.diff-col-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.diff-col-label-new {
  color: var(--forest);
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.diff-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}

.diff-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.diff-list-new li { color: var(--charcoal); }
.diff-list-new li::before { background: var(--forest); }

/* ─── Closing ───────────────────────────────────────────── */
.closing {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--cream-dark);
  text-align: center;
}

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

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.cta-link {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.cta-link:hover {
  color: var(--forest-mid);
  border-color: var(--forest);
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  background: var(--forest);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(248, 244, 239, 0.5);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(248, 244, 239, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--cream); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(248, 244, 239, 0.4);
  width: 100%;
  margin-top: 1rem;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-illustration {
    order: -1;
  }

  .ilust-container {
    width: 280px;
    height: 260px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector { display: none; }

  .difference-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-stat-row {
    gap: 1.25rem;
  }

  .stat-num { font-size: 1.75rem; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-copy { margin-top: 0; }
}

@media (max-width: 480px) {
  .hero-stat-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-divider { display: none; }

  .hero-stat { align-items: center; text-align: center; }
}