/* ============================================================
   AcademeKey — Global Stylesheet
   ============================================================ */

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

:root {
  --navy:        #0B1629;
  --navy-mid:    #0F1F3D;
  --navy-light:  #162844;
  --orange:      #F5961F;
  --orange-dark: #D97F0F;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --gray-100:    #F1F3F6;
  --gray-200:    #E2E6ED;
  --gray-400:    #9AA5B4;
  --gray-600:    #6B7A90;
  --gray-800:    #2D3748;
  --text:        #1A2A42;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(11,22,41,.10);
  --shadow-lg:   0 8px 40px rgba(11,22,41,.16);
  --transition:  .22s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
  display: block;
}
.tag {
  display: inline-block; background: rgba(245,150,31,.12);
  color: var(--orange); font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 8px; font-weight: 600;
  font-size: 14.5px; cursor: pointer; text-decoration: none;
  transition: all var(--transition); border: none; line-height: 1;
}
.btn-orange  { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,150,31,.35); }
.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ── Header / Nav ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center; height: 72px; gap: 0;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: auto; flex-shrink: 0;
}
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 19px; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.logo-name span { color: var(--orange); }
.logo-tagline { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.45); letter-spacing: .5px; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 8px 13px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links .has-dd::after { content: '▾'; font-size: 10px; margin-left: 3px; opacity: .7; }

/* Programs dropdown */
.nav-dd-wrap { position: relative; }
.nav-dd {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius); min-width: 240px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
  padding: 8px 0; z-index: 300;
}
.nav-dd-wrap:hover .nav-dd { display: block; }
.nav-dd a {
  display: block; padding: 10px 18px; font-size: 13.5px; color: var(--text);
  font-weight: 500; text-decoration: none; transition: background var(--transition), color var(--transition);
}
.nav-dd a:hover { background: var(--off-white); color: var(--orange); }

.nav-cta { margin-left: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: 12px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 190; flex-direction: column;
  padding: 20px 24px 40px; gap: 4px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.82); font-size: 15.5px; font-weight: 500;
  text-decoration: none; padding: 14px 16px; border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.mobile-menu .mob-cta { margin-top: 16px; text-align: center; justify-content: center; }

/* ── Footer ── */
footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.48); line-height: 1.75; margin-bottom: 22px; }
.social-row { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.06); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.55); text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.soc-btn:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1.2px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.35); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* ── Hero (homepage) ── */
.hero {
  background: var(--navy); position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
  padding: 80px 0 64px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 68% 50%, rgba(245,150,31,.11) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute; right: 0; top: 0; bottom: 0; width: 52%;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
  z-index: 1;
}
.hero-bg-img img {
  width: 100%; height: 100%; object-fit: cover; opacity: .22;
}
.hero-inner { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,150,31,.13); border: 1px solid rgba(245,150,31,.28);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 26px;
}
.hero-badge span { color: var(--orange); font-size: 12.5px; font-weight: 600; }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 66px); font-weight: 900;
  color: var(--white); line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.68); line-height: 1.78;
  max-width: 510px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-watch {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 600; font-size: 14.5px;
  background: none; border: none; cursor: pointer; padding: 12px 0;
}
.btn-watch .play { width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-watch .play svg { margin-left: 2px; }
.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.stat-num { font-size: 38px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-lbl { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 4px; font-weight: 500; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-lg); padding: 30px;
}
.hcard-title { color: var(--white); font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.hcard-sub   { color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 22px; }
.trainer-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.avatars { display: flex; }
.av {
  width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--navy-light);
  background: var(--navy-light); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-weight: 700; font-size: 12.5px;
  margin-left: -10px; overflow: hidden;
}
.av:first-child { margin-left: 0; }
.av img { width: 100%; height: 100%; object-fit: cover; }
.trainer-info { color: rgba(255,255,255,.65); font-size: 13px; }
.trainer-info strong { color: var(--white); display: block; }
.format-pills { display: flex; flex-direction: column; gap: 9px; }
.pill { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.72); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── Section commons ── */
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px;
}
.section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--text); letter-spacing: -.4px; line-height: 1.2; }
.section-title-white { color: var(--white); }

