/* =========================================================
   Ponook — multi-page redesign
   Design system: dark + gold, minimal premium
   Font: Poppins (Latin) + Noto Sans Thai (Thai)
   ========================================================= */

:root {
  --bg:          #0a0a0a;
  --card:        #111111;
  --section-alt: #1a1a1a;
  --gold:        #f0c040;
  --gold-soft:   rgba(240, 192, 64, .12);
  --gold-border: rgba(240, 192, 64, .28);
  --text:        #ffffff;
  --subtext:     #888888;
  --line:        rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .16);

  --r-card: 12px;
  --r-btn:  8px;

  --maxw: 1180px;
  --nav-h: 76px;

  --font: "Poppins", "Noto Sans Thai", system-ui, -apple-system, sans-serif;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, .75);
  --shadow-gold: 0 12px 36px -12px rgba(240, 192, 64, .4);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }

::selection { background: var(--gold); color: #0a0a0a; }

/* ---------- Layout primitives ---------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-alt { background: var(--section-alt); }
.narrow { max-width: 820px; margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.section-title .gold { color: var(--gold); }
.section-intro { color: var(--subtext); font-size: 1.05rem; max-width: 60ch; }
.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { text-align: center; }
.section-head.center .section-intro { margin-inline: auto; }
.gold { color: var(--gold); }
.text-muted { color: var(--subtext); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: inherit;
  font-weight: 600;
  font-size: .98rem;
  padding: .8rem 1.6rem;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #0a0a0a; }
.btn-gold:hover { box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: rgba(255, 255, 255, .06); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.btn-sm { padding: .6rem 1.15rem; font-size: .9rem; }
.btn-lg { padding: .95rem 2rem; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo img { height: 34px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: .3rem; }
.nav-menu > a {
  font-size: .95rem;
  font-weight: 400;
  color: var(--subtext);
  padding: .5rem .9rem;
  border-radius: var(--r-btn);
  transition: color .2s ease, background .2s ease;
}
.nav-menu > a:hover { color: var(--text); }
.nav-menu > a.active { color: var(--text); font-weight: 600; }
.nav-menu > a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  margin: 3px auto 0;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { margin-left: .6rem; background: var(--gold); color: #0a0a0a !important; font-weight: 600; padding: .55rem 1.2rem !important; border-radius: var(--r-btn); }
.nav-cta:hover { box-shadow: var(--shadow-gold); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin-inline: auto; background: var(--text); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 70% 30%, rgba(240, 192, 64, .14), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,.6) 0%, rgba(10,10,10,.82) 55%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--subtext); max-width: 48ch; margin-bottom: 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-rating { display: flex; align-items: center; gap: .6rem; margin-top: 2rem; color: var(--subtext); font-size: .95rem; }
.june-promo { margin-top: 1.2rem; font-size: .95rem; color: var(--gold); background: var(--gold-soft); border: 1px solid var(--gold-border); border-radius: var(--r-btn); padding: .5rem 1rem; display: inline-block; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
/* Centered card row (e.g. when only 2 course cards remain) */
.cards-center { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.cards-center > .course-card { flex: 1 1 320px; max-width: 380px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-border); box-shadow: var(--shadow); }

.feature-card .feature-media { aspect-ratio: 16 / 10; overflow: hidden; }
.feature-card .feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-card:hover .feature-media img { transform: scale(1.06); }
.feature-body { padding: 1.6rem 1.7rem 1.9rem; }
.feature-body h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.feature-body h3 .num { color: var(--gold); font-weight: 600; margin-right: .5rem; }
.feature-body p { color: var(--subtext); font-size: .98rem; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.testimonial-card .stars { font-size: 1rem; }
.testimonial-card .quote { color: #d8d8d8; font-size: .98rem; line-height: 1.75; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; padding-top: .4rem; border-top: 1px solid var(--line); }
.testimonial-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: #222; padding: 4px; border: 1px solid var(--line-strong); }
.testimonial-author strong { display: block; font-size: .98rem; font-weight: 600; }
.testimonial-author span { color: var(--subtext); font-size: .85rem; }

/* Certificate proof (student reviews) */
.cert-proof { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.cert-proof-title { text-align: center; font-weight: 600; font-size: 1.15rem; color: var(--subtext); margin-bottom: 1.6rem; }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 1.2rem; }
.cert-item { display: block; border: 1px solid var(--gold-border); border-radius: var(--r-card); overflow: hidden; background: #0d0d0d; aspect-ratio: 4 / 3; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.cert-item img { width: 100%; height: 100%; object-fit: contain; }
.cert-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }

/* ---------- Community CTA banner ---------- */
.cta-banner { padding: clamp(3rem, 6vw, 5rem) 0; }
.cta-box {
  position: relative;
  background:
    radial-gradient(80% 140% at 0% 0%, rgba(240,192,64,.16), transparent 55%),
    var(--card);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}
.cta-box h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: .8rem; }
.cta-box p { color: var(--subtext); max-width: 52ch; margin: 0 auto 2rem; }
.cta-box .hero-cta { justify-content: center; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 100% at 80% 0%, rgba(240,192,64,.1), transparent 60%),
    var(--bg);
}
.page-header h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: .8rem; }
.page-header p { color: var(--subtext); max-width: 60ch; font-size: 1.08rem; }

