:root{
      --bg0:#f6f8fb;
      --bg1:#ffffff;
      --text:#182033;
      --muted:#4a556e;
      --subtle:#6b768f;
      --line:rgba(15,23,42,.10);
      --line2:rgba(15,23,42,.14);
      --card:#ffffff;
      --shadow: 0 10px 30px rgba(16,24,40,.08);
      --shadow2: 0 8px 18px rgba(16,24,40,.10);
      --accent:#0ea5e9;
      --accent2:#14b8a6;
      --accent3:#3b82f6;
      --accent4:#22c55e;
      --chip:#eef7ff;
      --btn:#0b3a5b;
      --btn2:#0f4c73;
      --ring: rgba(14,165,233,.35);
      --radius: 18px;
      --radius2: 24px;
      --container: 1120px;
      --padX: 20px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background: radial-gradient(1200px 700px at 20% -10%, rgba(20,184,166,.18), transparent 55%),
                  radial-gradient(900px 600px at 85% 5%, rgba(14,165,233,.18), transparent 55%),
                  linear-gradient(180deg, var(--bg0), #ffffff 40%, #f7fafc 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:18px; top:14px; width:auto; height:auto;
      padding:10px 12px;
      background:#0b3a5b; color:#fff; border-radius:12px; z-index:9999;
      box-shadow: var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      background: rgba(246,248,251,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand img{
      width:42px; height:42px;
      border-radius:14px;
      box-shadow: 0 10px 24px rgba(14,165,233,.20);
      border:1px solid rgba(14,165,233,.25);
      background:#fff;
    }
    .brand-title{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-title strong{
      font-size:15px; letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px; color:var(--subtle);
    }

    .nav-right{
      display:flex; align-items:center; gap:12px; justify-content:flex-end; flex-wrap:wrap;
    }
    .nav-links{
      display:flex; align-items:center; gap:16px;
    }
    .nav-links a{
      font-size:13.5px;
      color: rgba(24,32,51,.78);
      padding:8px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(14,165,233,.10);
      color: rgba(11,58,91,1);
      transform: translateY(-1px);
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(14,165,233,.25);
      background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(20,184,166,.10));
      color: rgba(11,58,91,1);
      font-weight:650;
      font-size:13.5px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow: 0 0 0 4px var(--ring)}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(14,165,233,.14); border-color: rgba(14,165,233,.40);}
    .btn.primary{
      border-color: rgba(11,58,91,.18);
      background: linear-gradient(135deg, rgba(11,58,91,1), rgba(15,76,115,1));
      color:#fff;
    }
    .btn.primary:hover{box-shadow: 0 18px 40px rgba(11,58,91,.18);}
    .btn.ghost{
      background:#fff;
      border-color: rgba(15,23,42,.14);
      color: rgba(24,32,51,.92);
    }
    .btn.small{
      padding:9px 12px;
      border-radius:12px;
      font-size:13px;
    }

    .nav-toggle{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background:#fff;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease;
      align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .nav-toggle:hover{transform: translateY(-1px); box-shadow: var(--shadow2);}
    .nav-toggle svg{width:18px; height:18px; color: rgba(24,32,51,.85)}

    .mobile-panel{
      display:none;
      border-top:1px solid rgba(15,23,42,.08);
      padding:10px 0 16px;
    }
    .mobile-panel a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      margin-top:10px;
      color: rgba(24,32,51,.92);
      font-weight:600;
      font-size:14px;
    }
    .mobile-panel a span{color:rgba(24,32,51,.55); font-weight:600; font-size:12.5px}

    .hero{
      position:relative;
      padding:30px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
      padding:28px 0 18px;
    }

    .hero-card{
      position:relative;
      border-radius: var(--radius2);
      border:1px solid rgba(14,165,233,.22);
      background:
        radial-gradient(900px 500px at 15% 0%, rgba(14,165,233,.20), transparent 52%),
        radial-gradient(700px 420px at 80% 10%, rgba(20,184,166,.16), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
      box-shadow: var(--shadow);
      overflow:hidden;
      padding:28px 26px;
      min-height: 340px;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(600px 280px at 10% 10%, rgba(14,165,233,.18), transparent 60%),
        radial-gradient(520px 260px at 85% 20%, rgba(20,184,166,.16), transparent 55%),
        linear-gradient(90deg, rgba(14,165,233,.12), rgba(20,184,166,.06));
      filter:saturate(120%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .eyebrow{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(14,165,233,.12);
      border:1px solid rgba(14,165,233,.22);
      color: rgba(11,58,91,1);
      font-weight:700;
      font-size:12.5px;
      letter-spacing:.2px;
    }
    .badge i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 0 0 4px rgba(14,165,233,.12);
    }
    .mini-note{
      font-size:12.5px; color: rgba(24,32,51,.62);
      font-weight:650;
    }

    h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .lead{
      margin:0;
      color: rgba(24,32,51,.72);
      font-size:15.5px;
      line-height:1.7;
      max-width: 62ch;
    }

    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px; align-items:center;
      padding-top:6px;
    }

    .quick-row{
      display:flex; flex-wrap:wrap; gap:10px;
      padding-top:8px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .chip:hover{transform: translateY(-2px); box-shadow: 0 18px 34px rgba(16,24,40,.10);}
    .chip svg{width:18px; height:18px; color: rgba(11,58,91,.9)}
    .chip strong{font-size:13.5px}
    .chip span{font-size:12px; color: rgba(24,32,51,.60); font-weight:650}

    .hero-side{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .side-panel{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: var(--shadow);
      padding:16px 16px;
      overflow:hidden;
      position:relative;
    }
    .side-panel::after{
      content:"";
      position:absolute;
      inset:auto -40px -60px auto;
      width:240px; height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.20), transparent 60%);
      pointer-events:none;
      transform: rotate(12deg);
      opacity:.9;
    }
    .side-panel > *{position:relative; z-index:1;}

    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding-bottom:10px;
      border-bottom:1px solid rgba(15,23,42,.08);
      margin-bottom:12px;
    }
    .side-title h2{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .pill{
      font-size:12px;
      font-weight:750;
      color: rgba(11,58,91,1);
      background: rgba(20,184,166,.12);
      border: 1px solid rgba(20,184,166,.20);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }

    .metrics{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      padding:2px 0 8px;
    }
    .metric{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 88px;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(16,24,40,.10);
      border-color: rgba(14,165,233,.22);
    }
    .metric strong{
      display:block;
      font-size:18px;
      letter-spacing:-.3px;
    }
    .metric span{
      display:block;
      margin-top:6px;
      font-size:12.5px;
      color: rgba(24,32,51,.62);
      font-weight:650;
      line-height:1.3;
    }

    .side-list{
      display:flex; flex-direction:column; gap:10px;
      margin-top:10px;
    }
    .side-item{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      transition: transform .2s ease;
    }
    .side-item:hover{transform: translateY(-2px);}
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 0 0 4px rgba(14,165,233,.12);
      margin-top:5px;
      flex:0 0 auto;
    }
    .side-item strong{font-size:13.5px}
    .side-item span{
      display:block;
      margin-top:4px;
      font-size:12.5px;
      color: rgba(24,32,51,.62);
      line-height:1.45;
      font-weight:650;
    }

    .section{
      padding:28px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.35px;
    }
    .section-head p{
      margin:0;
      color: rgba(24,32,51,.62);
      line-height:1.6;
      max-width: 62ch;
      font-size:13.8px;
      font-weight:600;
    }

    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .grid-4{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;
    }
    .grid-2{
      display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;
    }

    .card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 12px 26px rgba(16,24,40,.06);
      padding:16px 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{transform: translateY(-2px); box-shadow: 0 18px 38px rgba(16,24,40,.10); border-color: rgba(14,165,233,.20);}

    .card-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:10px;
    }
    .icon{
      width:44px; height:44px; border-radius:16px;
      background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(20,184,166,.10));
      border:1px solid rgba(14,165,233,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .icon svg{width:20px; height:20px; color: rgba(11,58,91,1)}
    .tag{
      font-size:12px;
      font-weight:750;
      color: rgba(11,58,91,1);
      background: rgba(14,165,233,.10);
      border:1px solid rgba(14,165,233,.18);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .card h3{
      margin:8px 0 6px;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color: rgba(24,32,51,.64);
      line-height:1.65;
      font-size:13.4px;
      font-weight:600;
    }
    .card ul{
      margin:10px 0 0;
      padding:0 0 0 16px;
      color: rgba(24,32,51,.65);
      font-size:13.1px;
      font-weight:650;
      line-height:1.75;
    }

    .steps{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:14px;
      align-items:start;
    }
    .timeline{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: var(--shadow);
      padding:16px 16px;
      overflow:hidden;
    }
    .timeline .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 6px;
      border-bottom:1px dashed rgba(15,23,42,.12);
    }
    .timeline .step:last-child{border-bottom:none}
    .step-num{
      width:32px; height:32px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(20,184,166,.10));
      border:1px solid rgba(14,165,233,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color: rgba(11,58,91,1);
      flex:0 0 auto;
    }
    .step h3{
      margin:0 0 4px; font-size:14.5px;
    }
    .step p{
      margin:0; color: rgba(24,32,51,.63);
      font-size:13.2px; line-height:1.6; font-weight:650;
    }

    .compare{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow);
      padding:16px 16px;
      overflow:hidden;
    }
    .compare-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      margin-bottom:12px;
    }
    .score-wrap{
      display:flex; align-items:center; gap:14px;
    }
    .score{
      width:92px; height:92px;
      border-radius: 26px;
      background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.22), rgba(20,184,166,.12) 45%, rgba(255,255,255,.85) 75%);
      border:1px solid rgba(14,165,233,.22);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 40px rgba(14,165,233,.10);
      flex:0 0 auto;
    }
    .score strong{
      font-size:20px; letter-spacing:-.4px; color: rgba(11,58,91,1);
    }
    .score-sub{
      display:flex; flex-direction:column; gap:6px;
      padding-top:8px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      font-weight:850;
      color: rgba(11,58,91,1);
    }
    .stars svg{width:18px; height:18px; color: rgba(11,58,91,1)}
    .score-sub span{
      color: rgba(24,32,51,.62);
      font-size:12.8px;
      font-weight:700;
      line-height:1.2;
    }

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
    }
    thead th{
      text-align:left;
      font-size:13px;
      color: rgba(24,32,51,.78);
      background: linear-gradient(180deg, rgba(14,165,233,.10), rgba(20,184,166,.06));
      border-bottom:1px solid rgba(15,23,42,.10);
      padding:12px 12px;
      font-weight:850;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      color: rgba(24,32,51,.72);
      font-size:13.2px;
      font-weight:650;
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    tbody td b{
      color: rgba(11,58,91,1);
      font-weight:900;
    }
    .hl{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(20,184,166,.10);
      border:1px solid rgba(20,184,166,.18);
      color: rgba(11,58,91,1);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }

    .case-grid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .case-card{
      padding:14px 14px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 12px 26px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      overflow:hidden;
      position:relative;
    }
    .case-card:hover{transform: translateY(-2px); box-shadow: 0 18px 38px rgba(16,24,40,.10); border-color: rgba(14,165,233,.20);}
    .case-top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
      margin-bottom:8px;
    }
    .case-visual{
      height:110px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(120px 80px at 20% 30%, rgba(14,165,233,.22), transparent 60%),
        radial-gradient(140px 90px at 80% 20%, rgba(20,184,166,.20), transparent 60%),
        linear-gradient(135deg, rgba(14,165,233,.10), rgba(255,255,255,.78));
      position:relative;
      overflow:hidden;
    }
    .case-visual::after{
      content:"";
      position:absolute; inset:-40px -60px auto auto;
      width:160px; height:160px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(20,184,166,.25), transparent 60%);
      transform: rotate(12deg);
      opacity:.9;
      pointer-events:none;
    }
    .case-title{
      margin:10px 0 6px; font-size:15.5px; letter-spacing:-.25px;
    }
    .case-desc{
      margin:0;
      color: rgba(24,32,51,.64);
      font-size:13.3px; line-height:1.6; font-weight:650;
      min-height: 66px;
    }
    .case-meta{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:10px;
    }

    .faq{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    details.faq-item{
      border-bottom:1px solid rgba(15,23,42,.08);
      padding:0 14px;
      background: rgba(255,255,255,.85);
    }
    details.faq-item:last-child{border-bottom:none}
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:16px 6px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .faq-q{
      font-weight:900;
      color: rgba(11,58,91,1);
      line-height:1.5;
      font-size:14.2px;
      padding-right:10px;
    }
    .faq-arrow{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
      margin-top:-4px;
    }
    details[open] .faq-arrow{
      transform: rotate(180deg);
      background: rgba(14,165,233,.10);
      border-color: rgba(14,165,233,.20);
    }
    .faq-a{
      padding:0 6px 16px 6px;
      color: rgba(24,32,51,.66);
      font-weight:650;
      line-height:1.8;
      font-size:13.5px;
    }

    .article-list{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .article-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 12px 26px rgba(16,24,40,.06);
      padding:14px 14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .article-card:hover{transform: translateY(-2px); box-shadow: 0 18px 38px rgba(16,24,40,.10); border-color: rgba(14,165,233,.20);}
    .article-card h3{
      margin:0 0 10px;
      font-size:15.5px;
    }
    .article-links{
      display:flex; flex-direction:column; gap:10px;
    }
    .article-links a{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      color: rgba(24,32,51,.86);
      font-weight:800;
      font-size:13.5px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .article-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(14,165,233,.22);
      background: rgba(14,165,233,.08);
    }
    .article-links a span{
      color: rgba(24,32,51,.56);
      font-weight:850;
      font-size:12.5px;
      white-space:nowrap;
    }

    form{
      margin:0;
    }
    .form-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr .9fr;
      gap:0;
      align-items:stretch;
    }
    .form-left{
      padding:16px 16px;
      border-right:1px solid rgba(15,23,42,.08);
    }
    .form-left h3{
      margin:0 0 6px; font-size:16px;
    }
    .form-left p{
      margin:0 0 12px; color: rgba(24,32,51,.62);
      font-weight:650; line-height:1.7; font-size:13.4px;
    }
    .fields{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-size:12.5px; font-weight:850; color: rgba(24,32,51,.72);
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.90);
      padding:12px 12px;
      font-size:14px;
      color: rgba(24,32,51,.92);
      font-weight:700;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    }
    textarea{min-height:112px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(14,165,233,.40);
      box-shadow: 0 0 0 4px rgba(14,165,233,.18);
    }
    .span-2{grid-column: span 2}
    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:12px;
      align-items:center;
    }
    .consent{
      font-size:12.2px;
      color: rgba(24,32,51,.60);
      font-weight:650;
      line-height:1.5;
    }

    .form-right{
      padding:16px 16px;
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(14,165,233,.16), transparent 58%),
        radial-gradient(520px 260px at 90% 10%, rgba(20,184,166,.12), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.88));
    }
    .form-right h4{
      margin:0 0 10px;
      font-size:14.5px;
      letter-spacing:-.2px;
      color: rgba(11,58,91,1);
    }
    .need-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .need-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      transition: transform .2s ease, border-color .2s ease;
    }
    .need-item:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.20);}
    .need-item strong{
      display:flex; align-items:center; gap:10px;
      font-size:13.4px;
    }
    .need-item strong em{
      font-style:normal;
      width:22px; height:22px; border-radius:9px;
      background: rgba(14,165,233,.12);
      border:1px solid rgba(14,165,233,.18);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:900;
      color: rgba(11,58,91,1);
      flex:0 0 auto;
    }
    .need-item span{
      display:block; margin-top:6px;
      color: rgba(24,32,51,.62);
      line-height:1.65;
      font-weight:650;
      font-size:12.9px;
    }

    .network{
      display:grid; grid-template-columns: .95fr 1.05fr;
      gap:14px; align-items:start;
    }
    .map-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding:16px 16px;
    }
    .map-card::before{
      content:"";
      position:absolute; inset:-50px -60px auto auto;
      width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(20,184,166,.18), transparent 60%);
      pointer-events:none;
      opacity:.95;
      transform: rotate(10deg);
    }
    .map-inner{position:relative; z-index:1;}
    .map-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .map-title h3{margin:0; font-size:16px}
    .map-title p{margin:0; color: rgba(24,32,51,.62); font-weight:650; font-size:13.3px; line-height:1.5}
    .network-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .office{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      transition: transform .2s ease, border-color .2s ease;
      min-height: 88px;
    }
    .office:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.20);}
    .office strong{
      display:block; font-size:13.8px; letter-spacing:-.1px;
    }
    .office span{
      display:block; margin-top:6px;
      color: rgba(24,32,51,.62);
      line-height:1.6;
      font-weight:650; font-size:12.9px;
    }

    .partner-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow);
      padding:16px 16px;
      overflow:hidden;
      position:relative;
    }
    .partner-card::after{
      content:"";
      position:absolute; inset:auto auto -80px -90px;
      width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.18), transparent 60%);
      pointer-events:none;
      opacity:.9;
      transform: rotate(-8deg);
    }
    .partner-inner{position:relative; z-index:1;}
    .partner-card h3{margin:0 0 8px; font-size:16px}
    .partner-card p{
      margin:0;
      color: rgba(24,32,51,.62);
      font-weight:650;
      line-height:1.75;
      font-size:13.5px;
    }
    .partner-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:14px;
    }
    .label-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .cloud{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      color: rgba(24,32,51,.75);
      font-weight:800;
      font-size:12.8px;
      transition: transform .2s ease;
      white-space:nowrap;
    }
    .cloud:hover{transform: translateY(-2px);}

    .clients{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .review{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 12px 26px rgba(16,24,40,.06);
      padding:16px 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .review:hover{transform: translateY(-2px); box-shadow: 0 18px 38px rgba(16,24,40,.10); border-color: rgba(14,165,233,.20);}
    .review::before{
      content:"";
      position:absolute;
      top:-60px; right:-80px;
      width:210px; height:210px;
      background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.18), transparent 60%);
      opacity:.8; pointer-events:none;
    }
    .review > *{position:relative; z-index:1}
    .review-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .person{
      display:flex; align-items:flex-start; gap:12px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(20,184,166,.10));
      border:1px solid rgba(14,165,233,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(11,58,91,1);
      flex:0 0 auto;
    }
    .person strong{
      display:block; font-size:13.8px; letter-spacing:-.1px;
    }
    .person span{
      display:block; margin-top:4px;
      color: rgba(24,32,51,.62);
      font-weight:650; font-size:12.7px;
      line-height:1.3;
    }
    .review p{
      margin:0;
      color: rgba(24,32,51,.66);
      font-weight:650;
      line-height:1.75;
      font-size:13.5px;
    }

    .tagline{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
      margin-top:12px;
    }
    .tagline .mini{
      padding:9px 11px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      color: rgba(24,32,51,.72);
      font-weight:850;
      font-size:12.6px;
      white-space:nowrap;
    }

    .partner-logos{
      display:grid; grid-template-columns: repeat(5, 1fr);
      gap:10px;
      margin-top:14px;
    }
    .logo-badge{
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      text-align:center;
      font-weight:950;
      color: rgba(24,32,51,.74);
      font-size:12.5px;
      transition: transform .2s ease;
      min-height: 44px;
      display:flex; align-items:center; justify-content:center;
    }
    .logo-badge:hover{transform: translateY(-2px);}

    .footer{
      padding:26px 0 34px;
      border-top:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.92));
    }
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
      margin-bottom:14px;
    }
    .footer-brand{
      display:flex; align-items:flex-start; gap:12px;
      min-width:260px;
    }
    .footer-brand img{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(14,165,233,.22);
      box-shadow: 0 14px 30px rgba(14,165,233,.10);
      background:#fff;
    }
    .footer-brand strong{
      display:block; font-size:15px;
      letter-spacing:-.2px;
    }
    .footer-brand span{
      display:block; margin-top:6px;
      color: rgba(24,32,51,.62);
      font-weight:650;
      line-height:1.6;
      font-size:13.2px;
      max-width: 46ch;
    }
    .footer-cols{
      display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end;
    }
    .footer-col{
      min-width: 160px;
    }
    .footer-col h4{
      margin:0 0 10px;
      font-size:13.6px; color: rgba(11,58,91,1);
      letter-spacing:-.15px;
    }
    .footer-links{
      display:flex; flex-direction:column; gap:10px;
    }
    .footer-links a{
      color: rgba(24,32,51,.70);
      font-weight:700;
      font-size:13.2px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(14,165,233,.22);
      background: rgba(14,165,233,.08);
    }

    .footer-bottom{
      display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px;
      color: rgba(24,32,51,.62);
      font-weight:700;
      font-size:12.8px;
    }
    .divider-dot{
      width:6px; height:6px; border-radius:50%;
      background: rgba(14,165,233,.45);
      display:inline-block;
      margin:0 10px;
    }
    .muted-link{
      color: rgba(24,32,51,.68);
      text-decoration:underline;
      text-decoration-color: rgba(14,165,233,.35);
      text-underline-offset:3px;
    }

    .floating{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-btn{
      pointer-events:auto;
      display:flex; align-items:center; gap:10px;
      padding:11px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 16px 40px rgba(16,24,40,.14);
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      user-select:none;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(14,165,233,.22);
      box-shadow: 0 22px 60px rgba(16,24,40,.18);
    }
    .float-icon{
      width:38px; height:38px; border-radius:16px;
      background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(20,184,166,.10));
      border:1px solid rgba(14,165,233,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-icon svg{width:18px; height:18px; color: rgba(11,58,91,1)}
    .float-text{display:flex; flex-direction:column; line-height:1.2}
    .float-text strong{font-size:13.2px}
    .float-text span{font-size:12.1px; color: rgba(24,32,51,.62); font-weight:750}

    .to-top{
      pointer-events:auto;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 16px 40px rgba(16,24,40,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
      opacity:.95;
    }
    .to-top:hover{transform: translateY(-2px); border-color: rgba(14,165,233,.22);}
    .to-top svg{width:18px; height:18px; color: rgba(11,58,91,1)}

    .reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease;}
    .reveal.show{opacity:1; transform: translateY(0);}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-card{min-height:auto}
      .grid-3{grid-template-columns: 1fr; }
      .grid-4{grid-template-columns: repeat(2, 1fr);}
      .steps{grid-template-columns: 1fr;}
      .case-grid{grid-template-columns: 1fr;}
      .article-list{grid-template-columns: 1fr;}
      .clients{grid-template-columns: 1fr;}
      .network{grid-template-columns: 1fr;}
      .form-grid{grid-template-columns: 1fr;}
      .form-left{border-right:none; border-bottom:1px solid rgba(15,23,42,.08)}
      .fields{grid-template-columns: 1fr;}
      .span-2{grid-column: auto;}
      .partner-logos{grid-template-columns: repeat(3, 1fr);}
      h1{font-size:30px;}
      .nav-links{display:none;}
      .nav-toggle{display:flex;}
      .mobile-panel{display:block;}
    }
    @media (max-width: 520px){
      .metrics{grid-template-columns: 1fr 1fr;}
      .grid-4{grid-template-columns: 1fr 1fr;}
      .footer-top{flex-direction:column; align-items:flex-start;}
      .footer-cols{justify-content:flex-start;}
    }