
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #1a2980;
    --teal: #26d0ce;
    --orange: #f7971e;
    --white: #ffffff;
    --light-bg: #f5f7fa;
    --text: #1a1a2e;
    --muted: #64748b;
    --border: #e2e8f0;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: box-shadow 0.3s;
  }
  .navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo { height: 56px; }
  .nav-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
  .nav-logo-sub  { font-size: 11px; color: var(--teal); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .nav-cta {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,41,128,0.3); color: #fff; }

  /* ── PAGE WRAP ── */
  .page-wrap { padding-top: 72px; }

  /* ── HERO ── */
  .hero {
    padding: 64px 0 56px;
    background: linear-gradient(160deg, #ffffff 60%, #eef9f9 100%);
    border-bottom: 1px solid var(--border);
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
  }
  .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,41,128,0.07);
    border: 1px solid rgba(26,41,128,0.15);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .badge-pill .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 1.5s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

  h1.hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }
  .hero-title .highlight {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 520px;
  }

  /* ── SPEAKER BOX ── */
  .speaker-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .speaker-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
  }
  .speaker-name { font-size: .95rem; font-weight: 800; color: var(--navy); }
  .speaker-cred { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.5; }
  /* Inside .speaker-box, add min-width:0 to the text wrapper */
.speaker-box > div:last-child { min-width: 0; }

  /* ── DATE CARDS ── */
  .date-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
  .date-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    flex: 1;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .date-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(26,41,128,0.1); }
  .date-card .dc-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--teal); text-transform: uppercase; }
  .date-card .dc-val   { font-size: .95rem; font-weight: 800; color: var(--navy); margin-top: 4px; }
  .date-card .dc-sub   { font-size: 11px; color: var(--muted); margin-top: 2px; }

  /* ── STATS ── */
  .stats-row { display: flex; gap: 28px; flex-wrap: wrap; }
  .stat-num   { font-size: 1.7rem; font-weight: 900; color: var(--orange); }
  .stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

  /* ── REGISTRATION CARD ── */
  .reg-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 8px 40px rgba(26,41,128,0.1);
    position: relative;
    overflow: hidden;
  }
  .reg-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--teal), var(--orange));
  }
  .free-badge {
    display: inline-block;
    background: #eef9f9;
    color: #0f6e56;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid #9fe1cb;
    margin-bottom: 16px;
  }
  .reg-card-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
  .reg-card-sub   { font-size: 13px; color: var(--muted); margin-bottom: 22px; }

  .form-input {
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    margin-bottom: 10px;
    display: block;
  }
  .form-input::placeholder { color: #94a3b8; }
  .form-input:focus { border-color: var(--teal); background: #fff; }

  .err-msg { color: #e74c3c; font-size: 12px; margin-top: -6px; margin-bottom: 8px; display: none; }
  .err-msg.visible { display: block; }

  .submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
  }
  .submit-btn:hover  { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,41,128,0.3); }
  .submit-btn:active { transform: scale(0.98); }
  .submit-btn:disabled { opacity: 0.75; cursor: not-allowed; transform: none; }

  .privacy-note { text-align: center; font-size: 11px; color: #94a3b8; margin-top: 10px; }

  /* ── SECTIONS ── */
  .section     { padding: 72px 0; background: #fff; }
  .section.alt-bg { background: var(--light-bg); }
  .section-inner  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section-tag    { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--teal); text-transform: uppercase; margin-bottom: 10px; }
  .section-title  { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
  .section-sub    { font-size: .95rem; color: var(--muted); max-width: 540px; line-height: 1.7; margin-bottom: 44px; }

  /* ── FEATURE CARDS ── */
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .feat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  .feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-color1, var(--teal)), var(--fc-color2, var(--navy)));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .feat-card:hover::before { transform: scaleX(1); }
  .feat-icon  { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
  .feat-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .feat-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ── AGENDA ── */
  .agenda-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .agenda-item {
    display: flex; gap: 14px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 20px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .agenda-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
  .agenda-num {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px; color: #fff;
  }
  .agenda-title { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 5px; }
  .agenda-desc  { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* ── PCMM BADGE ── */
  .pcmm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,151,30,0.08);
    border: 1px solid rgba(247,151,30,0.3);
    color: #b45309;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 32px;
  }

  /* ── CTA BANNER ── */
  .cta-box {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 24px; padding: 56px 48px;
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
  }
  .cta-box::before {
    content: ''; position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -80px; right: -60px;
  }
  .cta-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
  .cta-sub   { font-size: .95rem; opacity: .85; margin-bottom: 28px; line-height: 1.6; position: relative; z-index: 1; }
  .cta-btns  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .btn-white {
    background: #fff; color: var(--navy);
    border: none; padding: 14px 32px; border-radius: 50px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); color: var(--navy); }
  .btn-ghost {
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
    padding: 14px 32px; border-radius: 50px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
  }
  .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

  /* ── FOOTER ── */
  .footer { padding: 36px 0; background: #0d1b2a; }
  .footer-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 20px;
  }
  .footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
  .footer-contact { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
  .footer-contact a {
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 13px; display: flex; align-items: center; gap: 6px;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--teal); }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 13px; transition: background 0.2s, color 0.2s;
  }
  .social-link:hover { background: rgba(38,208,206,0.2); color: var(--teal); border-color: rgba(38,208,206,0.4); }

  /* ── FLOATING BUTTONS ── */
  .float-btn {
    position: fixed; bottom: 32px; right: 24px; z-index: 9999;
    background: linear-gradient(135deg, var(--orange), #e67e22);
    color: #fff; border: none; padding: 13px 22px; border-radius: 50px;
    font-weight: 700; font-size: 13px; cursor: pointer;
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(247,151,30,0.4);
    animation: float-pulse 3s ease-in-out infinite;
    font-family: 'Inter', sans-serif;
  }
  .float-btn:hover { color: #fff; animation: none; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(247,151,30,0.5); }
  @keyframes float-pulse { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-5px);} }

  .whatsapp-btn {
    position: fixed; bottom: 92px; right: 24px; z-index: 9999;
    width: 50px; height: 50px; border-radius: 50%;
    background: #25d366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .whatsapp-btn:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.55); }

  .scroll-top {
    position: fixed; bottom: 32px; left: 24px; z-index: 9999;
    width: 42px; height: 42px; border-radius: 50%;
    background: #fff; border: 1px solid var(--border); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; text-decoration: none;
    transition: background 0.2s, opacity 0.3s, box-shadow 0.2s;
    opacity: 0; pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .scroll-top.visible { opacity: 1; pointer-events: all; }
  .scroll-top:hover { background: #eef9f9; color: var(--teal); }
  
  /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .reg-card   { max-width: 560px; margin: 0 auto; }
    }
    
    @media (max-width: 768px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .agenda-grid   { grid-template-columns: repeat(2, 1fr); }
    }
    
    @media (max-width: 600px) {
      .date-row      { flex-direction: column; }
      .stats-row     { gap: 16px; }
      .cta-box       { padding: 36px 24px; }
    
      /* Footer */
      .footer-inner    { flex-direction: column; text-align: center; }
      .footer-contact  { flex-direction: column; align-items: center; }
      .social-links    { justify-content: center; }
    
      /* Float buttons — icon only on small screens */
      .float-btn span  { display: none; }
      .float-btn       { padding: 13px 16px; }
    }
    
    @media (max-width: 480px) {
      .features-grid { grid-template-columns: 1fr; }
      .agenda-grid   { grid-template-columns: 1fr; }
      .hero-inner    { padding: 0 16px; }
    
      /* PCMM badge — allow wrap */
      .pcmm-badge    { flex-wrap: wrap; max-width: 100%; }
    
      /* Float buttons — move up slightly so they don't sit on form */
      .float-btn     { bottom: 20px; right: 16px; }
      .whatsapp-btn  { bottom: 76px; right: 16px; }
    }
