:root {
  --navy: #0f1b3d;
  --navy-mid: #1a2d5a;
  --gold: #d4a843;
  --gold-light: #f5e6b8;
  --green: #5a9e7c;
  --green-light: #e8f5ee;
  --white: #ffffff;
  --light-gray: #f4f5f7;
  --mid-gray: #6b7280;
  --text: #1a1a2e;
  --text-light: #4a4a6a;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(90,158,124,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(212,168,67,0.4);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 24px;
  background: var(--light-gray);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  position: sticky;
  top: 40px;
}

.problem-left h2 em {
  color: var(--gold);
  font-style: normal;
}

.problem-right p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.75;
}

.problem-right strong {
  color: var(--navy);
}

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

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

.services-header {
  margin-bottom: 56px;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.services-intro {
  font-size: 1.1rem;
  color: var(--mid-gray);
}

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

.service-card {
  padding: 36px 28px;
  border-radius: 16px;
  background: var(--light-gray);
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,27,61,0.08);
}

.card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

.card-accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}

.card-accent .card-price { color: var(--gold); }
.card-accent h3 { color: var(--white); }
.card-accent p { color: rgba(255,255,255,0.7); }

.card-dark {
  background: var(--navy);
}

.card-dark .card-price { color: var(--gold-light); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.7); }

.card-green {
  background: var(--green-light);
  border-color: rgba(90,158,124,0.2);
}

.card-green .card-price { color: var(--green); }

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 24px;
  background: var(--light-gray);
}

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

.how-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 56px;
}

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

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
}

.step h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

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

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

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.closing h2 em {
  color: var(--gold);
  font-style: normal;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.75;
}

.disclaimer {
  background: var(--light-gray);
  border-left: 3px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.disclaimer p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

.disclaimer strong {
  color: var(--text);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  background: var(--navy);
  color: rgba(255,255,255,0.5);
}

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

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-tagline {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.footer-fine p {
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 72px 20px 60px; }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-divider { display: none; }
  
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .problem-left h2 {
    position: static;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}