/*!
 * Bee's Home Academy � Design System
 * P2-BEESHOME-PREMIUM-WEBSITE-10000
 * Version: 1.0 | Gate 1
 */

@import url('./brand-tokens.css');

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------- */
:root {
  /* Brand gold � aliases to brand-tokens.css (single source of truth) */
  --gold:           var(--brand-gold);           /* ? brand-tokens.css */
  --gold-hover:     var(--brand-gold-hover);
  --gold-deep:      var(--brand-gold-deep);
  --gold-light:     var(--brand-gold-light);
  --gold-light-2:   var(--brand-gold-tint);
  --gold-border:    var(--brand-gold-border);
  --gold-border-2:  var(--brand-gold-border-strong);

  /* Surface colors */
  --dark:           #1A1A1A;
  --dark-2:         #212121;
  --dark-3:         #2C2C2C;
  --dark-4:         #383838;
  --black:          #0E0E0E;
  --white:          #FFFFFF;
  --cream:          #F8F6F1;
  --cream-2:        #F2EEE5;
  --cream-3:        #EBE6D8;

  /* Text */
  --text-body:      #1E1E1E;
  --text-sec:       #4A4A4A;
  --text-muted:     #7A7A7A;
  --text-faint:     #ABABAB;

  /* Borders */
  --border:         #E4E0D6;
  --border-2:       #D6D2C8;

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.11);
  --shadow-lg:  0 20px 56px rgba(0,0,0,0.16);

  /* Radius */
  --r-xs:  3px;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-full: 999px;

  /* Layout */
  --container:   1200px;
  --container-sm: 860px;
  --header-h:    72px;

  /* Motion */
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:  0.18s;
  --t-base:  0.25s;
  --t-slow:  0.40s;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Be Vietnam Pro', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  line-height: inherit;
}

input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Focus ring � accessible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ---------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem);  font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.6rem);  font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5 { font-size: 0.9375rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.72;
  color: var(--text-sec);
}

.eyebrow {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: var(--brand-gold-text);
}

.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-sec     { color: var(--text-sec); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.78rem; }
.text-lg      { font-size: 1.125rem; }
.font-600     { font-weight: 600; }
.font-700     { font-weight: 700; }

/* Dark backgrounds override heading color (gồm cả h5/h6 — kẻo tiêu đề card tối tàng hình) */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 { color: var(--white); }

/* ---------------------------------------------------------------
   4. LAYOUT
   --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.container-sm {
  max-width: var(--container-sm);
}

/* Section spacing */
.section     { padding: 88px 0; }
.section-sm  { padding: 56px 0; }
.section-lg  { padding: 108px 0; }

/* Backgrounds */
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-dark    { background: var(--dark); color: var(--white); }
/* Nền section theo VAI TRÒ nội dung (chữ giữ tối — pastel rất nhạt nên đọc tốt) */
.bg-pain     { background: var(--pain-bg); }
.bg-reason   { background: var(--reason-bg); }
.bg-solution { background: var(--solution-bg); }
.bg-system   { background: var(--system-bg); }
.bg-dark    p { color: rgba(255,255,255,0.62); }

