:root{
    --bg: #0b1020;
    --bg2:#070a12;
    --card:#0f172a;
    --muted:#94a3b8;
    --text:#e5e7eb;
    --line: rgba(148,163,184,.18);
    --primary:#2563eb;
    --primary2:#0ea5e9;
    --shadow: 0 20px 60px rgba(0,0,0,.35);
  }
  
  *{box-sizing:border-box;margin:0;padding:0}
  html{scroll-behavior:smooth}
  body{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: radial-gradient(1200px 700px at 15% 20%, rgba(37,99,235,.35), transparent 60%),
                radial-gradient(1000px 600px at 85% 30%, rgba(14,165,233,.25), transparent 55%),
                linear-gradient(180deg, var(--bg), var(--bg2));
    color:var(--text);
  }
  
  .container{width:92%;max-width:1120px;margin:auto}
  
  .header{
    position:sticky; top:0; z-index:50;
    border-bottom:1px solid var(--line);
    background: rgba(7,10,18,.65);
    backdrop-filter: blur(14px);
  }
  
  .header-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 0;
    gap:16px;
  }
  
  .brand{display:flex;align-items:center;gap:10px}
  .logo{
    width:40px;height:40px;border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    font-weight:800;
  }
  .brand-text{display:flex;flex-direction:column;line-height:1.1}
  .brand-text span{color:var(--muted);font-size:12px}
  
  .nav{display:flex;gap:18px;align-items:center}
  .nav a{
    text-decoration:none; color:var(--text); opacity:.9; font-size:14px;
  }
  .nav a:hover{opacity:1}
  
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:10px 16px; border-radius:12px;
    text-decoration:none; font-weight:600; font-size:14px;
    border:1px solid transparent;
  }
  .btn-full{width:100%}
  .btn-primary{
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    color:#fff;
    box-shadow: 0 12px 30px rgba(37,99,235,.25);
  }
  .btn-ghost{
    background: rgba(255,255,255,.04);
    border-color: var(--line);
    color: var(--text);
  }
  .btn-ghost:hover{background: rgba(255,255,255,.06)}
  
  .hero{padding:70px 0 35px}
  .hero-grid{
    display:grid;
    grid-template-columns: 1.2fr .8fr;
    gap:26px;
    align-items:stretch;
  }
  @media (max-width: 900px){
    .hero-grid{grid-template-columns:1fr}
    .nav{display:none}
  }
  
  .pill{
    display:inline-flex;
    padding:8px 12px;
    border:1px solid var(--line);
    border-radius:999px;
    color: var(--muted);
    background: rgba(255,255,255,.03);
    font-size:13px;
    margin-bottom:14px;
  }
  
  .hero h1{
    font-size:44px;
    line-height:1.05;
    margin-bottom:14px;
  }
  @media (max-width: 900px){
    .hero h1{font-size:34px}
  }
  .lead{color: rgba(229,231,235,.88); font-size:16px; line-height:1.6}
  .hero-cta{display:flex;gap:12px; margin:18px 0 18px; flex-wrap:wrap}
  
  .trust{
    display:flex; gap:18px; flex-wrap:wrap;
    margin-top:12px;
  }
  .trust-item{
    padding:12px 14px;
    border:1px solid var(--line);
    border-radius:14px;
    background: rgba(255,255,255,.03);
    min-width:140px;
  }
  .trust-big{display:block;font-weight:800;font-size:18px}
  .trust-small{display:block;color:var(--muted);font-size:12px;margin-top:2px}
  
  .hero-card{display:flex}
  .glass-card{
    width:100%;
    background: rgba(15,23,42,.55);
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
    box-shadow: var(--shadow);
  }
  .price-row{
    display:flex; align-items:center; justify-content:space-between;
    padding-bottom:14px; margin-bottom:14px;
    border-bottom:1px solid var(--line);
  }
  .price-title{font-weight:800}
  .price-sub{color:var(--muted);font-size:12px;margin-top:4px}
  .price{font-size:30px;font-weight:800}
  .currency{opacity:.8;margin-right:2px}
  
  .section{padding:70px 0}
  .section-dark{
    background: rgba(255,255,255,.02);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  
  .section-head{margin-bottom:18px}
  .section-head h2{font-size:28px;margin-bottom:6px}
  .section-head p{color:var(--muted);line-height:1.6}
  
  .card{
    background: rgba(15,23,42,.55);
    border:1px solid var(--line);
    border-radius:16px;
    padding:18px;
  }
  
  .grid-3{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
  }
  @media (max-width: 900px){
    .grid-3{grid-template-columns:1fr}
  }
  
  .checklist{list-style:none;display:grid;gap:10px;margin:14px 0}
  .checklist li{
    position:relative;
    padding-left:26px;
    color: rgba(229,231,235,.9);
  }
  .checklist li:before{
    content:"✓";
    position:absolute; left:0; top:-1px;
    width:18px;height:18px; display:inline-flex;align-items:center;justify-content:center;
    border-radius:6px;
    background: rgba(37,99,235,.18);
    border:1px solid rgba(37,99,235,.25);
  }
  
  .small-note{color:var(--muted);font-size:12px;margin-top:10px;text-align:center}
  .muted{color:var(--muted)}
  .small{font-size:12px}
  
  /* Reel */
  .reel{
    margin-top:18px;
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background: rgba(255,255,255,.02);
  }
  .reel-track{
    display:flex;
    gap:16px;
    padding:16px;
    will-change: transform;
    animation: reelScroll 22s linear infinite;
  }
  .slide{
    min-width: 420px;
    max-width: 420px;
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--line);
    background: rgba(15,23,42,.55);
    box-shadow: 0 14px 40px rgba(0,0,0,.28);
  }
  @media (max-width: 900px){
    .slide{min-width: 82vw; max-width:82vw}
  }
  .slide img{width:100%;display:block}
  .slide-cap{
    padding:12px 12px 14px;
    display:flex; flex-direction:column; gap:4px;
  }
  .slide-cap span{color:var(--muted);font-size:13px;line-height:1.5}
  
  @keyframes reelScroll{
    from{transform: translateX(0)}
    to{transform: translateX(-50%)}
  }
  
  .reel-actions{
    margin-top:14px;
    display:flex; gap:10px; align-items:center;
  }
  
  /* Pricing Layout */
  .pricing{
    display:grid;
    grid-template-columns: 1fr .9fr;
    gap:16px;
  }
  @media (max-width: 900px){
    .pricing{grid-template-columns:1fr}
  }
  .pricing-card{
    background: rgba(15,23,42,.55);
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
    box-shadow: var(--shadow);
  }
  .pricing-top{
    display:flex; justify-content:space-between; align-items:flex-start;
    padding-bottom:12px; margin-bottom:12px;
    border-bottom:1px solid var(--line);
  }
  .price-big{font-size:34px;font-weight:900}
  .bullets{margin-top:10px; padding-left:18px; color: rgba(229,231,235,.9)}
  .bullets li{margin:6px 0}
  .side-card{
    background: rgba(15,23,42,.35);
    border:1px solid var(--line);
    border-radius:18px;
    padding:16px;
    margin-bottom:12px;
  }
  
  /* FAQ */
  .faq details{
    border:1px solid var(--line);
    border-radius:14px;
    padding:14px;
    background: rgba(255,255,255,.02);
    margin-bottom:10px;
  }
  .faq summary{cursor:pointer;font-weight:700}
  .faq p{color:var(--muted);margin-top:10px;line-height:1.6}
  
  .footer{
    padding:28px 0;
    border-top:1px solid var(--line);
  }
  .footer-inner{
    display:flex; justify-content:space-between; align-items:center;
  }
  