/* ========================================================
   KONTEXT — home.css  (homepage only)
   ======================================================== */

/* ── HERO ── */
.hero {
  background: var(--yellow);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; overflow: hidden; position: relative;
}
.hero-content {
  padding: 52px 40px 52px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-h1 {
  font-family: var(--font); font-size: 60px; font-weight: 800;
  line-height: 0.95; color: var(--black);
  margin-bottom: 14px; letter-spacing: -1px;
}
.hero-sub  { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.hero-desc { font-size: 14px; color: rgba(0,0,0,0.6); margin-bottom: 28px; line-height: 1.6; max-width: 400px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: var(--font); font-size: 28px; font-weight: 900;
  color: var(--black); line-height: 1;
  display: flex; align-items: center; gap: 6px;
}
.hero-stat-icon  { font-size: 18px; }
.hero-stat-label { font-size: 10px; color: rgba(0,0,0,0.55); font-weight: 500; margin-top: 2px; }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-img::after {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 120px;
  background: linear-gradient(to right, var(--yellow), transparent);
}

/* ── PROGRAMS ── */
.programs { padding: 64px 60px; background: var(--white); }
.section-eyebrow { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 32px; }
.programs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.prog-card { cursor: pointer; }
.prog-card-img {
  height: 170px; overflow: hidden; border-radius: 6px;
  margin-bottom: 14px; position: relative; background: var(--gray-mid);
}
.prog-card-img img.icon-flat{  width:20px; height: 20px; }
.prog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prog-card:hover .prog-card-img img { transform: scale(1.06); }
.prog-card-icon {
  position: absolute; top: 10px; left: 10px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.prog-card-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.prog-card-desc  { font-size: 12px; color: var(--gray-text); line-height: 1.6; margin-bottom: 12px; }
.prog-card-link {
  font-size: 12px; font-weight: 700; color: var(--black);
  text-transform: uppercase; letter-spacing: 0.07em;
  display: flex; align-items: center; gap: 8px;
  transition: color .2s; border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px; width: fit-content;
}
.prog-card-link::after { content: '→'; transition: transform .2s; }
.prog-card:hover .prog-card-link { color: var(--yellow-dark); }
.prog-card:hover .prog-card-link::after { transform: translateX(4px); }

/* ── WHY / INFO BLOCKS ── */
.why { padding: 56px 60px; background: var(--white); border-top: 1px solid var(--gray-mid); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.why-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--yellow); display: flex;
  align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.why-icon-wrap img.icon-flat{  width:24px; }
.why-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
.why-desc  { font-size: 13px; color: var(--gray-text); line-height: 1.7; margin-bottom: 14px; }
.why-link {
  font-size: 12px; font-weight: 700; color: var(--black);
  text-transform: uppercase; letter-spacing: 0.07em;
  display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.why-link::after { content: '→'; }
.why-link:hover { color: var(--yellow-dark); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--yellow); padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-banner-left { display: flex; align-items: center; gap: 16px; }
.cta-banner-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); display: flex;
  align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.cta-banner-icon img.icon-flat{ width:40px; height: 40px;}
.cta-banner-title { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.cta-banner-desc  { font-size: 13px; color: rgba(0,0,0,0.55); }
.cta-banner-btns  { display: flex; gap: 10px; flex-shrink: 0; }
.btn-banner-dark {
  background: var(--black); color: var(--white);
  font-family: var(--font); font-size: 13px; font-weight: 700;
  padding: 12px 24px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  display: inline-block; transition: background .2s;
}
.btn-banner-dark:hover { background: #333; }
.btn-banner-outline {
  background: transparent; color: var(--black);
  font-family: var(--font); font-size: 13px; font-weight: 700;
  padding: 11px 24px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid rgba(0,0,0,0.25); display: inline-block;
  transition: border-color .2s;
}
.btn-banner-outline:hover { border-color: var(--black); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 320px; }
  .hero-img { height: 240px; order: 1; }
  .hero-img::after { display: none; }
  .hero-content { order: 2; padding: 36px 24px; }
  .hero-h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-desc { font-size: 13px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-hero-dark, .btn-hero-outline { text-align: center; padding: 12px 20px; font-size: 12px; }
  .programs { padding: 44px 24px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .why { padding: 44px 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .hero-h1 { font-size: 24px; }
  .hero-stats { gap: 20px; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .btn-banner-dark, .btn-banner-outline { text-align: center; }
}