/* Section header */
.section-header {
  margin-bottom: 60px;
}
.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .lead {
  margin-top: 16px;
}

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-start   { display: flex; align-items: flex-start; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ---------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease),
              border-color var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 4px 18px var(--brand-gold-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid var(--gold-border-2);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-light-2);
  border-color: var(--gold);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid transparent;
}
.btn-dark:hover {
  background: var(--dark-3);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-white:hover {
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.btn-lg { padding: 15px 38px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.84rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------
   6. TAGS & BADGES
   --------------------------------------------------------------- */
.tag {
  display: inline-block;
  padding: 4px 11px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.775rem;
  font-weight: 500;
  color: var(--text-sec);
}
.tag-gold {
  background: var(--gold-light);
  border-color: var(--gold-border);
  color: var(--gold);
  font-weight: 600;
}
.tag-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-gold {
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
}
.badge-dark {
  background: rgba(26,26,26,0.80);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  backdrop-filter: blur(4px);
}

/* ---------------------------------------------------------------
   7. HEADER
   --------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow var(--t-base) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header-logo { flex-shrink: 0; line-height: 0; }
.header-logo img { height: 34px; width: auto; }

/* Desktop nav */
.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav ul { display: flex; gap: 2px; }
.site-nav a {
  display: block;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: var(--r-xs);
  transition: color var(--t-fast), background var(--t-fast);
}
.site-nav a:hover { color: var(--gold); background: rgba(255,192,32,0.10); }
.site-nav a.active { color: var(--gold); }

/* Dropdown: sub-links wrapped in a <div class="nav-dropdown"> by JS */
.site-nav ul > li { position: relative; }
.nav-dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 2px); left: 0;     /* gần như sát nav — khe rất nhỏ */
  background: var(--dark, #1a1a1a);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm, 8px);
  padding: 6px 0;
  min-width: 200px;
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
  z-index: 600;
  opacity: 0; visibility: hidden;
  transition: opacity .16s ease, visibility 0s linear .16s;  /* mở ngay · đóng trễ .16s → dễ rê chuột vào */
}
.nav-dropdown::before {               /* CẦU NỐI vô hình phủ khe phía trên → chuột không bị "rớt" hover */
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.site-nav ul > li:hover > .nav-dropdown,
.site-nav ul > li:focus-within > .nav-dropdown {
  opacity: 1; visibility: visible;
  transition: opacity .16s ease;
}
.nav-dropdown a {
  display: block; padding: 9px 18px;
  font-size: 0.845rem; font-weight: 400;
  color: rgba(255,255,255,.72); white-space: nowrap;
  border-radius: 0;
}
.nav-dropdown a:hover { background: rgba(255,255,255,.07); color: #fff; }

/* Header CTA */
.header-cta { flex-shrink: 0; }
.header-cta .btn {
  padding: 9px 20px;
  font-size: 0.84rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-xs);
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); }
.menu-toggle span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: rgba(255,255,255,0.88);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-fast);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 899;
  padding: 28px 24px 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1.075rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  border-radius: var(--r-sm);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--t-fast), background var(--t-fast);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); background: var(--gold-light); }
.mobile-nav .mobile-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav .mobile-cta .btn {
  padding: 15px;
  font-size: 1rem;
  justify-content: center;
  width: 100%;
}

/* Page body offset */
.page-body { padding-top: var(--header-h); }

/* ---------------------------------------------------------------
   8. HERO � HOMEPAGE
   --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 96px 0 80px;
  overflow: hidden;
}

/* Subtle radial glow behind image side */
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 60% 40%, var(--brand-gold-pale) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left: content */
.hero-content { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  line-height: 1.667;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  flex: 1;
  min-width: 110px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 3px;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  line-height: 1.4;
}

/* Right: image */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 500px;
  background: var(--dark-3);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Gold corner frame accent */
.hero-img-wrap::before,
.hero-img-wrap::after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-img-wrap::before {
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--gold-border);
}
.hero-img-wrap::after {
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.35) 0%, transparent 50%);
  border-radius: var(--r-lg);
}

/* Floating info card on the image */
.hero-float-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 3;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  max-width: 200px;
  backdrop-filter: blur(8px);
}
.hero-float-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.hero-float-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin: 0;
}

/* Subpage hero */
.hero-page {
  background: var(--dark);
  padding: 60px 0 52px;
  text-align: center;
}
.hero-page h1 { color: var(--white); }
.hero-page .hero-sub {
  margin: 16px auto 0;
  color: rgba(255,255,255,0.62);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--gold); }

/* ---------------------------------------------------------------
   9. NEED SELECTOR
   --------------------------------------------------------------- */
.need-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto 32px;
}

.need-card {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 24px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color var(--t-base),
              box-shadow var(--t-base),
              background var(--t-base),
              transform var(--t-fast) var(--ease);
  position: relative;
}
.need-card:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.need-card.selected {
  border-color: var(--gold);
  background: var(--gold-light);
  box-shadow: 0 0 0 3px var(--brand-gold-light);
}

