/* ── RESET & BASE ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      background: #ffffff;
      color: #0a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; }
    ul { list-style: none; }

    /* ── BRAND TOKENS ─────────────────────────────────────────── */
    :root {
      --blue:    #002D62;
      --blue-dk: #001640;
      --blue-lt: #F4F7FF;
      --green:   #2ECC71;
      --green-dk:#1fa355;
      --red:     #E63946;
      --white:   #ffffff;
      --grey-1:  #f1f5f9;
      --grey-2:  #e2e8f0;
      --grey-3:  #94a3b8;
      --grey-4:  #4a5568;
      --grey-5:  #1a202c;
      --radius:  10px;
      --shadow:  0 1px 6px rgba(0,0,0,0.08);
    }

    /* ── UTILITY ──────────────────────────────────────────────── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
    .section    { padding: 72px 0; }
    .section-alt  { background: var(--blue-lt); }
    .section-dark {
      background: var(--blue);
      color: var(--white);
    }
    .eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--green); margin-bottom: 12px;
    }
    .section-title {
      font-size: 32px; font-weight: 800; line-height: 1.15;
      letter-spacing: -0.5px; color: var(--blue); margin-bottom: 14px;
    }
    .section-dark .section-title { color: var(--white); }
    .section-body {
      font-size: 16px; color: var(--grey-4);
      max-width: 600px; line-height: 1.7; margin-bottom: 36px;
    }
    .section-dark .section-body { color: rgba(255,255,255,0.68); }

    /* ── BUTTONS ──────────────────────────────────────────────── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--green); color: var(--blue);
      font-weight: 800; font-size: 16px;
      padding: 16px 32px; border-radius: var(--radius);
      border: none; transition: background .15s, transform .1s;
    }
    .btn-primary:hover { background: var(--green-dk); transform: translateY(-1px); }
    .btn-sm {
      display: inline-flex; align-items: center; gap: 8px;
      font-weight: 700; font-size: 13px;
      padding: 10px 20px; border-radius: 7px; border: none;
      transition: background .15s;
    }
    .btn-green-sm { background: var(--green); color: var(--blue); }
    .btn-green-sm:hover { background: var(--green-dk); }
    .btn-blue-sm { background: var(--blue); color: var(--white); }
    .btn-blue-sm:hover { background: var(--blue-dk); }
    .btn-outline-blue {
      background: transparent; color: var(--blue);
      border: 2px solid var(--blue);
      font-weight: 700; font-size: 13px;
      padding: 8px 18px; border-radius: 7px;
      transition: background .15s;
    }
    .btn-outline-blue:hover { background: rgba(0,45,98,.08); }
    .btn-ghost {
      background: transparent; color: rgba(255,255,255,0.72);
      font-size: 14px; font-weight: 500; border: none;
      display: inline-flex; align-items: center; gap: 6px;
      text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3);
      padding: 0; margin-top: 14px;
    }

    /* ── NAVIGATION ───────────────────────────────────────────── */
    .nav {
      background: var(--blue);
      padding: 14px 32px;
      display: flex; justify-content: space-between; align-items: center;
      position: sticky; top: 0; z-index: 200;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-brand {
      display: flex; align-items: center; gap: 10px;
    }
    .nav-logo {
      font-size: 20px; font-weight: 800; color: var(--white);
      letter-spacing: -1px; position: relative;
    }
    .nav-logo::after {
      content: ''; position: absolute;
      top: 1px; right: -5px;
      width: 6px; height: 6px; background: var(--green);
    }
    .nav-label {
      font-size: 12px; color: rgba(255,255,255,0.45);
      font-weight: 500; letter-spacing: 0.3px;
    }
    .nav-right { display: flex; align-items: center; gap: 14px; }
    .nav-countdown {
      font-size: 12px; font-weight: 700;
      color: rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.08);
      padding: 5px 12px; border-radius: 100px;
    }

    /* ── URGENCY BAR ──────────────────────────────────────────── */
    .urgency-bar {
      background: var(--red);
      padding: 11px 32px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 12px;
      flex-wrap: wrap;
    }
    .urgency-text {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 700; color: var(--white);
    }
    .urgency-ticker {
      background: rgba(0,0,0,0.22);
      color: var(--white); font-size: 13px; font-weight: 800;
      padding: 4px 14px; border-radius: 100px;
      font-variant-numeric: tabular-nums; letter-spacing: 0.5px;
    }

    /* ── HERO ─────────────────────────────────────────────────── */
    .hero {
      background: var(--blue);
      padding: 76px 0 68px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute;
      top: -90px; right: -90px;
      width: 340px; height: 340px;
      background: var(--green); opacity: 0.07; border-radius: 50%;
    }
    .hero::after {
      content: ''; position: absolute;
      bottom: -50px; left: 60px;
      width: 180px; height: 180px;
      background: var(--green); opacity: 0.04; border-radius: 50%;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(46,204,113,0.16); color: var(--green);
      font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 7px 16px; border-radius: 100px; margin-bottom: 26px;
    }
    .pulse {
      width: 6px; height: 6px; background: var(--green);
      border-radius: 50%;
      animation: pulse-anim 2s ease-in-out infinite;
    }
    @keyframes pulse-anim {
      0%,100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.4; transform: scale(0.75); }
    }
    .hero-headline {
      font-size: 50px; font-weight: 800; color: var(--white);
      line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 18px;
      max-width: 680px;
    }
    .hero-headline em { font-style: normal; color: var(--green); }
    .hero-sub {
      font-size: 18px; color: rgba(255,255,255,0.7);
      max-width: 560px; line-height: 1.65;
      font-weight: 400; margin-bottom: 40px;
    }
    .hero-meta {
      display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 42px;
    }
    .meta-pill {
      display: flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500;
    }
    .meta-pill i { color: var(--green); font-size: 17px; }
    .hero-cta-group {
      display: flex; flex-direction: column; gap: 0; align-items: flex-start;
    }
    .hero-stats {
      margin-top: 52px; padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex; flex-wrap: wrap; gap: 36px;
    }
    .stat-num {
      font-size: 34px; font-weight: 800;
      color: var(--green); line-height: 1;
    }
    .stat-label {
      font-size: 11px; color: rgba(255,255,255,0.45);
      text-transform: uppercase; letter-spacing: 1.2px; margin-top: 5px;
    }

    /* ── DEADLINE NOTICE ──────────────────────────────────────── */
    .deadline-notice {
      background: var(--blue-lt);
      border-bottom: 1px solid var(--grey-2);
      padding: 0 32px;
    }
    .deadline-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 20px 0;
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    }
    .deadline-icon {
      width: 46px; height: 46px; background: var(--blue);
      border-radius: var(--radius); display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .deadline-icon i { color: var(--green); font-size: 22px; }
    .deadline-body { flex: 1; min-width: 200px; }
    .deadline-title {
      font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 3px;
    }
    .deadline-sub { font-size: 13px; color: var(--grey-4); }
    .deadline-sub strong { color: var(--blue); }

    /* ── PAIN SECTION ─────────────────────────────────────────── */
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px; margin-top: 32px;
    }
    .pain-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 22px 20px;
      border-left: 4px solid var(--blue);
      box-shadow: var(--shadow);
    }
    .pain-card p {
      font-size: 15px; font-weight: 600;
      color: var(--blue); line-height: 1.5;
    }
    .answer-box {
      background: var(--blue); border-radius: 14px;
      padding: 28px 28px 28px 24px;
      margin-top: 24px;
      display: flex; gap: 18px; align-items: flex-start;
    }
    .answer-icon {
      width: 42px; height: 42px; background: var(--green);
      border-radius: 9px; display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .answer-icon i { color: var(--blue); font-size: 21px; }
    .answer-body {
      font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.7;
    }
    .answer-body strong { color: var(--green); }

    /* ── SPEAKERS ─────────────────────────────────────────────── */
    .speakers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 14px;
    }
    .speaker-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 20px 14px; text-align: center;
      transition: background .15s, transform .15s;
    }
    .speaker-card:hover {
      background: rgba(255,255,255,0.11); transform: translateY(-2px);
    }
    .speaker-card.featured {
      background: rgba(46,204,113,0.12);
      border-color: var(--green);
    }
    .speaker-avatar {
      width: 56px; height: 56px; border-radius: 50%;
      margin: 0 auto 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800;
      background: var(--green); color: var(--blue);
    }
    .speaker-card.featured .speaker-avatar {
      width: 68px; height: 68px; font-size: 22px;
      background: var(--white); color: var(--blue);
    }
    .featured-badge {
      display: inline-block;
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--blue); background: var(--green);
      padding: 3px 8px; border-radius: 100px; margin-bottom: 8px;
    }
    .speaker-name {
      font-size: 13px; font-weight: 700;
      color: var(--white); line-height: 1.3; margin-bottom: 4px;
    }
    .speaker-role {
      font-size: 11px; color: rgba(255,255,255,0.48); line-height: 1.4;
    }
    .speaker-card.featured .speaker-role { color: var(--green); }

    /* ── TRACKS ───────────────────────────────────────────────── */
    .tracks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }
    .track-card {
      background: var(--white); border-radius: 12px;
      padding: 26px 22px;
      border-top: 4px solid var(--blue);
      box-shadow: var(--shadow);
    }
    .track-icon {
      width: 46px; height: 46px; background: var(--blue);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; margin-bottom: 16px;
    }
    .track-icon i { color: var(--green); font-size: 21px; }
    .track-name {
      font-size: 17px; font-weight: 700;
      color: var(--blue); margin-bottom: 9px;
    }
    .track-sessions { font-size: 13px; color: var(--grey-4); line-height: 1.65; }

    /* ── PROGRAMME ────────────────────────────────────────────── */
    .programme-cols {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    }
    .day-title {
      font-size: 20px; font-weight: 800; color: var(--white);
      margin-bottom: 24px;
    }
    .timeline {
      position: relative; padding-left: 30px;
      border-left: 2px solid rgba(255,255,255,0.14);
    }
    .t-item {
      position: relative; padding: 0 0 22px 22px;
    }
    .t-item:last-child { padding-bottom: 0; }
    .t-dot {
      position: absolute; left: -8px; top: 5px;
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--green);
      border: 2px solid var(--blue);
      box-shadow: 0 0 0 2px var(--green);
    }
    .t-time {
      font-size: 11px; font-weight: 700; color: var(--green);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px;
    }
    .t-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
    .t-who { font-size: 12px; color: rgba(255,255,255,0.46); }

    /* ── PRICING ──────────────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }
    .price-card {
      background: var(--white); border-radius: 14px;
      padding: 28px 22px; text-align: center;
      border: 1.5px solid var(--grey-2);
      position: relative;
      transition: border-color .15s, box-shadow .15s;
      display: flex; flex-direction: column;
    }
    .price-card:hover { border-color: var(--blue); box-shadow: 0 4px 18px rgba(0,45,98,.1); }
    .price-card.best {
      border: 2px solid var(--green);
    }
    .best-tag {
      position: absolute; top: -13px; left: 50%;
      transform: translateX(-50%);
      background: var(--green); color: var(--blue);
      font-size: 11px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 16px; border-radius: 100px; white-space: nowrap;
    }
    .price-type {
      font-size: 11px; font-weight: 700; color: var(--grey-3);
      text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px;
    }
    .price-audience {
      font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 18px;
    }
    .price-amount {
      font-size: 36px; font-weight: 800; color: var(--blue);
      line-height: 1; margin-bottom: 6px;
    }
    .price-note {
      font-size: 12px; color: var(--grey-3); margin-bottom: 18px; line-height: 1.4;
    }
    .price-includes {
      text-align: left; margin-bottom: 22px;
      flex: 1;
    }
    .price-includes li {
      font-size: 13px; color: var(--grey-4);
      display: flex; align-items: flex-start; gap: 7px;
      margin-bottom: 6px; line-height: 1.45;
    }
    .price-includes li::before {
      content: '✓'; color: var(--green);
      font-weight: 800; flex-shrink: 0; margin-top: 1px;
    }
    .price-cta {
      width: 100%;
      margin-top: auto;
      font-family: inherit; font-weight: 700; font-size: 14px;
      padding: 13px; border-radius: 8px; border: none;
      cursor: pointer; transition: background .15s;
    }
    .price-cta-blue { background: var(--blue); color: var(--white); }
    .price-cta-blue:hover { background: var(--blue-dk); }
    .price-cta-green { background: var(--green); color: var(--blue); }
    .price-cta-green:hover { background: var(--green-dk); }

    .group-banner {
      background: var(--blue-lt); border: 1.5px solid var(--blue);
      border-radius: 14px; padding: 22px 26px;
      margin-top: 18px;
      display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    }
    .group-icon {
      width: 46px; height: 46px; background: var(--blue);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; flex-shrink: 0;
    }
    .group-icon i { color: var(--green); font-size: 23px; }
    .group-body { flex: 1; min-width: 180px; }
    .group-title { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
    .group-desc { font-size: 13px; color: var(--grey-4); }

    .pricing-footnote {
      font-size: 12px; color: var(--grey-3);
      text-align: center; margin-top: 14px;
    }

    /* ── MEMBER SAVE STRIP ────────────────────────────────────── */
    .member-strip {
      background: rgba(46,204,113,0.1);
      border: 1px solid rgba(46,204,113,0.3);
      border-radius: 10px; padding: 16px 20px;
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 24px; flex-wrap: wrap;
    }
    .member-strip i { color: var(--green); font-size: 22px; flex-shrink: 0; }
    .member-strip p { font-size: 14px; color: var(--grey-5); line-height: 1.5; }
    .member-strip strong { color: var(--blue); }

    /* ── TESTIMONIALS ─────────────────────────────────────────── */
    .testimonials { display: flex; flex-direction: column; gap: 16px; }
    .testimonial {
      background: var(--white); border-radius: 12px;
      padding: 26px 26px 22px;
      border-left: 4px solid var(--green);
      box-shadow: var(--shadow);
    }
    .testimonial blockquote {
      font-size: 15px; font-style: italic;
      color: var(--grey-5); line-height: 1.75; margin-bottom: 14px;
    }
    .testimonial cite {
      font-style: normal; font-size: 13px;
      font-weight: 700; color: var(--blue); display: block;
    }
    .testimonial .cite-role { font-size: 12px; color: var(--grey-3); font-weight: 400; }

    /* ── FAQ ──────────────────────────────────────────────────── */
    .faq-list {
      border: 1.5px solid var(--grey-2);
      border-radius: 14px; overflow: hidden;
    }
    .faq-item { border-bottom: 1px solid var(--grey-2); background: var(--white); }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      width: 100%; text-align: left;
      padding: 18px 22px;
      font-family: inherit; font-size: 15px; font-weight: 600;
      color: var(--blue); background: transparent; border: none;
      cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 12px;
      transition: background .1s;
    }
    .faq-q:hover { background: var(--blue-lt); }
    .faq-icon { color: var(--green); font-size: 18px; transition: transform .3s; flex-shrink: 0; }
    .faq-icon.open { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .32s ease, padding .32s ease;
      font-size: 14px; color: var(--grey-4); line-height: 1.75;
      padding: 0 22px;
    }
    .faq-a.open { max-height: 400px; padding: 0 22px 20px; }

    /* ── FINAL CTA ────────────────────────────────────────────── */
    .final-cta {
      background: var(--blue);
      padding: 88px 0;
      text-align: center; position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: ''; position: absolute;
      top: -120px; left: 50%; transform: translateX(-50%);
      width: 560px; height: 560px;
      background: var(--green); opacity: 0.05; border-radius: 50%;
    }
    .final-cta h2 {
      font-size: 40px; font-weight: 800; color: var(--white);
      line-height: 1.15; letter-spacing: -0.8px;
      max-width: 580px; margin: 0 auto 18px;
    }
    .final-cta p {
      font-size: 17px; color: rgba(255,255,255,0.62);
      max-width: 460px; margin: 0 auto 40px; line-height: 1.6;
    }
    .final-cta .final-meta {
      font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 20px;
    }
    .final-cta .final-meta strong { color: rgba(255,255,255,0.75); }

    /* ── FOOTER ───────────────────────────────────────────────── */
    .footer {
      background: var(--blue-dk);
      padding: 26px 32px;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-text { font-size: 13px; color: rgba(255,255,255,0.35); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      font-size: 12px; color: rgba(255,255,255,0.45);
      transition: color .15s;
    }
    .footer-links a:hover { color: var(--green); }

    /* ── CHECKOUT MODAL ───────────────────────────────────────── */
    .checkout-modal {
      position: fixed; inset: 0; z-index: 200;
      display: flex; align-items: center; justify-content: center;
      padding: 24px;
    }
    .checkout-modal[hidden] { display: none; }
    .checkout-backdrop {
      position: absolute; inset: 0;
      background: rgba(0, 31, 63, 0.72);
      backdrop-filter: blur(4px);
    }
    .checkout-dialog {
      position: relative; z-index: 1;
      width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
      background: var(--white); border-radius: 16px;
      padding: 32px 28px 28px;
      box-shadow: 0 24px 64px rgba(0, 31, 63, 0.28);
    }
    .checkout-close {
      position: absolute; top: 16px; right: 16px;
      width: 36px; height: 36px; border: none; border-radius: 50%;
      background: var(--off-white); color: var(--blue);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
    }
    .checkout-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--green); margin-bottom: 8px;
    }
    .checkout-title {
      font-size: 24px; font-weight: 800; color: var(--blue);
      margin-bottom: 8px; line-height: 1.2;
    }
    .checkout-plan { font-size: 14px; color: var(--text-mid); margin-bottom: 4px; }
    .checkout-price {
      font-size: 28px; font-weight: 800; color: var(--blue);
      margin-bottom: 24px;
    }
    .checkout-form { display: flex; flex-direction: column; gap: 16px; }
    .checkout-field label {
      display: block; font-size: 13px; font-weight: 600;
      color: var(--blue); margin-bottom: 6px;
    }
    .checkout-field .required { color: #e74c3c; }
    .checkout-field input[type="text"],
    .checkout-field input[type="email"],
    .checkout-field input[type="tel"] {
      width: 100%; padding: 12px 14px; border: 1px solid var(--border);
      border-radius: 8px; font-size: 14px; font-family: inherit;
    }
    .checkout-field input:focus {
      outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.08);
    }
    .checkout-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .checkout-titles {
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .checkout-title-option {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 12px; border: 1px solid var(--border);
      border-radius: 100px; font-size: 13px; cursor: pointer;
    }
    .checkout-title-option input { accent-color: var(--blue); }
    .checkout-note {
      font-size: 13px; color: var(--text-mid); line-height: 1.5;
    }
    .checkout-submit {
      width: 100%; justify-content: center;
    }
    .checkout-alt {
      font-size: 12px; color: var(--text-mid); text-align: center;
    }
    .checkout-alt a { color: var(--blue); font-weight: 600; }

    /* ── RESPONSIVE ───────────────────────────────────────────── */
    @media (max-width: 768px) {
      .hero-headline { font-size: 34px; }
      .final-cta h2 { font-size: 28px; }
      .section-title { font-size: 26px; }
      .programme-cols { grid-template-columns: 1fr; gap: 36px; }
      .nav-countdown { display: none; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .container { padding: 0 20px; }
      .nav { padding: 14px 20px; }
      .urgency-bar { padding: 10px 20px; }
    }
    @media (max-width: 480px) {
      .hero-headline { font-size: 28px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 24px; }
      .speakers-grid { grid-template-columns: repeat(2, 1fr); }
      .checkout-grid { grid-template-columns: 1fr; }
}
