/* ═══════════════════════════════════════════════════════════════
   13 · WHY CHOOSE US  (full-width · editorial · navy band)
   Premium horizontal layout · big stats · gold accents
   ═══════════════════════════════════════════════════════════════ */

.why {
  position: relative;
  padding: 110px 0 90px;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}

/* Subtle topographic background */
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(201,158,92,0.06) 0%, transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(201,158,92,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.why__head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.why__head .eyebrow {
  color: var(--gold-400);
}

.why__head h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 14px 0 14px;
}

.why__head h2 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 300;
}

.why__head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* ─── Full-width 4-card horizontal layout ─── */
.why__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.why__card {
  padding: 50px 36px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s var(--ease);
}

.why__card:last-child {
  border-right: 0;
}

.why__card:hover {
  background: rgba(201,158,92,0.04);
}

.why__card__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why__card__num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,158,92,0.3);
}

.why__card__icon {
  width: 56px;
  height: 56px;
  color: var(--gold-400);
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,158,92,0.3);
  border-radius: 50%;
  transition: all 0.4s var(--ease);
}

.why__card:hover .why__card__icon {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  transform: rotate(-6deg) scale(1.05);
}

.why__card__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.2;
}

.why__card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
}

.why__card__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}

.why__card__stat__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.02em;
}

.why__card__stat__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Bottom CTA */
.why__cta {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 50px;
}

.why__cta__txt {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════════
   LEGACY · .why-grid / .why-cell  (used by about.html values grid)
   Light card grid on bone background — distinct from navy .why band
   ═══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.why-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.why-cell:last-child { border-right: 0; }
.why-cell:hover { background: var(--bone); }
.why-cell__num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--line);
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.why-cell:hover .why-cell__num { color: var(--gold-500); }
.why-cell__icon {
  width: 56px;
  height: 56px;
  padding: 15px;
  color: var(--gold-600);
  margin-bottom: 20px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.why-cell:hover .why-cell__icon {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
  transform: rotate(-6deg);
}
.why-cell__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.why-cell__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.why-cell__stat {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-800);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.why-cell__stat small {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