.need-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  color: #1a2847;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background var(--t-base), border-radius var(--t-base), color var(--t-base);
}
/* trạng thái nổi (hover/selected) — vòng vàng đặc, icon trắng (khớp mẫu). .need-grid tăng specificity để thắng rule chung premium.css */
.need-grid .need-card:hover .need-card-icon,
.need-grid .need-card.selected .need-card-icon {
  background: var(--brand-gold, #FFC020);
  border-radius: 50%;
  color: #fff;
}
.need-card-icon svg { width: 26px; height: 26px; }

.need-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2847;
  margin-bottom: 6px;
  line-height: 1.35;
}
.need-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Result panel */
.need-result {
  display: none;
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r-md);
  background: var(--cream);
  padding: 28px 32px;
  transition: opacity var(--t-base);
}
.need-result.visible { display: block; }
.need-result-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.need-result-label {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.need-result-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.need-result-desc {
  font-size: 0.875rem;
  color: var(--text-sec);
  margin: 0;
}
.need-result-info { flex: 1; min-width: 200px; }

/* ---------------------------------------------------------------
   10. PAIN POINTS
   --------------------------------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  position: relative;
  padding: 24px 24px 24px 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.pain-card::after {              /* thanh vàng trái bo tròn (::before đã dùng cho viền chạy) */
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 3px;
  background: var(--pain-accent, #E66A3A);   /* thanh accent theo VAI TRÒ: đỏ-cam = vấn đề */
  z-index: 1;
}
.pain-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}
.pain-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(230, 106, 58, 0.12);   /* nền icon: đỏ-cam nhạt */
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-icon svg { width: 24px; height: 24px; color: #C2410C; }   /* icon đỏ-cam đậm (AA) */
.pain-card h4 { font-size: 1.02rem; font-weight: 700; color: #1a2847; margin-bottom: 6px; line-height: 1.3; }
.pain-card p { font-size: 0.9rem; color: var(--text-sec); line-height: 1.6; margin: 0; }

/* ---------------------------------------------------------------
   11. PROGRAMS
   --------------------------------------------------------------- */
/* Featured flagship program */
.program-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow var(--t-base);
}
.program-featured:hover { box-shadow: var(--shadow-md); }
.program-featured-content {
  padding: 44px 40px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.program-featured-img {
  position: relative;
  background: var(--dark-2);
  overflow: hidden;
}
.program-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.program-featured:hover .program-featured-img img { transform: scale(1.03); }
.program-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.2), transparent);
}

.program-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,192,32,0.55);
  color: #8a6a00;
  background: rgba(255,192,32,0.18);
  margin-bottom: 20px;
}

.program-featured h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-bottom: 12px;
  line-height: 1.25;
}
.program-featured .prog-desc {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.68;
  margin-bottom: 24px;
}
.program-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.program-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-sec);
}
.program-bullets li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-border);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Program card grid */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prog-card {
  padding: 30px 26px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base),
              box-shadow var(--t-base),
              transform var(--t-fast) var(--ease);
}
.prog-card:hover {
  border-color: var(--gold-border-2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.prog-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.prog-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prog-icon svg { width: 22px; height: 22px; }
.prog-grades {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.35; }
.prog-card p {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.62;
  flex: 1;
  margin-bottom: 20px;
}
.prog-card .prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t-fast);
}
.prog-card .prog-link:hover { gap: 10px; }
.prog-card .prog-link svg { width: 14px; height: 14px; }

/* ---------------------------------------------------------------
   12. METHOD / APPROACH
   --------------------------------------------------------------- */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  overflow: hidden;
}
.method-step {
  padding: 36px 28px;
  background: var(--dark);
  position: relative;
  transition: background var(--t-base);
}
.method-step:hover { background: var(--dark-2); }
.method-step::after {
  content: '';
  position: absolute;
  right: 0;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: rgba(255,255,255,0.06);
}
.method-step:last-child::after { display: none; }

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-gold-tint);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  display: block;
}
.method-step h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}
.method-step p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  margin: 0;
}

/* ---------------------------------------------------------------
   13. CORE VALUES
   --------------------------------------------------------------- */
.values-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.values-layout > * { min-width: 0; }
.values-intro .lead {
  margin-top: 20px;
  margin-bottom: 32px;
}
.values-quote {
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--cream-2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.values-quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}
.values-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base);
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { background: var(--cream); }
.value-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.value-content h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.value-content p { font-size: 0.84rem; color: var(--text-sec); margin: 0; line-height: 1.58; }

/* ---------------------------------------------------------------
   14. GROWTH JOURNEY
   --------------------------------------------------------------- */
.journey-wrapper {
  position: relative;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold-border), var(--gold), var(--gold-border));
  z-index: 0;
}

.journey-step {
  padding: 0 16px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.journey-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: border-color var(--t-base), background var(--t-base);
}
.journey-dot span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
}
.journey-step.active .journey-dot {
  border-color: var(--gold);
  background: var(--gold-light);
}
.journey-step.active .journey-dot span { color: var(--gold); }

