:root {
  --bg-dark: #0f1f17;
  --bg-main: #f5f0e6;
  --bg-cream: #faf7f0;
  --bg-card: #ffffff;
  --fg-dark: #1a1a1a;
  --fg-muted: #5a6b5e;
  --fg-light: #f5f0e6;
  --accent: #c8963e;
  --accent-glow: #d4a843;
  --green-deep: #1a3a2a;
  --green-mid: #2d5a40;
  --green-light: #3d7a56;
  --border: #e0dbd0;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-main);
  color: var(--fg-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 150, 62, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--accent-glow);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.75);
  max-width: 580px;
}

.hero-visual {
  max-width: 780px;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
}

.score-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  backdrop-filter: blur(10px);
}

.score-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 230, 0.5);
  margin-right: 8px;
}

.score-before {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #e05555;
  opacity: 0.7;
}

.score-arrow {
  font-size: 1.8rem;
  color: rgba(245, 240, 230, 0.4);
}

.score-after {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-glow);
}

/* ---- JOURNEY ---- */
.journey {
  padding: 100px 24px;
  background: var(--bg-cream);
}

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

.journey h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--green-deep);
}

.journey-intro {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  position: relative;
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

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

.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), var(--green-light));
  margin: 0 auto;
  opacity: 0.4;
}

/* ---- NUMBERS ---- */
.numbers {
  padding: 80px 24px;
  background: var(--green-deep);
  color: var(--fg-light);
}

.numbers-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.number-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-glow);
  margin-bottom: 8px;
}

.number-label {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.6);
  line-height: 1.4;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 24px;
  background: var(--bg-main);
}

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

.services h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 48px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.service-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}

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

/* ---- CLOSING ---- */
.closing {
  padding: 100px 24px;
  background: var(--bg-cream);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing h2 .accent {
  color: var(--accent);
}

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

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

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.5);
  margin-bottom: 12px;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--accent);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 80px;
  }

  .score-card {
    padding: 20px 24px;
    gap: 14px;
  }

  .score-before,
  .score-after {
    font-size: 2rem;
  }

  .numbers-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

  .journey {
    padding: 72px 20px;
  }

  .services {
    padding: 72px 20px;
  }

  .closing {
    padding: 72px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .score-card {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .score-label {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 4px;
  }

  .number-value {
    font-size: 2rem;
  }

  .step {
    padding: 24px 20px;
  }
}