/* ============================================================
   Eccera IT Academy — AI course landing page
   Brand: Arial type, priority palette, "simple and stylish".
   Three visual directions driven by [data-theme] on <html>.
   ============================================================ */

:root {
  /* Brand priority palette (from guideline) */
  --orange: #E76020;
  --orange-l: #EE892F;
  --gold: #E0BB76;
  --sage: #6E896A;
  --green: #325434;
  --brown: #3b2915;
  --ink: #0F0F0D;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 56px);
  --sec: clamp(44px, 5.5vw, 80px);
  --r: 14px;
  --r-lg: 22px;
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --mark: url("assets/mark-round.png");

  /* Theme tokens (light defaults) */
  --bg: #ffffff;
  --bg-alt: #faf7f2;
  --band: #f4efe7;
  --surface: #ffffff;
  --text: #14130f;
  --muted: #6a6760;
  --border: rgba(15,15,13,.12);
  --border-strong: rgba(15,15,13,.2);
  --accent: var(--orange);
  --accent-2: var(--green);
  --on-accent: #fff;
  --shadow: 0 1px 2px rgba(15,15,13,.04), 0 12px 30px -18px rgba(15,15,13,.28);
  --hero-grad: linear-gradient(180deg, rgba(15,15,13,.04), rgba(15,15,13,0));
  --logo-dark-d: block;
  --logo-light-d: none;
}

/* ---------- DARK & TECHNICAL ---------- */
[data-theme="dark"] {
  --bg: #0d0d0b;
  --bg-alt: #141310;
  --band: #18160f;
  --surface: #1a1813;
  --text: #f4f1ea;
  --muted: #a6a199;
  --border: rgba(255,255,255,.12);
  --border-strong: rgba(255,255,255,.22);
  --accent: #f0832c;
  --accent-2: #7e9a78;
  --on-accent: #14130f;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 24px 50px -24px rgba(0,0,0,.7);
  --hero-grad: radial-gradient(900px 520px at 78% 18%, rgba(231,96,32,.22), transparent 60%);
  --logo-dark-d: none;
  --logo-light-d: block;
}

/* ---------- BOLD & ENERGETIC ---------- */
[data-theme="bold"] {
  --bg: #f7f1e6;
  --bg-alt: #efe6d6;
  --band: #1f3a26;
  --surface: #ffffff;
  --text: #14130f;
  --muted: #6a6760;
  --border: rgba(15,15,13,.14);
  --border-strong: rgba(15,15,13,.28);
  --accent: var(--orange);
  --accent-2: var(--green);
  --on-accent: #fff;
  --shadow: 6px 6px 0 var(--ink);
  --r: 4px;
  --r-lg: 6px;
  --hero-grad: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1,h2,h3,h4 { margin: 0; line-height: 1.04; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 20px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}
[data-theme="bold"] .eyebrow {
  background: var(--accent); color: #fff; padding: 6px 12px; border-radius: 2px;
}
[data-theme="bold"] .eyebrow::before { display: none; }

.h-xl { font-size: clamp(40px, 7vw, 86px); }
.h-lg { font-size: clamp(32px, 4.6vw, 56px); }
.h-md { font-size: clamp(24px, 3vw, 36px); }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 700; font-size: 16px; cursor: pointer;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; transition: transform .12s ease, background .2s ease, box-shadow .2s ease, color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--on-accent); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px var(--accent); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
[data-theme="bold"] .btn { border-radius: 2px; font-weight: 700; }
[data-theme="bold"] .btn--primary { border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); }
[data-theme="bold"] .btn--primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
[data-theme="bold"] .btn--ghost { border: 2px solid var(--ink); }

