/* why.css — Why SubEasy section + language select styles */

/* ── Language select ─────────────────────────────── */
.lang-select {
  background: var(--surface-hi);
  color: var(--txt);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  padding-right: 28px;
}
.lang-select:hover,
.lang-select:focus { border-color: var(--brand); }

/* ── Why section ─────────────────────────────────── */
.why-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.why-intro {
  max-width: 680px;
  margin: 16px auto 56px;
  color: var(--txt-2);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}

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

.why-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(255,255,255,0.05) 0 0 0 1px, rgba(0,0,0,0.5) 0 4px 16px, rgba(0,0,0,0.7) 0 12px 32px;
}

.why-icon {
  width: 40px;
  height: 40px;
  color: var(--brand);
  margin-bottom: 16px;
}
.why-icon svg { width: 100%; height: 100%; }

.why-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.why-card-desc {
  font-size: 0.875rem;
  color: var(--txt-2);
  line-height: 1.7;
}

/* ── Stats block ─────────────────────────────────── */
.why-stats {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.why-stat-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-2);
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.why-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  border-radius: 12px;
  background: var(--surface-hi);
}

.why-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-label {
  font-size: 0.8rem;
  color: var(--txt-2);
  line-height: 1.4;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 744px) {
  .why-section { padding: 56px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-intro { font-size: 0.95rem; margin-bottom: 36px; }
  .why-stats { padding: 28px 20px; }
}

@media (max-width: 550px) {
  .why-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-stat-value { font-size: 1.6rem; }
}
