.sec-why {
  --panel-bg: #141313;
  --panel-border: rgba(255, 255, 255, 0.08);
  --stat-bg: #161515;
  --stat-border: rgba(255, 255, 255, 0.07);
  --icon-bg: #2a1712;
  --text-muted: rgba(220, 216, 228, 0.68);
  --background: #0d0d0d;
}

.sec-why .container {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

/* ---------- Left column ---------- */
.sec-why .left-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  margin-top: 1.25rem;
  max-width: 20ch;
}

.sec-why .left-sub {
  margin-top: 1.25rem;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 52ch;
}

.sec-why .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
}

.sec-why .stat {
  background: var(--stat-bg);
  border: 1px solid var(--stat-border);
  border-radius: 14px;
  padding: 1.25rem 1.2rem 1.35rem;
}

.sec-why .stat-value {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--orange);
}

.sec-why .stat-label {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ---------- Right panel ---------- */
.sec-why .panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: clamp(1.75rem, 3.5vw, 3rem);
}

.sec-why .panel-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.3;
  margin-top: 1.25rem;
}

.sec-why .features {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.sec-why .feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.1rem;
  align-items: start;
}

.sec-why .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--icon-bg);
  display: grid;
  place-items: center;
}

.sec-why .feature-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--orange);
}

.sec-why .feature-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sec-why .feature-desc {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .sec-why .inner { grid-template-columns: 1fr; }
  
}

@media (max-width: 520px) {
  .sec-why .stats { grid-template-columns: 1fr; }
  .sec-why .stat { display: flex; align-items: baseline; gap: 0.9rem; align-items: flex-start;}
  .sec-why .stat-label { margin-top: 0; }
  .sec-why .panel {
    border: none;
    background: none;
    margin-top: 3rem;
    padding: 0;
  }
  .sec-why .features{
    padding-left: 0;
    padding-right: 0;
  }
  .sec-why .left-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  }
  .sec-why .feature-desc {
    font-size: 0.78rem!important;
  }
  .sec-courses .course-desc {
    font-size: 0.78rem!important;
  }
  .sec-courses .role-desc {
    font-size: 0.78rem!important;
  }
  .sec-courses .view-all{
    font-size: 0.85rem!important;
  }
}