/* ---------- DNA mark bullet (round Eccera logo) ---------- */
.xmark {
  display: inline-block; width: 1em; height: 1em; flex: none;
  background: var(--mark) center/contain no-repeat;
}

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.hdr__logo { height: 30px; width: auto; }
.hdr__logo--dark { display: var(--logo-dark-d); }
.hdr__logo--light { display: var(--logo-light-d); }
.hdr__nav { display: flex; align-items: center; gap: 28px; }
.hdr__nav a { text-decoration: none; font-size: 15px; font-weight: 600; color: var(--muted); transition: color .15s; }
.hdr__nav a:hover { color: var(--text); }
.hdr__cta { padding: 11px 20px; font-size: 15px; }
@media (max-width: 860px){ .hdr__nav .nav-link { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 8vw, 104px); background: var(--hero-grad); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:14px; font-weight:700; color: var(--muted); margin-bottom: 26px; }
.hero__eyebrow b { color: var(--accent); }
.hero h1 { font-size: clamp(38px, 6vw, 76px); }
.hero h1 .pop { color: var(--accent); }
.hero__sub { margin-top: 24px; max-width: 40ch; font-size: clamp(17px,1.5vw,20px); color: var(--muted); }
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__facts { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero__fact { }
.hero__fact b { display: block; font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.hero__fact span { font-size: 14px; color: var(--muted); }
.hero__fact b .accent { color: var(--accent); }

.hero__media { position: relative; }
.hero__img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.hero__badge {
  position: absolute; left: -18px; bottom: -18px; background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; max-width: 240px;
}
.hero__badge .dot { width: 42px; height: 42px; border-radius: 50%; flex: none; background: var(--ink); display:grid; place-items:center; }
.hero__badge .dot .xmark { width: 24px; height: 24px; color: var(--orange); }
.hero__badge-mark { width: 48px; height: 48px; flex: none; border-radius: 50%; display: block; }
.hero__badge small { font-size: 12px; color: var(--muted); display:block; }
.hero__badge strong { font-size: 14px; }
[data-theme="bold"] .hero__img { border: 3px solid var(--ink); box-shadow: 10px 10px 0 var(--green); }
[data-theme="bold"] .hero h1 { font-weight: 700; }
@media (max-width: 880px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__badge { left: auto; right: 12px; }
}

/* ============================================================
   COVER HERO (dark, brochure-cover style)
   ============================================================ */
.cover-hero { background: var(--ink); color: #f4f1ea; position: relative; overflow: hidden; }
.cover-hero__photo { position: absolute; top: 0; right: 0; bottom: 8px; width: 47%; }
.cover-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.cover-hero__photo::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 150px; background: linear-gradient(90deg, var(--ink), transparent); }
.cover-hero__in { position: relative; z-index: 2; padding-top: 44px; padding-bottom: 52px; }
.cover-hero__text { max-width: 49%; }
.cover-hero__badge { display: inline-block; background: var(--orange); color: #14130f; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 9px 18px; border-radius: 999px; margin-bottom: 20px; }
@media (max-width: 920px){
  .cover-hero { overflow: visible; }
  .cover-hero__photo { position: static; width: auto; bottom: auto; height: clamp(260px, 56vw, 420px); }
  .cover-hero__photo::after { display: none; }
  .cover-hero__text { max-width: none; }
  .cover-hero__in { padding-top: 28px; padding-bottom: 36px; }
}
.cover-hero__kicker { font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: .03em; margin-bottom: 18px; }
.cover-hero h1 { font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -.02em; overflow-wrap: break-word; }
.cover-hero h1 .pop { color: var(--orange); }
.cover-hero__sub { margin-top: 22px; max-width: 46ch; font-size: clamp(16px, 1.4vw, 19px); color: #cfc9bd; line-height: 1.55; }
.cover-hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn--ghost-d { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-d:hover { border-color: var(--orange); color: var(--orange); }
.cover-hero__media { display: none; }
.cover-hero__facts { display: flex; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.16); max-width: 560px; }
.cover-hero__fact { flex: 1; padding: 22px 0; border-right: 1px solid rgba(255,255,255,.16); }
.cover-hero__fact:last-child { border-right: none; }
.cover-hero__fact:not(:first-child) { padding-left: 24px; }
.cover-hero__fact b { display: block; font-size: clamp(22px, 2.4vw, 32px); color: #fff; letter-spacing: -.01em; }
.cover-hero__fact:first-child b { color: var(--orange); }
.cover-hero__fact span { font-size: 13px; color: #a6a199; }
.cover-hero__dna { display: flex; height: 8px; }
.cover-hero__dna span { flex: 1; }

/* ============================================================
   COURSE DESCRIPTION
   ============================================================ */
.cdesc { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 860px){ .cdesc { grid-template-columns: 1fr; } }
.cdesc__body p { font-size: clamp(16px, 1.4vw, 18.5px); margin-bottom: 16px; }
.cdesc__body p.lead { color: var(--muted); }
.cdesc__owns { display: flex; gap: 14px; align-items: center; margin-top: 22px; background: #E76020; color: #f2eee3; border-radius: var(--r); padding: 18px 20px; }
[data-theme="bold"] .cdesc__owns { border: 2px solid var(--ink); }
.cdesc__ic { flex: none; width: 40px; height: 40px; display: grid; place-items: center; }
.cdesc__ic .xmark { width: 40px; height: 40px; }
.cdesc__owns p { font-size: 15.5px; font-weight: 600; }
.cdesc__plat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 28px; box-shadow: var(--shadow); }
[data-theme="bold"] .cdesc__plat { border: 2px solid var(--ink); }
.cdesc__plat h3 { font-size: 18px; margin-bottom: 12px; }
.cdesc__plat-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); font-size: 15.5px; font-weight: 700; }
.cdesc__plat-row .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.cdesc__plat-row em { margin-left: auto; font-style: normal; font-size: 11.5px; color: var(--accent); font-weight: 700; }
.cdesc__note { margin-top: 16px; font-size: 13px; color: var(--muted); }
.cdesc__note a { color: var(--accent); font-weight: 700; }

/* ---------- Image banners & audience grid ---------- */
.sec-banner { margin-top: clamp(36px, 5vw, 56px); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.sec-banner img { width: 100%; height: clamp(240px, 32vw, 420px); object-fit: cover; display: block; }
[data-theme="bold"] .sec-banner { border: 2px solid var(--ink); }
.aud-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
@media (max-width: 760px){ .aud-grid { grid-template-columns: 1fr; } }
.aud-grid__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
[data-theme="bold"] .aud-grid__img { border: 2px solid var(--ink); }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--band); color: var(--text); }
[data-theme="dark"] .problem { color: var(--text); }
[data-theme="bold"] .problem { background: var(--green); color: #f7f1e6; }
[data-theme="bold"] .problem .eyebrow { background: var(--gold); color: var(--ink); }
[data-theme="bold"] .problem .muted, [data-theme="bold"] .problem .lead { color: #e7e0d2; }
.problem__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.problem__stat { font-size: clamp(96px, 16vw, 180px); font-weight: 700; line-height: .82; letter-spacing: -.04em; color: var(--accent); }
.problem__statlabel { margin-top: 16px; font-size: 17px; max-width: 26ch; color: var(--muted); }
[data-theme="bold"] .problem__statlabel { color: #e7e0d2; }
.problem__body p { margin-top: 18px; font-size: clamp(17px,1.5vw,20px); }
.problem__body p:first-child { margin-top: 0; }
.contrast { margin-top: 36px; display: grid; gap: 12px; }
.contrast__row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px solid var(--border); }
[data-theme="bold"] .contrast__row { border-color: rgba(255,255,255,.25); }
.contrast__bad { color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1px; font-size: 15px; }
[data-theme="bold"] .contrast__bad { color: #b8c5b3; }
.contrast__good { font-weight: 600; font-size: 16px; }
.contrast__arrow { color: var(--accent); font-weight: 700; }
@media (max-width: 760px){
  .problem__grid { grid-template-columns: 1fr; }
  .contrast__row { grid-template-columns: 1fr; gap: 4px; }
  .contrast__arrow { display: none; }
}

/* ============================================================
   OUTCOMES
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head .lead { margin-top: 18px; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px){ .cards3 { grid-template-columns: 1fr; } }
.ocard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.ocard__num { font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: .1em; }
.ocard h3 { font-size: 22px; margin: 14px 0 12px; }
.ocard p { color: var(--muted); font-size: 15.5px; }
[data-theme="bold"] .ocard { border: 2px solid var(--ink); box-shadow: var(--shadow); }
[data-theme="bold"] .ocard:nth-child(2) { background: var(--gold); }

.skills { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
@media (max-width: 760px){ .skills { grid-template-columns: 1fr; } }
.skills__t { grid-column: 1 / -1; font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.skill { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 16px; }
.skill .xmark { color: var(--accent); width: 18px; height: 18px; margin-top: 4px; }

/* ============================================================
   CURRICULUM
   ============================================================ */
.curr__phases { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.phasebtn {
  font: inherit; font-weight: 600; font-size: 14px; cursor: pointer;
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: transparent; color: var(--muted); transition: all .15s;
}
.phasebtn b { color: var(--text); }
.phasebtn:hover { border-color: var(--accent); }
.phasebtn[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.phasebtn[aria-pressed="true"] b { color: var(--on-accent); }
[data-theme="bold"] .phasebtn { border-radius: 2px; border: 2px solid var(--ink); }

.weeks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 820px){ .weeks { grid-template-columns: 1fr; } }
.week {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 28px; transition: opacity .25s, transform .25s, box-shadow .2s, border-color .2s;
}
.week:hover { box-shadow: var(--shadow); border-color: var(--border-strong); }
.week.dim { opacity: .32; }
.week__top { display: flex; align-items: baseline; gap: 14px; }
.week__n { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.week__phase { margin-left: auto; font-size: 12px; color: var(--muted); padding: 4px 10px; border: 1px solid var(--border); border-radius: 999px; }
.week h3 { font-size: 21px; margin: 12px 0 10px; }
.week__goal { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.week__pts { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.week__pts li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); }
.week__pts li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 9px; }
[data-theme="bold"] .week { border: 2px solid var(--ink); border-radius: 4px; }
[data-theme="bold"] .week:hover { box-shadow: 6px 6px 0 var(--orange); }

/* ============================================================
   PRACTICAL + AUDIENCE
   ============================================================ */
.prac__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5vw,72px); }
@media (max-width: 860px){ .prac__grid { grid-template-columns: 1fr; } }
.prac__list { display: grid; gap: 2px; }
.prac__row { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 18px 0; border-top: 1px solid var(--border); }
.prac__row:last-child { border-bottom: 1px solid var(--border); }
.prac__row dt { font-weight: 700; font-size: 15px; }
.prac__row dd { margin: 0; color: var(--muted); font-size: 15.5px; }
.prac__note { margin-top: 22px; font-size: 14px; color: var(--muted); padding: 16px 18px; background: var(--band); border-radius: var(--r); border-left: 3px solid var(--accent); }
[data-theme="bold"] .prac__note { border: 2px solid var(--ink); border-left: 6px solid var(--orange); }

.platforms { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); }
[data-theme="bold"] .platforms { border: 2px solid var(--ink); }
.platforms h3 { font-size: 19px; }
.platforms__note { color: var(--muted); font-size: 14px; margin: 10px 0 20px; }
.platform { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--border); }
.platform .xmark { width: 16px; height: 16px; color: var(--accent); }
.platform b { font-size: 15.5px; }
.platform span { margin-left: auto; font-size: 12px; color: var(--accent); font-weight: 600; }

.roles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.role { padding: 10px 18px; border: none; border-radius: 999px; font-size: 14.5px; font-weight: 700; color: #fff; }
.roles .role:nth-child(6n+1) { background: var(--orange); }
.roles .role:nth-child(6n+2) { background: var(--green); }
.roles .role:nth-child(6n+3) { background: var(--gold); color: var(--ink); }
.roles .role:nth-child(6n+4) { background: var(--sage); }
.roles .role:nth-child(6n+5) { background: var(--brown); }
.roles .role:nth-child(6n+6) { background: var(--orange-l); color: var(--ink); }
[data-theme="bold"] .role { border-radius: 2px; border: 2px solid var(--ink); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { }
.ptiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch; }
@media (max-width: 820px){ .ptiers { grid-template-columns: 1fr; } }
.ptier {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow); position: relative;
}
.ptier--feat { border-color: var(--accent); border-width: 2px; }
.ptier__tag { position: absolute; top: -12px; left: 28px; background: var(--accent); color: var(--on-accent); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; }
.ptier__name { font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.ptier__price { font-size: clamp(40px, 5vw, 56px); font-weight: 700; letter-spacing: -.03em; margin: 14px 0 2px; }
.ptier__price .kr { font-size: 20px; font-weight: 600; color: var(--muted); margin-left: 6px; }
.ptier__per { font-size: 14px; color: var(--accent); font-weight: 600; }
.ptier__sub { margin-top: 16px; color: var(--muted); font-size: 14.5px; flex: 1; }
.ptier .btn { margin-top: 24px; width: 100%; }
[data-theme="bold"] .ptier { border: 2px solid var(--ink); }
[data-theme="bold"] .ptier--feat { box-shadow: 8px 8px 0 var(--orange); }

.pextras { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
@media (max-width: 760px){ .pextras { grid-template-columns: 1fr; } }
.pextra { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; background: var(--band); border-radius: var(--r); }
[data-theme="bold"] .pextra { border: 2px solid var(--ink); background: var(--surface); }
.pextra .xmark { width: 24px; height: 24px; color: var(--accent); margin-top: 2px; }
.pextra b { display: block; font-size: 16px; margin-bottom: 4px; }
.pextra p { font-size: 14px; color: var(--muted); }
.pricing__note { margin-top: 24px; text-align: center; font-size: 14px; color: var(--muted); }

/* ============================================================
   WHY US
   ============================================================ */
.why { background: var(--band); }
[data-theme="dark"] .why { background: var(--bg-alt); }
[data-theme="bold"] .why { background: var(--ink); color: #f7f1e6; }
[data-theme="bold"] .why .eyebrow { background: var(--orange); }
[data-theme="bold"] .why .muted { color: #b8b3aa; }
.why__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 12px; }
@media (max-width: 760px){ .why__cards { grid-template-columns: 1fr; } }
.whycard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow); }
[data-theme="bold"] .whycard { border: 2px solid var(--orange); background: #1a1813; color: #f7f1e6; }
.whycard h3 { font-size: 23px; margin-bottom: 12px; display:flex; align-items:center; gap: 12px; }
.whycard h3 .xmark { width: 22px; height: 22px; color: var(--accent); }
.whycard p { color: var(--muted); }
[data-theme="bold"] .whycard p { color: #cfc9bd; }
.why__tag { margin-top: 40px; font-size: clamp(24px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.02em; max-width: 22ch; }
.why__tag .pop { color: var(--accent); }

/* ---------- Instructors ---------- */
.instr-sec { background: var(--bg); }
[data-theme="dark"] .instr-sec { background: var(--bg-alt); }
.instr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px){ .instr-grid { grid-template-columns: 1fr; } }
.instr-card { display: grid; grid-template-columns: 200px 1fr; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 520px){ .instr-card { grid-template-columns: 1fr; } }
[data-theme="bold"] .instr-card { border: 2px solid var(--ink); }
.instr-card__img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: center 22%; display: block; }
.instr-card__b { padding: 26px 26px; }
.instr-card__b h3 { font-size: 22px; }
.instr-card__role { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin: 6px 0 12px; }
.instr-card__b p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   REGISTRATION FORM
   ============================================================ */
.reg { background: var(--bg); }
[data-theme="dark"] .reg { background: var(--bg-alt); }
.enroll { text-align: center; max-width: 680px; margin: 0 auto; }
.enroll .eyebrow { justify-content: center; }
.enroll .lead { margin: 18px auto 0; max-width: 48ch; }
.enroll__cta { margin-top: 32px; }
.enroll__cta .btn { font-size: 17px; padding: 17px 34px; }
.enroll__contact { margin-top: 22px; font-size: 15px; color: var(--muted); }
.enroll__contact a { color: var(--accent); font-weight: 700; text-decoration: none; }
.enroll__contact a:hover { text-decoration: underline; }
.reg__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
@media (max-width: 920px){ .reg__grid { grid-template-columns: 1fr; } }
.reg__aside h2 { font-size: clamp(30px,4vw,46px); }
.reg__aside .lead { margin-top: 18px; }
.reg__summary { margin-top: 32px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow); }
[data-theme="bold"] .reg__summary { border: 2px solid var(--ink); }
.reg__sumrow { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-top: 1px solid var(--border); font-size: 15px; }
.reg__sumrow:first-of-type { border-top: none; }
.reg__sumrow .v { font-weight: 700; }
.reg__sumrow.total { border-top: 2px solid var(--text); margin-top: 6px; padding-top: 14px; }
.reg__sumrow.total .v { font-size: 24px; color: var(--accent); }
.reg__sumrow .strike { text-decoration: line-through; color: var(--muted); font-weight: 400; margin-right: 8px; }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow); }
[data-theme="bold"] .form { border: 2px solid var(--ink); box-shadow: 8px 8px 0 var(--green); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.field .req { color: var(--accent); }
.input, .select {
  width: 100%; font: inherit; font-size: 16px; padding: 13px 15px; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border-strong); border-radius: 10px; transition: border-color .15s, box-shadow .15s;
}
.input:focus, .select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
[data-theme="bold"] .input, [data-theme="bold"] .select { border-radius: 2px; border: 2px solid var(--ink); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px){ .row2 { grid-template-columns: 1fr; } }

.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seg {
  cursor: pointer; border: 1.5px solid var(--border-strong); border-radius: 12px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 2px; transition: all .15s; position: relative;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg b { font-size: 15px; }
.seg small { font-size: 12.5px; color: var(--muted); }
.seg:hover { border-color: var(--accent); }
.seg.on { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--bg)); }
.seg.on b { color: var(--accent); }
[data-theme="bold"] .seg { border-radius: 2px; border: 2px solid var(--ink); }

.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--border-strong); border-radius: 10px; overflow: hidden; }
[data-theme="bold"] .stepper { border-radius: 2px; border: 2px solid var(--ink); }
.stepper button { font: inherit; font-size: 20px; width: 46px; height: 46px; background: var(--bg); border: none; cursor: pointer; color: var(--text); }
.stepper button:hover { background: var(--band); color: var(--accent); }
.stepper span { min-width: 56px; text-align: center; font-weight: 700; font-size: 17px; }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); margin-top: 4px; }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.form .btn { width: 100%; margin-top: 6px; }
.hint { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

.reg__done { text-align: center; padding: 30px 10px; }
.reg__done .mk { width: 64px; height: 64px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; margin: 0 auto 22px; }
.reg__done .mk .xmark { width: 36px; height: 36px; color: var(--orange); }
.reg__done h3 { font-size: 26px; margin-bottom: 10px; }
.reg__done p { color: var(--muted); max-width: 36ch; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.ftr { background: var(--ink); color: #e9e5dd; padding-block: 56px 36px; }
.ftr__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.ftr__logo { height: 30px; }
.ftr__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.ftr__col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #8d887e; margin-bottom: 14px; }
.ftr__col a, .ftr__col p { display: block; color: #cfc9bd; text-decoration: none; font-size: 14.5px; margin-bottom: 8px; }
.ftr__col a:hover { color: var(--orange); }
.ftr__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #8d887e; }
.ftr__dna { display: flex; height: 8px; border-radius: 999px; overflow: hidden; max-width: 260px; margin-top: 20px; }
.ftr__dna span { flex: 1; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }
