@font-face {
  font-family: 'F37 Bolton';
  src: url('assets/fonts/F37Bolton-Bold.woff2') format('woff2');
  font-weight: 700 800;
  font-display: swap;
}
:root {
  --red: #E2322B;
  --red-dark: #B5221C;
  --red-soft: #FDEDEC;
  --brand-gray: #6B625D;
  --ink: #1B1917;
  --ink-soft: #2B2825;
  --paper: #FAF8F5;
  --card: #FFFFFF;
  --line: #E7E1DA;
  --muted: #6E6A63;
  --thermal-hot: #F0997B;
  --mono: 'Poppins', sans-serif;
  --display: 'F37 Bolton', 'Poppins', sans-serif;
  --body: 'Poppins', sans-serif;
  --serif: 'Times New Roman', Times, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--paper); color: var(--ink); line-height: 1.65; font-size: 16px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- NAV ---------- */
.nav { background: #fff; position: sticky; top: 0; z-index: 200; border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 13.5px; font-weight: 500; padding: 8px 13px; border-radius: 5px; transition: all .18s; }
.nav-links a:hover { color: var(--red); background: var(--red-soft); }
.nav-links a.active { color: var(--red); }
.nav-links a.nav-cta { background: var(--red); color: #fff; margin-left: 10px; }
.nav-links a.nav-cta:hover { background: var(--red-dark); }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 26px; cursor: pointer; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-block; font-family: var(--body); font-weight: 600; font-size: 14.5px; padding: 14px 26px; border-radius: 5px; text-decoration: none; transition: all .18s; border: 1.5px solid transparent; cursor: pointer; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* ---------- HERO (video) ---------- */
.hero-video { position: relative; color: #fff; overflow: hidden; background: var(--ink); }
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-video .hv-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0.55) 0%, rgba(20,18,16,0.35) 45%, rgba(20,18,16,0.82) 100%); }
.hero-video .hv-content { position: relative; min-height: 66vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 220px 0 64px; }
.hero-eyebrow { font-family: var(--mono); font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--thermal-hot); margin-bottom: 18px; }
.hero-video h1 { font-family: var(--display); font-size: clamp(28px, 3.8vw, 44px); font-weight: 400; line-height: 1.06; letter-spacing: -0.5px; max-width: 760px; margin-bottom: 20px; }
.hero-video h1 em { font-style: normal; color: var(--thermal-hot); }
.hero-video p.lede { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- HERO (image, subpages) ---------- */
.hero-page { position: relative; color: #fff; background: var(--ink); overflow: hidden; }
.hero-page .hp-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.hero-page .hp-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0.4), rgba(20,18,16,0.85)); }
.hero-page .hp-content { position: relative; min-height: 52vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 180px 0 56px; }
.hero-page h1 { font-family: var(--display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 400; line-height: 1.08; max-width: 720px; margin-bottom: 18px; }
.hero-page p.lede { font-size: 17.5px; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 30px; }

/* ---------- STAT BAR ---------- */
.statbar { background: var(--ink); border-top: 1px solid #3A3733; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 20px; text-align: center; border-right: 1px solid #3A3733; }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--serif); font-style: italic; font-size: 30px; font-weight: 700; color: var(--thermal-hot); }
.stat .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ---------- SECTIONS ---------- */
section { padding: 84px 0; }
section.tight { padding: 60px 0; }
.sec-eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.sec-title { font-family: var(--display); font-size: clamp(18px, 2.1vw, 26px); font-weight: 400; letter-spacing: -0.4px; line-height: 1.15; margin-bottom: 16px; }
.sec-sub { font-size: 16.5px; color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .sec-sub { margin: 0 auto; }

/* ---------- PRODUCT CARDS (home) ---------- */
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: all .22s; text-decoration: none; color: var(--ink); }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,25,23,0.12); border-color: var(--red); }
.pcard .pimg { height: 210px; overflow: hidden; }
.pcard .pimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pcard:hover .pimg img { transform: scale(1.04); }
.pbody { padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1; }
.pnum { font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: 1.5px; margin-bottom: 10px; }
.pcard h3 { font-family: var(--display); font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.pcard p { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 18px; }
.ptags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.ptag { font-family: var(--mono); font-size: 11px; background: var(--paper); border: 1px solid var(--line); color: var(--brand-gray); padding: 4px 11px; border-radius: 3px; letter-spacing: 0.4px; }
.plink { font-weight: 600; font-size: 14px; color: var(--red); display: flex; align-items: center; gap: 7px; transition: gap .2s; }
.pcard:hover .plink { gap: 12px; }

/* ---------- SPLIT (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 52px; }
.split.rev .split-img { order: 2; }
.split-img img { border-radius: 10px; border: 1px solid var(--line); width: 100%; }
.split-txt h3 { font-family: var(--display); font-size: 21px; font-weight: 700; margin-bottom: 14px; }
.split-txt p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }
.split-txt ul { list-style: none; margin: 18px 0 6px; }
.split-txt li { padding-left: 26px; position: relative; margin-bottom: 10px; font-size: 15px; }
.split-txt li::before { content: "•"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---------- FEATURE GRID ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 48px; }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 28px 26px; }
.feat .f-num { font-family: var(--mono); font-size: 12px; color: var(--red); letter-spacing: 1px; margin-bottom: 12px; }
.feat h4 { font-family: var(--display); font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.feat p { font-size: 13.8px; color: var(--muted); }

/* ---------- MEDIA CARDS (image-led grid) ---------- */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; margin-top: 48px; }
.mcard { background: var(--card); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.mcard img { width: 100%; height: 220px; object-fit: cover; }
.mcard .m-body { padding: 22px 24px 24px; }
.mcard h4 { font-family: var(--display); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.mcard p { font-size: 14px; color: var(--muted); }

/* ---------- DARK BAND ---------- */
.band-dark { background: var(--ink); color: #fff; }
.band-dark .sec-sub { color: rgba(255,255,255,0.65); }
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #3A3733; border: 1px solid #3A3733; border-radius: 10px; overflow: hidden; margin-top: 48px; }
.cred { background: var(--ink-soft); padding: 30px 32px; }
.cred .c-icon { font-family: var(--mono); color: var(--thermal-hot); font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.cred h4 { font-family: var(--display); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.cred p { font-size: 13.5px; color: rgba(255,255,255,0.62); }
.logo-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 44px; }
.plogo { border: 1px solid #3A3733; border-radius: 6px; padding: 22px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-height: 92px; }
.plogo .pl-name { font-family: var(--display); font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.3; }
.plogo .pl-type { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ---------- COURSE / PRICE CARDS ---------- */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; margin-top: 48px; }
.ccard { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 32px 30px; display: flex; flex-direction: column; position: relative; }
.ccard.featured { border: 2px solid var(--red); }
.ccard .badge { position: absolute; top: -12px; left: 28px; background: var(--red); color: #fff; font-family: var(--mono); font-size: 10.5px; letter-spacing: 1px; padding: 4px 12px; border-radius: 3px; text-transform: uppercase; }
.ccard .c-kicker { font-family: var(--mono); font-size: 11.5px; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.ccard h3 { font-family: var(--display); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.ccard p.c-desc { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.ccard ul { list-style: none; margin-bottom: 24px; flex: 1; }
.ccard li { padding-left: 24px; position: relative; margin-bottom: 9px; font-size: 14px; }
.ccard li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.ccard .c-meta { font-family: var(--mono); font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin-bottom: 18px; }

/* ---------- STEPS ---------- */
.steps { counter-reset: step; margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px; counter-increment: step; }
.step::before { content: "0" counter(step); font-family: var(--mono); font-size: 13px; color: var(--red); letter-spacing: 1px; display: block; margin-bottom: 12px; }
.step h4 { font-family: var(--display); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { margin-top: 44px; max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: 8px; background: var(--card); margin-bottom: 12px; overflow: hidden; }
.faq summary { font-family: var(--display); font-weight: 600; font-size: 15.5px; padding: 18px 22px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-final { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-final h2 { font-family: var(--display); font-size: clamp(17px, 1.9vw, 22px); font-weight: 400; line-height: 1.15; max-width: 540px; }
.cta-final p { color: rgba(255,255,255,0.88); margin-top: 10px; font-size: 15.5px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--paper); transform: translateY(-1px); }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ---------- FOOTER ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 52px 0 36px; font-size: 13.5px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-grid h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 9px; }
.foot-grid a { text-decoration: none; color: rgba(255,255,255,0.65); transition: color .15s; }
.foot-grid a:hover { color: var(--thermal-hot); }
.foot-brand img { height: 40px; width: auto; margin-bottom: 16px; background: #fff; padding: 6px 12px; border-radius: 6px; }
.foot-brand p { max-width: 300px; font-size: 13px; }
.foot-bottom { border-top: 1px solid #3A3733; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.35); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .products-grid, .cred-grid, .split, .split.rev { grid-template-columns: 1fr; }
  .split { gap: 30px; }
  .split.rev .split-img { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid #3A3733; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px 24px 20px; display: none; border-bottom: 2px solid var(--red); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; }
  .nav-toggle { display: block; }
  .hero-video .hv-content { min-height: 60vh; padding: 140px 0 48px; }
}

/* ---------- HELIGUY-STYLE POLISH ---------- */
.sec-title, .hero-video h1, .hero-page h1 { font-weight: 400; }
.hero-video h1, .hero-page h1 { letter-spacing: -0.3px; }
.btn { border-radius: 8px; font-weight: 600; }
.pcard, .mcard, .feat, .ccard, .step { border-radius: 14px; }
.sec-eyebrow, .pnum, .ptag, .stat .lbl, .plogo .pl-type, .cred .c-icon, .f-num, .c-kicker, .c-meta { font-weight: 600; }
.pull-quote { font-family: var(--display); font-style: normal; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.5; color: var(--ink); max-width: 820px; }
.band-dark .pull-quote { color: rgba(255,255,255,0.9); }
.pull-quote cite { display: block; font-family: var(--body); font-style: normal; font-size: 13.5px; color: var(--muted); margin-top: 14px; font-weight: 600; }
.plogo { background: #fff; border-color: #fff; }
.plogo img { max-height: 56px; width: auto; max-width: 100%; object-fit: contain; }
.logo-chip { background: #fff; border-radius: 10px; padding: 14px 18px; display: inline-flex; align-items: center; }
.logo-chip img { max-height: 52px; width: auto; }
.mcard .m-link { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 14px; color: var(--red); text-decoration: none; }
.band-dark .mcard .m-link { color: var(--thermal-hot); }
.mcard .m-link:hover { text-decoration: underline; }

/* ---------- LOGOS ON WHITE ---------- */
.logo-row { background: #fff; border-radius: 14px; padding: 22px; }
.logo-row .plogo, .band-dark .logo-row .plogo { border: 1px solid var(--line); background: #fff; }

/* ---------- CONTACT MODAL ---------- */
.vd-modal { position: fixed; inset: 0; background: rgba(20,18,16,0.62); display: none; align-items: center; justify-content: center; z-index: 500; padding: 24px; }
.vd-modal.open { display: flex; }
.vd-box { background: #fff; border-radius: 16px; max-width: 440px; width: 100%; padding: 36px 34px 30px; position: relative; text-align: center; }
.vd-box .vd-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 26px; color: var(--muted); cursor: pointer; line-height: 1; }
.vd-box h3 { font-family: var(--display); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.vd-box p.vd-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.vd-wa { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; font-weight: 600; font-size: 15px; padding: 15px 22px; border-radius: 10px; text-decoration: none; transition: all .18s; }
.vd-wa:hover { background: #1EBE59; transform: translateY(-1px); }
.vd-wa svg { width: 22px; height: 22px; }
.vd-email { margin-top: 18px; font-size: 13.5px; color: var(--muted); }
.vd-email a { color: var(--red); font-weight: 600; text-decoration: none; }
.vd-email a:hover { text-decoration: underline; }