.journey-step-grade {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.journey-step h4 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.journey-step p {
  font-size: 0.8rem;
  color: var(--text-sec);
  line-height: 1.55;
  margin: 0;
  padding: 0 8px;
}

/* Full journey detail � H�nh tr�nh page */
.journey-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.journey-phase {
  padding: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.journey-phase:hover { border-color: var(--gold-border-2); box-shadow: var(--shadow-sm); }
.phase-label {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.journey-phase h3 { font-size: 1.15rem; margin-bottom: 14px; }
.phase-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-sec);
}
.phase-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---------------------------------------------------------------
   15. TEAM CARDS
   --------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base),
              border-color var(--t-base);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}
.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 320px;
  overflow: hidden;
  background: var(--cream-2);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-photo .badge { position: absolute; top: 14px; left: 14px; }

/* Initials avatar when no photo */
.avatar-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--dark-2) 0%, var(--dark-3) 100%);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.team-body { padding: 24px; }
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.team-role {
  font-size: 0.84rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.team-bio {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.64;
  margin-bottom: 16px;
}
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Full profile layout */
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: start;
  padding: 44px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 28px;
}
.profile-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.profile-name { font-size: 1.6rem; margin-bottom: 4px; }
.profile-role { font-size: 0.9375rem; color: var(--gold); font-weight: 600; margin-bottom: 20px; }
.profile-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.profile-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-sec);
}
.profile-highlights li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ---------------------------------------------------------------
   16. PARENT REPORTING
   --------------------------------------------------------------- */
.reporting-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.reporting-layout > * { min-width: 0; }
.report-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.report-item {
  padding: 22px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
}
.report-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-xs);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.report-icon svg { width: 18px; height: 18px; color: var(--gold); }
.report-item h4 { font-size: 0.875rem; color: var(--white); margin-bottom: 5px; }
.report-item p { font-size: 0.8rem; color: rgba(255,255,255,0.48); margin: 0; line-height: 1.55; }

/* ---------------------------------------------------------------
   17. TRỢ LÝ HỌC TẬP / TECHNOLOGY SECTION
   --------------------------------------------------------------- */
.ai-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 60px;
  align-items: start;
}
.ai-layout > * { min-width: 0; }
.ai-intro .lead { margin-top: 16px; margin-bottom: 28px; }
.ai-note {
  padding: 18px 20px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  color: var(--text-sec);
  line-height: 1.62;
}
.ai-note strong { color: var(--text-body); }

.ai-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ai-role {
  padding: 18px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color var(--t-base);
}
.ai-role:hover { border-color: var(--gold-border); }
.ai-role-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.ai-role p { font-size: 0.84rem; color: var(--text-sec); margin: 0; line-height: 1.5; }

/* ---------------------------------------------------------------
   18. FAQ
   --------------------------------------------------------------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-section .faq-item.open .faq-question { color: var(--gold); }

.faq-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base),
              border-color var(--t-base),
              transform var(--t-base) var(--ease);
}
.faq-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t-base) var(--ease);
}
.faq-item.open .faq-arrow {
  background: var(--gold-light);
  border-color: var(--gold-border);
}
.faq-item.open .faq-arrow svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.72;
}
.faq-item.open .faq-answer { display: block; }

/* ---------------------------------------------------------------
   19. CTA SECTION + FORM
   --------------------------------------------------------------- */
.cta-section {
  background: var(--dark);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 100%, var(--brand-gold-light) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.cta-inner > * { min-width: 0; }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content .lead { color: rgba(255,255,255,0.60); }
.cta-info-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.cta-info-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.cta-info-item strong { color: rgba(255,255,255,0.82); }

/* Consult form */
.consult-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}
.consult-form-wrap h3 {
  color: var(--white);
  font-size: 1.075rem;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input,
.form-select {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color var(--t-base), background var(--t-base);
}
.form-input:focus,
.form-select:focus {
  border-color: var(--gold-border-2);
  background: rgba(255,255,255,0.09);
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.30); }
.form-select option { background: var(--dark-3); color: var(--white); }

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #ff7675;
  margin-top: 8px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.form-success h4 { color: var(--white); margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.60); font-size: 0.9rem; }

.form-note {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
  margin-top: 12px;
}

/* Simple CTA section (secondary) */
.cta-simple {
  text-align: center;
}
.cta-simple h2 { margin-bottom: 16px; }
.cta-simple .lead { margin-bottom: 36px; }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   20. GIFT PAGE
   --------------------------------------------------------------- */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gift-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.gift-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-border); }
