:root {
  --bg: #FAFCFD;
  --fg: #1A2332;
  --accent: #0F6B5E;
  --accent-light: #E8F5F2;
  --accent-mid: #1A8A7A;
  --muted: #6B7A8D;
  --border: #E2E8EF;
  --card-bg: #FFFFFF;
  --dark-bg: #0D1B2A;
  --dark-fg: #E8EDF2;
  --highlight: #FF6B35;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(165deg, #0D1B2A 0%, #162B44 55%, #0F6B5E 100%);
  color: #fff;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 720px;
}

.hero h1 em {
  font-style: normal;
  color: var(--highlight);
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.problem h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
}

.problem-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.problem-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.problem-card-icon.denial {
  background: #FFF0EB;
  color: var(--highlight);
}

.problem-card-icon.time {
  background: #EBF0FF;
  color: #3B5BDB;
}

.problem-card-icon.compliance {
  background: var(--accent-light);
  color: var(--accent);
}

.problem-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- APPROACH ---- */
.approach {
  background: var(--dark-bg);
  color: var(--dark-fg);
  padding: 100px 40px;
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.approach .section-tag {
  color: var(--accent-mid);
}

.approach h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 560px;
}

.approach-desc {
  font-size: 1.05rem;
  color: rgba(232, 237, 242, 0.65);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 56px;
}

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

.approach-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
}

.approach-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.approach-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.approach-step p {
  font-size: 0.9rem;
  color: rgba(232, 237, 242, 0.6);
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.closing-location {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-inner {
    padding: 100px 24px 60px;
  }
  .hero-stats {
    gap: 32px;
  }
  .problem {
    padding: 60px 24px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .approach {
    padding: 60px 24px;
  }
  .approach-steps {
    grid-template-columns: 1fr;
  }
  .closing {
    padding: 60px 24px;
  }
  footer {
    padding: 24px;
  }
}