    :root{
      --bg:#0b1716;
      --card:#121a2a;
      --muted:#97a3b6;
      --text:#e7eefc;
      --accent:#7cc4ff;
      --accent2:#86efac;
      --danger:#fb7185;
      --border:rgba(255,255,255,.12);
      --shadow: 0 18px 60px rgba(0,0,0,.35);
      --radius:16px;
      --radius2:22px;
      --max:1080px;
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:var(--font);
      background: radial-gradient(1200px 800px at 20% 10%, rgba(124,196,255,.18), transparent 60%),
                  radial-gradient(900px 700px at 80% 0%, rgba(134,239,172,.10), transparent 55%),
                  var(--bg);
      color:var(--text);
      line-height:1.45;
    }
    a{color:var(--accent); text-decoration:none}
    a:hover{text-decoration:underline}
    .wrap{max-width:var(--max); margin:0 auto; padding:28px 18px 70px}

    /* UPDATED: centered + larger header, otherwise unchanged */
    header{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:14px;
      margin-bottom:26px;
      text-align:center;
    }
    .brand{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
      font-weight:800;
      letter-spacing:.2px;
    }
    .logo{
      width:80px; height:80px; border-radius:12px;
      background: linear-gradient(135deg, rgba(124,196,255,.95), rgba(134,239,172,.85));
      box-shadow: 0 10px 25px rgba(124,196,255,.12);
    }
    .site-logo{
      height:300px;
      width:auto;
      display:block;
    }

    .toplinks{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  font-size:15px;
  font-weight:600;
  justify-content:center;
}

.toplinks a{
  color:var(--accent2);
  text-decoration:none;
  transition:opacity .2s ease;
}

.toplinks a:hover{
  opacity:.7;
}

    /* UPDATED: hero stacked full width */
    .hero{
      display:grid;
      grid-template-columns: 1fr;
      gap:18px;
      align-items:start;
      margin-top:12px;
    }
    @media (max-width: 920px){
      .hero{grid-template-columns:1fr; }
    }

    .card{
      background: linear-gradient(180deg, rgba(18,26,42,.92), rgba(18,26,42,.78));
      border:1px solid var(--border);
      border-radius:var(--radius2);
      box-shadow:var(--shadow);
    }
    .hero-left{padding:28px; order:1}
    h1{margin:0 0 10px; font-size:40px; line-height:1.1}
    @media (max-width: 520px){
      h1{font-size:32px;}
    }
    .sub{
      margin:0 0 18px;
      color:var(--muted);
      font-size:16px;
      max-width: 80ch;
    }
    .badges{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 0}
    .badge{
      font-size:13px; color:rgba(231,238,252,.92);
      border:1px solid var(--border);
      padding:8px 10px; border-radius:999px;
      background: rgba(255,255,255,.04);
    }
    .badge strong{color:var(--accent2)}
    .minreq{
      margin-top:16px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(134,239,172,.25);
      background: rgba(134,239,172,.07);
      color: rgba(231,238,252,.95);
      font-size:14px;
    }
    .minreq b{color:var(--accent2)}
    .minreq small{display:block; color:var(--muted); margin-top:4px}
    .steps{
      display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px; margin-top:18px;
    }
    @media (max-width: 520px){
      .steps{grid-template-columns:1fr;}
    }
    .step{
      padding:14px; border-radius:var(--radius);
      border:1px solid var(--border);
      background: rgba(255,255,255,.03);
    }
    .step .k{
      font-size:12px; color:var(--muted); letter-spacing:.06em; text-transform:uppercase;
      margin-bottom:6px;
    }
    .step .v{font-weight:650}
    .step .d{margin-top:6px; color:var(--muted); font-size:14px}
    .hero-right{padding:18px; order:2}
    .form{
      padding:18px; border-radius:var(--radius2);
      border:1px solid var(--border);
      background: rgba(0,0,0,.12);
    }
    .form h2{margin:0 0 6px; font-size:18px}
    .form p{margin:0 0 14px; color:var(--muted); font-size:14px}
    label{display:block; font-size:13px; color:rgba(231,238,252,.92); margin:10px 0 6px}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      color:var(--text);
      outline:none;
    }
    input::placeholder, textarea::placeholder{color:rgba(151,163,182,.8)}
    input:focus, textarea:focus{
      border-color: rgba(124,196,255,.6);
      box-shadow: 0 0 0 4px rgba(124,196,255,.10);
    }
    .row{
      display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
      gap:10px;
    }
    @media (max-width: 520px){
      .row{grid-template-columns:1fr;}
    }
    .checks{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
    .check{
      display:flex; align-items:center; gap:8px;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.03);
      font-size:13px;
    }
    .check input{width:16px; height:16px}
    .note{
      margin-top:12px;
      font-size:12px;
      color:var(--muted);
    }
    /* reCAPTCHA spacing + container styling */
    .captcha-wrapper{
      margin: 18px 0 18px 0;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.03);
    }

    .captcha-error {
     display: none;
      margin-top: 8px;
      font-size: 14px;
      color: #ff8f8f;
    }

    .captcha-error.active {
    display: block;
    }

    .btn{
      margin-top:14px;
      width:100%;
      border:none;
      padding:12px 14px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(124,196,255,.95), rgba(134,239,172,.92));
      color:#06101a;
      font-weight:800;
      cursor:pointer;
    }
    .btn:hover{filter:brightness(1.03)}
    .trustline{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
      font-size:12px; color:var(--muted);
    }
    .trustline span{border:1px solid var(--border); padding:6px 10px; border-radius:999px; background: rgba(255,255,255,.03)}
    section{margin-top:18px}
    .grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
    }
    @media (max-width: 920px){ .grid{grid-template-columns:1fr;} }
    .pad{padding:22px}
    h3{margin:0 0 10px}
    .muted{color:var(--muted)}
    .faq details{
      border:1px solid var(--border);
      background: rgba(255,255,255,.03);
      padding:12px 14px;
      border-radius:14px;
      margin:10px 0;
    }
    .faq summary{
      cursor:pointer;
      font-weight:650;
    }
    footer{
      margin-top:26px;
      color:var(--muted);
      font-size:12px;
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding-top:18px; border-top:1px solid var(--border);
    }
    .fineprint{max-width:80ch}
    .pill{
      display:inline-block; padding:6px 10px; border-radius:999px;
      background: rgba(255,255,255,.03); border:1px solid var(--border);
    }
    .danger{color:rgba(251,113,133,.95)}
  