.gift-card-header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  text-align: center;
}
.gift-card-header h3 { color: var(--white); font-size: 1rem; margin: 16px 0 10px; }
.gift-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.gift-icon-wrap svg { width: 26px; height: 26px; color: var(--gold); }
.gift-card-body { padding: 20px 24px; }
.gift-card-body p { font-size: 0.875rem; color: var(--text-sec); }

/* ---------------------------------------------------------------
   21. CONTACT PAGE
   --------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-blocks { display: flex; flex-direction: column; gap: 28px; }
.contact-block h4 {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-block p, .contact-block a {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.68;
}
.contact-block a:hover { color: var(--gold); }

.contact-form-panel {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.contact-form-panel h3 { font-size: 1.2rem; margin-bottom: 6px; }
.contact-form-panel .form-lead {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 24px;
}
/* Light form (on cream bg) */
.form-light .form-label { color: var(--text-muted); }
.form-light .form-input,
.form-light .form-select {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-body);
}
.form-light .form-input:focus,
.form-light .form-select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-light .form-input::placeholder { color: var(--text-faint); }
.form-light .form-select option { background: var(--white); color: var(--text-body); }
.form-light .form-note { color: var(--text-muted); }

/* ---------------------------------------------------------------
   22. FOOTER
   --------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 60px 0 0;
  font-size: 0.875rem;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(auto-fit, minmax(130px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 18px;
  opacity: 0.88;
}
.footer-brand .footer-tagline {
  font-size: 0.84rem;
  line-height: 1.72;
  max-width: 270px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.45);
}
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contacts a:hover { color: var(--gold); }
.footer-contacts svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.52);
  font-size: 0.875rem;
  transition: color var(--t-fast);
  line-height: 1.4;
}
.footer-links a:hover { color: rgba(255,255,255,0.88); }

.footer-address {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.40);
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.775rem; color: rgba(255,255,255,0.25); }
.footer-bottom .footer-legal { display: flex; gap: 20px; }
.footer-bottom .footer-legal a {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.28);
  transition: color var(--t-fast);
}
.footer-bottom .footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ---------------------------------------------------------------
   23. FLOATING ZALO BAR (MOBILE)
   --------------------------------------------------------------- */
