:root {
    --blue:        #1F4E79;
    --blue-dark:   #163A5A;
    --blue-soft:   #DCE6F1;
    --cream:       #FAF7F2;
    --accent:      #C00000;
    --gold:        #C9A14A;
    --ink:         #0E1B2C;
    --gray:        #5A6573;
    --gray-soft:   #E6E9EE;
    --white:       #FFFFFF;
    --green:       #1F9D55;
    --orange:      #EA580C;
    --orange-dark: #C2410C;
    --orange-soft: #FFF1E6;
    --shadow-sm:   0 1px 3px rgba(15, 27, 44, 0.08);
    --shadow-md:   0 6px 18px rgba(15, 27, 44, 0.10);
    --shadow-lg:   0 18px 48px rgba(15, 27, 44, 0.14);
    --radius-sm:   6px;
    --radius-md:   10px;
    --radius-lg:   16px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img, video, svg { max-width: 100%; height: auto; }

  h1, h2, h3 { font-family: 'Source Serif 4', Georgia, serif; line-height: 1.18; letter-spacing: -0.01em; margin: 0 0 0.5em; color: var(--ink); }
  h1 { font-size: clamp(30px, 6vw, 56px); font-weight: 700; }
  h2 { font-size: clamp(24px, 4.4vw, 40px); font-weight: 700; color: var(--blue); }
  h3 { font-size: clamp(19px, 2.6vw, 26px); font-weight: 600; }
  p  { margin: 0 0 1em; }
  a  { color: var(--blue); text-decoration: none; }
  a:hover { text-decoration: underline; }

  .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
  .section { padding: 64px 0; }
  @media (min-width: 720px) { .section { padding: 80px 0; } .container { padding: 0 24px; } }

  /* Buttons */
  .btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
  }
  @media (min-width: 720px) { .btn { padding: 16px 28px; font-size: 16px; } }
  .btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 22px rgba(234,88,12,0.32); }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(234,88,12,0.4); text-decoration: none; }
  .btn-cta { background: var(--orange); color: var(--white); box-shadow: 0 8px 22px rgba(234,88,12,0.35); }
  .btn-cta:hover { background: var(--orange-dark); transform: translateY(-1px); text-decoration: none; }
  .btn-secondary { background: transparent; color: var(--orange-dark); border: 2px solid var(--orange); }
  .btn-secondary:hover { background: var(--orange-soft); text-decoration: none; }
  .btn-whatsapp { background: #25D366; color: white; }
  .btn-whatsapp:hover { background: #1da851; text-decoration: none; }
  .btn-block { display: block; width: 100%; }
  .btn-lg { padding: 16px 26px; font-size: 16px; }
  @media (min-width: 720px) { .btn-lg { padding: 18px 36px; font-size: 18px; } }

  /* Nav */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(7, 16, 28, 0.97);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 20px;
    max-width: 1140px; margin: 0 auto;
    gap: 12px;
  }
  .nav-logo { display: flex; align-items: center; min-width: 0; }
  .nav-logo img { height: 46px; width: auto; flex-shrink: 0; }
  .nav-logo span { display: none; }
  .nav-cta { font-size: 13px; padding: 9px 14px; flex-shrink: 0; }
  @media (min-width: 720px) { .nav-cta { font-size: 14px; padding: 10px 18px; } }
  .nav-links { display: none; gap: 28px; font-size: 15px; }
  .nav-links a { color: rgba(255,255,255,0.86); font-weight: 500; }
  .nav-links a:hover { color: var(--white); }
  @media (min-width: 880px) { .nav-links { display: flex; } }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--cream) 0%, #F2E8D5 60%, var(--blue-soft) 100%);
    padding: 48px 0 56px;
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 720px) { .hero { padding: 72px 0 88px; } }
  .hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
  }
  @media (min-width: 880px) {
    .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  }
  .hero-eyebrow {
    display: inline-block;
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .hero h1 { color: var(--ink); margin-bottom: 18px; }
  .hero h1 .accent { color: var(--blue); }
  .hero-sub { font-size: clamp(16px, 2.4vw, 19px); color: var(--gray); max-width: 580px; margin-bottom: 24px; line-height: 1.6; }
  .hero-ctas { display: flex; flex-direction: column; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
  @media (min-width: 520px) { .hero-ctas { flex-direction: row; } }
  .free-ribbon {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(31,157,85,0.10);
    border: 1px solid rgba(31,157,85,0.35);
    color: #14753c;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
  }
  .free-ribbon::before { content: '🎁'; font-size: 14px; }
  .hero-microcopy { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
  .hero-microcopy::before { content: '✓'; color: var(--green); font-weight: 700; }
  .hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }

  /* Free callout band (prominent) */
  .free-band {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
    color: white;
    padding: 28px 0;
    text-align: center;
    position: relative;
  }
  .free-band .wrap { display: flex; flex-direction: column; gap: 14px; align-items: center; justify-content: center; }
  @media (min-width: 720px) { .free-band .wrap { flex-direction: row; gap: 24px; } }
  .free-band h3 {
    color: white;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
  }
  .free-band p { margin: 0; font-size: 14px; opacity: 0.95; }
  .free-band .btn-cta { background: white; color: var(--orange-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .free-band .btn-cta:hover { background: var(--orange-soft); color: var(--orange-dark); }

  /* Trust strip */
  .trust-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-soft);
    border-bottom: 1px solid var(--gray-soft);
    padding: 32px 0;
  }
  .trust-strip-label {
    text-align: center; color: var(--gray); font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px;
  }
  .trust-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: stretch;
  }
  @media (min-width: 540px) { .trust-logos { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 880px) { .trust-logos { grid-template-columns: repeat(7, 1fr); gap: 18px; } }
  .trust-tile {
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    height: 76px;
    border: 1px solid var(--gray-soft);
  }
  .trust-tile img { max-height: 38px; max-width: 100%; object-fit: contain; }
  .trust-tile svg { max-height: 36px; max-width: 100%; }
  .trust-stat {
    background: var(--blue);
    color: white;
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    height: 76px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .trust-stat .num { font-family: 'Source Serif 4', serif; font-size: 26px; font-weight: 700; line-height: 1; }
  .trust-stat .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.85; margin-top: 4px; }

  /* DHL brand SVG container */
  .logo-dhl { background: #FFCC00; padding: 6px 10px; border-radius: 4px; display: inline-flex; align-items: center; }
  .logo-dhl .dhl-text { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 22px; color: #D50000; letter-spacing: -0.02em; }
  .logo-allianz { display: inline-flex; align-items: center; gap: 8px; }
  .logo-allianz .blue-bar { width: 6px; height: 22px; background: #003781; border-radius: 1px; }
  .logo-allianz .name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 19px; color: #003781; letter-spacing: 0.01em; }
  .logo-next-academy { text-align: center; line-height: 1.05; }
  .logo-next-academy .top { font-family: 'Source Serif 4', serif; font-weight: 700; font-size: 17px; color: #1F4E79; letter-spacing: -0.01em; }
  .logo-next-academy .bot { display: block; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 9px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }

  /* USP block */
  .usp-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  @media (min-width: 800px) { .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
  .usp-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-soft);
    padding: 26px 22px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  @media (min-width: 720px) { .usp-card { padding: 32px 28px; } }
  .usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .usp-card .icon-circle {
    width: 52px; height: 52px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Source Serif 4', serif;
  }
  .usp-card h3 { color: var(--blue); margin-bottom: 10px; }
  .usp-card p { color: var(--gray); font-size: 15px; margin: 0; }
  .usp-card.highlight { border-color: var(--gold); background: linear-gradient(180deg, #FFF8E8 0%, white 100%); }
  .usp-card.highlight .icon-circle { background: var(--gold); color: white; }

  /* PAS */
  .pas { background: var(--ink); color: white; }
  .pas h2 { color: white; }
  .pas-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  @media (min-width: 800px) { .pas-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
  .pas-block {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 22px 22px;
  }
  @media (min-width: 720px) { .pas-block { padding: 28px; } }
  .pas-block h3 {
    color: var(--gold); font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 12px;
    font-family: 'Inter', sans-serif; font-weight: 700;
  }
  .pas-block p { color: #D8DEE5; font-size: 15px; line-height: 1.7; margin: 0; }

  /* Outcomes ("What you'll learn") */
  .outcomes-wrap { background: white; }
  .outcomes-intro { text-align: center; max-width: 760px; margin: 0 auto 40px; }
  .outcomes-grid {
    display: grid; grid-template-columns: 1fr; gap: 14px;
  }
  @media (min-width: 600px) { .outcomes-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 960px) { .outcomes-grid { grid-template-columns: 1fr 1fr 1fr; } }
  .outcome {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--cream);
    border: 1px solid var(--gray-soft);
    border-radius: var(--radius-md);
    padding: 18px 18px;
    transition: transform 0.15s ease, border-color 0.15s ease;
  }
  .outcome:hover { transform: translateY(-2px); border-color: var(--blue-soft); }
  .outcome .check {
    flex-shrink: 0;
    width: 34px; height: 34px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
    box-shadow: 0 2px 8px rgba(31,157,85,0.35);
  }
  .outcome .body h4 {
    margin: 0 0 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.3;
  }
  .outcome .body p { margin: 0; font-size: 14px; color: var(--gray); line-height: 1.5; }

  /* Video section */
  .video-wrap { background: var(--cream); }
  .video-frame {
    max-width: 920px; margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background: var(--ink);
    position: relative;
  }
  .video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; }

  /* Curriculum */
  .curriculum-wrap { background: white; }
  .curriculum-intro { text-align: center; max-width: 760px; margin: 0 auto 40px; }
  .curriculum-stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 10px; margin: 24px auto 0; max-width: 720px;
  }
  @media (min-width: 540px) { .curriculum-stats { grid-template-columns: repeat(4, 1fr); } }
  .curr-stat {
    background: var(--blue-soft);
    border-radius: var(--radius-md);
    padding: 14px 8px;
    text-align: center;
  }
  .curr-stat .num { font-family: 'Source Serif 4', serif; color: var(--blue); font-size: 26px; font-weight: 700; line-height: 1; }
  .curr-stat .lbl { font-size: 11px; color: var(--gray); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

  .module-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 980px;
    margin: 0 auto;
  }
  @media (min-width: 760px) { .module-list { grid-template-columns: 1fr 1fr; gap: 12px; } }
  .module {
    background: white;
    border: 1px solid var(--gray-soft);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    display: flex; align-items: flex-start; gap: 14px;
    transition: border-color 0.2s ease, transform 0.15s ease;
  }
  @media (min-width: 720px) { .module { padding: 20px 22px; gap: 16px; } }
  .module:hover { border-color: var(--blue-soft); transform: translateY(-1px); }
  .module .num {
    flex-shrink: 0;
    width: 38px; height: 38px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px;
    font-family: 'Source Serif 4', serif;
  }
  .module .body { flex: 1; min-width: 0; }
  .module .body h4 { margin: 0 0 6px; font-size: 15px; color: var(--ink); font-family: 'Inter', sans-serif; font-weight: 700; line-height: 1.3; }
  .module .body .lessons { margin: 0; font-size: 13px; color: var(--gray); line-height: 1.55; }
  .module.free { border-color: var(--gold); background: linear-gradient(180deg, #FFF8E8 0%, white 100%); }
  .module.free .num { background: var(--gold); color: white; }
  .module.free .free-tag {
    display: inline-block; background: var(--gold); color: white;
    font-size: 10px; padding: 2px 8px; border-radius: 4px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    margin-left: 8px; vertical-align: 2px;
  }
  .module.locked .num { background: var(--gray-soft); color: var(--gray); }
  .module.locked .lock { font-size: 11px; color: var(--gray); float: right; }

  /* Endorsement (Minister) */
  .endorse-wrap { background: linear-gradient(180deg, white 0%, var(--cream) 100%); }
  .endorse-grid {
    display: grid; grid-template-columns: 1fr; gap: 28px;
    align-items: center;
    max-width: 980px; margin: 0 auto;
  }
  @media (min-width: 800px) {
    .endorse-grid { grid-template-columns: 320px 1fr; gap: 48px; }
  }
  .endorse-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }
  .endorse-bio .pill {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  .endorse-bio h2 { color: var(--blue); margin-bottom: 12px; }
  .endorse-bio p { color: var(--gray); font-size: 16px; line-height: 1.7; }

  /* Community / Skool stat block */
  .community-wrap { background: var(--blue); color: white; }
  .community-wrap h2 { color: white; }
  .community-grid {
    display: grid; grid-template-columns: 1fr; gap: 28px;
    align-items: center;
    max-width: 1080px; margin: 0 auto;
  }
  @media (min-width: 800px) {
    .community-grid { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
  }
  .community-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
  }
  .community-card .big-stat {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(48px, 10vw, 76px);
    font-weight: 700;
    line-height: 1;
    color: white;
    margin-bottom: 6px;
  }
  .community-card .sub {
    font-size: 14px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .community-card .platform {
    margin-top: 18px;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
  }
  .community-bullets { list-style: none; padding: 0; margin: 0; }
  .community-bullets li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .community-bullets li:last-child { border-bottom: none; }
  .community-bullets li::before {
    content: '✓';
    position: absolute; left: 0; top: 10px;
    width: 22px; height: 22px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 12px;
  }

  /* Instructor */
  .instructor-wrap { background: var(--cream); }
  .instructor-grid {
    display: grid; grid-template-columns: 1fr; gap: 28px;
    align-items: center;
  }
  @media (min-width: 800px) {
    .instructor-grid { grid-template-columns: 320px 1fr; gap: 56px; }
  }
  .instructor-photo { display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .instructor-photo img.headshot {
    width: 100%; max-width: 320px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
  }
  .instructor-credentials { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .credential-pill {
    background: var(--blue-soft);
    color: var(--blue-dark);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
  }
  .instructor-bio h2 { margin-bottom: 16px; }
  .instructor-bio p { color: var(--gray); font-size: 16px; line-height: 1.75; }

  /* Book section */
  .book-wrap { background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
  .book-grid {
    display: grid; grid-template-columns: 1fr; gap: 36px;
    align-items: center;
  }
  @media (min-width: 880px) {
    .book-grid { grid-template-columns: 320px 1fr; gap: 52px; }
  }
  .book-cover {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 25px 35px rgba(15, 27, 44, 0.25));
  }
  .book-meta h2 { margin-bottom: 14px; }
  .book-meta .release {
    display: inline-block;
    background: var(--gold); color: white;
    padding: 4px 12px; border-radius: 4px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; margin-bottom: 14px;
  }
  .book-video-frame {
    margin-top: 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background: var(--ink);
    max-width: 920px;
  }
  .book-video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; }

  /* Testimonials */
  .testimonials { background: linear-gradient(180deg, var(--white) 0%, var(--blue-soft) 100%); }
  .testi-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  @media (min-width: 800px) { .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
  .testi {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-soft);
  }
  @media (min-width: 720px) { .testi { padding: 28px; } }
  .testi-quote {
    font-family: 'Source Serif 4', serif;
    font-size: 17px; line-height: 1.55;
    color: var(--ink); margin-bottom: 18px;
  }
  .testi-quote::before { content: '"'; font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -20px; margin-right: 4px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-author .avatar {
    width: 44px; height: 44px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
  }
  .testi-author .name { font-weight: 600; font-size: 14px; color: var(--ink); }
  .testi-author .role { font-size: 13px; color: var(--gray); }

  /* Pricing */
  .pricing-wrap { background: var(--white); }
  .pricing-grid {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    max-width: 1080px; margin: 0 auto;
  }
  @media (min-width: 880px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
  }
  .price-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-soft);
    padding: 28px 22px;
    display: flex; flex-direction: column;
    position: relative;
  }
  @media (min-width: 720px) { .price-card { padding: 32px 28px; } }
  .price-card.featured {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
  }
  @media (min-width: 880px) { .price-card.featured { transform: translateY(-8px); } }
  .price-card.free-card { border-color: var(--orange); background: linear-gradient(180deg, var(--orange-soft) 0%, white 100%); }
  .price-card .badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .price-card.free-card .badge { background: var(--orange); }
  .price-card h3 { color: var(--blue); margin-bottom: 8px; }
  .price-card.free-card h3 { color: var(--orange-dark); }
  .price-card .price { font-family: 'Source Serif 4', serif; font-size: clamp(40px, 8vw, 48px); font-weight: 700; color: var(--ink); line-height: 1; margin: 14px 0 6px; }
  .price-card .price-sub { color: var(--gray); font-size: 14px; margin-bottom: 22px; }
  .price-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
  .price-card ul li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; color: var(--ink); line-height: 1.5; }
  .price-card ul li::before {
    content: '✓'; position: absolute; left: 0; top: 8px;
    color: var(--blue); font-weight: 700;
  }
  .price-card.free-card ul li::before { color: var(--orange); }
  .price-card .btn { margin-top: auto; }

  /* FAQ */
  .faq-wrap { background: var(--cream); }
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-soft);
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  @media (min-width: 720px) { .faq-item summary { padding: 20px 24px; font-size: 16px; } }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; font-size: 22px; color: var(--blue);
    transition: transform 0.2s ease; flex-shrink: 0;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item .answer {
    padding: 0 20px 20px;
    color: var(--gray); font-size: 15px; line-height: 1.7;
  }
  @media (min-width: 720px) { .faq-item .answer { padding: 0 24px 22px; } }

  /* Final CTA */
  .final-cta {
    background: var(--blue);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image: url('hero-keynote.jpg');
    background-size: cover; background-position: center;
    opacity: 0.18; z-index: 0;
  }
  .final-cta .container { position: relative; z-index: 1; }
  .final-cta h2 { color: white; }
  .final-cta p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 640px; margin: 0 auto 28px; }
  .scarcity {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    margin-bottom: 22px;
    font-weight: 500;
  }
  .final-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

  /* Footer */
  footer {
    background: var(--ink); color: #B3BCC8;
    padding: 48px 0 24px; font-size: 14px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 28px; margin-bottom: 32px;
  }
  @media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
  footer h4 { color: white; font-size: 13px; margin: 0 0 12px; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li { margin-bottom: 8px; }
  footer a { color: #B3BCC8; }
  footer a:hover { color: white; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    display: flex; flex-direction: column;
    gap: 12px; align-items: center;
    text-align: center; font-size: 13px; color: #8A95A4;
  }
  @media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
  .footer-logo { height: 38px; width: auto; margin-bottom: 14px; }

  /* WhatsApp float */
  .wa-float {
    position: fixed;
    bottom: 16px; right: 16px;
    background: #25D366;
    color: white;
    width: 54px; height: 54px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    z-index: 40;
    text-decoration: none;
  }
  .wa-float:hover { background: #1da851; text-decoration: none; }

  /* Sticky mobile CTA */
  .mobile-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: white;
    border-top: 1px solid var(--gray-soft);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
    z-index: 45;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  @media (min-width: 720px) { .mobile-cta-bar { display: none; } }
  .mobile-cta-bar .text { flex: 1; min-width: 0; font-size: 12px; color: var(--gray); line-height: 1.3; }
  .mobile-cta-bar .text strong { color: var(--ink); display: block; font-size: 13px; }
  .mobile-cta-bar .btn { padding: 10px 14px; font-size: 13px; }

  /* Spacing so sticky bar doesn't cover content on mobile */
  @media (max-width: 719px) { body { padding-bottom: 76px; } .wa-float { bottom: 84px; } }

/* Kajabi native video wrappers */
.hero-video-frame,
.video-frame,
.book-video-frame {
  position: relative;
}

.hero-video-frame.hero-img {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  background: var(--ink);
}

.hero-video-frame .video,
.hero-video-frame .video__wrapper,
.hero-video-frame .wistia_responsive_padding,
.hero-video-frame .wistia_responsive_wrapper,
.hero-video-frame .wistia_embed,
.video-frame .video,
.video-frame .video__wrapper,
.video-frame .wistia_responsive_padding,
.video-frame .wistia_responsive_wrapper,
.video-frame .wistia_embed,
.book-video-frame .video,
.book-video-frame .video__wrapper,
.book-video-frame .wistia_responsive_padding,
.book-video-frame .wistia_responsive_wrapper,
.book-video-frame .wistia_embed {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}

.hero-video-frame .wistia_responsive_padding,
.video-frame .wistia_responsive_padding,
.book-video-frame .wistia_responsive_padding {
  position: absolute !important;
  inset: 0 !important;
  padding: 0 !important;
}

.hero-video-frame .wistia_responsive_wrapper,
.video-frame .wistia_responsive_wrapper,
.book-video-frame .wistia_responsive_wrapper {
  position: absolute !important;
  inset: 0 !important;
}

.hero-video-frame iframe,
.hero-video-frame .wistia_embed,
.video-frame iframe,
.video-frame .wistia_embed,
.book-video-frame iframe,
.book-video-frame .wistia_embed {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0;
}

.hero-video-frame img,
.video-frame img,
.book-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
