:root{
      --bg0:#f6fbff;
      --bg1:#f1f6ff;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#475569;
      --muted2:#64748b;
      --line:rgba(15,23,42,.12);
      --shadow:0 14px 40px rgba(2,132,199,.12);
      --shadow2:0 10px 30px rgba(2,132,199,.10);
      --shadow3:0 8px 20px rgba(15,23,42,.08);
      --brand1:#0ea5e9;
      --brand2:#22c55e;
      --brand3:#06b6d4;
      --brand4:#1d4ed8;
      --grad: linear-gradient(135deg, #0ea5e9 0%, #22c55e 100%);
      --grad2: linear-gradient(135deg, rgba(14,165,233,.14) 0%, rgba(34,197,94,.10) 55%, rgba(29,78,216,.12) 100%);
      --grad3: linear-gradient(120deg, #0ea5e9 0%, #60a5fa 35%, #34d399 75%, #22c55e 100%);
      --pill: rgba(14,165,233,.12);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --focus: rgba(14,165,233,.32);
      --max: 1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1200px 520px at 18% -8%, rgba(14,165,233,.22), transparent 55%),
        radial-gradient(900px 420px at 82% 2%, rgba(34,197,94,.16), transparent 52%),
        linear-gradient(180deg, var(--bg0) 0%, #ffffff 42%, var(--bg1) 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:0 18px;
    }

    .topbar-wrap{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(130%) blur(10px);
      background: rgba(246,251,255,.72);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
    }
    .brand img{
      width:38px; height:38px;
      object-fit:contain;
      border-radius:12px;
      background: rgba(255,255,255,.75);
      box-shadow: 0 8px 18px rgba(15,23,42,.10);
    }
    .brand .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brand .sub{
      font-size:12px;
      color:var(--muted2);
    }

    .nav{
      display:flex;
      align-items:center;
      gap:10px;
      flex:1;
      justify-content:center;
    }
    .nav a{
      font-size:13px;
      color:var(--muted);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background: rgba(14,165,233,.08);
      border-color: rgba(14,165,233,.16);
      color:#0b3b6a;
      transform: translateY(-1px);
    }
    .nav a.active{
      background: rgba(14,165,233,.10);
      border-color: rgba(14,165,233,.24);
      color:#0b3b6a;
      font-weight:650;
    }

    .top-actions{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width: 260px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      color:#0f172a;
      font-weight:650;
      font-size:13px;
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
      box-shadow: 0 10px 22px rgba(15,23,42,.06);
      user-select:none;
      -webkit-tap-highlight-color: transparent;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(15,23,42,.10);
      border-color: rgba(14,165,233,.28);
    }
    .btn:active{transform: translateY(0px) scale(.99)}
    .btn-primary{
      border-color: rgba(14,165,233,.28);
      background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(34,197,94,.10)) , #ffffff;
    }
    .btn-cta{
      border:0;
      background: var(--grad3);
      color:#0b1220;
      box-shadow: 0 18px 45px rgba(14,165,233,.20);
    }
    .btn-cta:hover{box-shadow: 0 22px 60px rgba(14,165,233,.26)}
    .btn-ghost{
      background: rgba(255,255,255,.6);
    }
    .btn-small{padding:8px 12px; border-radius:12px; font-size:12.5px}
    .icon{
      width:16px; height:16px; display:inline-block;
    }

    .mobile-toggle{
      display:none;
      border:1px solid rgba(15,23,42,.12);
      background:#fff;
      border-radius:14px;
      padding:10px 12px;
      cursor:pointer;
      box-shadow: 0 10px 22px rgba(15,23,42,.06);
    }
    .mobile-toggle .bars{
      width:18px; height:14px; position:relative;
    }
    .mobile-toggle .bars span{
      position:absolute; left:0; right:0;
      height:2px; background:#0f172a; border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .mobile-toggle .bars span:nth-child(1){top:1px}
    .mobile-toggle .bars span:nth-child(2){top:6px}
    .mobile-toggle .bars span:nth-child(3){top:11px}
    .mobile-toggle[aria-expanded="true"] .bars span:nth-child(1){top:6px; transform:rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .mobile-toggle[aria-expanded="true"] .bars span:nth-child(3){top:6px; transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:12px 0 16px;
    }
    .mobile-panel .links{
      display:flex; flex-direction:column; gap:10px;
    }
    .mobile-panel a{
      padding:12px 12px;
      background: rgba(255,255,255,.7);
      border:1px solid rgba(15,23,42,.10);
      border-radius:14px;
      color:var(--muted);
      font-weight:600;
      font-size:14px;
    }

    header{position:relative}
    .hero{
      padding:40px 0 26px;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:-160px -220px auto -220px;
      height:420px;
      background: var(--grad2);
      filter: blur(0px);
      pointer-events:none;
      border-radius: 50% 50% 40% 40%;
      opacity:.95;
    }
    .hero::after{
      content:"";
      position:absolute;
      right:-240px;
      top:-120px;
      width:520px; height:520px;
      background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.26), transparent 55%),
                  radial-gradient(circle at 70% 60%, rgba(34,197,94,.18), transparent 52%);
      pointer-events:none;
      opacity:.9;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
      position:relative;
    }

    .hero-left{
      padding:18px 0 6px;
      z-index:1;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(14,165,233,.18);
      box-shadow: 0 12px 30px rgba(14,165,233,.10);
    }
    .kicker .dot{
      width:10px; height:10px; border-radius:50%;
      background: var(--grad);
      box-shadow: 0 0 0 6px rgba(14,165,233,.14);
    }
    .kicker span{font-size:13px; color:#0b3b6a; font-weight:700}
    h1{
      margin:16px 0 10px;
      font-size:38px;
      line-height:1.15;
      letter-spacing:-.5px;
    }
    .hero-lead{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.8;
      max-width: 60ch;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
      align-items:center;
    }
    .trust-row{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:16px;
      align-items:center;
      color:var(--muted2);
      font-size:12.5px;
    }
    .trust-item{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.55);
    }
    .badge-ico{
      width:28px; height:28px;
      border-radius:10px;
      background: rgba(14,165,233,.12);
      border:1px solid rgba(14,165,233,.18);
      display:flex; align-items:center; justify-content:center;
      color:#0b3b6a;
    }

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:12px;
      z-index:1;
      padding:6px 0;
    }
    .hero-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius);
      box-shadow: var(--shadow3);
      padding:14px 14px 12px;
      position:relative;
      overflow:hidden;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:-1px -1px auto -1px;
      height:74px;
      background: linear-gradient(90deg, rgba(14,165,233,.18), rgba(34,197,94,.10), rgba(29,78,216,.14));
      opacity:.75;
      pointer-events:none;
    }
    .hero-card h2{
      margin:8px 0 2px;
      font-size:14px;
      letter-spacing:.2px;
    }
    .hero-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .stat-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
      margin-top:12px;
    }
    .stat{
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(14,165,233,.14);
      box-shadow: 0 10px 24px rgba(14,165,233,.08);
      transition: transform .18s ease, box-shadow .18s ease;
      transform: translateZ(0);
    }
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(14,165,233,.14);
    }
    .stat .num{
      font-size:20px;
      font-weight:900;
      letter-spacing:-.3px;
    }
    .stat .label{
      color:var(--muted2);
      font-size:12.5px;
      margin-top:6px;
      line-height:1.4;
    }

    .section{
      padding:26px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
      line-height:1.25;
    }
    .section-head .desc{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.8;
      max-width: 56ch;
    }
    .section-surface{
      background: rgba(255,255,255,.56);
      border:1px solid rgba(15,23,42,.08);
      border-radius: 22px;
      box-shadow: 0 18px 40px rgba(2,132,199,.08);
      padding:18px;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .grid-4{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }

    .card{
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      border-radius: var(--radius2);
      padding:14px;
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 54px rgba(14,165,233,.14);
      border-color: rgba(14,165,233,.18);
    }
    .card h3{
      margin:10px 0 6px;
      font-size:14.5px;
      letter-spacing:.1px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.75;
    }
    .card .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .tag{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(14,165,233,.16);
      background: rgba(14,165,233,.10);
      color:#0b3b6a;
      font-weight:650;
      white-space:nowrap;
    }
    .tag.alt{
      border-color: rgba(34,197,94,.18);
      background: rgba(34,197,94,.12);
      color:#0b3a21;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .step{
      padding:14px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
      position:relative;
      overflow:hidden;
    }
    .step::before{
      content:"";
      position:absolute;
      inset:-1px;
      background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(34,197,94,.10), rgba(29,78,216,.12));
      opacity:.55;
      clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
      pointer-events:none;
    }
    .step .top{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .step .n{
      width:34px; height:34px;
      border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      background: rgba(14,165,233,.12);
      border:1px solid rgba(14,165,233,.18);
      color:#0b3b6a;
    }
    .step h3{
      margin:10px 0 6px;
      font-size:14.5px;
      position:relative;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.75;
      position:relative;
    }

    .table-wrap{
      overflow:auto;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 740px;
    }
    th,td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
      text-align:left;
      font-size:13.2px;
    }
    th{
      font-size:13px;
      color:#0f172a;
      background: linear-gradient(180deg, rgba(14,165,233,.12), rgba(34,197,94,.08));
      position:sticky;
      top:0;
      z-index:2;
    }
    td .muted{color:var(--muted2); font-size:12.3px; margin-top:6px; line-height:1.55}
    .score{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.20);
      font-weight:900;
      color:#0b3a21;
      white-space:nowrap;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      margin-left:2px;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
      background: conic-gradient(from 180deg, #22c55e, #0ea5e9, #22c55e);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      filter: drop-shadow(0 6px 10px rgba(34,197,94,.18));
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .time-item{
      display:grid;
      grid-template-columns: 120px 1fr;
      gap:14px;
      align-items:flex-start;
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
    }
    .time-item .when{
      font-weight:850;
      color:#0b3b6a;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .time-item .when .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 10px;
      border-radius:14px;
      background: rgba(14,165,233,.10);
      border:1px solid rgba(14,165,233,.18);
      width: fit-content;
      font-size:12.5px;
    }
    .time-item .when .small{
      color:var(--muted2);
      font-weight:650;
      font-size:12.2px;
    }
    .time-item h3{margin:0 0 6px; font-size:14.5px}
    .time-item p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.75}

    .matching-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .pill-cloud{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .pill{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.74);
      border:1px solid rgba(15,23,42,.10);
      color:var(--muted);
      font-size:12.7px;
      font-weight:650;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      user-select:none;
    }
    .pill:hover{transform: translateY(-1px); border-color: rgba(14,165,233,.22); color:#0b3b6a}
    .pill.is-on{
      background: rgba(14,165,233,.12);
      border-color: rgba(14,165,233,.26);
      color:#0b3b6a;
      box-shadow: 0 14px 28px rgba(14,165,233,.10);
    }

    .price-cards{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .price{
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
    }
    .price .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .price h3{margin:0; font-size:14.5px}
    .price .range{
      font-weight:950;
      letter-spacing:-.2px;
      font-size:16.5px;
      color:#0b3b6a;
      background: rgba(14,165,233,.10);
      border:1px solid rgba(14,165,233,.18);
      padding:8px 10px;
      border-radius:14px;
      white-space:nowrap;
    }
    .price ul{margin:10px 0 0; padding-left:18px}
    .price li{color:var(--muted); margin:6px 0; font-size:13.2px; line-height:1.6}

    .comment-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .comment{
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .comment:hover{transform: translateY(-3px); box-shadow: 0 22px 54px rgba(14,165,233,.14)}
    .person{
      display:flex; align-items:center; gap:10px;
    }
    .avatar{
      width:38px; height:38px; border-radius:14px;
      background: linear-gradient(135deg, rgba(14,165,233,.20), rgba(34,197,94,.12));
      border:1px solid rgba(14,165,233,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#0b3b6a;
      letter-spacing:-.4px;
      flex:0 0 auto;
    }
    .person .meta{
      display:flex; flex-direction:column; gap:3px;
      min-width:0;
    }
    .person .role{
      font-weight:850;
      font-size:13.5px;
    }
    .person .org{
      color:var(--muted2);
      font-size:12.6px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 210px;
    }
    .quote{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.78;
    }
    .quote .hi{
      color:#0b3b6a;
      font-weight:800;
    }

    .accordion{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .acc-item{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 14px;
      background: transparent;
      border:0;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      color:#0f172a;
      font-weight:850;
      font-size:14px;
    }
    .acc-btn:focus{outline:3px solid var(--focus); outline-offset:2px}
    .acc-btn .arrow{
      width:24px; height:24px;
      border-radius:10px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(14,165,233,.08);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      margin-top:2px;
    }
    .acc-item[data-open="true"] .arrow{
      transform: rotate(180deg);
      background: rgba(14,165,233,.14);
      border-color: rgba(14,165,233,.22);
    }
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .acc-item[data-open="true"] .acc-panel{
      max-height: 280px;
    }
    .acc-panel p{
      margin:0;
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.78;
    }

    .list-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:12px;
    }
    .cards-list{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .mini-card{
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      min-width:0;
    }
    .mini-card:hover{transform: translateY(-3px); box-shadow: 0 22px 54px rgba(14,165,233,.14)}
    .mini-card h3{margin:0 0 8px; font-size:14.5px}
    .mini-card ul{margin:0; padding-left:18px}
    .mini-card li{margin:7px 0; color:var(--muted); font-size:13.2px; line-height:1.6}

    .article-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .article{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 14px 34px rgba(15,23,42,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article:hover{transform: translateY(-2px); box-shadow: 0 22px 54px rgba(14,165,233,.14); border-color: rgba(14,165,233,.20)}
    .article .meta{
      display:flex; flex-direction:column; gap:6px; min-width:0;
    }
    .article .title{
      font-weight:900;
      font-size:14px;
      margin:0;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 520px;
    }
    .article .sub{
      margin:0;
      color:var(--muted2);
      font-size:12.6px;
      line-height:1.5;
    }
    .article .go{
      flex:0 0 auto;
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(14,165,233,.18);
      background: rgba(14,165,233,.08);
      font-weight:800;
      color:#0b3b6a;
      font-size:12.5px;
      white-space:nowrap;
    }

    form{
      display:grid;
      gap:12px;
    }
    .form-row{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    label{
      display:flex;
      flex-direction:column;
      gap:8px;
      font-weight:800;
      color:#0f172a;
      font-size:13px;
    }
    input, select, textarea{
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.86);
      padding:12px 12px;
      font-size:14px;
      color:#0f172a;
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
      box-shadow: 0 10px 22px rgba(15,23,42,.05);
    }
    textarea{min-height: 110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(14,165,233,.35);
      box-shadow: 0 0 0 4px rgba(14,165,233,.14);
      background: #fff;
    }
    .form-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .form-note{
      color:var(--muted2);
      font-size:12.6px;
      line-height:1.6;
      max-width: 56ch;
    }

    .footer{
      margin-top: 10px;
      background: linear-gradient(180deg, rgba(14,165,233,.08) 0%, rgba(255,255,255,.7) 45%, rgba(14,165,233,.06) 100%);
      border-top:1px solid rgba(15,23,42,.08);
      padding:26px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .footer .foot-title{
      font-size:14.5px;
      font-weight:950;
      margin:0 0 8px;
    }
    .footer p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.8;
    }
    .foot-links{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
    }
    .foot-links a{
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
      color:var(--muted);
      font-weight:750;
      font-size:12.8px;
      transition: transform .15s ease, border-color .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .foot-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(14,165,233,.22);
      color:#0b3b6a;
    }
    .foot-bottom{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.4px;
    }
    .backtop{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.82);
      box-shadow: 0 18px 45px rgba(15,23,42,.12);
      padding:10px 12px;
      cursor:pointer;
      display:none;
      align-items:center;
      gap:10px;
      color:#0f172a;
      font-weight:900;
      transition: transform .16s ease, opacity .16s ease, box-shadow .16s ease;
      -webkit-tap-highlight-color: transparent;
    }
    .backtop:hover{transform: translateY(-2px); box-shadow: 0 24px 60px rgba(14,165,233,.18)}
    .backtop .arr{
      width:18px; height:18px;
      border-radius:10px;
      background: rgba(14,165,233,.12);
      border:1px solid rgba(14,165,233,.18);
      display:flex; align-items:center; justify-content:center;
    }

    .float-contact{
      position:fixed;
      right:16px;
      bottom:70px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-card{
      display:none;
      width: 220px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 45px rgba(15,23,42,.12);
      transform-origin: right bottom;
      animation: popIn .22s ease both;
    }
    @keyframes popIn{
      from{opacity:0; transform: translateY(8px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .float-card .row{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .float-card .row .t{
      font-weight:950; font-size:13.2px;
    }
    .xbtn{
      width:32px; height:32px; border-radius:12px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(14,165,233,.08);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease;
    }
    .xbtn:hover{transform: translateY(-1px)}
    .kefu-img{
      width:100%;
      aspect-ratio: 1/1;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.7);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .kefu-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .float-card .hint{
      margin-top:10px;
      color:var(--muted2);
      font-size:12.4px;
      line-height:1.55;
    }
    .float-toggle{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 12px;
      border-radius:18px;
      border:0;
      background: var(--grad3);
      color:#0b1220;
      box-shadow: 0 22px 60px rgba(14,165,233,.24);
      cursor:pointer;
      font-weight:950;
      -webkit-tap-highlight-color: transparent;
      transition: transform .16s ease, box-shadow .16s ease;
      user-select:none;
    }
    .float-toggle:hover{transform: translateY(-3px); box-shadow: 0 26px 70px rgba(14,165,233,.30)}
    .float-toggle .badge{
      width:34px; height:34px; border-radius:14px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
    }

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.on{
      opacity:1;
      transform: translateY(0px);
    }

    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
    }

    @media (max-width: 980px){
      h1{font-size:32px}
      .hero-grid{grid-template-columns: 1fr}
      .top-actions{min-width:auto}
      .nav{display:none}
      .mobile-toggle{display:inline-flex; align-items:center; justify-content:center}
      .mobile-panel{display:block}
      .steps{grid-template-columns: repeat(2, minmax(0,1fr))}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .grid-4{grid-template-columns: repeat(2, minmax(0,1fr))}
      .price-cards{grid-template-columns: 1fr}
      .comment-grid{grid-template-columns: 1fr}
      .accordion{grid-template-columns: 1fr}
      .matching-grid{grid-template-columns: 1fr}
      .cards-list{grid-template-columns: 1fr}
      .list-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .float-contact{right:12px; bottom:68px}
      .float-card{width: 206px}
      .form-row{grid-template-columns: 1fr}
      table{min-width: 620px}
      .float-toggle{padding:11px 11px}
      .backtop{right:12px; bottom:14px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .card, .stat, .btn, .article, .mini-card, .comment{transition:none}
      .acc-panel{transition:none}
    }