.zalo-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  display: none;
  flex-wrap: wrap;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 16px 8px;
  gap: 10px;
}
.zalo-sticky-hint {
  width: 100%;
  margin: 0;
  padding: 0 2px 2px;
  font-size: 0.69rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.60);
  text-align: center;
  letter-spacing: 0.01em;
}
.zalo-sticky a {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ---------------------------------------------------------------
   24. SCROLL REVEAL
   Only hides content when JS has confirmed it is running.
   Without JS: elements remain visible (no opacity:0 fallback trap).
   --------------------------------------------------------------- */
html.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.52s var(--ease), transform 0.52s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
html.js-reveal-ready .reveal.revealed { opacity: 1; transform: none; }

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html.js-reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------------------------------------------
   25. DIVIDERS & UTILITIES
   --------------------------------------------------------------- */
.divider         { height: 1px; background: var(--border); }
.divider-dark    { background: rgba(255,255,255,0.07); }
.divider-gold    { background: var(--gold-border); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden { display: none !important; }
.block  { display: block; }

/* ---------------------------------------------------------------
   26. PROGRAMS PAGE SPECIFICS
   --------------------------------------------------------------- */
.prog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prog-hub-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base),
              border-color var(--t-base);
  display: flex;
  flex-direction: column;
}
.prog-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}
.prog-hub-header {
  padding: 28px 28px 20px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.prog-hub-header::before {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--gold-light);
  pointer-events: none;
}
.prog-hub-number {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 16px;
}
.prog-hub-header h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
  position: relative;
}
.prog-hub-grades {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}
.prog-hub-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prog-hub-body p {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.prog-hub-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.prog-hub-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-sec);
}
.prog-hub-feat::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-border);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------------------------------------------------------------
   27. RESPONSIVE � TABLET (= 1024px)
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --header-h: 68px; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { display: none; } /* hide on tablet, show text-only hero */
  .hero { padding: 72px 0 64px; }

  .need-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-step::after { top: auto; right: 0; bottom: 0; height: 1px; width: auto; left: 28px; }

  .values-layout { grid-template-columns: 1fr; gap: 36px; }

  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .journey-steps::before { display: none; }

  .reporting-layout { grid-template-columns: 1fr; gap: 36px; }
  .report-items { grid-template-columns: repeat(2, 1fr); }

  .ai-layout { grid-template-columns: 1fr; gap: 32px; }

  .cta-inner { grid-template-columns: 1fr; gap: 36px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }

  .program-featured { grid-template-columns: 1fr; }
  .program-featured-img { display: none; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }

  .pain-grid { grid-template-columns: repeat(2, 1fr); }

  .prog-hub-grid { grid-template-columns: repeat(2, 1fr); }

  .gift-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }

  .profile-layout { grid-template-columns: 1fr; }
  .profile-photo { max-width: 240px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------
   28. RESPONSIVE � MOBILE (= 768px)
   --------------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .container { padding: 0 18px; }

  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .section { padding: 60px 0; }
  .section-lg { padding: 72px 0; }

  .hero { padding: 60px 0 52px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 1rem; line-height: 1.625; }
  .page-hero-sub { font-size: 1rem; line-height: 1.625; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat { min-width: calc(50% - 8px); border-right: none; padding: 0; }
  .hero-stat:first-child { padding: 0; }

  .need-grid { grid-template-columns: repeat(2, 1fr); }

  .pain-grid { grid-template-columns: 1fr; }

  .program-grid { grid-template-columns: 1fr; }
  .prog-hub-grid { grid-template-columns: 1fr; }

  .method-steps { grid-template-columns: 1fr; gap: 1px; }
  .method-step::after { display: none; }
  .method-step { padding: 28px 24px; }

  .journey-steps { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: 1fr; }

  .report-items { grid-template-columns: 1fr; }

  .ai-roles { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 40px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }

  .zalo-sticky { display: flex; }
  .page-body { padding-bottom: 104px; }

  .cta-simple .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-simple .cta-actions .btn { justify-content: center; }

  .gift-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   29. RESPONSIVE � SMALL MOBILE (= 430px)
   --------------------------------------------------------------- */
@media (max-width: 430px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .need-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .need-result-inner { flex-direction: column; align-items: flex-start; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-steps::before { display: none; }
  .journey-step { text-align: left; display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; }
  .journey-dot { flex-shrink: 0; margin: 0; }
  .btn-lg { padding: 13px 26px; }
  h2 { font-size: 1.55rem; }
}

/* ---------------------------------------------------------------
   30. UTILITIES
   --------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.btn-full { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------
   31. BADGE VARIANTS
   --------------------------------------------------------------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-dark {
  background: var(--dark);
  color: var(--white);
}
.badge-gold {
  background: var(--gold);
  color: var(--dark);
}
.badge-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.72);
}

/* ---------------------------------------------------------------
   32. PAGE HERO (inner pages)
   --------------------------------------------------------------- */
.page-hero {
  padding: calc(var(--header-h) + 52px) 0 56px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 16px;
  max-width: 640px;
}
.page-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.667;
  max-width: 580px;
}
/* specificity override: .bg-dark p (0,1,1)=11 — needs (0,2,0)=20 */
.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.92);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-hidden] { color: rgba(255,255,255,0.22); }

/* ---------------------------------------------------------------
   33. PROGRAM DETAIL CARDS (hub page)
   --------------------------------------------------------------- */
.prog-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* Số thẻ lẻ trong lưới 2 cột → thẻ cuối trải full để không bị "thẻ lẻ loi" (a11y/thẩm mỹ desktop) */
.prog-detail-grid > *:last-child:nth-child(odd) { grid-column: 1 / -1; }

.prog-detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.prog-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.prog-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.prog-detail-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.prog-detail-icon svg { width: 20px; height: 20px; }
.prog-detail-head h3 { font-size: 1.1rem; margin-bottom: 4px; }

.prog-grade-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prog-detail-card > p {
  font-size: 0.98rem;
  color: var(--text-sec);
  line-height: 1.65;
}

.prog-detail-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.prog-detail-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-body, #333);
}
.prog-detail-feat svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.prog-grades-badge {
  display: inline-block;
  background: rgba(255,192,32,0.16);
  border: 1px solid rgba(255,192,32,0.55);
  color: #8a6a00;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------------------------------------------------------------
   34. EXAM CARD
   --------------------------------------------------------------- */
.exam-card {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: 40px;
  margin-top: 40px;
}

.exam-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }

.exam-card-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--white);
  margin-bottom: 12px;
}
.exam-card-content > p {
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

.exam-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 28px;
}
.exam-features > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
}
.exam-features svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.exam-card-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.exam-stat {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.exam-stat:last-of-type { border-bottom: none; }
.exam-stat strong { color: var(--white); font-size: 1.05rem; font-weight: 700; }
.exam-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 2px; }

