:root {
  --saffron: #C8553D;
  --saffron-light: #E8845C;
  --indigo: #1B1F3B;
  --indigo-mid: #2A2F52;
  --cream: #FAF6F1;
  --cream-dark: #EDE5DA;
  --gold: #C9A96E;
  --gold-light: #E4CC9C;
  --charcoal: #2D2D2D;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-light: #F5F0EA;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  background: var(--indigo);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 85, 61, 0.15);
  border: 1px solid rgba(200, 85, 61, 0.3);
  color: var(--saffron-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--saffron-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: rgba(245, 240, 234, 0.7);
  line-height: 1.65;
  max-width: 440px;
  font-weight: 300;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px;
}

.hero-pattern {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  position: relative;
}

.pattern-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.pattern-ring:nth-child(1) {
  inset: 0;
  animation: spin 40s linear infinite;
}

.pattern-ring:nth-child(2) {
  inset: 15%;
  border-color: rgba(200, 85, 61, 0.2);
  animation: spin 30s linear infinite reverse;
}

.pattern-ring:nth-child(3) {
  inset: 30%;
  border-color: rgba(201, 169, 110, 0.25);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pattern-center {
  position: absolute;
  inset: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 85, 61, 0.08);
  border-radius: 50%;
  border: 1px solid rgba(200, 85, 61, 0.2);
}

.pattern-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  letter-spacing: 0.05em;
}

.pattern-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

.pattern-dot:nth-child(5) { top: 0; left: 50%; transform: translateX(-50%); }
.pattern-dot:nth-child(6) { bottom: 0; left: 50%; transform: translateX(-50%); }
.pattern-dot:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
.pattern-dot:nth-child(8) { top: 50%; right: 0; transform: translateY(-50%); }

/* ═══ PROBLEM ═══ */
.problem {
  padding: 120px 80px;
  background: var(--cream);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.problem-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: white;
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid var(--cream-dark);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s ease;
}

.problem-card:hover {
  transform: translateX(4px);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: rgba(200, 85, 61, 0.08);
}

.problem-card-text h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--indigo);
  margin-bottom: 4px;
}

.problem-card-text p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══ FEATURES ═══ */
.features {
  padding: 120px 80px;
  background: var(--indigo);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}

.features-header {
  max-width: 600px;
  margin: 0 auto 72px;
  text-align: center;
}

.features-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.15;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 110, 0.2);
}

.feature-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--saffron-light);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 234, 0.55);
  line-height: 1.6;
}

/* ═══ NUMBERS ═══ */
.numbers {
  padding: 100px 80px;
  background: var(--cream);
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.number-item {
  text-align: center;
  padding: 24px 0;
  border-right: 1px solid var(--cream-dark);
}

.number-item:last-child {
  border-right: none;
}

.number-value {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--saffron);
  letter-spacing: -0.02em;
}

.number-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 120px 80px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 85, 61, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 1.1rem;
  color: rgba(245, 240, 234, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 40px 80px;
  background: var(--indigo);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(245, 240, 234, 0.35);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 100px 32px 60px;
  }

  .hero-visual {
    padding: 20px 32px 80px;
  }

  .hero-pattern { max-width: 260px; }

  .problem { padding: 80px 32px; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features { padding: 80px 32px; }

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

  .numbers { padding: 60px 32px; }

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

  .number-item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
    padding-bottom: 20px;
  }

  .number-item:nth-child(3),
  .number-item:last-child {
    border-bottom: none;
  }

  .closing { padding: 80px 32px; }

  .footer {
    padding: 32px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 2.2rem; }
  .numbers-inner { grid-template-columns: 1fr; }
  .number-item { border-bottom: 1px solid var(--cream-dark); }
  .number-item:last-child { border-bottom: none; }
}