/* ================================================
   TRAIN DEVELOP EMPOWER — Corporate Site v3
   Design: Clean corporate, navy + slate + gold accent
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0A1628;
  --navy2:   #112240;
  --slate:   #1E3A5F;
  --gold:    #C9A84C;
  --gold2:   #E8C96D;
  --sky:     #4A90D9;
  --light:   #F4F7FB;
  --border:  #E2E8F0;
  --text:    #2D3748;
  --muted:   #718096;
  --white:   #FFFFFF;
  --radius:  10px;
  --shadow:  0 4px 20px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.16);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 0.75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
h5 { font-size: .95rem; font-weight: 700; }
h6 { font-size: .875rem; font-weight: 700; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px; font-weight: 700;
  font-size: .875rem; transition: all .2s; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  font-family: inherit;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--slate); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 46px; width: auto; }
.logo-text { display: none; }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.82); border-radius: 7px; transition: all .18s; white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-link svg { width: 13px; height: 13px; transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* DROPDOWN */
.nav-item { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px; z-index: 500;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 14px; font-size: .85rem;
  font-weight: 500; color: var(--navy); border-radius: 7px; transition: all .15s;
}
.dropdown a:hover { background: var(--light); color: var(--sky); }

.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 8px 14px; border-radius: 8px; font-size: .78rem;
  font-weight: 800; margin-left: 8px; transition: all .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold2) !important; color: var(--navy) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.97) 0%,
    rgba(10,22,40,0.92) 35%,
    rgba(10,22,40,0.75) 55%,
    rgba(10,22,40,0.35) 75%,
    rgba(10,22,40,0.15) 100%
  );
}
.hero .container { position: relative; z-index: 2; padding: 0 28px; width: 100%; }
.hero-inner {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 0;
  align-items: center;
  min-height: 0;
}
.hero-left { display: flex; flex-direction: column; justify-content: center; }
.hero-right { /* empty - shows background image */ }
.hero h4 { color: var(--gold); margin-bottom: 10px; font-size: .78rem; letter-spacing: .14em; }
.hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(1.9rem, 3.2vw, 2.8rem); line-height: 1.15; }
.hero p { color: rgba(255,255,255,.82); font-size: .95rem; margin-bottom: 20px; max-width: 480px; }
.hero-btns {
  display: flex;
  gap: 7px;
  flex-wrap: nowrap;
  align-items: center;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  border-radius: 50px;
  font-size: .74rem;
  font-weight: 700;
  transition: all .2s;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.hero-btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hero-btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: var(--navy);
  transform: translateY(-2px);
}
.hero-btn-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.hero-btn-dark:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.hero-btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.hero-btn-wa:hover {
  background: #20ba5a;
  color: #fff;
  transform: translateY(-2px);
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative; background: var(--navy);
  padding: 64px 0 56px; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .15;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,22,40,.95), rgba(30,58,95,.80));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h4 { color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 600px; margin-bottom: 0; }
.page-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.5);
  margin-bottom: 14px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy2); border-bottom: 1px solid rgba(255,255,255,.08); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell {
  padding: 22px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 5px; font-weight: 500; }

/* ── SECTION LABEL ── */
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label::before { content: ''; display: block; width: 36px; height: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.section-label span { font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: var(--gold); }

/* ── CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.cat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .25s; text-decoration: none; color: inherit;
  box-shadow: 0 2px 8px rgba(10,22,40,.06);
}
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--gold); }
.cat-card-img {
  height: 190px; overflow: hidden; background: var(--light);
  position: relative;
}
.cat-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-img .cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.35) 0%, transparent 60%);
}
.cat-card-body { padding: 20px; flex: 1; }
.cat-card-body h3 { font-size: .95rem; margin-bottom: 7px; color: var(--navy); }
.cat-card-body p { font-size: .82rem; color: var(--muted); line-height: 1.55; margin: 0; }
.cat-card-foot {
  padding: 14px 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cat-card-foot .count { font-size: .75rem; color: var(--muted); }
.cat-card-foot .explore { font-size: .82rem; font-weight: 700; color: var(--sky); }
.cat-card:hover .cat-card-foot .explore { color: var(--gold); }

/* Dark CTA card */
.cat-card-cta { background: var(--navy); border-color: var(--navy); min-height: 240px; justify-content: center; }
.cat-card-cta:hover { border-color: var(--gold); }
.cat-card-cta .icon { font-size: 2.5rem; margin-bottom: 14px; }
.cat-card-cta h3 { color: #fff !important; font-size: 1.05rem !important; }
.cat-card-cta p { color: rgba(255,255,255,.65) !important; margin-top: 8px; }

/* ── FEATURE BOXES ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.feature-box {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  border-left: 3px solid var(--gold);
}
.feature-box h6 { color: var(--navy); font-size: .9rem; margin-bottom: 8px; }
.feature-box p { font-size: .84rem; color: var(--muted); margin: 0; }

/* ── INDUSTRY PILLS ── */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px,1fr)); gap: 12px; }
.industry-pill {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  font-size: .85rem; font-weight: 600; color: var(--navy);
  text-align: center; transition: all .2s;
  box-shadow: 0 1px 4px rgba(10,22,40,.05);
}
.industry-pill:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); transform: translateY(-2px); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy2);
  border-top: 3px solid var(--gold);
  padding: 72px 0; text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; font-size: 1rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── COURSE TABLE ── */