/* ---------------------------------------------------------------
   35. PROGRAM HERO (detail page)
   --------------------------------------------------------------- */
.prog-hero {
  padding: calc(var(--header-h) + 48px) 0 56px;
}

.prog-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.prog-hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.prog-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 18px;
}

.prog-hero-desc {
  color: rgba(255,255,255,0.58);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

.prog-hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 16px 0;
}
.prog-hero-stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.prog-hero-stat:first-child { padding-left: 0; }
.prog-hero-stat:last-child { border-right: none; }
.prog-hero-stat strong { display: block; font-size: 1.1rem; color: var(--gold); font-weight: 800; }
.prog-hero-stat span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.38); margin-top: 3px; }

.prog-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.prog-hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.prog-hero-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.prog-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 2px solid var(--brand-gold-border);
  pointer-events: none;
}

/* ---------------------------------------------------------------
   36. INCLUDED GRID
   --------------------------------------------------------------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.included-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.included-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-border);
}
.included-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #8a6a00;   /* vàng-đậm AA trên nền vàng-nhạt (số không bị chìm) */
  flex-shrink: 0;
}
.included-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.included-card p { font-size: 0.84rem; color: var(--text-sec); line-height: 1.6; }

/* ---------------------------------------------------------------
   37. SCHEDULE LAYOUT
   --------------------------------------------------------------- */
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  margin-top: 16px;
}

.schedule-timeline { display: flex; flex-direction: column; gap: 0; }

.schedule-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-last .schedule-time { color: var(--gold); }

.schedule-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-ter);
  letter-spacing: 0.03em;
  padding-top: 2px;
}

.schedule-block h4 { font-size: 0.96rem; margin-bottom: 5px; }
.schedule-block p { font-size: 0.84rem; color: var(--text-sec); line-height: 1.6; margin: 0; }

.schedule-aside { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 100px; }

.aside-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
}
.aside-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.aside-card p { font-size: 0.82rem; color: var(--text-sec); line-height: 1.6; margin: 0; }

.aside-card-gold {
  background: var(--gold-light);
  border-color: var(--gold-border);
}
.aside-card-gold h4 { color: var(--gold-hover); }

/* ---------------------------------------------------------------
   38. FIT SECTION (who is it for)
   --------------------------------------------------------------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.fit-card {
  border-radius: var(--r-lg);
  padding: 28px;
}
.fit-yes {
  background: #f0f9f0;
  border: 1.5px solid #c3e6c3;
}
.fit-no {
  background: var(--cream);
  border: 1.5px solid var(--border);
}

.fit-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.fit-head svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.fit-yes .fit-head svg { color: #2e7d32; }
.fit-no  .fit-head svg { color: var(--text-ter); }
.fit-head h4 { font-size: 1rem; }

.fit-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0; padding: 0;
}
.fit-card li {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.fit-yes li::before { content: '�'; position: absolute; left: 0; color: #2e7d32; font-weight: 700; }
.fit-no  li::before { content: '�'; position: absolute; left: 0; color: var(--text-ter); }

.fit-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-top: 16px;
}
.fit-note p { font-size: 0.9rem; color: var(--text-sec); margin: 0; max-width: 520px; }

/* ---------------------------------------------------------------
   39. RESPONSIVE � NEW COMPONENTS
   --------------------------------------------------------------- */
