/* ====== RESET ====== */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: #fff;
      background: #050712;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ====== HERO BG ====== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 28px 14px 22px;
      overflow: hidden;
    }
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.40) 45%, rgba(0,0,0,.78) 100%),
        url("img/bg.webp") center/cover no-repeat;
      transform: scale(1.02);
      filter: saturate(1.1) contrast(1.05);
    }
    .hero::after{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(1200px 600px at 50% 70%, rgba(255,188,0,.25), rgba(255,188,0,0) 55%);
      pointer-events:none;
    }

    /* ====== LAYOUT ====== */
    .wrap{
      position: relative;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .top-title{
      text-align:center;
      margin: 0 0 14px;
      line-height: 1.02;
      letter-spacing: .6px;
      text-transform: uppercase;
      text-shadow: 0 6px 22px rgba(0,0,0,.55);
    }
    .top-title .big{
      font-size: clamp(40px, 5.4vw, 74px);
      font-weight: 900;
    }
    .top-title .big .yellow{ color:#f6c536; }
    .top-title .mid{
      margin-top: 6px;
      font-size: clamp(22px, 3.4vw, 44px);
      font-weight: 900;
    }
    .top-title .mid .yellow{ color:#f6c536; }
    .top-title .sub{
      margin-top: 14px;
      font-size: clamp(16px, 1.8vw, 22px);
      font-weight: 700;
      opacity:.95;
      line-height:1.35;
      text-transform:none;
    }
    .top-title .sub .yellow{ color:#f6c536; }

    .grid{
      margin-top: 18px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 26px;
      align-items: end;
    }

    /* ====== SPEAKER ====== */
    .speaker{
      align-self: stretch;
      display:flex;
      justify-content:center;
      align-items:flex-end;
      filter: drop-shadow(0 16px 28px rgba(0,0,0,.55));
    }
    .speaker img{
      width: min(430px, 100%);
      border-radius: 12px;
    }

    /* ====== PANEL ====== */
    .panel{
      background: rgba(10, 10, 10, .40);
      border: 2px solid rgba(255,255,255,.18);
      border-radius: 10px;
      box-shadow: 0 18px 40px rgba(0,0,0,.55);
      padding: 18px 18px 16px;
      backdrop-filter: blur(4px);
    }

    .list{
      list-style: none;
      margin: 0 0 14px;
      padding: 0;
      display: grid;
      gap: 14px;
    }
    .li{
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0,0,0,.55);
    }
    .check{
      width: 28px; height: 28px;
      border-radius: 999px;
      background: radial-gradient(circle at 35% 35%, #bfff7a, #2bb24a 55%, #0e6d2a);
      display:grid;
      place-items:center;
      box-shadow: 0 6px 16px rgba(0,0,0,.35);
      margin-top: 2px;
    }
    .check svg{ width: 18px; height: 18px; }
    .li .yellow{ color:#f6c536; }

    .bar{
      margin: 10px -18px 14px;
      background: linear-gradient(180deg, #f8d75a 0%, #f1b91a 100%);
      color:#151515;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .4px;
      padding: 14px 18px;
      font-size: 22px;
      border-top: 1px solid rgba(255,255,255,.25);
      border-bottom: 1px solid rgba(0,0,0,.35);
      box-shadow: 0 10px 18px rgba(0,0,0,.28);
    }

    .form{
      display:grid;
      gap: 10px;
    }
    .inp{
      width: 100%;
      height: 44px;
      border-radius: 6px;
      border: 1px solid rgba(0,0,0,.55);
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(225,225,225,.92));
      padding: 0 14px;
      font-size: 16px;
      outline: none;
      box-shadow: inset 0 2px 8px rgba(0,0,0,.25);
    }
    .btn{
      height: 56px;
      border: 0;
      border-radius: 6px;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 22px;
      letter-spacing: .4px;
      color: #fff;
      background: linear-gradient(180deg, #d93b2f 0%, #a51410 100%);
      box-shadow: 0 10px 0 rgba(0,0,0,.35), 0 18px 34px rgba(0,0,0,.55);
      text-shadow: 0 3px 12px rgba(0,0,0,.55);
      transition: transform .08s ease, filter .12s ease;
    }
    .btn:active{ transform: translateY(2px); filter: brightness(.98); }

    .note{
      margin-top: 10px;
      font-size: 12.5px;
      opacity: .85;
      line-height: 1.45;
    }

    /* ====== BOTTOM ICONS ====== */
    .facts{
      margin-top: 22px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: start;
    }
    .fact{
      display:grid;
      justify-items:center;
      gap: 8px;
      text-align:center;
      padding: 10px 8px 0;
      text-shadow: 0 2px 12px rgba(0,0,0,.55);
    }
    .fact img{
      width: 78px;
      filter: drop-shadow(0 10px 14px rgba(0,0,0,.35));
    }
    .fact .t{
      font-weight: 900;
      font-size: 14px;
      opacity: .95;
      line-height: 1.25;
    }
    .fact .t .yellow{ color:#f6c536; }


    /* ====== BELOW HERO SECTIONS ====== */
    .content{
      position: relative;
      background: radial-gradient(900px 380px at 50% 0%, rgba(255,188,0,.12), rgba(255,188,0,0) 55%),
                  linear-gradient(180deg, #050712 0%, #070b1a 30%, #050712 100%);
      padding: 46px 14px 22px;
    }
    .section{ padding: 26px 0 36px; }
    .h2{
      margin: 0 0 10px;
      font-size: clamp(24px, 2.6vw, 34px);
      font-weight: 900;
      letter-spacing: .2px;
      text-transform: uppercase;
      color: #fff;
      text-shadow: 0 4px 14px rgba(0,0,0,.55);
    }
    .lead{
      margin: 0 0 18px;
      font-size: 16px;
      line-height: 1.55;
      color: rgba(255,255,255,.86);
      max-width: 860px;
    }
    .h3{
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: .2px;
    }
    .cards{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .card{
      grid-column: span 6;
      background: rgba(10,10,10,.35);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
      padding: 16px 16px 14px;
      box-shadow: 0 16px 34px rgba(0,0,0,.45);
      backdrop-filter: blur(4px);
    }
    .card p{
      margin: 0;
      color: rgba(255,255,255,.84);
      line-height: 1.55;
      font-size: 14.8px;
    }

    .bonus-grid{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
      margin-top: 10px;
    }
    .bonus{
      grid-column: span 4;
      display:flex;
      gap: 12px;
      align-items: flex-start;
      background: rgba(10,10,10,.35);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
      padding: 16px;
      box-shadow: 0 16px 34px rgba(0,0,0,.45);
      backdrop-filter: blur(4px);
    }
    .badge{
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
      border-radius: 12px;
      display:grid;
      place-items:center;
      font-weight: 900;
      color: #141414;
      background: linear-gradient(180deg, #f8d75a 0%, #f1b91a 100%);
      box-shadow: 0 10px 20px rgba(0,0,0,.35);
    }
    .bonus p{
      margin: 0;
      color: rgba(255,255,255,.84);
      line-height: 1.55;
      font-size: 14.8px;
    }

    .cta{ margin-top: 22px; }

    .cta--between{ padding: 6px 0 6px; }

    .cta__box{
      display:flex;
      gap: 14px;
      align-items:center;
      justify-content: space-between;
      padding: 16px 16px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.16);
      background: linear-gradient(180deg, rgba(255,195,54,.18), rgba(10,10,10,.35));
      box-shadow: 0 18px 40px rgba(0,0,0,.5);
      backdrop-filter: blur(4px);
    }
    .cta__title{
      font-weight: 900;
      font-size: 18px;
      margin-bottom: 4px;
    }
    .cta__sub{
      color: rgba(255,255,255,.84);
      font-size: 14.6px;
      line-height: 1.5;
      max-width: 720px;
    }
    .cta__btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 12px 18px;
      border-radius: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .3px;
      color: #151515;
      background: linear-gradient(180deg, #f8d75a 0%, #f1b91a 100%);
      box-shadow: 0 12px 0 rgba(0,0,0,.32), 0 18px 34px rgba(0,0,0,.45);
      white-space: nowrap;
    }
    .cta__btn:active{ transform: translateY(2px); }
    .cta--center{ display:flex; justify-content:center; }
    .cta__btn--big{ padding: 16px 22px; border-radius: 12px; }

    .faq{ display:grid; gap: 12px; margin-top: 8px; }
    .qa{
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(10,10,10,.35);
      box-shadow: 0 16px 34px rgba(0,0,0,.45);
      backdrop-filter: blur(4px);
      overflow: hidden;
    }
    .qa summary{
      list-style: none;
      cursor: pointer;
      padding: 14px 16px;
      font-weight: 900;
      outline: none;
      position: relative;
    }
    .qa summary::-webkit-details-marker{ display:none; }
    .qa summary::after{
      content:"+";
      position:absolute;
      right: 14px;
      top: 10px;
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display:grid;
      place-items:center;
      color:#151515;
      background: linear-gradient(180deg, #f8d75a 0%, #f1b91a 100%);
      box-shadow: 0 10px 18px rgba(0,0,0,.35);
      font-weight: 900;
    }
    .qa[open] summary::after{ content:"–"; }
    .ans{
      padding: 0 16px 14px;
      color: rgba(255,255,255,.84);
      line-height: 1.55;
      font-size: 14.8px;
    }

    .footer{
      padding: 22px 14px 34px;
      background: #04050c;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer__grid{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
    }
    .brand{
      display:flex;
      gap: 12px;
      align-items:center;
    }
    .brand__logo{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display:grid;
      place-items:center;
      font-weight: 900;
      color:#151515;
      background: linear-gradient(180deg, #f8d75a 0%, #f1b91a 100%);
      box-shadow: 0 10px 18px rgba(0,0,0,.35);
    }
    .brand__name{ font-weight: 900; }
    .brand__copy{ color: rgba(255,255,255,.65); font-size: 13px; margin-top: 2px; }

    .footer__links{
      display:flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .fl{
      color: rgba(255,255,255,.78);
      font-size: 14px;
      border-bottom: 1px dashed rgba(255,255,255,.22);
      padding-bottom: 2px;
    }
    .fl:hover{ color: rgba(255,255,255,.95); }

    @media (max-width: 900px){
      .speaker{ display:none; }
      .sticky-cta{ display:block; }
      body{ padding-bottom: 86px; }
      .card{ grid-column: span 12; }
      .bonus{ grid-column: span 12; }
      .cta__box{ flex-direction: column; align-items: stretch; }
      .cta__btn{ width: 100%; }
      .footer__grid{ flex-direction: column; align-items: flex-start; }
      .footer__links{ justify-content: flex-start; }
    }


    /* ====== CTA WITHOUT INPUTS ====== */
    .formless{ display:grid; gap: 10px; }

    /* ====== STICKY CTA (MOBILE) ====== */
    .sticky-cta{
      position: fixed;
      left: 0; right: 0; bottom: 0;
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      background: linear-gradient(180deg, rgba(5,7,18,.0) 0%, rgba(5,7,18,.92) 22%, rgba(5,7,18,.98) 100%);
      backdrop-filter: blur(6px);
      display:none;
      z-index: 50;
    }
    .sticky-cta__btn{
      width: 100%;
      height: 54px;
      border: 0;
      border-radius: 12px;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 18px;
      letter-spacing: .3px;
      color: #fff;
      background: linear-gradient(180deg, #d93b2f 0%, #a51410 100%);
      box-shadow: 0 12px 0 rgba(0,0,0,.35), 0 18px 34px rgba(0,0,0,.55);
      text-shadow: 0 3px 12px rgba(0,0,0,.55);
    }
    .sticky-cta__btn:active{ transform: translateY(2px); }

    /* ====== MODAL ====== */
    .modal{ position: fixed; inset: 0; display:none; z-index: 60; }
    .modal.is-open{ display:block; }
    .modal__backdrop{
      position:absolute; inset:0;
      background: rgba(0,0,0,.68);
      backdrop-filter: blur(3px);
    }
    .modal__dialog{
      position: relative;
      width: min(520px, calc(100% - 24px));
      margin: 10vh auto 0;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(10,10,10,.92);
      box-shadow: 0 28px 70px rgba(0,0,0,.7);
      padding: 18px 18px 16px;
    }
    .modal__close{
      position:absolute;
      right: 10px; top: 8px;
      width: 40px; height: 40px;
      border: 0;
      border-radius: 12px;
      cursor:pointer;
      color:#fff;
      font-size: 26px;
      line-height: 40px;
      background: rgba(255,255,255,.08);
    }
    .modal__title{
      font-weight: 900;
      font-size: 18px;
      margin: 2px 42px 10px 0;
      text-transform: uppercase;
      letter-spacing: .2px;
    }
    .modal__text{
      color: rgba(255,255,255,.84);
      line-height: 1.55;
      font-size: 14.8px;
      margin-bottom: 14px;
    }
    .modal__actions{ display:flex; justify-content:flex-end; }
    .modal-open{ overflow: hidden; }


    /* ====== LARGE SCREENS TUNING (19"+) ====== */
    @media (min-width: 1200px){
      .wrap{ max-width: 1280px; }
      .hero{ padding-top: 44px; padding-bottom: 34px; }
      .top-title{ margin-bottom: 18px; }
      .grid{
        grid-template-columns: 520px 560px;
        justify-content: center;
        gap: 34px;
        align-items: center;
      }
      .speaker{ justify-content: flex-end; }
      .speaker img{ width: 520px; }
      .panel{ padding: 20px 20px 18px; }
      .li{ font-size: 19px; }
      .bar{ font-size: 24px; }
      .btn{ height: 60px; font-size: 24px; }
    }
    @media (min-width: 1600px){
      .wrap{ max-width: 1380px; }
      .grid{ grid-template-columns: 560px 620px; gap: 44px; }
      .speaker img{ width: 560px; }
    }

    /* Add a subtle 'stage' behind speaker+panel on wide screens */
    .stage{
      position: relative;
      margin-top: 18px;
      padding: 18px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.10));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 26px 70px rgba(0,0,0,.45);
      backdrop-filter: blur(2px);
    }
    @media (max-width: 900px){
      .stage{ padding: 0; background: transparent; border: 0; box-shadow: none; }
    }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 900px){
      .grid{ grid-template-columns: 1fr; gap: 18px; }
      .speaker{ order: 2; }
      .panel{ order: 1; }
      .facts{ grid-template-columns: 1fr; gap: 12px; }
      .fact{ padding: 6px 0 0; }
    }
