
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border:0; cursor:pointer;
      border-radius:16px;
      padding:12px 14px;
      font-weight:700;
      transition:.16s ease;
      white-space:nowrap;
    }
    .btn svg{width:18px; height:18px}
    .btn--primary{
      background:linear-gradient(135deg, var(--orange), var(--orange2));
      color:#fff;
      box-shadow:0 14px 26px rgba(255,90,0,.18);
    }
    .btn--primary:hover{transform:translateY(-1px)}
    .btn--ghost{
      background:rgba(31,94,255,.08);
      color:var(--blue2);
      border:1px solid rgba(31,94,255,.18);
    }
    .btn--ghost:hover{background:rgba(31,94,255,.12)}
    .hero{
      padding:28px 0 18px;
    }
    .hero__grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:18px;
      align-items:stretch;
    }
    .card{
      background:rgba(255,255,255,.78);
      border:1px solid var(--border);
      border-radius:var(--radius2);
      box-shadow:var(--shadow);
    }
    .hero__main{
      padding:22px 22px 18px;
      position:relative;
      overflow:hidden;
    }
    .hero__main:before{
      content:"";
      position:absolute; inset:-40px -60px auto auto;
      width:240px; height:240px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(31,94,255,.35), transparent 60%);
      filter: blur(2px);
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      font-size:13px; color:var(--muted);
      padding:8px 10px; border-radius:999px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.65);
    }
    .kicker svg{width:16px; height:16px}
    h1{
      margin:14px 0 10px;
      font-size: clamp(26px, 3.2vw, 40px);
      line-height:1.08;
      letter-spacing:-.3px;
    }
    .lead{
      margin:0 0 14px;
      color:var(--muted);
      font-size:16px;
      line-height:1.5;
      max-width: 62ch;
    }
    .hero__actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin:12px 0 6px;
    }
    .bullets{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:16px;
    }
    .bullet{
      background:rgba(255,255,255,.72);
      border:1px solid var(--border);
      border-radius:16px;
      padding:12px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .bullet .ic{
      width:36px; height:36px; border-radius:14px;
      display:grid; place-items:center;
      background:rgba(31,94,255,.10);
      border:1px solid rgba(31,94,255,.16);
      flex:0 0 auto;
    }
    .bullet .ic svg{width:18px; height:18px}
    .bullet b{display:block; font-size:14px; margin-bottom:2px}
    .bullet span{display:block; font-size:12px; color:var(--muted); line-height:1.35}

    .hero__side{
      padding:18px;
      display:flex; flex-direction:column; gap:12px;
    }
    .form{
      padding:16px;
      background:rgba(255,255,255,.78);
      border:1px solid var(--border);
      border-radius:var(--radius);
    }
    .form h2{
      margin:0 0 6px;
      font-size:16px;
      letter-spacing:-.1px;
    }
    .form p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:13px; line-height:1.45;
    }
    .field{
      display:flex; flex-direction:column;
      gap:6px; margin-bottom:10px;
    }
    .field label{font-size:12px; color:var(--muted)}
    .input{
      border:1px solid var(--border);
      background:rgba(255,255,255,.9);
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      outline:none;
      transition:.15s ease;
    }
    .input:focus{
      border-color:rgba(31,94,255,.35);
      box-shadow:0 0 0 4px rgba(31,94,255,.10);
    }
    .hint{
      font-size:11px; color:var(--muted);
      line-height:1.35;
      margin-top:8px;
    }

    .section{padding:18px 0}
    .section h2{
      font-size:22px; margin:0 0 12px;
      letter-spacing:-.2px;
    }
    .sub{
      margin:-6px 0 14px;
      color:var(--muted);
      line-height:1.55;
      max-width: 85ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .tile{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
      box-shadow: 0 10px 22px rgba(14,36,74,.06);
    }
    .tile__top{display:flex; align-items:center; gap:10px; margin-bottom:8px}
    .tile__ic{
      width:38px; height:38px; border-radius:16px;
      display:grid; place-items:center;
      background:rgba(255,122,26,.10);
      border:1px solid rgba(255,122,26,.18);
      flex:0 0 auto;
    }
    .tile__ic svg{width:18px; height:18px}
    .tile b{display:block; font-size:14px}
    .tile p{margin:0; font-size:13px; color:var(--muted); line-height:1.5}

    .two{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .spec{
      display:flex; gap:12px; align-items:flex-start;
      padding:16px;
      border-radius:var(--radius);
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
    }
    .spec .ic{
      width:40px; height:40px; border-radius:16px;
      display:grid; place-items:center;
      background:rgba(31,94,255,.10);
      border:1px solid rgba(31,94,255,.16);
      flex:0 0 auto;
    }
    .spec .ic svg{width:20px; height:20px}
    .spec b{display:block; font-size:14px; margin-bottom:2px}
    .spec span{display:block; font-size:13px; color:var(--muted); line-height:1.5}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .step{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute; inset: -40px -60px auto auto;
      width:160px; height:160px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, rgba(255,122,26,.22), transparent 60%);
    }
    .step .n{
      width:34px; height:34px; border-radius:14px;
      display:grid; place-items:center;
      background:rgba(255,122,26,.12);
      border:1px solid rgba(255,122,26,.20);
      font-weight:900;
      margin-bottom:10px;
      position:relative;
    }
    .step b{position:relative; display:block; margin-bottom:6px}
    .step p{position:relative; margin:0; color:var(--muted); font-size:13px; line-height:1.5}

    .price{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:stretch;
    }
    .price .box{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
      box-shadow: 0 14px 26px rgba(14,36,74,.08);
    }
    .price h3{margin:0 0 8px; font-size:16px}
    .list{
      margin:0; padding:0; list-style:none;
      display:grid; gap:8px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border:1px solid var(--border);
      border-radius:16px;
      background:rgba(255,255,255,.7);
    }
    .li svg{width:18px; height:18px; margin-top:1px; flex:0 0 auto}
    .li span{font-size:13px; color:var(--muted); line-height:1.45}
    .note{
      margin-top:10px;
      font-size:12px;
      color:var(--muted);
      line-height:1.5;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .rev{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
    }
    .rev b{display:block; margin-bottom:6px}
    .rev p{margin:0; color:var(--muted); font-size:13px; line-height:1.55}
    .rev .meta{margin-top:10px; font-size:12px; color:var(--muted)}

    .faq{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
    }
    details{
      border:1px solid var(--border);
      background:rgba(255,255,255,.7);
      border-radius:16px;
      padding:10px 12px;
    }
    details + details{margin-top:10px}
    summary{
      cursor:pointer;
      font-weight:700;
      list-style:none;
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    details p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }

    .contacts{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .contact-card{
      padding:18px;
      border-radius:var(--radius2);
      border:1px solid var(--border);
      background:rgba(255,255,255,.78);
      box-shadow: 0 14px 26px rgba(14,36,74,.08);
    }
    .contact-card h3{margin:0 0 10px; font-size:16px}
    .kv{display:grid; gap:10px}
    .kv .row{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border:1px solid var(--border);
      border-radius:16px;
      background:rgba(255,255,255,.7);
    }
    .kv svg{width:18px; height:18px; margin-top:2px; flex:0 0 auto}
    .kv b{display:block; font-size:12px; color:var(--muted); margin-bottom:2px}
    .kv a, .kv div{font-size:14px}
    .map{
      min-height: 260px;
      border-radius:var(--radius2);
      border:1px dashed rgba(31,94,255,.28);
      background:
        radial-gradient(900px 280px at 50% 0%, rgba(31,94,255,.12), transparent 60%),
        rgba(255,255,255,.55);
      display:grid; place-items:center;
      padding:16px;
      text-align:center;
      color:var(--muted);
    }

    footer{
      padding:18px 0 26px;
      color:var(--muted);
      font-size:12px;
    }
    .foot{
      display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
      border-top:1px solid var(--border);
      padding-top:14px;
    }

    .mobile-cta{
      display:none;
      position:fixed; left:12px; right:12px; bottom:12px; z-index:60;
      padding:10px;
      border-radius:18px;
      background:rgba(255,255,255,.82);
      border:1px solid var(--border);
      backdrop-filter: blur(12px);
      box-shadow: 0 18px 36px rgba(14,36,74,.16);
      gap:10px;
    }
    .mobile-cta a, .mobile-cta button{flex:1}

    /* Responsive */
    @media (max-width: 980px){
      nav{display:none}
      .topbar__cta{min-width:auto}
      .hero__grid{grid-template-columns: 1fr}
      .bullets{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr}
      .two{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .price{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .contacts{grid-template-columns: 1fr}
      .mobile-cta{display:flex}
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .btn, nav a{transition:none}
      .btn--primary:hover{transform:none}
    }