
  /* ==================================================
     GLOBAL STYLES
  ================================================== */
  :root {
    --page: #f3f0e8;
    --page-2: #ebe5d9;
    --surface: #fffdf8;
    --surface-soft: #f8f5ee;
    --surface-blue: #eef5f6;
    --ink: #102033;
    --ink-2: #1c2f46;
    --muted: #667085;
    --muted-2: #8a94a6;
    --line: #ded7ca;
    --line-strong: #c8bdac;
    --primary: #183b63;
    --primary-2: #0f766e;
    --primary-dark: #0b223b;
    --accent: #b8873a;
    --accent-soft: #f4ead8;
    --success: #207a56;
    --success-soft: #e3f3ea;
    --warning: #a76522;
    --warning-soft: #fff2df;
    --danger: #be3e3e;
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-sm: 0 10px 24px rgba(17, 35, 58, .07);
    --shadow-md: 0 18px 44px rgba(17, 35, 58, .10);
    --shadow-lg: 0 26px 70px rgba(17, 35, 58, .14);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    line-height: 1.58;
    padding: 0;
    min-height: 100vh;
    background:
      radial-gradient(circle at 10% 8%, rgba(15,118,110,.12), transparent 30%),
      radial-gradient(circle at 88% 12%, rgba(184,135,58,.15), transparent 30%),
      linear-gradient(135deg, var(--page) 0%, #fbf8f1 44%, var(--page-2) 100%);
    overflow-x: hidden;
    width: 100%;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
      linear-gradient(rgba(16,32,51,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16,32,51,.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.32), rgba(0,0,0,.04));
  }
  body::after {
    content: "";
    position: fixed;
    width: 540px;
    height: 540px;
    right: -280px;
    bottom: -280px;
    background: radial-gradient(circle, rgba(24,59,99,.14), transparent 68%);
    z-index: -1;
    pointer-events: none;
  }
  ::selection {
    background: rgba(15,118,110,.20);
    color: var(--ink);
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .container {
    width: min(1180px, 100% - 32px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
    position: relative;
  }

  /* ---------- REUSABLE ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
    letter-spacing: -.01em;
    min-height: 46px;
    box-shadow: none;
    position: relative;
  }
  .btn:hover {
    transform: translateY(-2px);
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(15,118,110,.20);
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, #0f3158 0%, #0b625d 100%);
    box-shadow: 0 18px 38px rgba(15,118,110,.24);
    color: #fff;
  }
  .btn-secondary {
    background: #eef5f6;
    color: var(--primary);
    border-color: #d3e4e5;
  }
  .btn-secondary:hover {
    background: #e2eff0;
    border-color: #aacccd;
    color: #0f3158;
  }
  .btn-outline {
    background: rgba(255,253,248,.72);
    border-color: var(--line-strong);
    color: var(--ink-2);
    box-shadow: var(--shadow-sm);
  }
  .btn-outline:hover {
    background: #fff;
    border-color: var(--primary-2);
    color: var(--primary-2);
  }
  .btn-block {
    width: 100%;
    text-align: center;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid transparent;
  }
  .tag-blue {
    background: #e8f1f2;
    color: var(--primary);
    border-color: #cddfe1;
  }
  .tag-green {
    background: var(--success-soft);
    color: var(--success);
    border-color: #c5e7d2;
  }
  .tag-orange {
    background: var(--warning-soft);
    color: var(--warning);
    border-color: #efd3aa;
  }
  .tag-outline {
    background: #fffdf8;
    color: #49566a;
    border-color: var(--line);
  }

  .glow-text,
  .hero h1 .highlight {
    color: #ff0000 !important;
    text-shadow: none !important;
  }

  /* ---------- NAV ---------- */
  nav{
        position: fixed;
        top:0;
        left:0;
        width:100%;
        height:80px;
        padding:0 40px;

        display:flex;
        justify-content:space-between;
        align-items:center;

        background:transparent;
        backdrop-filter:none;
        border-bottom:1px solid transparent;
        box-shadow:none;

        z-index:9999;
        transition:all .35s ease;
    }
    nav.scrolled{
        background:rgba(255,255,255,.92);
        backdrop-filter:blur(18px);
        -webkit-backdrop-filter:blur(18px);

        border-bottom:1px solid rgba(0,0,0,.08);

        box-shadow:
            0 10px 35px rgba(0,0,0,.08);
    }
  nav img {
    height: 50px !important;
    width: auto !important;
    max-width: 210px;
    object-fit: contain;
    padding: 6px 10px;

  }
  .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.3px;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
  }
  .logo span {
    color: var(--primary-2);
  }
  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* ---------- SECTIONS ---------- */
  section {
    padding: 62px 0;
    position: relative;
  }
  .section-header {
    text-align: center;
    margin-bottom: 44px;
  }
  .section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 850;
    letter-spacing: -.035em;
    color: var(--ink) !important;
    line-height: 1.15;
  }
  .section-header .sub {
    font-size: 17px;
    color: var(--muted) !important;
    max-width: 640px;
    margin: 12px auto 0;
    line-height: 1.75;
  }

  /* ---------- HERO ---------- */
  .hero {
    background: transparent;
    padding-top: 112px;
    padding-bottom: 32px;
  }
  .hero .container {
    padding: 0 22px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(0,390px);
    gap: 52px;
    align-items: start;
    padding: 24px 0;
  }
  .hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 850;
    letter-spacing: -2px;
    line-height: 1.08;
    color: #fff !important;
    max-width: 760px;
  }
  .hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: #fefefe !important;
    max-width: 570px;
    margin: 24px 0 30px;
    line-height: 1.76;
  }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 0;
    background: var(--surface);
    padding: 8px;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-width: 640px;
    overflow: hidden;
  }
  .proof-item {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    border-right: 1px solid #eee7dc;
    min-width: 0;
  }
  .proof-item:last-child {
    border-right: none;
  }
  .proof-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 27px;
    font-weight: 850;
    color: var(--primary) !important;
    letter-spacing: -.04em;
  }
  .proof-label {
    font-size: 13px;
    color: var(--muted) !important;
  }

  /* ---------- REGISTER CARD ---------- */
  .register-card {
    background:
      linear-gradient(180deg, rgba(16,32,51,.98), rgba(24,59,99,.96)),
      var(--primary-dark);
    border-radius: 30px;
    padding: 30px 26px;
    border: 1px solid rgba(255,255,255,.13);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 104px;
    overflow: hidden;
    color: #fff;
    width: 100%;
  }
  .register-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 0%, rgba(184,135,58,.22), transparent 32%),
      linear-gradient(135deg, transparent 42%, rgba(255,255,255,.08));
    pointer-events: none;
  }
  .register-card > * {
    position: relative;
    z-index: 1;
  }
  .register-card .tag-orange {
    background: rgba(184,135,58,.18);
    border-color: rgba(184,135,58,.46);
    color: #ffe1ae;
  }
  .price-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(38px, 6vw, 54px);
    font-weight: 850;
    color: #fff !important;
    line-height: 1;
    letter-spacing: -.05em;
  }
  .price-strike {
    font-size: 20px;
    color: rgba(255,255,255,.54) !important;
    text-decoration: line-through;
    margin-left: 8px;
  }
  .register-card p {
    color: rgba(255,255,255,.68) !important;
  }
  .meta-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 14px;
  }
  .meta-row:last-child {
    border-bottom: none;
  }
  .meta-icon {
    font-size: 18px;
    flex-shrink: 0;
  }
  .meta-label {
    font-weight: 800;
    color: #fff !important;
  }
  .meta-val {
    color: rgba(255,255,255,.66) !important;
  }
  .seats-left {
    font-weight: 800;
    font-size: 14px;
    color: #ffe1ae !important;
    background: rgba(184,135,58,.16);
    border: 1px solid rgba(184,135,58,.34);
    padding: 11px;
    border-radius: 999px;
    text-align: center;
    margin: 17px 0;
  }
  .register-card .btn-primary {
    background: linear-gradient(135deg,#d0a153,#b8873a);
    color: #111827;
    box-shadow: 0 16px 34px rgba(184,135,58,.25);
  }
  .register-card .btn-primary:hover {
    background: linear-gradient(135deg,#e0bb71,#b8873a);
    color: #111827;
  }
  .register-card .btn-secondary {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.16);
    color: #fff;
  }
  .trust-strip {
    display: flex;
    gap: 10px 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255,255,255,.68) !important;
  }

  /* ---------- WHO SHOULD ATTEND ---------- */
  #who-should-attend {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background:
      radial-gradient(circle at 0% 0%, rgba(59,130,246,.10), transparent 40%),
      radial-gradient(circle at 100% 100%, rgba(34,197,94,.08), transparent 40%),
      linear-gradient(135deg,#f8fbff 0%,#f4f9ff 45%,#ffffff 100%);
  }
  #who-should-attend::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,.12), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
  }
  #who-should-attend::after {
    content: "";
    position: absolute;
    bottom: -220px;
    right: -220px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,163,74,.10), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
  }
  #who-should-attend .container {
    position: relative;
    z-index: 2;
  }
  #who-should-attend .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  #who-should-attend .section-header h2 {
    font-size: clamp(28px, 4.5vw, 48px);
    line-height: 1.2;
    margin-bottom: 15px;
  }
  #who-should-attend .section-header .sub {
    max-width: 760px;
    margin: auto;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
  }
  .who-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(280px,1fr));
    gap: 30px;
    align-items: stretch;
  }
  #who-should-attend .benefit-card {
    height: 100%;
    border-radius: 24px;
    padding: 35px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  #who-should-attend .benefit-card h3 {
    line-height: 1.3;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    margin-bottom: 25px;
  }
  #who-should-attend .benefit-card div {
    word-break: break-word;
    font-size: clamp(14px, 2vw, 17px);
  }
  .who-cta-box {
    margin-top: 40px;
    width: 100%;
    background: linear-gradient(135deg,#16a34a,#15803d);
    border-radius: 28px;
    padding: clamp(28px,5vw,45px) clamp(20px,4vw,35px);
    text-align: center;
    box-shadow: 0 20px 50px rgba(22,163,74,.25);
    color: #fff;
  }
  .who-cta-box h3 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
  }
  .who-cta-box p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255,255,255,.92);
    max-width: 720px;
    margin: 0 auto 35px;
  }
  .who-cta-box .btn {
    background: #fff;
    color: #15803d;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: clamp(14px, 2vw, 17px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
  }

  /* ---------- WHAT YOU GET ---------- */
  .block .container {
    padding: 0 22px;
  }
  .what-you-get {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin: 0;
  }
  .what-you-get .item {
    background: #F3F4F0;
    border-radius: 20px;
    padding: 28px 18px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e4e5e0;
  }
  .what-you-get .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }
  .what-you-get .item .emoji-big {
    font-size: 34px;
    display: block;
    margin-bottom: 10px;
  }
  .what-you-get .item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111214;
  }
  .what-you-get .item p {
    font-size: 13.5px;
    color: #6B7280;
    line-height: 1.6;
  }

  /* ---------- AGENDA ---------- */
  .agenda-section,
  .upi-section,
  .form-section,
  .faq-section {
    background: rgba(255,253,248,.72);
    border: 1px solid rgba(222,215,202,.82);
    border-radius: 42px;
    margin: 24px auto;
    padding: 54px 0;
    max-width: 1230px;
    box-shadow: var(--shadow-sm);
  }
  .agenda-list {
    max-width: 880px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 12px 28px;
    box-shadow: var(--shadow-md);
  }
  .agenda-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #eee7dc;
  }
  .agenda-item:last-child {
    border-bottom: none;
  }
  .agenda-time {
    font-weight: 900;
    color: var(--primary-2) !important;
    font-size: 14px;
    padding-top: 4px;
    letter-spacing: .02em;
  }
  .agenda-title {
    font-weight: 850;
    font-size: clamp(15px, 2vw, 18px);
    color: var(--ink) !important;
    letter-spacing: -.02em;
  }
  .agenda-desc {
    font-size: 14px;
    color: var(--muted) !important;
    line-height: 1.75;
    margin-top: 4px;
  }

  /* ---------- STEPS ---------- */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
    margin-top: 32px;
  }
  .step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .22s ease;
  }
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .step-num {
    font-size: 12px;
    font-weight: 900;
    color: var(--accent) !important;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .step-icon {
    width: 56px;
    height: 56px;
    margin: 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid #ecd7b2;
    border-radius: 18px;
    font-size: 28px;
  }
  .step-title {
    font-weight: 850;
    font-size: 18px;
    color: var(--ink) !important;
    letter-spacing: -.02em;
  }
  .step-desc {
    font-size: 13px;
    color: var(--muted) !important;
    line-height: 1.75;
    margin-top: 6px;
  }

  /* ---------- UPI ---------- */
  .upi-inner {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(280px,420px);
    gap: 48px;
    align-items: center;
  }
  .upi-inner h2 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(26px, 3.7vw, 40px) !important;
    font-weight: 850 !important;
    letter-spacing: -.04em !important;
    color: var(--ink) !important;
    line-height: 1.15 !important;
  }
  .upi-inner p {
    color: var(--muted) !important;
  }
  .bank-details {
    background: #fff8ea;
    border: 1px solid #efd9af;
    border-left: 5px solid var(--accent);
    border-radius: 20px;
    padding: 18px 20px;
    margin: 20px 0 16px;
    color: #4d3a1d;
    box-shadow: var(--shadow-sm);
  }
  .bank-details p {
    font-size: 14px;
    margin: 6px 0;
    color: #4d3a1d !important;
    word-break: break-word;
  }
  .qr-box {
    background: linear-gradient(180deg,#fffdf8,#f7f1e7);
    border-radius: 30px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    width: 100%;
  }
  .qr-placeholder {
    width: 178px;
    height: 178px;
    margin: 0 auto 18px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d0c2;
    box-shadow: inset 0 0 0 8px #f5f0e8, var(--shadow-sm);
  }
  .qr-placeholder img {
    display: block;
    width: 100%;
    max-width: 142px;
    height: auto;
    object-fit: contain;
  }
  .upi-id-box {
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 10px 12px 10px 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink);
    flex-wrap: wrap;
  }
  .copy-btn {
    background: var(--primary);
    border: none;
    border-radius: 999px;
    padding: 7px 16px;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
  }
  .payment-wait-msg {
    display: none;
    background: var(--warning-soft);
    border-radius: 22px;
    padding: 18px 22px;
    margin-top: 18px;
    color: #7b4215 !important;
    border: 1px solid #efd3aa;
  }

  /* ---------- FORM ---------- */
  .reg-form {
    max-width: 760px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 30px;
    padding: 42px 38px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .form-group.full {
    grid-column: 1 / -1;
  }
  .form-group label {
    font-weight: 800;
    font-size: 13px;
    color: var(--ink-2) !important;
    display: block;
    margin-bottom: 7px;
  }
  .req {
    color: var(--danger) !important;
  }
  input, select, textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d7cebf;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    color: var(--ink);
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--primary-2);
    outline: none;
    box-shadow: 0 0 0 4px rgba(15,118,110,.10);
    background: #fff;
  }
  .form-section-title {
    grid-column: 1 / -1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 850;
    color: var(--primary) !important;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee7dc;
    letter-spacing: -.02em;
  }
  .form-section-title:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  .option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 10px 0 4px;
  }
  .option-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 650;
    font-size: 13px;
    color: #39475b !important;
    margin: 0;
    background: #f9f6ef;
    border: 1px solid #ddd4c5;
    border-radius: 999px;
    padding: 9px 12px;
    transition: .2s ease;
  }
  .option-group label:hover {
    background: #eef5f6;
    border-color: #bfd8d9;
  }
  .option-group input[type="checkbox"] {
    width: auto;
    padding: 0;
    accent-color: var(--primary-2);
  }
  .consent-box {
    grid-column: 1 / -1;
    background: #f9f6ef;
    border: 1px solid #ddd4c5;
    border-radius: 20px;
    padding: 18px;
  }
  .consent-box label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 650;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 10px;
    color: #39475b !important;
  }
  .consent-box input {
    width: auto;
    margin-top: 3px;
    accent-color: var(--primary-2);
  }
  .success-msg {
    display: none;
    background: var(--success-soft);
    border-radius: 22px;
    padding: 18px 22px;
    margin-top: 18px;
    color: #14583e !important;
    border: 1px solid #bde2ca;
  }
  .bonus-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }
  .bonus-links a {
    text-decoration: none;
    color: var(--primary) !important;
    background: #eef5f6;
    border: 1px solid #d3e4e5;
    border-radius: 14px;
    padding: 11px 12px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
  }
  .bonus-links a:hover {
    background: #e2eff0;
  }

  /* ---------- SPEAKER ---------- */
  .speaker-card {
    background: var(--surface);
    border-radius: 30px;
    padding: 38px 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border: 1px solid var(--line);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
  }
  .speaker-avatar {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    background: linear-gradient(135deg,var(--primary),var(--primary-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    font-weight: 850;
    flex-shrink: 0;
    box-shadow: 0 16px 30px rgba(15,118,110,.18);
  }
  .speaker-name {
    font-weight: 850;
    font-size: 22px;
    color: var(--ink) !important;
    letter-spacing: -.02em;
  }
  .speaker-title {
    font-size: 14px;
    color: var(--muted) !important;
    margin-bottom: 9px;
  }
  .speaker-bio {
    font-size: 14px;
    color: #46556a !important;
    line-height: 1.78;
  }

  /* ---------- FAQ ---------- */
  .faq-list {
    max-width: 760px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 8px 28px;
    box-shadow: var(--shadow-md);
  }
  .faq-item {
    border-bottom: 1px solid #eee7dc;
    padding: 20px 0;
  }
  .faq-item:last-child {
    border-bottom: none;
  }
  .faq-q {
    font-weight: 850;
    font-size: clamp(15px, 2vw, 17px);
    color: var(--ink) !important;
    width: 100%;
    padding: 0;
    background: none;
    border: 0;
    text-align: left;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    letter-spacing: -.02em;
  }
  .faq-q::after {
    content: '+';
    min-width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #eef5f6;
    border: 1px solid #d3e4e5;
    color: var(--primary-2) !important;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .faq-item.open .faq-q::after {
    content: '−';
  }
  .faq-a {
    font-size: 14px;
    color: var(--muted) !important;
    line-height: 1.78;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .faq-item.open .faq-a {
    max-height: 260px;
    margin-top: 10px;
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
    text-align: center;
    padding: 20px 0 40px;
  }
  .final-cta .container {
    background: linear-gradient(135deg,var(--primary-dark),var(--primary));
    color: #fff;
    border-radius: 34px;
    padding: clamp(30px,6vw,46px) clamp(20px,5vw,34px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 600px;
    position: relative;
  }
  .final-cta .container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 8%, rgba(184,135,58,.28), transparent 34%);
    pointer-events: none;
  }
  .final-cta .container > * {
    position: relative;
    z-index: 1;
  }
  .final-cta h2 {
    color: #fff !important;
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
  }
  .final-cta p {
    color: rgba(255,255,255,.72) !important;
    margin: 20px 0 28px;
    line-height: 1.7;
  }
  .final-cta .btn-primary {
    background: linear-gradient(135deg,#d0a153,#b8873a);
    color: #111827;
    box-shadow: 0 16px 34px rgba(184,135,58,.24);
  }
  .final-cta .glow-text {
    color: #ffe0a7 !important;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--surface);
    border-radius: 30px;
    padding: 34px 24px;
    margin: 34px auto 22px;
    max-width: 1180px;
    width: min(1180px,100% - 32px);
    text-align: center;
    border: 1px solid var(--line);
    color: var(--muted) !important;
    box-shadow: var(--shadow-sm);
  }
  footer a {
    color: var(--ink-2) !important;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 750;
  }
  footer a:hover {
    color: var(--primary-2) !important;
  }
  footer strong {
    color: var(--ink) !important;
  }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    background: #1f8f5f;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 16px 36px rgba(31,143,95,.26);
    text-decoration: none;
    border: 3px solid rgba(255,255,255,.86);
  }

  /* ---------- LOADING ANIMATION ---------- */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* ==================================================
     RESPONSIVE
  ================================================== */
  @media (max-width: 992px) {
    nav {
      position: relative;
      top: auto;
      height: auto;
      padding: 14px 20px;
    }
    .hero {
      padding-top: 24px;
    }
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .hero-content {
      text-align: center;
    }
    .hero-actions {
      justify-content: center;
    }
    .hero-proof {
      max-width: 560px;
      margin: 0 auto;
    }
    .register-card {
      position: relative;
      top: auto;
      max-width: 520px;
      margin: 0 auto;
      width: 100%;
    }
    .who-grid {
      grid-template-columns: 1fr;
    }
    .upi-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .qr-box {
      max-width: 420px;
      margin: 0 auto;
    }
    .steps-grid {
      grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .form-grid {
      grid-template-columns: 1fr;
    }
    .speaker-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: 48px 0;
    }
    nav {
      flex-direction: column;
      gap: 12px;
      border-radius: 0;
    }
    .nav-cta {
      width: 100%;
      justify-content: center;
    }
    .nav-cta .btn {
      flex: 1 1 auto;
      min-width: 120px;
    }
    .hero {
      padding-top: 16px;
    }
    .hero h1 {
      text-align: center;
    }
    .hero-sub {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-actions {
      flex-direction: column;
    }
    .hero-actions .btn {
      width: 100%;
    }
    .hero-proof {
      grid-template-columns: 1fr;
      border-radius: 20px;
    }
    .proof-item {
      border-right: none;
      border-bottom: 1px solid #eee7dc;
      text-align: center;
      align-items: center;
    }
    .proof-item:last-child {
      border-bottom: none;
    }
    #who-should-attend {
      padding: 60px 0;
    }
    .who-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    #who-should-attend .benefit-card {
      padding: 26px;
    }
    .agenda-section, .upi-section, .form-section, .faq-section {
      border-radius: 28px;
      margin: 16px 10px;
      padding: 42px 0;
    }
    .agenda-list, .faq-list {
      padding: 8px 20px;
      border-radius: 22px;
    }
    .agenda-item {
      grid-template-columns: 1fr;
      gap: 8px;
      text-align: left;
    }
    .steps-grid {
      grid-template-columns: 1fr;
    }
    .reg-form {
      padding: 26px 20px;
      border-radius: 24px;
    }
    .bonus-links {
      grid-template-columns: 1fr;
    }
    .upi-id-box {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
      border-radius: 20px;
    }
    .copy-btn {
      width: 100%;
    }
    .wa-float {
      right: 18px;
      bottom: 18px;
      width: 54px;
      height: 54px;
      font-size: 24px;
    }
    .what-you-get {
      grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
      gap: 16px;
    }
    .block {
      padding: 40px 0 !important;
    }
  }

  @media (max-width: 576px) {
    .container {
      width: calc(100% - 24px);
      padding: 0;
    }
    .hero .container {
      padding: 0;
    }
    nav {
      padding: 12px;
    }
    nav img {
      height: 40px !important;
    }
    .price-main {
      font-size: 38px;
    }
    .register-card {
      padding: 22px;
      border-radius: 22px;
    }
    .section-header h2 {
      font-size: 26px;
    }
    .btn {
      width: 100%;
    }
    .who-cta-box {
      padding: 26px 18px;
    }
    .who-cta-box h3 {
      font-size: 24px;
    }
    .qr-placeholder {
      width: 150px;
      height: 150px;
    }
    .qr-placeholder img {
      max-width: 118px;
    }
    footer {
      padding: 26px 18px;
      border-radius: 22px;
    }
    footer a {
      display: inline-block;
      margin: 4px 8px;
    }
    .what-you-get {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .what-you-get .item {
      padding: 20px 12px 16px;
    }
    .what-you-get .item .emoji-big {
      font-size: 28px;
    }
    .what-you-get .item h4 {
      font-size: 14px;
    }
    .what-you-get .item p {
      font-size: 12px;
    }
    .block {
      padding: 32px 0 !important;
    }
  }

  @media (max-width: 400px) {
    .hero h1 {
      font-size: 28px;
      letter-spacing: -1px;
    }
    .hero-sub {
      font-size: 14.5px;
    }
    .price-main {
      font-size: 34px;
    }
    .tag {
      font-size: 10px;
      padding: 6px 10px;
    }
    .btn {
      font-size: 14px;
      padding: 12px 18px;
    }
    .section-header h2 {
      font-size: 24px;
    }
    .step-icon {
      width: 48px;
      height: 48px;
      font-size: 22px;
    }
    .benefit-card, .step-card {
      padding: 22px 18px;
    }
    .block {
      padding: 28px 0 !important;
    }
  }

  @media (max-width: 360px) {
    .hero h1 {
      font-size: 25px;
    }
    .section-header h2 {
      font-size: 22px;
    }
    .price-main {
      font-size: 30px;
    }
    .speaker-avatar {
      width: 64px;
      height: 64px;
      font-size: 24px;
    }
    .reg-form {
      padding: 18px 14px;
    }
    .block {
      padding: 24px 0 !important;
    }
  }

  .hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background: url("assets/3.png") center 10% / cover no-repeat;

    opacity: 0.3;   
    z-index: 0;
}

.hero::after{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(18, 2, 2, 0.45)
    );

    z-index: -1;
}