/* ── Mission / Values ── */
.mission { padding: 96px 0; background: var(--off-white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.mission-text { }
.mission-text h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 16px; letter-spacing: -.5px; }
.mission-text p { font-size: 15.5px; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.val-card {
  background: var(--white); border-radius: var(--radius); padding: 22px;
  border: 1.5px solid var(--gray-200); transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.val-card:hover { box-shadow: var(--shadow); border-color: rgba(245,150,31,.3); transform: translateY(-2px); }
.val-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(245,150,31,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.val-icon svg { color: var(--orange); }
.val-card h4 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.val-card p { font-size: 13px; color: var(--gray-600); line-height: 1.65; }

/* ── Programs grid ── */
.programs-section { padding: 96px 0; background: var(--white); }
.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prog-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 26px 20px; text-decoration: none; display: block;
  transition: all var(--transition);
}
.prog-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.prog-card:hover .prog-icon { background: var(--orange); }
.prog-card:hover .prog-icon svg { color: var(--white); }
.prog-icon {
  width: 50px; height: 50px; border-radius: 12px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  transition: background var(--transition);
}
.prog-icon svg { color: var(--navy); transition: color var(--transition); }
.prog-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; line-height: 1.3; }
.prog-card .count { font-size: 12.5px; color: var(--gray-600); display: flex; align-items: center; gap: 5px; margin-bottom: 14px; }
.prog-card .count strong { color: var(--orange); font-weight: 700; }
.prog-arrow { font-size: 13px; color: var(--orange); display: flex; align-items: center; gap: 4px; font-weight: 600; }
.prog-arrow svg { transition: transform var(--transition); }
.prog-card:hover .prog-arrow svg { transform: translateX(4px); }

/* ── Learning Formats section ── */
.formats-section { padding: 96px 0; background: var(--navy); }
.formats-header { text-align: center; margin-bottom: 52px; }
.formats-header p { font-size: 15.5px; color: rgba(255,255,255,.58); max-width: 540px; margin: 14px auto 0; }
.fmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fmt-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.fmt-card:hover { background: rgba(255,255,255,.08); border-color: rgba(245,150,31,.35); transform: translateY(-3px); }
.fmt-thumb { height: 190px; overflow: hidden; position: relative; background: var(--navy-light); }
.fmt-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity var(--transition), transform .4s; }
.fmt-card:hover .fmt-thumb img { opacity: .85; transform: scale(1.04); }
.fmt-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(11,22,41,.8)); }
.fmt-thumb-icon {
  position: absolute; bottom: 16px; left: 16px;
  width: 52px; height: 52px; background: var(--orange); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.fmt-body { padding: 22px; }
.fmt-body h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.fmt-body p { font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.7; margin-bottom: 16px; }
.fmt-features { display: flex; flex-direction: column; gap: 7px; }
.fmt-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.68); }
.fmt-feat svg { color: var(--orange); flex-shrink: 0; }
.fmt-cta { text-align: center; margin-top: 44px; }

/* ── CTA Banner ── */
.cta-banner { background: var(--orange); padding: 72px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { font-size: 15.5px; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-clear { background: transparent; border: 2px solid rgba(255,255,255,.65); color: var(--white); }
.btn-clear:hover { background: rgba(255,255,255,.12); }

/* ── Contact section ── */
.contact-section { padding: 96px 0; background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-block { }
.contact-info-block h2 { margin-bottom: 12px; }
.contact-desc { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 36px; }
.cinfo-list { display: flex; flex-direction: column; gap: 20px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; }
.cinfo-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cinfo-icon svg { color: var(--orange); }
.cinfo-text strong { font-size: 13.5px; font-weight: 700; color: var(--text); display: block; margin-bottom: 3px; }
.cinfo-text a, .cinfo-text span { font-size: 14px; color: var(--gray-600); text-decoration: none; line-height: 1.6; display: block; }
.cinfo-text a:hover { color: var(--orange); }

/* Contact form card */
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 38px; box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--text);
  background: var(--white); outline: none; transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,150,31,.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 108px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--orange); color: var(--white);
  border: none; border-radius: 8px; font-size: 15.5px; font-weight: 700;
  cursor: pointer; transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-msg {
  display: none; margin-top: 14px; padding: 12px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500; text-align: center;
  background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0;
}
.form-msg.error { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 64px 0 56px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,150,31,.09) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,.3); }
.breadcrumb .current { font-size: 13px; color: rgba(255,255,255,.7); }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 50px); font-weight: 900; color: var(--white);
  line-height: 1.1; letter-spacing: -.7px; margin-bottom: 14px; max-width: 720px;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,.62); max-width: 600px; line-height: 1.75; }

