:root{
      --bg0:#fff7fb;
      --bg1:#ffffff;
      --text:#111827;
      --muted:#5b6475;
      --subtle:#7b8597;
      --border:rgba(17,24,39,.12);
      --card:rgba(255,255,255,.78);
      --card2:#ffffff;
      --shadow:0 14px 40px rgba(17,24,39,.10);
      --shadow2:0 10px 26px rgba(17,24,39,.10);
      --shadow3:0 8px 18px rgba(17,24,39,.08);
      --radius:18px;
      --radius2:14px;
      --accent:#e11d48;
      --accent2:#a21caf;
      --accent3:#0ea5e9;
      --accent4:#f59e0b;
      --ring:rgba(225,29,72,.30);
      --ok:#0ea5e9;
      --good:#10b981;
      --warn:#f59e0b;
      --grid-gap:18px;
      --container:1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1000px 540px at 12% 4%, rgba(225,29,72,.14), transparent 55%),
        radial-gradient(980px 520px at 86% 16%, rgba(162,28,175,.14), transparent 55%),
        radial-gradient(900px 520px at 70% 92%, rgba(14,165,233,.10), transparent 52%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 40%, #fff 100%);
    }

    a{color:inherit}
    img{display:block; max-width:100%}

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

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

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom: 1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:210px;
    }
    .brand-logo{
      width:40px;height:40px;border-radius:12px;
      background: linear-gradient(135deg, rgba(225,29,72,.18), rgba(162,28,175,.14));
      border:1px solid rgba(17,24,39,.08);
      display:flex;align-items:center;justify-content:center;
      overflow:hidden;
    }
    .brand-logo img{width:34px;height:auto; max-height:34px}
    .brand-name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-name strong{font-size:14px; letter-spacing:.2px}
    .brand-name span{font-size:12px; color:var(--muted)}

    nav{
      display:flex;
      align-items:center;
      gap:14px;
      justify-content:flex-end;
      flex:1;
    }

    .nav-links{
      display:none;
      align-items:center;
      gap:14px;
      flex:1;
      justify-content:center;
    }
    .nav-links a{
      text-decoration:none;
      font-size:13px;
      color:var(--muted);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      color:var(--text);
      background: rgba(255,255,255,.65);
      border-color: rgba(17,24,39,.10);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width:260px;
    }
    .btn{
      appearance:none;
      border:none;
      cursor:pointer;
      border-radius:14px;
      padding:11px 14px;
      font-weight:650;
      letter-spacing:.2px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(1px)}
    .btn-primary{
      color:#fff;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 16px 34px rgba(225,29,72,.22);
    }
    .btn-primary:hover{
      box-shadow: 0 20px 44px rgba(225,29,72,.26);
      transform: translateY(-1px);
    }
    .btn-ghost{
      color:var(--text);
      background: rgba(255,255,255,.60);
      border:1px solid rgba(17,24,39,.10);
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
    }
    .btn-ghost:hover{
      background: rgba(255,255,255,.80);
      transform: translateY(-1px);
      border-color: rgba(17,24,39,.14);
    }

    .menu-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;height:44px;
      border-radius:14px;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(17,24,39,.10);
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .menu-btn:hover{transform: translateY(-1px); border-color: rgba(17,24,39,.14); background: rgba(255,255,255,.80)}
    .menu-icon{width:18px;height:12px; position:relative}
    .menu-icon span{
      position:absolute; left:0; right:0; height:2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius:99px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .menu-icon span:nth-child(1){top:0}
    .menu-icon span:nth-child(2){top:5px}
    .menu-icon span:nth-child(3){top:10px}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1){top:5px; transform: rotate(45deg)}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2){opacity:0}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobile-panel{
      display:block;
      overflow:hidden;
      max-height:0;
      transition: max-height .25s ease;
    }
    .mobile-panel.open{max-height:520px}
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:8px;
      padding:10px 0 16px;
    }
    .mobile-links a{
      text-decoration:none;
      color:var(--text);
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 10px 22px rgba(17,24,39,.04);
      font-weight:620;
    }
    .mobile-links a span{
      display:inline-block;
      color:var(--muted);
      font-weight:600;
      font-size:12px;
      margin-left:8px;
    }

    .hero{
      padding:32px 0 10px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:16px;
      align-items:stretch;
    }

    .hero-card{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(900px 420px at 12% 10%, rgba(225,29,72,.18), transparent 55%),
        radial-gradient(820px 400px at 85% 30%, rgba(162,28,175,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
      padding:18px;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(600px 220px at 12% 0%, rgba(245,158,11,.14), transparent 60%),
        radial-gradient(700px 260px at 90% 20%, rgba(14,165,233,.12), transparent 56%);
      pointer-events:none;
      opacity:.9;
    }

    .hero-inner{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
      padding:10px;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      width:fit-content;
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .pulse-dot{
      width:10px;height:10px;border-radius:999px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 0 0 0 rgba(225,29,72,.35);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{box-shadow: 0 0 0 0 rgba(225,29,72,.30)}
      60%{box-shadow: 0 0 0 12px rgba(225,29,72,0)}
      100%{box-shadow: 0 0 0 0 rgba(225,29,72,0)}
    }
    .kicker b{font-size:12px}
    .kicker em{font-style:normal; font-size:12px; color:var(--muted); font-weight:650}

    h1{
      margin:0;
      font-size:30px;
      line-height:1.15;
      letter-spacing:-.4px;
    }

    .hero-sub{
      margin:0;
      color:var(--muted);
      line-height:1.6;
      font-size:14px;
      max-width:62ch;
    }

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

    .quick-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }

    .metric-row{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .metric{
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:88px;
    }
    .metric:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .metric .num{
      font-size:20px;
      font-weight:860;
      letter-spacing:-.4px;
      margin-bottom:6px;
      display:flex; align-items:baseline; gap:8px;
    }
    .metric .num span{
      font-size:12px;
      color:var(--muted);
      font-weight:700;
      letter-spacing:.2px;
    }
    .metric .label{
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
      font-weight:650;
    }

    .trust-strip{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.68);
      box-shadow: var(--shadow3);
      padding:16px 14px;
    }
    .trust-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .trust-top h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .trust-top p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
      max-width:52ch;
      font-weight:650;
    }
    .badge-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      justify-content:flex-start;
      align-items:center;
    }
    .badge{
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      color:var(--muted);
      font-weight:700;
      display:flex; align-items:center; gap:8px;
      white-space:nowrap;
    }
    .badge i{
      width:10px;height:10px;border-radius:999px; display:inline-block;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 0 0 6px rgba(225,29,72,.10);
    }
    .badge:nth-child(2) i{background: linear-gradient(135deg, var(--accent3), #7c3aed); box-shadow: 0 0 0 6px rgba(14,165,233,.10)}
    .badge:nth-child(3) i{background: linear-gradient(135deg, var(--good), #22c55e); box-shadow: 0 0 0 6px rgba(16,185,129,.10)}
    .badge:nth-child(4) i{background: linear-gradient(135deg, var(--warn), #ef4444); box-shadow: 0 0 0 6px rgba(245,158,11,.10)}

    section{padding:26px 0}
    .section-title{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .section-title h2{
      margin:0;
      font-size:20px;
      letter-spacing:-.3px;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      font-weight:650;
      max-width:56ch;
    }

    .card{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }

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

    .cap-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }

    .feature{
      padding:16px 14px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .feature:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .feature .icon{
      width:42px;height:42px;border-radius:16px;
      background:
        radial-gradient(18px 18px at 30% 25%, rgba(255,255,255,.55), transparent 60%),
        linear-gradient(135deg, rgba(225,29,72,.22), rgba(162,28,175,.16));
      border:1px solid rgba(17,24,39,.10);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
    }
    .feature .icon svg{width:20px;height:20px; color: #9f1239}
    .feature h3{
      margin:0;
      font-size:14px;
      letter-spacing:-.1px;
    }
    .feature p{
      margin:6px 0 0;
      color:var(--muted);
      line-height:1.6;
      font-size:13px;
      font-weight:650;
    }

    .steps{
      padding:18px 14px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.66);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .step:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .step .n{
      width:36px;height:36px;border-radius:14px;
      background: linear-gradient(135deg, rgba(225,29,72,.18), rgba(162,28,175,.16));
      border:1px solid rgba(17,24,39,.10);
      display:flex;align-items:center;justify-content:center;
      font-weight:900;
      letter-spacing:-.3px;
      color: #9f1239;
      flex:0 0 auto;
    }
    .step h3{margin:0; font-size:14px}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6; font-weight:650}

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

    .pill-grid{
      display:flex; flex-wrap:wrap;
      gap:10px;
      padding:14px 14px;
    }
    .pill{
      font-size:12px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      color: var(--muted);
      font-weight:750;
      display:flex; align-items:center; gap:10px;
    }
    .pill .dot{
      width:9px;height:9px;border-radius:999px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 0 0 6px rgba(225,29,72,.10);
    }
    .pill:nth-child(2) .dot{background: linear-gradient(135deg, var(--accent3), #7c3aed); box-shadow: 0 0 0 6px rgba(14,165,233,.10)}
    .pill:nth-child(3) .dot{background: linear-gradient(135deg, var(--good), #22c55e); box-shadow: 0 0 0 6px rgba(16,185,129,.10)}
    .pill:nth-child(4) .dot{background: linear-gradient(135deg, var(--warn), #ef4444); box-shadow: 0 0 0 6px rgba(245,158,11,.10)}
    .pill:nth-child(5) .dot{background: linear-gradient(135deg, #60a5fa, #f472b6); box-shadow: 0 0 0 6px rgba(244,114,182,.10)}

    .table-wrap{
      overflow:auto;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:860px;
      font-size:13px;
    }
    thead th{
      position:sticky;
      top:0;
      background: linear-gradient(135deg, rgba(225,29,72,.12), rgba(162,28,175,.12));
      color: var(--text);
      text-align:left;
      padding:14px 14px;
      border-bottom:1px solid rgba(17,24,39,.10);
      font-weight:900;
      letter-spacing:-.2px;
      white-space:nowrap;
    }
    tbody td{
      padding:14px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
      color: var(--muted);
      font-weight:650;
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    .td-strong{color:var(--text)}
    .tag{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      font-weight:850;
      color:var(--text);
      white-space:nowrap;
    }
    .tag i{
      width:9px;height:9px;border-radius:999px;background: linear-gradient(135deg, var(--good), #22c55e);
      box-shadow: 0 0 0 6px rgba(16,185,129,.10);
      display:inline-block;
    }
    .tag.warn i{background: linear-gradient(135deg, var(--warn), #ef4444); box-shadow: 0 0 0 6px rgba(245,158,11,.10)}
    .tag.blue i{background: linear-gradient(135deg, var(--accent3), #7c3aed); box-shadow: 0 0 0 6px rgba(14,165,233,.10)}

    .score-card{
      padding:18px 14px;
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      background:
        radial-gradient(520px 220px at 10% 0%, rgba(225,29,72,.18), transparent 60%),
        radial-gradient(520px 220px at 90% 20%, rgba(14,165,233,.12), transparent 56%),
        rgba(255,255,255,.72);
    }
    .score-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .score-top h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .stars{
      display:flex; gap:6px; align-items:center; justify-content:flex-end;
      padding:8px 10px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .star{
      width:14px;height:14px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      opacity:.95;
    }
    .score-num{
      font-size:24px;
      font-weight:950;
      letter-spacing:-.6px;
      margin:2px 0 0;
    }
    .score-meta{
      color:var(--muted);
      font-weight:700;
      line-height:1.7;
      font-size:13px;
      margin:0;
    }

    .comparison-actions{
      display:flex; flex-wrap:wrap;
      gap:10px;
      margin-top:6px;
      align-items:center;
    }

    .accordion{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details{
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    details[open]{transform: translateY(-1px); box-shadow: var(--shadow3)}
    summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      user-select:none;
      font-weight:900;
      letter-spacing:-.2px;
    }
    summary::-webkit-details-marker{display:none}
    .sum-left{
      display:flex; gap:12px; align-items:flex-start;
    }
    .qicon{
      width:34px;height:34px;border-radius:14px;
      background: linear-gradient(135deg, rgba(225,29,72,.16), rgba(162,28,175,.14));
      border:1px solid rgba(17,24,39,.10);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      color:#9f1239;
    }
    .qicon svg{width:16px;height:16px}
    .chev{
      width:18px;height:18px;
      border-radius:10px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.65);
      display:flex;align-items:center;justify-content:center;
      transition: transform .2s ease;
      flex:0 0 auto;
      margin-top:6px;
    }
    details[open] .chev{transform: rotate(180deg)}
    .chev svg{width:10px;height:10px}
    .answer{
      padding:0 14px 14px 60px;
      color:var(--muted);
      line-height:1.7;
      font-size:13px;
      font-weight:650;
    }

    .reviews-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .review{
      padding:16px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .review:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .review-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:44px;height:44px;border-radius:18px;
      background:
        radial-gradient(20px 18px at 30% 25%, rgba(255,255,255,.55), transparent 60%),
        linear-gradient(135deg, rgba(225,29,72,.18), rgba(14,165,233,.12));
      border:1px solid rgba(17,24,39,.10);
      display:flex;align-items:center;justify-content:center;
      font-weight:950;
      color:#9f1239;
    }
    .review role{display:none}
    .review h3{margin:0; font-size:14px; letter-spacing:-.2px}
    .review .meta{color:var(--muted); font-size:12px; font-weight:750}
    .review p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-weight:650; font-size:13px}

    .cases-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .case{
      padding:14px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .case:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .case-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .case h3{margin:0; font-size:14px; letter-spacing:-.2px}
    .case .cap{color:var(--muted); font-size:12px; font-weight:800; white-space:nowrap}
    .case ul{
      margin:0; padding:0; list-style:none;
      display:grid; gap:8px;
    }
    .case li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted); font-weight:650; font-size:13px; line-height:1.6;
    }
    .case li i{
      width:10px;height:10px;border-radius:4px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 0 0 6px rgba(225,29,72,.10);
      margin-top:6px;
      flex:0 0 auto;
    }

    .article-list{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .article{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease;
      text-decoration:none;
      color:inherit;
    }
    .article:hover{transform: translateY(-2px); box-shadow: var(--shadow3)}
    .art-dot{
      width:42px;height:42px;border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(18px 18px at 30% 25%, rgba(255,255,255,.55), transparent 60%),
        linear-gradient(135deg, rgba(14,165,233,.14), rgba(225,29,72,.16));
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
    }
    .art-dot svg{width:18px;height:18px; color:#0f766e}
    .article h3{margin:0; font-size:14px; letter-spacing:-.2px}
    .article p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6; font-weight:650}
    .article .linkhint{
      color:var(--subtle); font-size:12px; font-weight:800; margin-top:10px;
      display:flex; align-items:center; gap:8px;
    }
    .arrow{
      width:26px;height:26px;border-radius:12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
    }
    .arrow svg{width:14px;height:14px}

    .form-card{
      padding:18px 14px;
      background:
        radial-gradient(600px 260px at 6% 0%, rgba(225,29,72,.16), transparent 60%),
        radial-gradient(520px 240px at 90% 30%, rgba(162,28,175,.14), transparent 56%),
        rgba(255,255,255,.72);
    }
    form{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
      margin-top:10px;
    }
    label{
      font-size:12px;
      font-weight:850;
      color:var(--text);
      letter-spacing:.2px;
      display:flex; flex-direction:column; gap:8px;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(17,24,39,.12);
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      background: rgba(255,255,255,.80);
      color:var(--text);
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
      font-weight:650;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(225,29,72,.35);
      box-shadow: 0 0 0 4px var(--ring);
    }
    .form-row{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .form-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
      margin-top:4px;
    }
    .small-note{
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      line-height:1.6;
      margin:0;
    }

    footer{
      margin-top: 10px;
      padding: 26px 0 34px;
      border-top:1px solid rgba(17,24,39,.08);
      background:
        radial-gradient(760px 320px at 10% 0%, rgba(225,29,72,.12), transparent 62%),
        radial-gradient(760px 320px at 90% 10%, rgba(162,28,175,.10), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.94));
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
      align-items:start;
    }
    .footer-card{
      padding:16px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
    }
    .footer-card h3{margin:0; font-size:14px; letter-spacing:-.2px}
    .footer-card p{margin:8px 0 0; color:var(--muted); font-weight:650; font-size:13px; line-height:1.7}
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      text-decoration:none;
      font-size:13px;
      font-weight:800;
      color:var(--muted);
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{transform: translateY(-1px); border-color: rgba(17,24,39,.14); background: rgba(255,255,255,.90); color:var(--text)}
    .copyright{
      margin-top:14px;
      color:var(--muted);
      font-size:12px;
      font-weight:700;
      line-height:1.6;
      display:flex; flex-direction:column; gap:6px;
    }

    .side-cta{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      display:flex; align-items:center; gap:10px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 34px rgba(17,24,39,.14);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
      text-decoration:none;
      color:var(--text);
      font-weight:900;
      letter-spacing:-.2px;
    }
    .float-btn:hover{transform: translateY(-2px); box-shadow: 0 22px 44px rgba(17,24,39,.16)}
    .float-ico{
      width:36px;height:36px;border-radius:14px;
      background: linear-gradient(135deg, rgba(225,29,72,.20), rgba(162,28,175,.14));
      border:1px solid rgba(17,24,39,.10);
      display:flex;align-items:center;justify-content:center;
    }
    .float-ico svg{width:16px;height:16px;color:#9f1239}
    .float-panel{
      overflow:hidden;
      max-height:0;
      opacity:0;
      transform: translateY(6px);
      transition: max-height .25s ease, opacity .2s ease, transform .2s ease;
      width:260px;
      border-radius: 18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 16px 34px rgba(17,24,39,.14);
    }
    .float-panel.open{
      max-height:340px;
      opacity:1;
      transform: translateY(0);
    }
    .float-panel-inner{
      padding:12px 12px 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .float-panel-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .float-panel-top h4{margin:0; font-size:14px; letter-spacing:-.2px}
    .close-x{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
    }
    .close-x svg{width:14px;height:14px}
    .qr-wrap{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .qr-wrap img{
      width:86px; height:auto; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      padding:6px;
    }
    .qr-info{
      display:flex; flex-direction:column; gap:6px;
    }
    .qr-info p{margin:0; color:var(--muted); font-weight:700; font-size:12px; line-height:1.6}
    .mini-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:4px;
    }
    .mini-links a{
      text-decoration:none;
      font-size:12px;
      font-weight:850;
      color:var(--muted);
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .mini-links a:hover{transform: translateY(-1px); background: rgba(255,255,255,.92); border-color: rgba(17,24,39,.14); color:var(--text)}

    .to-top{
      position:fixed;
      left:14px;
      bottom:14px;
      z-index:60;
      width:44px;height:44px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 34px rgba(17,24,39,.14);
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, opacity .2s ease;
    }
    .to-top:hover{transform: translateY(-2px)}
    .to-top svg{width:18px;height:18px; color:#9f1239}

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

    @media (min-width: 900px){
      .nav-links{display:flex}
      .menu-btn{display:none}
      .mobile-panel{display:none}
      .hero-grid{grid-template-columns: 1.35fr .65fr}
      .hero-inner{grid-template-columns: 1fr; padding:16px}
      .quick-grid{grid-template-columns: 1fr}
      .metric-row{grid-template-columns: repeat(2, minmax(0,1fr))}
      .two-col{grid-template-columns: 1fr 1fr}
      .cap-grid{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr}
      .split{grid-template-columns: 1fr 1fr}
      .reviews-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .cases-grid{grid-template-columns: repeat(3, minmax(0,1fr))}
      .article-list{grid-template-columns: 1fr 1fr}
      .form-row{grid-template-columns: 1fr 1fr}
      .footer-grid{grid-template-columns: 1.25fr .75fr}
      .hero-card{padding:20px}
    }

    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
      .reveal{opacity:1; transform:none}
    }