/* ---------- Information page ---------- */
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-text h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1.2rem; }
.about-text p { color: #c9c9c9; margin-bottom: 1.1rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-media img { width: 100%; border-radius: var(--r-card); border: 1px solid var(--line); }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mission-card { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--r-card); padding: 2rem; }
.mission-card h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: .04em; }
.mission-card p { color: #c9c9c9; }

.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.results-grid figure { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.results-grid img { width: 100%; height: 100%; object-fit: contain; background: #0d0d0d; }

.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.video-card { display: block; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); background: var(--card); transition: transform .3s ease, border-color .3s ease; }
.video-card:hover { transform: translateY(-4px); border-color: var(--gold-border); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after {
  content: "▶";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.4rem; color: #fff;
  background: rgba(0,0,0,.35);
  opacity: .9; transition: background .2s ease;
}
.video-card:hover .video-thumb::after { background: rgba(240,192,64,.35); }

/* ---------- Courses page ---------- */
.price-tag { display: inline-flex; align-items: baseline; gap: .35rem; color: var(--gold); font-weight: 700; font-size: 1.5rem; }
.price-tag small { color: var(--subtext); font-weight: 400; font-size: .9rem; }

.course-card { display: flex; flex-direction: column; }
.course-card .feature-media { aspect-ratio: 16 / 10; overflow: hidden; }
.course-card .feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.course-card:hover .feature-media img { transform: scale(1.06); }
.course-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.course-body h3 { font-size: 1.35rem; }
.course-body .course-desc { color: var(--subtext); font-size: .96rem; flex: 1; }
.course-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .4rem; }
.badge { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }
.badge-gold { background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-border); }
.badge-muted { background: rgba(255,255,255,.06); color: var(--subtext); border: 1px solid var(--line); }

.curriculum { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.curriculum-block { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.6rem 1.8rem; }
.curriculum-block h3 { font-size: 1.12rem; margin-bottom: 1rem; display: flex; gap: .6rem; align-items: baseline; }
.curriculum-block h3 .tag { color: #0a0a0a; background: var(--gold); width: 1.7rem; height: 1.7rem; flex: none; display: grid; place-items: center; border-radius: 6px; font-size: .9rem; font-weight: 700; }
.curriculum-block ul { display: flex; flex-direction: column; gap: .6rem; }
.curriculum-block li { color: #c4c4c4; font-size: .94rem; padding-left: 1.4rem; position: relative; }
.curriculum-block li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; background: var(--gold); border-radius: 2px; }

.checklist { display: flex; flex-direction: column; gap: 1rem; }
.checklist li { display: flex; gap: .8rem; color: #c9c9c9; }
.checklist li::before { content: "✓"; color: var(--gold); font-weight: 700; flex: none; }
.problist li { display: flex; gap: .7rem; color: #c9c9c9; margin-bottom: .7rem; }
.problist li::before { content: "◆"; color: var(--gold); flex: none; font-size: .8rem; margin-top: .3rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.05); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.split-media img { width: 100%; border-radius: var(--r-card); border: 1px solid var(--line); }
.split h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 1rem; }
.split p { color: #c9c9c9; margin-bottom: 1rem; }

/* ---------- Contents / blog grid ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.blog-card { display: flex; flex-direction: column; }
.blog-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--section-alt); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.blog-date { font-size: .8rem; color: var(--gold); letter-spacing: .05em; }
.blog-body h3 { font-size: 1.2rem; line-height: 1.4; }
.blog-body p { color: var(--subtext); font-size: .95rem; flex: 1; }
.blog-link { color: var(--gold); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .35rem; }
.blog-link::after { content: "→"; transition: transform .2s ease; }
.blog-card:hover .blog-link::after { transform: translateX(4px); }

/* ---------- Privacy / prose ---------- */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { font-size: 1.9rem; margin-bottom: 1.5rem; color: var(--text); }
.prose h3 { font-size: 1.2rem; margin: 2.2rem 0 .8rem; color: var(--gold); }
.prose p { color: #c4c4c4; margin-bottom: 1.1rem; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { display: flex; flex-direction: column; gap: .5rem; margin: 0 0 1.2rem; }
.prose ul li { color: #c4c4c4; padding-left: 1.4rem; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* ---------- Footer ---------- */
.footer { background: #060606; border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); padding-bottom: 3rem; }
.footer-logo { height: 38px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--subtext); max-width: 38ch; margin-bottom: 1.4rem; font-size: .96rem; }
.socials { display: flex; gap: .7rem; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--r-btn); background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--subtext); transition: all .2s ease; }
.socials a:hover { color: #0a0a0a; background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; color: var(--subtext); padding: .3rem 0; font-size: .95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.4rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.footer-bottom p { color: var(--subtext); font-size: .88rem; }

/* ---------- Reveal animation (progressive enhancement) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }

/* ---------- ICT Express: hero price ---------- */
.price-hero { display: flex; align-items: baseline; flex-wrap: wrap; gap: .8rem; margin: 1.4rem 0 2rem; }
.price-hero .now { font-weight: 700; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--gold); line-height: 1; }
.price-hero .was { color: var(--subtext); text-decoration: line-through; font-size: 1.15rem; }
.price-hero .eb { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #0a0a0a; background: var(--gold); padding: .3rem .7rem; border-radius: 999px; }

/* ---------- Pillars (curriculum) ---------- */
.pillar { background: var(--card); border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--r-card); padding: 1.8rem; height: 100%; }
.pillar .pillar-no { color: var(--gold); font-weight: 700; font-size: .8rem; letter-spacing: .14em; }
.pillar h3 { font-size: 1.2rem; margin: .35rem 0 1rem; }
.pillar ul { display: flex; flex-direction: column; gap: .55rem; }
.pillar li { color: #c4c4c4; font-size: .93rem; padding-left: 1.2rem; position: relative; }
.pillar li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; background: var(--gold); border-radius: 2px; }

/* ---------- Market chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.chip { padding: .65rem 1.4rem; border: 1px solid var(--gold-border); border-radius: 999px; background: var(--gold-soft); color: var(--gold); font-weight: 600; }

/* ---------- What's included ---------- */
.incl { display: flex; gap: 1rem; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 1.4rem 1.5rem; height: 100%; }
.incl .ico { flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: var(--gold-soft); color: var(--gold); }
.incl h4 { font-size: 1.04rem; margin-bottom: .25rem; }
.incl p { color: var(--subtext); font-size: .9rem; }

/* ---------- Pricing card ---------- */
.pricing-card { max-width: 580px; margin-inline: auto; text-align: center; background: radial-gradient(90% 130% at 50% 0%, rgba(240,192,64,.14), transparent 60%), var(--card); border: 1px solid var(--gold-border); border-radius: 20px; padding: clamp(2.2rem, 5vw, 3.4rem); box-shadow: var(--shadow); }
.pricing-card .pc-name { font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-size: .9rem; }
.pricing-card .pc-price { display: flex; align-items: baseline; justify-content: center; gap: .8rem; margin: 1rem 0 .3rem; }
.pricing-card .pc-now { font-weight: 700; font-size: clamp(3rem, 8vw, 4rem); color: var(--text); line-height: 1; }
.pricing-card .pc-now small { font-size: 1.1rem; color: var(--subtext); font-weight: 400; }
.pricing-card .pc-was { color: var(--subtext); text-decoration: line-through; font-size: 1.2rem; }
.pricing-card .checklist { text-align: left; max-width: 380px; margin: 1.8rem auto; }
.pricing-card .fineprint { color: var(--subtext); font-size: .82rem; margin-top: 1.2rem; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq-cat { color: var(--gold); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; margin: 2.2rem 0 .9rem; }
.faq-cat:first-child { margin-top: 0; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); margin-bottom: .8rem; overflow: hidden; transition: border-color .2s ease; }
.faq-item[open] { border-color: var(--gold-border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: color .2s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after { content: "+"; flex: none; color: var(--gold); font-size: 1.5rem; font-weight: 300; line-height: 1; transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.3rem; color: #bcbcbc; font-size: .96rem; line-height: 1.7; }
.faq-answer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .grid-3, .video-grid, .blog-grid, .curriculum { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .mission-grid, .split { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.5rem;
    transform: translateY(-130%);
    transition: transform .35s ease;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-menu { transform: translateY(0); }
  .nav-menu > a { padding: .95rem .4rem; border-bottom: 1px solid var(--line); }
  .nav-menu > a.active::after { display: none; }
  .nav-cta { margin: 1rem 0 0; text-align: center; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .video-grid, .blog-grid, .curriculum, .results-grid, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 88vh; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .video-card:hover, .blog-card:hover { transform: none; }
}
