﻿/* â”€â”€â”€ Section Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-why {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  background: #07091f;
}

.sec-why::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(58,141,255,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 100% 30%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.sec-why::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}

.why-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* â”€â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 30px;
  padding: 7px 20px;
  margin-bottom: 22px;
}

.why-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

.why-eyebrow-text {
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: 2.5px;
  text-transform: uppercase;
}

.why-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.why-headline .hl-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-subhead {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 520px; margin: 0 auto;
  line-height: 1.75;
}

/* â”€â”€â”€ Delivery Model: 2-column layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.why-model-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.why-model-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.why-model-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  transition: background 0.3s;
}

.why-model-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wmc-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 22px;
  flex-shrink: 0;
}

.wmc-icon.blue-bg {
  background: rgba(58,141,255,0.12);
  border: 1px solid rgba(58,141,255,0.2);
}

.wmc-icon.gold-bg {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
}

.wmc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.wmc-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 22px;
}

.wmc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}

.wmc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.wmc-list li .wl-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900;
  flex-shrink: 0; margin-top: 1px;
}

.wl-dot.blue {
  background: rgba(58,141,255,0.15);
  border: 1px solid rgba(58,141,255,0.35);
  color: #8dc4ff;
}

.wl-dot.gold {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
}

/* â”€â”€â”€ Result Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-result-banner {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.07), rgba(34,197,94,0.03));
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 72px;
  position: relative; overflow: hidden;
}

.why-result-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.4), transparent);
}

.wrb-icon {
  width: 48px; height: 48px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.wrb-content { flex: 1; }

.wrb-label {
  font-size: 10.5px; font-weight: 800;
  color: #4ade80; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 5px;
}

.wrb-text {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

.wrb-text strong { color: #4ade80; }

/* â”€â”€â”€ Clutch Award Row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.why-clutch-row {
  display: flex; align-items: stretch;
  gap: 24px;
  margin-bottom: 64px;
}

/* Award Card */
.clutch-award-card {
  flex: 0 0 320px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 22px;
  padding: 36px 28px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative; overflow: hidden;
}

.clutch-award-card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.clutch-medal {
  font-size: 52px; margin-bottom: 14px;
  animation: floatEmoji 3s ease-in-out infinite;
}

.clutch-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px; font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  letter-spacing: -3px;
}

.clutch-rank-label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  line-height: 1.5;
}

.clutch-badge {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 11px; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px; text-transform: uppercase;
}

/* Stats Grid */
.clutch-stats-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.csg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}

.csg-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.csg-icon {
  font-size: 24px; margin-bottom: 14px;
}

.csg-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; letter-spacing: -1.5px;
  margin-bottom: 6px;
}

.csg-label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}

.csg-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* Location card */
.csg-card.location-card {
  background: rgba(58,141,255,0.05);
  border-color: rgba(58,141,255,0.15);
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
}

.csg-card.location-card:hover {
  background: rgba(58,141,255,0.09);
  border-color: rgba(58,141,255,0.3);
}

.location-icon {
  width: 48px; height: 48px;
  background: rgba(58,141,255,0.12);
  border: 1px solid rgba(58,141,255,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.location-text {}

.location-city {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
  letter-spacing: -0.3px;
}

.location-detail {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.location-detail strong { color: #8dc4ff; font-weight: 600; }

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .why-clutch-row { flex-direction: column; }
  .clutch-award-card { flex: none; }
  .why-model-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .why-container { padding: 0 20px; }
  .clutch-stats-grid { grid-template-columns: 1fr; }
  .csg-card.location-card { grid-column: auto; }
  .sec-why { padding: 80px 0 70px; }
  .why-result-banner { flex-direction: column; text-align: center; }
}
