:root{
      --bg:#fbf7f6;
      --panel:#ffffff;
      --text:#1f2328;
      --muted:#5a6370;
      --muted2:#7a8594;
      --line:rgba(18,22,26,.10);
      --shadow:0 18px 40px rgba(20,18,25,.08);
      --shadow2:0 10px 24px rgba(20,18,25,.10);
      --brand:#e51b2f; /* 艳红热烈风 */
      --brand2:#b60f1f;
      --brandSoft:rgba(229,27,47,.12);
      --brandSoft2:rgba(182,15,31,.10);
      --blue:#1e5eff;
      --ok:#0f9d58;
      --warn:#ff8a00;
      --radius:18px;
      --radius2:12px;
      --container:1140px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", Arial, "Apple Color Emoji","Segoe UI Emoji";
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(229,27,47,.14), transparent 60%),
        radial-gradient(1000px 500px at 80% 0%, rgba(30,94,255,.10), transparent 55%),
        linear-gradient(#ffffff, var(--bg) 45%, #ffffff 100%);
      color:var(--text);
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:var(--panel); border:1px solid var(--line); border-radius:10px; z-index:9999;
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(120%) blur(10px);
      background:rgba(255,255,255,.70);
      border-bottom:1px solid rgba(18,22,26,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:260px;
    }
    .logo{
      width:40px; height:40px; border-radius:12px;
      background:
        radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
        linear-gradient(145deg, var(--brand), #ff3a4e);
      box-shadow:0 10px 20px rgba(229,27,47,.18);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.35);
    }
    .logo img{width:100%; height:100%; object-fit:cover; display:block}
    .brand-name{
      display:flex; flex-direction:column; gap:2px;
      line-height:1.1;
    }
    .brand-name strong{font-size:15px; letter-spacing:.2px}
    .brand-name span{font-size:12px; color:var(--muted2)}
    nav{
      display:flex; align-items:center; justify-content:flex-end; gap:14px;
      flex:1;
    }
    .menu{
      display:flex; align-items:center; gap:14px;
      padding:0; margin:0;
      list-style:none;
      flex-wrap:nowrap;
    }
    .menu a{
      font-size:13.5px;
      color:var(--muted);
      padding:8px 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;
    }
    .menu a:hover{
      background:rgba(229,27,47,.07);
      border-color:rgba(229,27,47,.15);
      color:var(--text);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(18,22,26,.12);
      background:rgba(255,255,255,.75);
      color:var(--text);
      font-weight:600;
      font-size:13.5px;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      border-color:rgba(229,27,47,.28);
      background:linear-gradient(180deg, rgba(229,27,47,.96), rgba(182,15,31,.96));
      color:#fff;
      box-shadow:0 14px 26px rgba(229,27,47,.26);
    }
    .btn-primary:hover{
      box-shadow:0 18px 32px rgba(229,27,47,.34);
      transform:translateY(-1px);
    }
    .btn-ghost{
      border-color:rgba(18,22,26,.12);
      background:rgba(255,255,255,.65);
    }
    .icon{
      width:18px; height:18px; display:inline-block; flex:0 0 auto;
    }

    .mobile-toggle{
      display:none;
      border-radius:14px;
      width:42px; height:42px;
      align-items:center; justify-content:center;
      border:1px solid rgba(18,22,26,.12);
      background:rgba(255,255,255,.7);
      cursor:pointer;
    }
    .mobile-panel{
      display:none;
      padding:0 0 14px;
    }
    .mobile-panel .mobile-menu{
      display:flex; flex-direction:column; gap:8px;
      padding:10px 0 14px;
      border-top:1px solid rgba(18,22,26,.08);
    }
    .mobile-panel .mobile-menu a{
      padding:12px 12px;
      border:1px solid rgba(18,22,26,.10);
      border-radius:14px;
      color:var(--text);
      background:rgba(255,255,255,.7);
    }

    main{padding:0 0 50px}

    .hero{
      padding:28px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      position:relative;
      border-radius:calc(var(--radius) + 6px);
      overflow:hidden;
      background:
        radial-gradient(800px 280px at 15% 0%, rgba(229,27,47,.24), transparent 60%),
        radial-gradient(600px 250px at 85% 10%, rgba(30,94,255,.18), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.72));
      border:1px solid rgba(18,22,26,.10);
      box-shadow:var(--shadow);
    }
    .hero-card-inner{
      padding:26px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height:340px;
    }
    .eyebrow{
      display:flex; flex-wrap:wrap; align-items:center; gap:10px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(229,27,47,.22);
      background:rgba(229,27,47,.08);
      color:#b60f1f;
      font-weight:700;
      font-size:12.5px;
    }
    .pill .dot{
      width:8px; height:8px; border-radius:50%;
      background:var(--brand);
      box-shadow:0 0 0 6px rgba(229,27,47,.14);
    }
    .tagline{
      font-size:12.5px;
      color:var(--muted2);
      font-weight:600;
    }
    h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.75;
      max-width:60ch;
    }
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px;
      align-items:center;
      margin-top:4px;
    }
    .stat-row{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:auto;
      padding-top:6px;
    }
    .mini-stat{
      flex:1 1 160px;
      min-width:160px;
      border-radius:16px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
      display:flex; flex-direction:column; gap:6px;
    }
    .mini-stat strong{font-size:18px}
    .mini-stat span{font-size:12.5px; color:var(--muted2); line-height:1.4}

    .hero-side{
      display:flex; flex-direction:column; gap:12px;
    }
    .side-card{
      border-radius:var(--radius);
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(20,18,25,.06);
      padding:16px;
      display:flex; flex-direction:column; gap:10px;
      position:relative;
      overflow:hidden;
    }
    .side-card::after{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(500px 180px at 20% 0%, rgba(229,27,47,.18), transparent 55%),
        radial-gradient(420px 180px at 90% 0%, rgba(30,94,255,.12), transparent 55%);
      opacity:.65;
      pointer-events:none;
    }
    .side-card > *{position:relative; z-index:1}
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size:14px;
      color:var(--muted);
      letter-spacing:.2px;
      font-weight:800;
      text-transform:uppercase;
    }
    .score{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(229,27,47,.22);
      background:rgba(229,27,47,.08);
      color:#b60f1f;
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }
    .radar{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:4px;
    }
    .meter{
      border-radius:16px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.66);
      padding:10px 10px;
      display:flex; flex-direction:column; gap:6px;
      min-height:92px;
    }
    .meter-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      font-size:12.5px; color:var(--muted2); font-weight:700;
    }
    .bar{
      height:10px; border-radius:999px;
      background:rgba(18,22,26,.08);
      overflow:hidden;
      border:1px solid rgba(18,22,26,.06);
    }
    .bar > i{
      display:block; height:100%; width:60%;
      background:linear-gradient(90deg, rgba(229,27,47,.95), rgba(255,58,78,.85));
      border-radius:999px;
      transform-origin:left;
      animation: grow .9s ease both;
    }
    @keyframes grow{
      from{transform:scaleX(.75); opacity:.8}
      to{transform:scaleX(1); opacity:1}
    }
    .bar.blue > i{
      background:linear-gradient(90deg, rgba(30,94,255,.95), rgba(95,160,255,.85));
    }

    .side-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:2px;
    }
    .chip-link{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.66);
      font-weight:700;
      font-size:13px;
      color:var(--text);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      cursor:pointer;
    }
    .chip-link:hover{
      transform:translateY(-1px);
      box-shadow:0 12px 18px rgba(20,18,25,.08);
      border-color:rgba(229,27,47,.22);
    }

    section{
      padding:34px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width:62ch;
    }
    .divider{
      height:1px;
      background:linear-gradient(90deg, rgba(229,27,47,.24), rgba(18,22,26,.06), rgba(30,94,255,.16));
      border:0;
      margin:0;
    }

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

    .card{
      border-radius:var(--radius);
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 26px rgba(20,18,25,.05);
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 36px rgba(20,18,25,.10);
      border-color:rgba(229,27,47,.22);
    }
    .card-inner{padding:16px}
    .card h3{
      margin:0 0 8px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.8px;
      line-height:1.7;
    }
    .card .meta{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.75);
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
    }
    .badge .b-dot{
      width:8px; height:8px; border-radius:50%;
      background:rgba(229,27,47,.95);
      box-shadow:0 0 0 5px rgba(229,27,47,.12);
    }

    .process{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start;
    }
    .steps{
      display:flex; flex-direction:column; gap:12px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.70);
    }
    .step-num{
      width:36px; height:36px; border-radius:14px;
      background:rgba(229,27,47,.10);
      border:1px solid rgba(229,27,47,.22);
      color:var(--brand2);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .step h3{margin:0 0 6px; font-size:15px}
    .step p{margin:0; color:var(--muted); font-size:13.7px; line-height:1.7}

    .compare-wrap{
      background:linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.86));
      border:1px solid rgba(18,22,26,.10);
      border-radius:calc(var(--radius) + 6px);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .compare-head{
      padding:16px 16px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      background:linear-gradient(180deg, #ffb300, #ff8a00);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      box-shadow:0 10px 20px rgba(255,138,0,.16);
    }
    .rating strong{font-size:24px}
    .rating span{color:var(--muted2); font-weight:800; font-size:13px}
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      margin-top:12px;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-top:1px solid rgba(18,22,26,.08);
      vertical-align:top;
      font-size:13.5px;
      line-height:1.6;
    }
    .compare-table th{
      text-align:left;
      font-size:13px;
      color:var(--muted2);
      background:rgba(255,255,255,.72);
      position:sticky; top:0;
      z-index:1;
    }
    .compare-table thead th{
      border-top:none;
    }
    .tick{
      color:#0f9d58; font-weight:1000;
      display:inline-flex; align-items:center; gap:8px;
    }
    .tick::before{
      content:"";
      width:18px; height:18px;
      background:rgba(15,157,88,.10);
      border:1px solid rgba(15,157,88,.25);
      border-radius:8px;
      display:inline-block;
      position:relative;
    }
    .tick::after{
      content:"";
      width:7px; height:4px;
      border-left:2px solid #0f9d58;
      border-bottom:2px solid #0f9d58;
      transform:rotate(-45deg);
      margin-left:-24px;
      margin-top:8px;
      display:inline-block;
      position:relative;
    }
    .x{
      color:#c23b2f; font-weight:1000;
    }
    .x::before{
      content:"";
      width:18px; height:18px;
      background:rgba(194,59,47,.10);
      border:1px solid rgba(194,59,47,.25);
      border-radius:8px;
      display:inline-block;
      vertical-align:middle;
      margin-right:8px;
    }

    .services-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:14px; align-items:start;
    }
    .list{
      display:flex; flex-direction:column; gap:10px;
      margin:0; padding:0; list-style:none;
    }
    .li{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.68);
    }
    .li .mark{
      width:34px; height:34px;
      border-radius:14px;
      background:rgba(229,27,47,.10);
      border:1px solid rgba(229,27,47,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-weight:1000;
      color:var(--brand2);
    }
    .li h3{margin:0; font-size:14.7px}
    .li p{margin:4px 0 0; color:var(--muted); font-size:13.5px; line-height:1.65}

    .match-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
      align-items:start;
    }

    .timeline{
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.70);
    }
    .timeline ol{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px}
    .titem{
      display:grid; grid-template-columns: 34px 1fr; gap:12px; align-items:start;
    }
    .ticon{
      width:34px; height:34px; border-radius:14px;
      background:rgba(30,94,255,.10);
      border:1px solid rgba(30,94,255,.22);
      display:flex; align-items:center; justify-content:center;
      color:#1e5eff; font-weight:1000;
      flex:0 0 auto;
    }
    .titem strong{display:block; font-size:14.7px; margin-top:2px}
    .titem span{display:block; color:var(--muted); font-size:13.5px; line-height:1.65; margin-top:4px}

    .table-wrap{
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.72);
      border-radius:var(--radius);
      overflow:hidden;
    }
    .table-wrap .subhead{
      padding:14px 14px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .table-wrap table{
      width:100%;
      border-collapse:collapse;
    }
    .table-wrap th, .table-wrap td{
      padding:12px 12px;
      border-top:1px solid rgba(18,22,26,.08);
      font-size:13.5px;
      text-align:left;
      vertical-align:top;
      line-height:1.6;
      white-space:normal;
    }
    .table-wrap thead th{
      border-top:none;
      color:var(--muted2);
      background:rgba(255,255,255,.78);
      position:sticky; top:0; z-index:1;
    }

    .two-col{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
    }

    .cards-row{
      display:flex; gap:12px; overflow:auto; padding-bottom:6px; scroll-snap-type:x mandatory;
    }
    .cards-row .review-card{
      min-width:320px;
      scroll-snap-align:start;
    }

    .review-card .avatar{
      width:42px; height:42px; border-radius:16px;
      background:linear-gradient(145deg, rgba(229,27,47,.18), rgba(30,94,255,.14));
      border:1px solid rgba(18,22,26,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:var(--brand2);
      margin-bottom:10px;
    }
    .review-card .who{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-top:6px;
      color:var(--muted2);
      font-size:12.5px;
      font-weight:800;
    }
    .review-card .quote{
      color:var(--muted);
      font-size:13.8px;
      line-height:1.8;
      margin:0;
    }

    .anchor-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:8px;
    }

    .article-grid{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px;
    }
    .article{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.72);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:12px;
      min-height:170px;
    }
    .article:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 36px rgba(20,18,25,.10);
      border-color:rgba(229,27,47,.22);
    }
    .article .k{
      display:flex; align-items:center; gap:8px; flex-wrap:wrap;
    }
    .label{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(229,27,47,.20);
      background:rgba(229,27,47,.08);
      color:#b60f1f;
      font-weight:900;
      font-size:12.5px;
    }
    .article a{
      font-weight:1000;
      font-size:15px;
      letter-spacing:-.2px;
      line-height:1.45;
      color:var(--text);
    }
    .article .desc{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      margin:0;
    }
    .article .foot{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted2);
      font-size:12.5px; font-weight:800;
    }

    .form-card{
      border-radius:calc(var(--radius) + 6px);
      border:1px solid rgba(18,22,26,.10);
      background:
        radial-gradient(700px 240px at 0% 0%, rgba(229,27,47,.18), transparent 55%),
        radial-gradient(620px 260px at 100% 0%, rgba(30,94,255,.13), transparent 56%),
        rgba(255,255,255,.78);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .form-inner{padding:18px}
    form{margin:0}
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:13.2px; color:var(--muted2); font-weight:900;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .req{
      color:#b60f1f; font-weight:1000;
      font-size:12px;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(18,22,26,.12);
      background:rgba(255,255,255,.86);
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition:border-color .15s ease, box-shadow .15s ease, transform .05s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(229,27,47,.35);
      box-shadow:0 0 0 4px rgba(229,27,47,.12);
    }
    .form-actions{
      display:flex; gap:12px; align-items:center; justify-content:flex-end; flex-wrap:wrap;
      margin-top:14px;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      margin-right:auto;
    }

    details.faq{
      border-radius:var(--radius);
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.70);
      overflow:hidden;
      transition:box-shadow .15s ease, border-color .15s ease;
    }
    details.faq[open]{
      border-color:rgba(229,27,47,.24);
      box-shadow:0 16px 26px rgba(20,18,25,.08);
    }
    summary.faq-sum{
      cursor:pointer;
      list-style:none;
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:1000;
      letter-spacing:-.15px;
      font-size:14.5px;
      user-select:none;
    }
    summary.faq-sum::-webkit-details-marker{display:none}
    .chev{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      transition:transform .18s ease, border-color .18s ease;
      flex:0 0 auto;
    }
    details[open] .chev{transform:rotate(180deg); border-color:rgba(229,27,47,.22)}
    .faq-content{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.8px;
      line-height:1.8;
    }
    .faq-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }

    .footer{
      border-top:1px solid rgba(18,22,26,.08);
      background:rgba(255,255,255,.75);
      padding:24px 0 14px;
    }
    .footer-grid{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start;
    }
    .foot-brand{
      display:flex; align-items:flex-start; gap:14px;
    }
    .foot-logo{
      width:44px; height:44px; border-radius:16px;
      background:linear-gradient(145deg, rgba(229,27,47,.20), rgba(30,94,255,.12));
      border:1px solid rgba(18,22,26,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:var(--brand2);
      flex:0 0 auto;
      overflow:hidden;
    }
    .foot-logo img{width:100%; height:100%; object-fit:cover; display:block}
    .foot-brand h3{margin:0; font-size:15px}
    .foot-brand p{margin:6px 0 0; color:var(--muted); line-height:1.75; font-size:13.5px}
    .foot-links{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px 12px;
    }
    .foot-links a{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.70);
      color:var(--text);
      font-weight:900;
      font-size:13.2px;
      transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    }
    .foot-links a:hover{
      transform:translateY(-1px);
      border-color:rgba(229,27,47,.22);
      box-shadow:0 14px 26px rgba(20,18,25,.08);
    }
    .footer-bottom{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(18,22,26,.08);
      display:flex; justify-content:space-between; align-items:center; gap:12px;
      flex-wrap:wrap;
      color:var(--muted2);
      font-weight:800;
      font-size:12.5px;
    }
    .friendship{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
    }
    .friendship a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(18,22,26,.10);
      background:rgba(255,255,255,.70);
      color:var(--text);
      font-weight:900;
      font-size:12.7px;
      transition:transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .friendship a:hover{transform:translateY(-1px); border-color:rgba(229,27,47,.22)}
    .float-cta{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      border-radius:16px;
      border:1px solid rgba(18,22,26,.12);
      background:rgba(255,255,255,.86);
      box-shadow:0 20px 40px rgba(20,18,25,.12);
      padding:10px 12px;
      display:flex; align-items:center; gap:10px;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      user-select:none;
    }
    .float-btn:hover{
      transform:translateY(-2px);
      border-color:rgba(229,27,47,.22);
      box-shadow:0 26px 54px rgba(20,18,25,.16);
    }
    .float-btn strong{font-size:13px}
    .float-btn .small{font-size:12.3px; color:var(--muted2); font-weight:800}
    .to-top{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(180deg, rgba(229,27,47,.96), rgba(182,15,31,.96));
      color:#fff;
      border:1px solid rgba(229,27,47,.40);
      cursor:pointer;
      box-shadow:0 14px 30px rgba(229,27,47,.25);
      transition:transform .15s ease;
      user-select:none;
    }
    .to-top:active{transform:translateY(1px)}
    .fade-in{
      opacity:0;
      transform:translateY(12px);
      transition:opacity .5s ease, transform .5s ease;
    }
    .fade-in.in{
      opacity:1;
      transform:translateY(0);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .hero-card-inner{min-height:unset}
      .grid-3{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr 1fr}
      .services-grid{grid-template-columns:1fr}
      .process{grid-template-columns:1fr}
      .match-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .foot-links{grid-template-columns:1fr}
      .brand{min-width:unset}
    }
    @media (max-width: 840px){
      .menu{display:none}
      .nav-cta .btn-ghost{display:none}
      .mobile-toggle{display:flex}
      .mobile-panel{display:block}
      nav{justify-content:flex-end}
    }