/* ── Programs list page ── */
.programs-page { padding: 72px 0; }
.prog-filter-bar {
  display: flex; gap: 14px; align-items: center; margin-bottom: 40px; flex-wrap: wrap;
}
.search-wrap { position: relative; flex: 1; min-width: 220px; max-width: 380px; }
.search-wrap svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.search-wrap input { padding: 11px 14px 11px 40px; border: 1.5px solid var(--gray-200); border-radius: 8px; width: 100%; font-size: 14px; font-family: inherit; outline: none; transition: border-color var(--transition); }
.search-wrap input:focus { border-color: var(--orange); }
.filter-btn {
  display: flex; align-items: center; gap: 8px; padding: 11px 18px;
  border: 1.5px solid var(--gray-200); border-radius: 8px; background: var(--white);
  font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer;
  transition: border-color var(--transition);
}
.filter-btn:hover { border-color: var(--orange); }
.prog-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Not-sure banner */
.not-sure-banner {
  margin-top: 52px; background: var(--navy); border-radius: var(--radius-lg);
  padding: 36px 40px; display: flex; align-items: center; gap: 24px;
}
.nsb-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(245,150,31,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nsb-icon svg { color: var(--orange); }
.nsb-text { flex: 1; }
.nsb-text h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.nsb-text p { font-size: 13.5px; color: rgba(255,255,255,.55); }

/* ── Program detail page ── */
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 64px 0; }
.detail-tabs-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--gray-200); margin-bottom: 36px;
}
.tab-btn {
  padding: 13px 20px; font-size: 14.5px; font-weight: 600; color: var(--gray-600);
  background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color var(--transition), border-color var(--transition);
}
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-btn:hover { color: var(--text); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.overview-text h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.overview-text p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.learn-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.learn-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--gray-800); }
.learn-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(245,150,31,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.learn-check svg { color: var(--orange); }

/* Sidebar */
.detail-sidebar { position: sticky; top: 88px; align-self: start; }
.sidebar-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 24px; margin-bottom: 16px;
}
.sidebar-card h4 { font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray-600); margin-bottom: 16px; }
.sidebar-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.sidebar-row:last-child { margin-bottom: 0; }
.sidebar-row-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(245,150,31,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-row-icon svg { color: var(--orange); }
.sidebar-row-text strong { font-size: 13px; font-weight: 700; color: var(--text); display: block; }
.sidebar-row-text span { font-size: 12.5px; color: var(--gray-600); }

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 96px 0; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 460px; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 14px; }
.about-text p { font-size: 15.5px; color: var(--gray-600); line-height: 1.8; margin-bottom: 18px; }
.provide-title { font-size: 16px; font-weight: 700; color: var(--text); margin: 24px 0 14px; }
.provide-list { display: flex; flex-direction: column; gap: 10px; }
.provide-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--gray-800); }
.check-wrap { width: 22px; height: 22px; border-radius: 50%; background: rgba(245,150,31,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-wrap svg { color: var(--orange); }

/* ── Learning Formats page ── */
.formats-page { padding: 72px 0; }
.formats-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.fmt-page-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.fmt-page-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(245,150,31,.3); }
.fmt-page-thumb { height: 210px; overflow: hidden; }
.fmt-page-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.fmt-page-card:hover .fmt-page-thumb img { transform: scale(1.04); }
.fmt-page-body { padding: 26px; }
.fmt-page-body h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.fmt-page-body p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }

/* Session option cards */
.session-section { background: var(--off-white); padding: 80px 0; }
.session-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.session-types { display: flex; flex-direction: column; gap: 13px; margin-top: 24px; }
.stype-card {
  background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.stype-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.stype-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(245,150,31,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stype-icon svg { color: var(--orange); }
.stype-text h4 { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.stype-text p { font-size: 13px; color: var(--gray-600); }
.duration-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.dur-card { background: var(--navy); border-radius: var(--radius); padding: 28px 22px; }
.dur-card.featured { border: 2px solid var(--orange); }
.dur-hrs { font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; }
.dur-label { font-size: 15px; font-weight: 600; color: var(--white); margin-top: 6px; }
.dur-sub { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 4px; margin-bottom: 18px; }
.dur-feats { display: flex; flex-direction: column; gap: 8px; }
.dur-feat { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,.62); }
.dur-feat svg { color: var(--orange); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .fmt-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .formats-page-grid { grid-template-columns: 1fr; max-width: 480px; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .about-img-wrap { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .session-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 56px 0 48px; }
  .hero h1 { font-size: 36px; }
  .prog-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .prog-cards-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .not-sure-banner { flex-direction: column; text-align: center; }
  .duration-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .prog-grid, .prog-cards-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .container { padding: 0 16px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0B1629; }
::-webkit-scrollbar-thumb { background: rgba(245,150,31,.4); border-radius: 3px; }
