:root{
  --bg:#f6f7fb;
  --panel:rgba(0,0,0,.04);
  --panel2:rgba(0,0,0,.06);
  --text:rgba(12,16,24,.92);
  --muted:rgba(12,16,24,.72);
  --muted2:rgba(12,16,24,.58);
  --line:rgba(12,16,24,.14);
  --brand:#1a73e8;
  --brand2:#6f42c1;
  --good:#1f9d55;
  --shadow:0 18px 45px rgba(0,0,0,.10);
}

/* Light background + subtle tint */
html { scroll-padding-top: 90px; }


body{
  background:
    radial-gradient(1100px 800px at 12% -10%, rgba(26,115,232,.14), transparent 60%),
    radial-gradient(1100px 900px at 95% 10%, rgba(111,66,193,.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f7fb 45%, #ffffff 100%);
  color:var(--text);
font-family: Arial, Helvetica, sans-serif;	
}

/* Sticky header should feel “glass” but light */
.topbar{
  background: rgba(246,247,251,.78);
  border-bottom:1px solid var(--line);
}

/* Cards should read clean on light */
.card{
  background: linear-gradient(180deg, rgba(0,0,0,.035), rgba(0,0,0,.02));
  border:1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
}

/* Buttons: keep punchy contrast */
.btn{
  border:1px solid rgba(0,0,0,.14);
  background: rgba(0,0,0,.03);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.btn:hover{background:rgba(0,0,0,.05); border-color:rgba(0,0,0,.18)}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: rgba(255,255,255,.95);
  box-shadow: 0 12px 30px rgba(26,115,232,.18), 0 16px 45px rgba(111,66,193,.12);
}

/* Keep the “quote marks” visible on light */
.quote-mini:before, .t:before{opacity:.12}

/* Modal overlay should still dim */
.modal{background: rgba(0,0,0,.55)}

/* Optional: make the sticky bar look clean on light */
.sticky-cta .bar{
  background: rgba(246,247,251,.85);
  border:1px solid rgba(0,0,0,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}

*{box-sizing:border-box}
    a{color:inherit}
    .wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(11,15,20,.74);
      border-bottom:1px solid var(--line);
    }
    .topbar .row{
      display:flex; gap:14px; align-items:center; justify-content:space-between;
      padding:10px 0;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-weight:900; letter-spacing:.2px;
    }
    .logo{
      width:34px; height:34px; border-radius:10px;
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.12);
      overflow:hidden;
      display:grid; place-items:center;
      box-shadow: 0 10px 28px rgba(0,0,0,.35);
      flex:0 0 auto;
    }
    .logo img{width:100%; height:100%; object-fit:cover}
    nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
    nav a{
      text-decoration:none; color:var(--muted);
      padding:8px 10px; border-radius:12px;
    }
    nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
    .btn{
      border:1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.06);
      color:var(--text);
      padding:12px 16px;
      border-radius:14px;
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      cursor:pointer;
      transition: transform .06s ease, background .12s ease, border-color .12s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,.25);
      font-weight:800;
      letter-spacing:.1px;
      user-select:none;
    }
    .btn:hover{background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.28)}
    .btn:active{transform: translateY(1px)}
    .btn.primary{
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      border-color: transparent;
      box-shadow: 0 12px 32px rgba(67,176,255,.18), 0 18px 55px rgba(124,77,255,.14);
    }
    .btn.primary:hover{filter:brightness(1.06)}
    .btn.small{padding:10px 12px; border-radius:12px; font-size:14px}
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.14);
      color:var(--muted);
      font-weight:800;
      letter-spacing:.2px;
    }
    .card{
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.05));
      border:1px solid rgba(255,255,255,.14);
      border-radius: var(--r2);
      box-shadow: var(--shadow);
    }

    /* HERO */
    .hero{ padding:34px 0 18px; }
    .hero-grid{
      display:grid; gap:22px;
      grid-template-columns: 1.05fr .95fr;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      nav{display:none}
    }
    .hero-left{padding:26px}
    .hero-right{padding:18px}
    h1{
      margin:14px 0 10px;
      font-size: 44px;
      line-height:1.05;
      letter-spacing:-.7px;
    }
    @media (max-width: 520px){ h1{font-size: 36px} }
    .sub{ font-size: 18px; color: var(--muted); max-width: 70ch; }
    .bullets{
      margin:14px 0 10px;
      padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .bullets li{ display:flex; gap:10px; align-items:flex-start; color: var(--muted); }
    .check{
      width:22px; height:22px; border-radius:7px;
      background: rgba(70,209,138,.12);
      border:1px solid rgba(70,209,138,.28);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .check svg{width:14px; height:14px; fill: var(--good)}
    .cta{
      display:flex; gap:12px; flex-wrap:wrap;
      margin:18px 0 6px;
      align-items:center;
    }
    .microtrust{
      display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; color:var(--muted2); font-size:14px;
    }
    .microtrust span{
      display:inline-flex; gap:8px; align-items:center;
      padding:8px 10px; border-radius:12px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
    }
    .microtrust svg{width:16px; height:16px; opacity:.9}

    .right-stack{display:grid; gap:12px}
    .videoCard{
      padding:12px;
      border-radius: var(--r2);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.14);
    }
    .videoThumb{
      border-radius: 18px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.25);
      position:relative;
    }
    .videoThumb img{display:block; width:100%; height:auto}
    .playBadge{
      position:absolute; inset:0;
      display:grid; place-items:center;
      background: radial-gradient(circle at center, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 70%);
    }
    .playBadge button{
      border:1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.10);
      color: var(--text);
      padding: 12px 14px;
      border-radius: 999px;
      font-weight:900;
      cursor:pointer;
      display:flex; gap:10px; align-items:center;
      box-shadow: 0 14px 35px rgba(0,0,0,.45);
    }
    .playBadge button:hover{background: rgba(255,255,255,.16)}
    .caption{color:var(--muted2); font-size:13px; padding:8px 6px 0}

    .moduleCard{
      padding:12px;
      border-radius: var(--r2);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.14);
    }
    .tabs{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .tab{
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.05);
      color:var(--muted);
      cursor:pointer;
      font-weight:850;
      user-select:none;
    }
    .tab.active{
      background: linear-gradient(135deg, rgba(67,176,255,.22), rgba(124,77,255,.18));
      border-color: rgba(255,255,255,.24);
      color: var(--text);
    }
    .shot{
      border-radius: 18px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(0,0,0,.18);
    }
    .shot img{display:block; width:100%; height:auto}
    .shotcap{color:var(--muted2); font-size:13px; padding:8px 6px 0}

    .miniQuotes{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      margin-top:14px;
    }
    @media (max-width: 980px){ .miniQuotes{grid-template-columns: 1fr} }
    .quote-mini{
      padding:16px;
      border-radius: var(--r);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      position:relative;
      overflow:hidden;
    }
    .quote-mini:before{
      content:"“";
      position:absolute; top:-10px; left:10px;
      font-size:62px; opacity:.18;
    }
    .quote-mini .text{margin:4px 0 10px; color:var(--text); font-weight:700}
    .quote-mini .who{color:var(--muted2); font-size:13px}
    .note{
      margin-top: 12px;
      color: var(--muted2);
      font-size: 13px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
    }
    .tagrow{margin-top:8px; display:flex; gap:8px; flex-wrap:wrap}
    .tag{
      font-size:12px; color:var(--muted2);
      padding:6px 10px; border-radius:999px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
    }

    section{padding:30px 0}
    .section-title{ font-size: 28px; letter-spacing:-.3px; margin:0 0 10px; }
    .section-sub{color:var(--muted); margin:0 0 16px; max-width: 95ch}

    .steps{
      display:grid; gap:14px;
      grid-template-columns: 1fr 1fr 1fr;
    }
    @media (max-width: 980px){ .steps{grid-template-columns: 1fr} }
    .step{
      padding:18px;
      border-radius: var(--r);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.045));
      border:1px solid rgba(255,255,255,.12);
    }
    .n{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      background: rgba(67,176,255,.14);
      border:1px solid rgba(67,176,255,.28);
      margin-bottom:10px;
    }
    .step h3{margin:0 0 6px}
    .step p{margin:0; color:var(--muted)}

    .grid3{
      display:grid; gap:14px;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 980px){ .grid3{grid-template-columns: 1fr} }
    .box{
      padding:18px;
      border-radius: var(--r);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
    }
    .box h3{margin:0 0 8px; font-size:18px}
    .box p{margin:0; color:var(--muted)}

    .testimonial-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (max-width: 980px){ .testimonial-grid{grid-template-columns: 1fr} }
    .t{
      padding:18px;
      border-radius: var(--r);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      position:relative;
    }
    .t:before{
      content:"“";
      position:absolute; top:6px; left:12px;
      font-size:42px; opacity:.22;
    }
    .t .q{margin:8px 0 10px; color:var(--text); font-weight:850}
    .t .a{margin:0; color:var(--muted); font-size:14.5px; white-space:pre-wrap}
    .t .who{margin-top:12px; color:var(--muted2); font-size:13px}

    .pricing{
      display:grid; gap:14px;
      grid-template-columns: 1.05fr .95fr;
      align-items:start;
    }
    @media (max-width: 980px){ .pricing{grid-template-columns: 1fr} }
    .pricebox{
      padding:20px;
      border-radius: var(--r2);
      background: linear-gradient(180deg, rgba(67,176,255,.12), rgba(255,255,255,.05));
      border:1px solid rgba(255,255,255,.16);
      box-shadow: var(--shadow);
    }
    .price{
      display:flex; align-items:baseline; gap:10px; flex-wrap:wrap;
      margin: 6px 0 0;
    }
    .price .big{font-size:46px; font-weight:980; letter-spacing:-.8px}
    .price .small{color:var(--muted); font-weight:800}
    .stack{margin-top:14px; display:grid; gap:10px}
    .stack div{
      padding:10px 12px; border-radius: 14px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      color:var(--muted);
    }
    .checkout{
      padding:18px;
      border-radius: var(--r2);
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.14);
    }
    .checkout h3{margin:0 0 10px}
    .fine{color:var(--muted2); font-size:13px; margin-top:10px}

    .faq{
      display:grid; gap:10px;
      max-width: 900px;
    }
    details{
      border-radius: 14px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.12);
      padding: 12px 14px;
    }
    summary{cursor:pointer; font-weight:900}
    details p{color:var(--muted); margin:10px 0 0}

    footer{
      border-top: 1px solid var(--line);
      padding: 24px 0 36px;
      color: var(--muted2);
      font-size: 13px;
    }

    .sticky-cta{
      position: fixed; left: 12px; right: 12px; bottom: 12px;
      z-index: 60;
      display:none;
    }
    .sticky-cta .bar{
      max-width: var(--max);
      margin: 0 auto;
      padding: 10px;
      border-radius: 18px;
      background: rgba(11,15,20,.84);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      box-shadow: 0 16px 40px rgba(0,0,0,.45);
    }
    .sticky-cta .left{ display:flex; flex-direction:column; gap:2px; }
    .sticky-cta .left b{font-size:14px}
    .sticky-cta .left span{font-size:12px; color:var(--muted2)}
    @media (max-width: 520px){ .sticky-cta .left span{display:none} }

    /* modal */
    .modal{
      display:none;
      position:fixed; inset:0; z-index:80;
      background: rgba(0,0,0,.72);
    }
    .modal .inner{
      max-width: 980px;
      margin: 6vh auto;
      padding: 0 18px;
    }
    .modal .panel{
      padding:16px;
      border-radius: 22px;
    }
    video{
      width:100%;
      height:auto;
      display:block;
      background:#000;
    }

/* ---------- LIGHT THEME FIXES (ensure these win) ---------- */
.topbar{
  background: rgba(246,247,251,.88) !important;
  border-bottom: 1px solid rgba(12,16,24,.14) !important;
}
nav a{ color: rgba(12,16,24,.72) !important; }
nav a:hover{
  background: rgba(0,0,0,.05) !important;
  color: rgba(12,16,24,.92) !important;
}
.brand{ color: rgba(12,16,24,.92) !important; }
.logo{
  background: rgba(0,0,0,.03) !important;
  border: 1px solid rgba(0,0,0,.12) !important;
}
/* ---------------------------------------------------------- */


/* ---------- LIGHT THEME STICKY CTA FIX (wins over dark rules) ---------- */
.sticky-cta .bar{
  background: rgba(246,247,251,.90) !important;
  border: 1px solid rgba(12,16,24,.14) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.16) !important;
}
.sticky-cta .left b{ color: rgba(12,16,24,.92) !important; }
.sticky-cta .left span{ color: rgba(12,16,24,.58) !important; }
/* ---------------------------------------------------------------------- */