.search-wrap { margin-bottom: 18px; }
.search-input {
  width: 100%; max-width: 560px; padding: 13px 18px;
  border: 2px solid var(--border); border-radius: 9px;
  font-size: .9rem; font-family: inherit; outline: none;
  transition: border-color .2s, box-shadow .2s; background: #fff;
}
.search-input:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(74,144,217,.12); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn {
  padding: 7px 16px; border-radius: 20px; font-size: .82rem;
  font-weight: 600; border: 1.5px solid var(--border);
  background: #fff; color: var(--text); cursor: pointer;
  transition: all .18s; font-family: inherit;
}
.filter-btn:hover { border-color: var(--sky); color: var(--sky); }
.filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.course-table { width: 100%; min-width: 860px; border-collapse: collapse; font-size: .875rem; }
.course-table th { background: var(--navy); color: #fff; padding: 15px 16px; text-align: left; font-weight: 600; font-size: .8rem; white-space: nowrap; }
.course-table td { padding: 15px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.course-table tbody tr:last-child td { border-bottom: none; }
.course-table tbody tr:hover { background: var(--light); }
.course-table td:nth-child(2) { font-weight: 600; color: var(--navy); }
.code-badge { background: #EBF4FF; color: var(--sky); padding: 4px 10px; border-radius: 6px; font-weight: 700; font-size: .77rem; white-space: nowrap; display: inline-block; }
.soon-badge { background: #FFF8E1; color: #B7791F; padding: 4px 10px; border-radius: 6px; font-size: .77rem; font-weight: 600; white-space: nowrap; display: inline-block; }
.learn-link { color: var(--sky); font-weight: 700; font-size: .85rem; white-space: nowrap; }
.learn-link:hover { color: var(--gold); }
.hidden-row { display: none !important; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-method { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon-wrap {
  width: 44px; height: 44px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon-wrap svg { width: 20px; height: 20px; color: var(--gold); }
.contact-method h5 { margin-bottom: 4px; color: var(--navy); }
.contact-method a { color: var(--text); font-size: .9rem; }
.contact-method a:hover { color: var(--sky); }
.contact-method small { display: block; font-size: .8rem; color: var(--muted); margin-top: 3px; }

/* ── FORM ── */
.form-card { background: var(--light); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: .82rem; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .9rem; font-family: inherit;
  color: var(--text); outline: none; transition: border-color .2s; background: #fff;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sky); box-shadow: 0 0 0 3px rgba(74,144,217,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; background: var(--navy); color: #fff;
  padding: 14px; border: none; border-radius: 8px;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: background .2s;
}
.form-submit:hover { background: var(--slate); }
.form-success {
  background: #F0FFF4; border: 1px solid #9AE6B4; color: #276749;
  padding: 14px 16px; border-radius: 8px; font-size: .875rem;
  display: none; margin-bottom: 18px;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
details { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
summary {
  padding: 18px 22px; font-weight: 600; color: var(--navy);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; font-size: .9rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.3rem; color: var(--sky); flex-shrink: 0; margin-left: 12px; }
details[open] { border-color: var(--sky); }
details[open] summary { background: #EBF4FF; }
details[open] summary::after { content: '−'; }
.faq-body { padding: 0 22px 18px; font-size: .875rem; color: var(--muted); }

/* ── COURSE DETAIL ── */
.course-meta { display: grid; grid-template-columns: repeat(4,1fr); background: var(--navy); border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; }
.meta-cell { padding: 22px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.meta-cell:last-child { border-right: none; }
.meta-cell .ml { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); font-weight: 600; margin-bottom: 6px; }
.meta-cell .mv { font-size: .95rem; font-weight: 700; color: #fff; }
.meta-cell .mv.gold { color: var(--gold); }

.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.module-list { list-style: none; }
.module-list li { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 12px; font-size: .875rem; align-items: flex-start; }
.module-list li:last-child { border-bottom: none; }
.module-list li::before { content: '▸'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 32px; }
.challenge-item { background: var(--light); padding: 10px 14px; border-radius: 8px; font-size: .84rem; display: flex; gap: 8px; border-left: 3px solid var(--gold); }
.outcome-list { list-style: none; margin-bottom: 0; }
.outcome-list li { padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; font-size: .875rem; }
.outcome-list li:last-child { border-bottom: none; }
.outcome-list li::before { content: '✓'; color: var(--sky); font-weight: 700; flex-shrink: 0; }

.module-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 28px 20px; margin-bottom: 16px; }
.module-block h5 { color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.audience-tag { background: var(--navy); color: var(--gold); padding: 7px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600; }

/* SIDEBAR */
.sidebar-card { background: var(--navy); border-radius: var(--radius); padding: 28px; position: sticky; top: 88px; }
.sidebar-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.sidebar-card p { color: rgba(255,255,255,.7); font-size: .84rem; margin-bottom: 20px; }
.s-btn { display: block; padding: 12px 16px; border-radius: 8px; font-weight: 700; font-size: .875rem; text-align: center; margin-bottom: 8px; transition: all .2s; }
.s-btn:last-child { margin-bottom: 0; }
.s-btn-gold { background: var(--gold); color: var(--navy); }
.s-btn-gold:hover { background: var(--gold2); color: var(--navy); }
.s-btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.s-btn-ghost:hover { background: rgba(255,255,255,.15); color: #fff; }
.s-btn-wa { background: #25D366; color: #fff; }
.s-btn-wa:hover { background: #20ba5a; color: #fff; }
.sidebar-info { border-top: 1px solid rgba(255,255,255,.12); margin-top: 20px; padding-top: 18px; }
.si-row { margin-bottom: 12px; }
.si-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: 4px; }
.si-val { font-size: .875rem; color: rgba(255,255,255,.85); font-weight: 600; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  background: #25D366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 36px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 16px; }
.footer-about p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 270px; }
.footer-contact { margin-top: 16px; }
.footer-contact a { display: block; color: rgba(255,255,255,.55); font-size: .84rem; margin-bottom: 4px; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h6 { color: rgba(255,255,255,.35); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.58); font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-addr { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.7; margin-top: 12px; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom span { color: var(--gold); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.bg-light { background: var(--light); }
.divider-line { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 24px; }
.divider-center { margin: 14px auto 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,.08); }
  .two-col { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav {
    display: none; position: absolute; top: 72px;
    left: 0; right: 0; background: var(--navy2);
    border-top: 1px solid rgba(255,255,255,.1);
    flex-direction: column; align-items: stretch;
    padding: 12px; gap: 2px; z-index: 999;
  }
  .main-nav.open { display: flex; }
  .nav-link { width: 100%; color: rgba(255,255,255,.85); }
  .dropdown { position: static; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 14px; display: block; min-width: auto; background: transparent; }
  .dropdown a { color: rgba(255,255,255,.65); font-size: .82rem; }
  .dropdown a:hover { background: rgba(255,255,255,.08); color: var(--gold); }
  .nav-item { width: 100%; }
  .nav-cta { margin: 8px 0 0; text-align: center; display: block; }
  .menu-toggle { display: flex; }
  .hero { min-height: 500px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
  .hero-btns { gap: 8px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .course-meta { grid-template-columns: repeat(2,1fr); }
  .challenge-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero-btns, .cta-btns, .page-hero-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}

/* ── WHY SECTION ── */
.why-section { background: var(--light); }
.why-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.why-header > div:first-child h2 { margin: 12px 0 16px; }
.why-header > div:first-child p { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.why-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  transition: all .25s;
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 44px; height: 44px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  color: var(--gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-title { color: var(--navy) !important; font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.6; }

@media (max-width: 1024px) {
  .why-header { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}
