.why-section {
  padding: 120px 48px;
  background: var(--bg-obsidian);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.15;
}

.why-content h2 span {
  color: var(--gold);
}

.why-content > p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 16px;
}

.why-feature .check {
  width: 24px;
  height: 24px;
  background: rgb(212 175 55 / 15%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 14px;
}

.why-feature h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 13px;
  color: var(--text-muted);
}

.why-stats {
  background: var(--bg-navy);
  border: 1px solid var(--border-navy);
  border-radius: 24px;
  padding: 48px;
  position: relative;
}

.why-stats::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgb(212 175 55 / 8%) 0%, transparent 70%);
}

.stat-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item .number {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-item .label {
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 1000px) {
  .why-section {
    padding: 120px 32px;
  }

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

  .why-stats {
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 80px 24px;
  }

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

  .why-stats {
    padding: 32px;
  }
}