@media (max-width: 1024px) {
  .prog-detail-grid { grid-template-columns: 1fr; }
  .exam-card { grid-template-columns: 1fr; }
  .exam-features { grid-template-columns: 1fr; }
  .prog-hero-inner { grid-template-columns: 1fr; }
  .prog-hero-img { display: none; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-layout { grid-template-columns: 1fr; }
  .schedule-aside { position: static; }
}

@media (max-width: 768px) {
  .fit-grid { grid-template-columns: 1fr; }
  .fit-note { flex-direction: column; align-items: flex-start; }
  .included-grid { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 1fr; gap: 4px; }
  .schedule-time { font-size: 0.76rem; }
  .prog-hero-stats { flex-wrap: wrap; }
  .prog-hero-stat { min-width: calc(50% - 20px); border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding-bottom: 12px; }
  .prog-hero-actions { flex-direction: column; }
  .prog-hero-actions .btn { justify-content: center; }
  .exam-card { padding: 24px; }
  .prog-detail-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   40. PRICING SECTION
   --------------------------------------------------------------- */
.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.pricing-main-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  flex-wrap: wrap;
}

.pricing-main-left h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 8px 0 4px;
}
.pricing-main-left > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.pricing-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.pricing-includes {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-includes li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  padding-left: 16px;
  position: relative;
}
.pricing-includes li::before {
  content: '�';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-main-right { flex-shrink: 0; text-align: right; }
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.pricing-amount strong {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.pricing-amount span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* Addon */
.pricing-addon-section {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 32px;
}

.pricing-addon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.pricing-addon-header h4 { font-size: 1.05rem; }

.pricing-discount-badge {
  background: var(--gold-light);
  color: var(--gold-deep);
  border: 1px solid var(--gold-border);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.pricing-addon-note {
  font-size: 0.875rem;
  color: var(--text-sec);
  margin-bottom: 16px;
  line-height: 1.6;
}

.pricing-subject-row { display: flex; flex-direction: column; gap: 8px; }

.pricing-subject-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
}
.pricing-subject-name { font-weight: 600; font-size: 0.9375rem; }
.pricing-subject-prices {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-original {
  font-size: 0.84rem;
  color: var(--text-ter);
  text-decoration: line-through;
}
.pricing-discounted {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

/* Combo */
.pricing-combo-section {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 32px;
}
.pricing-combo-section h4 { margin-bottom: 16px; font-size: 1.05rem; }

.pricing-combo-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.pricing-combo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.pricing-combo-highlight {
  background: var(--gold-light);
  border-color: var(--gold-border);
}

.pricing-combo-name strong { display: block; font-size: 0.9375rem; margin-bottom: 2px; }
.pricing-combo-name span { font-size: 0.78rem; color: var(--text-ter); }

.pricing-combo-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}
.pricing-combo-highlight .pricing-combo-price { color: var(--gold-hover); }
.pricing-combo-price span { font-size: 0.78rem; font-weight: 400; color: var(--text-ter); margin-left: 2px; }

.pricing-combo-note {
  font-size: 0.8rem;
  color: var(--text-ter);
  line-height: 1.55;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

/* Trial banner */
.pricing-trial-banner {
  background: var(--cream);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-trial-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}
.pricing-trial-icon {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.pricing-trial-icon svg { width: 20px; height: 20px; }
.pricing-trial-content h4 { margin-bottom: 4px; font-size: 1rem; }
.pricing-trial-content p { font-size: 0.875rem; color: var(--text-sec); margin: 0; line-height: 1.6; }

@media (max-width: 768px) {
  .pricing-main-card { padding: 24px 20px; }
  .pricing-amount strong { font-size: 2rem; }
  .pricing-combo-row { flex-direction: column; align-items: flex-start; }
  .pricing-trial-banner { flex-direction: column; }
  .pricing-addon-section, .pricing-combo-section { padding: 20px; }
}

/* --------------------------------------
   41 � EDITORIAL PLACEHOLDERS
   -------------------------------------- */

/* Team card: no-photo editorial version */
.team-photo-editorial {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, #242018 0%, var(--dark) 60%, #1e1b14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo-editorial::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-gold-light) 0%, transparent 70%);
  pointer-events: none;
}
.team-photo-initial-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

/* Prog-hero: no-photo editorial visual */
.prog-hero-visual {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: linear-gradient(155deg, #2c2519 0%, #1e1c18 50%, #151210 100%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prog-hero-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-gold-light) 0%, transparent 65%);
  pointer-events: none;
}
.prog-hero-visual::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-gold-pale) 0%, transparent 70%);
  pointer-events: none;
}
.prog-hero-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 36px;
  box-sizing: border-box;
}
.prog-hero-visual-inner svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.prog-hero-visual-inner p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold-text-dim);
  margin: 0;
  text-align: center;
  line-height: 1.85;
  max-width: 30ch;
}

/* ---------------------------------------------------------------
   REMEDIATION: Coming-soon nav & footer items
   --------------------------------------------------------------- */
.nav-link-soon {
  opacity: 0.38;
  cursor: default;
  font-size: inherit;
  font-family: inherit;
  color: rgba(255,255,255,0.6);
}
.site-nav .nav-link-soon { color: var(--text); }

.footer-link-soon {
  opacity: 0.38;
  cursor: default;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

/* Skip-to-main accessibility link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* PROTOTYPE notice on forms */
.proto-notice {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  opacity: 0.7;
}

