    a{color:inherit}
    .container{max-width:var(--container); margin:0 auto; padding:0 18px}
    .topbar{
      position:sticky; top:0; z-index:10;
      backdrop-filter: blur(10px);
      background: rgba(246,248,252,.75);
      border-bottom:1px solid rgba(226,232,240,.75);
    }
    .topbar__in{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:12px;
    }
    
    .logo{
      background:#185ea4 url("../logo.svg") no-repeat 7px 8px;
    width:42px; height:42px; border-radius:14px;
    display:flex; align-items:center; justify-content:center; color:#fff; font-weight:900;
    box-shadow:0 10px 20px rgba(30,58,138,.25);
    }
    .nav{
      display:flex; gap:16px; align-items:center; justify-content:center;
      flex:1;
    }
   
   
    .btn{
      border:0; cursor:pointer; text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      padding:12px 14px; border-radius:14px;
      font-weight:800;
      transition:.15s transform ease, .15s box-shadow ease, .15s background ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn--primary{
      background: linear-gradient(135deg, var(--orange), #ff9b52);
      color:#fff;
      box-shadow: 0 12px 24px rgba(255,122,26,.22);
    }
    .btn--primary:hover{box-shadow: 0 16px 34px rgba(255,122,26,.26)}
    .btn--ghost{
      background:rgba(30,79,216,.08);
      color:var(--text);
    }
    .btn--ghost:hover{background:rgba(30,79,216,.12)}
    .btn svg{width:18px; height:18px; flex:0 0 auto}

    .hero{padding:40px 0 18px}
    .hero__grid{
      display:grid; gap:18px;
      grid-template-columns: 1.25fr .75fr;
      align-items:stretch;
    }
    .heroCard{
      background:var(--card);
      border:1px solid rgba(226,232,240,.8);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding:26px;
      overflow:hidden;
      position:relative;
    }
    .heroCard:before{
      content:"";
      position:absolute; inset:-140px -120px auto auto;
      width:320px; height:320px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(30,79,216,.18), transparent 60%);
      pointer-events:none;
    }
    .heroTitle{
      margin:0 0 10px;
      font-size: clamp(26px, 3.2vw, 44px);
      line-height:1.05;
      letter-spacing:-.6px;
    }
    .heroLead{
      margin:0 0 16px;
      color:var(--muted);
      font-size: 15.5px;
      max-width: 60ch;
    }
    .heroBadges{
      display:flex; flex-wrap:wrap; gap:10px;
      margin: 14px 0 18px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius: 999px;
      background: rgba(15,23,42,.03);
      border:1px solid rgba(226,232,240,.9);
      font-weight:700;
      font-size:13.5px;
      color:#1f2937;
    }
    .badge svg{width:16px; height:16px; color:var(--blue)}
    .heroActions{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
      margin-top: 8px;
    }
    .heroNote{
      margin:14px 0 0;
      font-size:13px;
      color:var(--muted);
    }

    .quoteCard{
      background: linear-gradient(180deg, rgba(30,79,216,.08), rgba(255,255,255,1));
      border:1px solid rgba(226,232,240,.85);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .quoteTop{
      display:flex; align-items:flex-start; gap:12px;
      margin-bottom:14px;
    }
    .quoteIcon{
      width:42px; height:42px; border-radius:14px;
      background: rgba(30,79,216,.12);
      display:grid; place-items:center;
    }
    .quoteIcon svg{width:22px; height:22px; color:var(--blue)}
    .quoteTitle{margin:0; font-size:16px; font-weight:900}
    .quoteText{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.5px;
    }
    .quoteForm{
      display:grid; gap:10px;
      margin-top: 14px;
    }
    .row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
    .input{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border:1px solid rgba(226,232,240,.95);
      background: rgba(255,255,255,.9);
      outline: none;
      font-weight:700;
      color: var(--text);
    }
    .input::placeholder{color:#94a3b8; font-weight:700}
    .input:focus{border-color: rgba(30,79,216,.45); box-shadow: 0 0 0 4px rgba(30,79,216,.10)}
    .small{
      font-size:12px; color:var(--muted); margin:0;
    }

    .section{padding:22px 0}
    .sectionTitle{
      margin:0 0 12px;
      font-size:22px;
      letter-spacing:-.2px;
    }
    .grid3{
      display:grid; gap:12px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .card{
      background:var(--card);
      border:1px solid rgba(226,232,240,.85);
      border-radius: var(--radius-sm);
      padding:16px;
      box-shadow: 0 10px 24px rgba(15,23,42,.06);
      display:flex; gap:12px; align-items:flex-start;
    }
    .ico{
      width:42px; height:42px; border-radius:14px;
      background: rgba(30,79,216,.10);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .ico svg{width:22px; height:22px; color:var(--blue)}
    .card h3{margin:0; font-size:15px; font-weight:900}
    .card p{margin:6px 0 0; color:var(--muted); font-size:13.5px}

    .split{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      align-items:stretch;
    }
    .list{
      margin:10px 0 0; padding:0; list-style:none;
      display:grid; gap:8px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      background: rgba(15,23,42,.03);
      border:1px solid rgba(226,232,240,.9);
      border-radius: 14px;
    }
    .li svg{width:18px; height:18px; color:var(--orange); margin-top:1px; flex:0 0 auto}
    .li span{color:var(--muted); font-weight:700; font-size:13.5px}
    .accent{
      color: var(--blue);
      font-weight:900;
    }

    .footer{
      padding:26px 0 44px;
      border-top:1px solid rgba(226,232,240,.9);
      background: rgba(255,255,255,.35);
      margin-top: 10px;
    }
    .footerGrid{
      display:grid; gap:12px;
      grid-template-columns: 1.1fr .9fr;
      align-items:start;
    }
    .footCard{
      background: var(--card);
      border:1px solid rgba(226,232,240,.9);
      border-radius: var(--radius);
      padding:18px;
      box-shadow: 0 10px 26px rgba(15,23,42,.05);
    }
    .contacts{
      display:grid; gap:8px;
      margin-top: 10px;
      font-size:14px;
    }
    .contacts a{text-decoration:none; font-weight:900}
    .contacts div{color:var(--muted); font-weight:700}
    .copy{
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 12.5px;
    }

    .pillbar{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .pill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background: rgba(255,255,255,.9);
      font-weight:800;
      font-size:13px;
      color:#334155;
    }

    @media (max-width: 980px){
      .hero__grid{grid-template-columns:1fr}
      .cta{min-width:auto}
      .nav{display:none}
      .grid3{grid-template-columns:1fr}
      .split{grid-template-columns:1fr}
      .footerGrid{grid-template-columns:1fr}
    }