  :root {
    --bg: #0A0B0D;
    --bg-elevated: #111319;
    --bg-card: #161922;
    --bg-card-hover: #1C2030;
    --ink: #F5F7FA;
    --ink-muted: #93A1B0;
    --ink-dim: #5A6573;
    --copper: #5314FF;
    --copper-bright: #7A4DFF;
    --copper-deep: #3A0FB0;
    --copper-glow: rgba(83, 20, 255, 0.16);
    --copper-soft: rgba(83, 20, 255, 0.08);
    --line: #1E2230;
    --line-bright: #2C3340;
    --green: #4ADE80;
    --red: #F87171;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Radio Canada', sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Subtle grid pattern overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(83, 20, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(83, 20, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  /* === NAV === */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 32px;
    background: rgba(10, 11, 13, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-logo {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--ink);
  }
  .nav-logo span { color: inherit; }
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .nav-links > a {
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links > a:hover { color: var(--ink); }
  .nav-links > a.btn-cta { color: #fff; }
  .nav-links > a.btn-cta:hover { color: #fff; }
  .btn-cta {
    padding: 11px 22px;
    background: var(--copper);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-cta:hover {
    background: var(--copper-bright);
    transform: translateY(-1px);
  }
  .btn-primary {
    display: inline-block;
    padding: 16px 28px;
    background: var(--copper);
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-primary:hover {
    background: var(--copper-bright);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(83, 20, 255, 0.3);
  }
  .btn-secondary {
    display: inline-block;
    padding: 16px 28px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line-bright);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-secondary:hover {
    border-color: var(--copper);
    color: var(--copper);
  }

  /* === HERO === */
  .hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -300px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--copper-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--copper-soft);
    border: 1px solid rgba(83, 20, 255, 0.25);
    border-radius: 100px;
    font-size: 13px;
    color: var(--copper-bright);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
  }
  .hero h1 {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: clamp(56px, 8vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
  }
  .hero h1 .accent {
    font-style: italic;
    color: var(--copper);
    font-weight: 400;
  }
  .hero-positioning {
    margin-bottom: 32px;
  }
  .hero-positioning .line {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .hero-positioning .line em { color: var(--copper); font-style: italic; }
  .hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-muted);
    margin-bottom: 40px;
    max-width: 540px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  /* Hero Visual: Career Trajectory Chart */
  .hero-visual {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #0E1422 0%, #080B12 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
  }
  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 70% 30%, rgba(83, 20, 255, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(83, 20, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-visual-label {
    position: relative;
    z-index: 2;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .hero-visual-title {
    position: relative;
    z-index: 2;
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
  }
  .hero-visual-title em { color: var(--copper); font-style: italic; }
  .career-ladder {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 16px;
    border-left: 1px solid var(--line-bright);
  }
  .ladder-step {
    position: relative;
    padding-left: 28px;
  }
  .ladder-step::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--copper);
    box-shadow: 0 0 0 4px rgba(83, 20, 255, 0.15);
  }
  .ladder-role {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 2px;
  }
  .ladder-salary {
    font-family: 'Radio Canada', sans-serif;
    font-size: 13px;
    color: var(--copper-bright);
    font-weight: 500;
  }
  .ladder-detail {
    font-size: 11px;
    color: var(--ink-dim);
    margin-top: 2px;
  }
  .hero-visual-footer {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* === STATS === */
  .stats {
    padding: 60px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-elevated);
    position: relative;
    z-index: 2;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: none; }
  .stat-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 12px;
    color: var(--copper);
  }
  .stat-number {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 1;
    color: var(--copper);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 13px;
    color: var(--ink-muted);
    font-weight: 500;
  }

  /* === SECTION DEFAULTS === */
  .section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
  }
  .section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .section-title {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .section-title .accent { color: var(--copper); font-style: italic; }
  .section-sub {
    font-size: 18px;
    color: var(--ink-muted);
    line-height: 1.6;
  }

  /* === OFFER / WHAT YOU GET === */
  .offer {
    padding: 110px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .offer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .offer-title {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 16px 0 32px;
  }
  .offer-title .accent { color: var(--copper); font-style: italic; }
  .offer-list { list-style: none; }
  .offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 17px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .offer-list li:last-child { border-bottom: none; }
  .offer-list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--copper-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A4DFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
    border: 1px solid rgba(83, 20, 255, 0.3);
  }
  .offer-price {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--line-bright);
    border-radius: 16px;
    padding: 40px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .offer-price::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -40%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, var(--copper-glow) 0%, transparent 55%);
    pointer-events: none;
  }
  .offer-price > * { position: relative; z-index: 2; }
  .offer-price-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .offer-price-amount {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .offer-price-amount span {
    font-family: 'Radio Canada', sans-serif;
    font-size: 18px;
    color: var(--ink-muted);
    font-weight: 400;
  }
  .offer-price-sub {
    font-size: 14px;
    color: var(--ink-muted);
    margin-bottom: 28px;
  }
  .offer-price-cta { width: 100%; margin-bottom: 20px; }
  .offer-price-note {
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.5;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  /* === FEATURED QUOTE === */
  .featured-quote {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .featured-quote-mark {
    font-family: 'Radio Canada Big', sans-serif;
    font-style: italic;
    font-size: 80px;
    color: var(--copper);
    line-height: 0.5;
    margin-bottom: 24px;
  }
  .featured-quote-text {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    max-width: 1000px;
    margin: 0 auto 32px;
  }
  .featured-quote-text em { color: var(--copper); font-style: italic; }
  .featured-quote-author {
    font-size: 14px;
    color: var(--ink-muted);
    font-weight: 500;
  }
  .featured-quote-author strong {
    color: var(--ink);
    font-weight: 600;
  }

  /* === TWO AUDIENCES === */
  .programs {
    padding: 120px 0;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .program-card {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 48px 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .program-card:hover {
    border-color: var(--copper);
    background: var(--bg-card);
    transform: translateY(-4px);
  }
  .program-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--copper-soft);
    border: 1px solid rgba(83, 20, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    margin-bottom: 28px;
  }
  .program-card-icon svg { width: 28px; height: 28px; }
  .program-card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--copper-soft);
    color: var(--copper-bright);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
  }
  .program-card h3 {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }
  .program-card h3 em { color: var(--copper); font-style: italic; }
  .program-card p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .program-card-list {
    list-style: none;
    margin-bottom: 32px;
  }
  .program-card-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--line);
  }
  .program-card-list li:last-child { border-bottom: none; }
  .program-card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
    margin-top: 7px;
    flex-shrink: 0;
  }
  .program-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--copper);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
  .program-card-arrow svg { width: 14px; height: 14px; }

  /* === IF YOU'RE / BUT YOU WANT TO === */
  .pain-desire {
    padding: 120px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-elevated);
    position: relative;
    z-index: 2;
  }
  .pain-desire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pd-column {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 48px 40px;
    transition: border-color 0.3s;
  }
  .pd-column:hover { border-color: var(--copper); }
  .pd-eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .pd-title {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
  }
  .pd-title em { color: var(--copper); font-style: italic; }
  .pd-list {
    list-style: none;
  }
  .pd-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
  }
  .pd-list li:last-child { border-bottom: none; }
  .pd-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 13px;
    font-weight: 700;
  }
  .pd-icon.x {
    background: rgba(248, 113, 113, 0.12);
    color: var(--red);
  }
  .pd-icon.check {
    background: rgba(74, 222, 128, 0.12);
    color: var(--green);
  }

  /* === ABOUT BEN === */
  .about {
    padding: 140px 0;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .about-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #0E1422 0%, #070A12 100%);
    border-radius: 16px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(83, 20, 255, 0.2) 0%, transparent 60%);
  }
  .about-image-fallback {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .about-image-fallback .name {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 56px;
    font-style: italic;
    color: rgba(250, 250, 250, 0.4);
    line-height: 1;
    margin-bottom: 12px;
  }
  .about-image-fallback .label {
    font-size: 11px;
    color: var(--ink-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .about-content .eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .about-content h2 {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
  }
  .about-content h2 em { color: var(--copper); font-style: italic; }
  .about-content > p {
    font-size: 17px;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .about-quote {
    margin: 28px 0 4px;
    padding: 4px 0 4px 24px;
    border-left: 2px solid var(--copper);
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 21px;
    line-height: 1.4;
    color: var(--ink);
  }
  .about-quote em { color: var(--copper); font-style: italic; }
  .about-features {
    margin-top: 36px;
    display: grid;
    gap: 20px;
  }
  .about-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid var(--line);
  }
  .about-feature:last-child { border-bottom: 1px solid var(--line); }
  .about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--copper-soft);
    border: 1px solid rgba(83, 20, 255, 0.25);
    color: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-feature-icon svg { width: 22px; height: 22px; }
  .about-feature h5 {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .about-feature p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.55;
  }

  /* === HOW IT WORKS (hybrid model) === */
  .how-it-works {
    padding: 140px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-elevated);
    position: relative;
    z-index: 2;
  }
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
  }
  .how-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 16.67%;
    right: 16.67%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    z-index: 0;
  }
  .how-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
  }
  .how-card:hover {
    border-color: var(--copper);
    transform: translateY(-4px);
  }
  .how-card-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--copper);
    color: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
  }
  .how-card h4 {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .how-card h4 em { color: var(--copper); font-style: italic; }
  .how-card p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .how-card-detail {
    font-size: 12px;
    color: var(--copper);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  /* === WHAT YOU'LL LEARN === */
  .learn {
    padding: 140px 0;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .program-subhead {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 72px 0 8px;
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 24px;
    color: var(--ink);
  }
  .program-subhead span { white-space: nowrap; }
  .program-subhead::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
  }
  .learn-card {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s;
  }
  .learn-card:hover {
    border-color: var(--copper);
    transform: translateY(-4px);
  }
  .learn-card-graphic {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  .learn-card h4 {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .learn-card h4 em { color: var(--copper); font-style: italic; }
  .learn-card p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.6;
  }
  .program-extras {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-elevated);
    overflow: hidden;
  }
  .program-extras .extra {
    padding: 32px 28px;
    border-right: 1px solid var(--line);
  }
  .program-extras .extra:last-child { border-right: none; }
  .program-extras .extra h5 {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .program-extras .extra p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.55;
  }

  /* === CAREER BET (replaces Beyond the Comp Cheque) === */
  .career-bet {
    padding: 140px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-elevated);
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .career-bet::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--copper-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .career-bet-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  .career-bet-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .career-bet-headline {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .career-bet-headline em { color: var(--copper); font-style: italic; }
  .career-bet-sub {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink-muted);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
  }
  .career-bet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  .bet-item {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 36px 28px;
    transition: all 0.3s;
  }
  .bet-item:hover {
    border-color: var(--copper);
    transform: translateY(-2px);
  }
  .bet-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--copper-soft);
    border: 1px solid rgba(83, 20, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    margin-bottom: 20px;
  }
  .bet-item-icon svg { width: 24px; height: 24px; }
  .bet-item h5 {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .bet-item p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
  }

  /* === WHAT'S INSIDE === */
  .inside {
    padding: 140px 0;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .inside-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 60px;
  }
  .inside-card {
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .inside-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, var(--copper-glow) 0%, transparent 60%);
    pointer-events: none;
  }
  .inside-card:hover {
    border-color: var(--copper);
  }
  .inside-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--copper-soft);
    border: 1px solid rgba(83, 20, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
  }
  .inside-card-icon svg { width: 32px; height: 32px; }
  .inside-card-tag {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 6px 14px;
    background: var(--copper-soft);
    color: var(--copper-bright);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  .inside-card h3 {
    position: relative;
    z-index: 2;
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.15;
  }
  .inside-card h3 em { color: var(--copper); font-style: italic; }
  .inside-card p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .inside-features {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
  }
  .inside-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink);
  }
  .inside-feature::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--copper);
    flex-shrink: 0;
  }

  /* === OUTCOMES / TESTIMONIALS === */
  .testimonials {
    padding: 140px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-elevated);
    position: relative;
    z-index: 2;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .testimonial {
    padding: 36px 32px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
  }
  .testimonial:hover {
    border-color: var(--copper);
    transform: translateY(-2px);
  }
  .testimonial-mark {
    font-family: 'Radio Canada Big', sans-serif;
    font-style: italic;
    font-size: 48px;
    color: var(--copper);
    line-height: 0.5;
    margin-bottom: 20px;
    height: 24px;
  }
  .testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 24px;
    flex: 1;
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper-deep), var(--copper));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-weight: 700;
    font-size: 14px;
    font-family: 'Radio Canada Big', sans-serif;
  }
  .testimonial-author-name {
    font-size: 14px;
    font-weight: 600;
  }
  .testimonial-author-role {
    font-size: 12px;
    color: var(--ink-muted);
    margin-top: 2px;
  }

  /* === FAQ === */
  .faq {
    padding: 140px 0;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .faq-list {
    max-width: 900px;
    margin: 60px auto 0;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    transition: color 0.2s;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .faq-question:hover { color: var(--copper); }
  .faq-question-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 24px;
    transition: all 0.3s;
    color: var(--copper);
  }
  .faq-question-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-question-toggle {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--bg);
  }
  .faq-item.open .faq-question-toggle svg { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 28px;
  }
  .faq-answer p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.7;
    padding-right: 60px;
  }

  /* === CTA === */
  .cta-section {
    padding: 160px 0;
    border-top: 1px solid var(--line);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--copper-glow) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-section-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
  }
  .cta-section h2 {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 400;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
  }
  .cta-section h2 em { color: var(--copper); font-style: italic; }
  .cta-section p {
    font-size: 18px;
    color: var(--ink-muted);
    margin-bottom: 40px;
    line-height: 1.6;
  }

  /* === FOOTER === */
  footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--line);
    background: var(--bg-elevated);
    position: relative;
    z-index: 2;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .logo {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 5px;
    margin-bottom: 8px;
  }
  .footer-brand .logo span { color: var(--copper); }
  .footer-byline {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--ink-muted);
    margin-bottom: 16px;
  }
  .footer-byline strong { color: var(--ink); font-weight: 600; }
  .footer-brand p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    max-width: 320px;
  }
  .footer-col h5 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--ink); }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-dim);
  }

  /* === REVEAL (progressive enhancement) === */
  .reveal { opacity: 1; transform: none; }
  .js-animations .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .js-animations .reveal.visible { opacity: 1; transform: translateY(0); }

  /* === RESPONSIVE === */
  /* === SCROLL PROGRESS BAR === */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    z-index: 200;
    background: linear-gradient(90deg, var(--copper-deep), var(--copper), var(--copper-bright));
    box-shadow: 0 0 12px var(--copper-glow);
    transition: width 0.1s linear;
  }

  /* === MOBILE NAV TOGGLE === */
  .nav-logo { text-decoration: none; }
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line-bright);
    border-radius: 8px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* === ACTIVE NAV LINK (scrollspy) === */
  .nav-links > a:not(.btn-cta).active { color: var(--copper); }

  /* === ANIMATED HERO LADDER LINE === */
  .career-ladder { border-left: none; }
  .career-ladder::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--line-bright);
  }
  .career-ladder::after {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 1px;
    height: var(--ladder-fill, 0%);
    background: linear-gradient(180deg, var(--copper-bright), var(--copper));
    box-shadow: 0 0 8px var(--copper-glow);
    transition: height 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed;
      top: 73px;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 12px 20px 24px;
      background: rgba(10, 11, 13, 0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--line);
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease, transform 0.28s ease;
    }
    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links > a {
      padding: 16px 4px;
      font-size: 16px;
      border-bottom: 1px solid var(--line);
    }
    .nav-links > a.btn-cta {
      margin-top: 16px;
      text-align: center;
      border-bottom: none;
      padding: 14px;
    }
    .container { padding: 0 20px; }
    .hero { padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 380px; margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 24px; }
    .stat:nth-child(odd) { border-right: 1px solid var(--line); }
    .stat:nth-last-child(-n+2) { border-bottom: none; }
    .stat-number { font-size: 36px; }
    .section, .how-it-works, .career-bet, .inside, .testimonials, .faq, .pain-desire, .programs, .learn, .about { padding: 80px 0; }
    .featured-quote { padding: 60px 0; }
    .offer { padding: 70px 0; }
    .offer-grid { grid-template-columns: 1fr; gap: 36px; }
    .programs-grid { grid-template-columns: 1fr; }
    .pain-desire-grid { grid-template-columns: 1fr; gap: 24px; }
    .pd-column { padding: 36px 28px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .how-grid { grid-template-columns: 1fr; }
    .how-grid::before { display: none; }
    .learn-grid { grid-template-columns: 1fr; }
    .program-extras { grid-template-columns: 1fr; }
    .program-extras .extra { border-right: none; border-bottom: 1px solid var(--line); }
    .program-extras .extra:last-child { border-bottom: none; }
    .career-bet-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .bet-item { padding: 28px 20px; }
    .inside-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-question { font-size: 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
  }

  /* === TFSE-FEEL OVERRIDES: bold grotesque headlines + rounded/pill shapes === */
  .hero h1, .section-title, .career-bet-headline, .offer-title,
  .cta-section h2, .about-content h2, .hero-visual-title,
  .stat-number, .offer-price-amount {
    font-weight: 700;
    letter-spacing: -0.03em;
  }
  .program-card h3, .inside-card h3, .pd-title, .how-card h4,
  .learn-card h4, .program-subhead, .faq-question, .about-feature h5,
  .about-quote, .testimonial-quote, .featured-quote-text {
    font-weight: 600;
    letter-spacing: -0.015em;
  }
  .hero h1 .accent, .section-title .accent, .hero-positioning .line em {
    font-weight: 700;
  }
  /* Pill buttons (TFSE style) */
  .btn-primary, .btn-secondary, .btn-cta, .offer-price-cta {
    border-radius: 999px;
  }
  /* Rounder panels */
  .program-card, .learn-card, .inside-card, .how-card, .testimonial,
  .offer-price, .program-extras, .hero-visual, .about-image,
  .pd-column, .bet-item {
    border-radius: 22px;
  }

  /* ===================== APPLY MODAL ===================== */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    background: rgba(6, 7, 10, 0.72);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal {
    width: 100%; max-width: 480px;
    background: var(--bg-elevated);
    border: 1px solid var(--line-bright);
    border-radius: 24px;
    padding: 36px 34px;
    position: relative;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(83, 20, 255,0.15);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
    max-height: 90vh; overflow-y: auto;
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--line);
    color: var(--ink-muted); font-size: 22px; line-height: 1; cursor: pointer;
    transition: all 0.2s;
  }
  .modal-close:hover { color: var(--ink); border-color: var(--copper); }
  .modal-eyebrow {
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--copper-bright); font-weight: 700; margin-bottom: 10px;
  }
  .modal h3 {
    font-family: 'Radio Canada Big', sans-serif; font-weight: 700;
    font-size: 30px; letter-spacing: -0.02em; margin-bottom: 8px;
  }
  .modal h3 em { font-style: normal; color: var(--copper); }
  .modal-sub { font-size: 14px; color: var(--ink-muted); line-height: 1.5; margin-bottom: 24px; }
  #applyForm { display: grid; gap: 16px; }
  #applyForm label {
    display: grid; gap: 7px;
    font-size: 13px; font-weight: 600; color: var(--ink);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  #applyForm input, #applyForm select, #applyForm textarea {
    width: 100%; padding: 12px 14px;
    background: var(--bg); color: var(--ink);
    border: 1px solid var(--line-bright); border-radius: 10px;
    font-family: 'Radio Canada', sans-serif; font-size: 15px; font-weight: 400;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  #applyForm textarea { resize: vertical; }
  #applyForm input:focus, #applyForm select:focus, #applyForm textarea:focus {
    outline: none; border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-soft);
  }
  .modal-submit { width: 100%; margin-top: 4px; cursor: pointer; border: none; font-family: inherit; }
  .modal-submit:disabled { opacity: 0.7; cursor: default; }
  .form-status { font-size: 13px; text-align: center; min-height: 18px; }
  .form-status.ok { color: var(--green); }
  .form-status.err { color: var(--red); }
  @media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

  /* ===================== VISUAL POP ===================== */
  /* Grain texture overlay */
  body::after {
    content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
    opacity: 0.5; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  }
  /* Animated mesh blobs behind hero */
  .hero::after {
    content: ''; position: absolute; z-index: 0; pointer-events: none;
    left: -200px; bottom: -200px; width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,123,255,0.16) 0%, transparent 70%);
    animation: floatBlob 14s ease-in-out infinite alternate;
  }
  .hero::before { animation: floatBlob 18s ease-in-out infinite alternate-reverse; }
  @keyframes floatBlob {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(40px,-30px) scale(1.12); }
  }
  /* Gradient text on the headline accent */
  .hero h1 .accent {
    background: linear-gradient(110deg, #7A4DFF 0%, #5314FF 50%, #7A4DFF 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  /* Gradient + glow on primary buttons */
  .btn-primary, .offer-price-cta, .modal-submit, .btn-cta {
    background: linear-gradient(120deg, #5314FF 0%, #4310CC 100%);
    box-shadow: 0 8px 28px rgba(83, 20, 255,0.32);
  }
  .btn-primary:hover, .offer-price-cta:hover, .modal-submit:hover, .btn-cta:hover {
    background: linear-gradient(120deg, #7A4DFF 0%, #5314FF 100%);
    box-shadow: 0 14px 40px rgba(83, 20, 255,0.45);
  }
  /* Bold filled CTA panel (TFSE-style colour block) */
  .cta-panel {
    position: relative; z-index: 2; overflow: hidden;
    border-radius: 32px;
    padding: 88px 48px;
    text-align: center;
    background:
      radial-gradient(circle at 20% 0%, rgba(167,139,250,0.5) 0%, transparent 55%),
      linear-gradient(135deg, #5314FF 0%, #3A0FB0 100%);
  }
  .cta-panel h2, .cta-panel p { color: #fff; }
  .cta-panel h2 em { color: #fff; font-style: italic; opacity: 0.85; }
  .cta-panel p { opacity: 0.85; }
  .cta-badge {
    display: inline-block; margin-bottom: 22px;
    padding: 7px 16px; border-radius: 999px;
    background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  }
  .btn-on-violet {
    display: inline-block; margin-top: 8px;
    padding: 16px 32px; border-radius: 999px;
    background: #fff; color: var(--copper-deep);
    font-family: 'Radio Canada Big', sans-serif; font-weight: 700; font-size: 16px;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-on-violet:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(0,0,0,0.3); }
  .cta-section::before { display: none; }
  @media (max-width: 700px) { .cta-panel { padding: 56px 24px; border-radius: 24px; } }

  /* Offer card — apply-to-learn-more (no price) */
  .offer-price-headline {
    font-family: 'Radio Canada Big', sans-serif;
    font-weight: 700; font-size: 30px; letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .offer-price-headline em { font-style: italic; color: var(--copper); }
  .offer-price-text {
    font-size: 15px; color: var(--ink-muted); line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Legal disclaimers / micro-notes */
  .site-legal {
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  .site-legal::before {
    content: 'Disclaimer';
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--copper-bright);
    margin-bottom: 10px;
  }
  .site-legal p {
    max-width: 1000px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--ink-muted);
  }
  .micro-note { display: inline-block; margin-top: 6px; font-size: 10px; color: var(--ink-dim); letter-spacing: 0; text-transform: none; opacity: 0.9; }
  .modal-fineprint { margin-top: 12px; font-size: 11px; line-height: 1.5; color: var(--ink-dim); text-align: center; }
