:root{
      --bg0:#fff7f6;
      --bg1:#ffffff;
      --text:#14121a;
      --muted:#5a5866;
      --muted2:#7a7688;
      --line:rgba(20,18,26,.10);
      --line2:rgba(20,18,26,.14);
      --card:#ffffff;
      --shadow: 0 14px 40px rgba(18,10,24,.10);
      --shadow2: 0 10px 26px rgba(231,61,121,.18);
      --shadow3: 0 10px 24px rgba(40,32,52,.10);
      --brand1:#ff4da1;
      --brand2:#ff2f86;
      --brand3:#a8145e;
      --accent:#ff7abf;
      --accent2:#ffb3d9;
      --blue:#246bff;
      --good:#0f8a52;
      --warn:#b45309;
      --radius:18px;
      --radius2:14px;
      --container:1140px;
      --padx:18px;
      --focus: 0 0 0 4px rgba(255,77,161,.20);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(255,77,161,.18), transparent 55%),
        radial-gradient(900px 420px at 90% 0%, rgba(255,176,217,.26), transparent 50%),
        linear-gradient(180deg, var(--bg0), #ffffff 38%, #ffffff 100%);
      line-height:1.6;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padx);
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.75);
      backdrop-filter:saturate(160%) blur(10px);
      border-bottom:1px solid rgba(20,18,26,.08);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .brand img{
      width:42px;
      height:42px;
      border-radius:14px;
      object-fit:contain;
      background:#fff;
      box-shadow:0 10px 24px rgba(255,77,161,.18);
      border:1px solid rgba(255,77,161,.20);
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      gap:2px;
      line-height:1.2;
    }
    .brand-title strong{font-size:14px; letter-spacing:.2px}
    .brand-title span{font-size:12px; color:var(--muted)}
    .nav{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      font-size:13px;
      color:var(--muted);
      padding:10px 10px;
      border-radius:12px;
      transition:background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(255,77,161,.10);
      color:var(--text);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:4px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(20,18,26,.12);
      background:#fff;
      color:var(--text);
      font-weight:650;
      font-size:13px;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn:hover{transform:translateY(-1px); box-shadow:0 12px 26px rgba(20,18,26,.10)}
    .btn-primary{
      border-color:rgba(255,77,161,.35);
      background:linear-gradient(180deg, rgba(255,77,161,.14), rgba(255,47,134,.06));
      box-shadow:0 14px 32px rgba(255,77,161,.18);
    }
    .btn-primary .dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #ffd1ea, #ff4da1 55%, #c10d5a 100%);
      box-shadow:0 0 0 4px rgba(255,77,161,.14);
    }
    .btn-ghost{
      background:rgba(255,255,255,.55);
      border-color:rgba(20,18,26,.10);
    }
    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(20,18,26,.12);
      background:rgba(255,255,255,.75);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease;
    }
    .hamburger:hover{transform:translateY(-1px); box-shadow:0 12px 26px rgba(20,18,26,.10)}
    .hamburger:focus{outline:none; box-shadow:var(--focus)}
    .hamburger svg{width:18px; height:18px}
    .mobile-panel{
      display:none;
      border-top:1px solid rgba(20,18,26,.08);
      background:rgba(255,255,255,.85);
      backdrop-filter:saturate(160%) blur(12px);
    }
    .mobile-panel .container{padding:10px var(--padx) 16px}
    .mobile-links{
      display:grid;
      gap:8px;
      grid-template-columns:1fr 1fr;
      padding:10px 0 2px;
    }
    .mobile-links a{
      font-size:13px;
      color:var(--muted);
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(20,18,26,.08);
      background:rgba(255,255,255,.65);
    }
    .mobile-links a:active{transform:translateY(1px)}
    .hero{
      padding:28px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      border-radius:28px;
      background:
        radial-gradient(900px 380px at 15% 0%, rgba(255,77,161,.30), transparent 55%),
        radial-gradient(520px 260px at 88% 22%, rgba(255,178,219,.28), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      border:1px solid rgba(255,77,161,.18);
      box-shadow: var(--shadow2);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-left:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(255,77,161,.26), transparent 28%),
        linear-gradient(320deg, rgba(255,178,219,.22), transparent 34%);
      filter: blur(18px);
      opacity:.55;
      pointer-events:none;
    }
    .hero-left > *{position:relative; z-index:1}
    .eyebrow{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-size:13px;
      margin-bottom:10px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,77,161,.10);
      border:1px solid rgba(255,77,161,.18);
      color:var(--text);
      font-weight:650;
      letter-spacing:.2px;
    }
    .pill .spark{
      width:10px; height:10px; border-radius:3px;
      background:linear-gradient(180deg, #ff9fd0, #ff4da1);
      transform:rotate(12deg);
      box-shadow:0 0 0 4px rgba(255,77,161,.14);
    }
    h1{
      font-size:34px;
      margin:6px 0 10px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .hero-sub{
      color:var(--muted);
      font-size:15px;
      margin:0 0 16px;
      max-width:62ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin:14px 0 8px;
    }
    .quick-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }
    .tag{
      font-size:12px;
      color:var(--muted);
      padding:9px 10px;
      background:rgba(255,255,255,.60);
      border:1px solid rgba(20,18,26,.08);
      border-radius:14px;
      white-space:nowrap;
    }
    .hero-right{
      border-radius:28px;
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      border:1px solid rgba(20,18,26,.10);
      box-shadow: var(--shadow3);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      position:relative;
      overflow:hidden;
    }
    .hero-right:after{
      content:"";
      position:absolute;
      width:260px; height:260px;
      right:-120px; top:-120px;
      background:radial-gradient(circle at 30% 30%, rgba(255,77,161,.35), transparent 60%);
      filter: blur(8px);
      opacity:.8;
      pointer-events:none;
    }
    .hero-right > *{position:relative; z-index:1}
    .data-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .data-card{
      border-radius:18px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,18,26,.10);
      padding:12px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .data-card:hover{
      transform:translateY(-2px);
      border-color:rgba(255,77,161,.30);
      box-shadow:0 18px 40px rgba(255,77,161,.16);
    }
    .data-card .k{
      font-size:12px;
      color:var(--muted);
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .badge{
      font-size:11px;
      font-weight:750;
      color:#6b0c35;
      background:rgba(255,77,161,.16);
      border:1px solid rgba(255,77,161,.22);
      padding:4px 8px;
      border-radius:999px;
      white-space:nowrap;
    }
    .data-card .v{
      margin-top:8px;
      font-size:20px;
      font-weight:800;
      letter-spacing:-.4px;
    }
    .mini-list{
      border-radius:18px;
      background:rgba(255,255,255,.70);
      border:1px solid rgba(20,18,26,.10);
      padding:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .mini-list h3{
      margin:0;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .mini-item{
      display:flex; align-items:flex-start; gap:10px;
      color:var(--muted);
      font-size:13px;
    }
    .tick{
      width:18px; height:18px;
      border-radius:7px;
      background:linear-gradient(180deg, rgba(15,138,82,.18), rgba(15,138,82,.06));
      border:1px solid rgba(15,138,82,.25);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .tick svg{width:12px; height:12px; color:var(--good)}
    .section{
      padding:28px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .section-title{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .section-title h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      max-width:70ch;
    }
    .sub-action{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      border-radius:var(--radius);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,18,26,.10);
      box-shadow:0 10px 24px rgba(20,18,26,.06);
      padding:16px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-width:0;
    }
    .card:hover{transform:translateY(-2px); box-shadow:0 18px 44px rgba(20,18,26,.10); border-color:rgba(255,77,161,.26)}
    .card h3{
      margin:10px 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
    }
    .icon{
      width:42px; height:42px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(255,77,161,.16), rgba(255,255,255,.6));
      border:1px solid rgba(255,77,161,.22);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 14px 28px rgba(255,77,161,.14);
    }
    .icon svg{width:18px; height:18px; color:var(--brand3)}
    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .step{
      padding:14px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.70);
      border:1px solid rgba(20,18,26,.10);
      display:flex;
      flex-direction:column;
      gap:10px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-width:0;
    }
    .step:hover{transform:translateY(-2px); border-color:rgba(255,77,161,.26); box-shadow:0 18px 44px rgba(255,77,161,.12)}
    .step-top{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .step-num{
      font-weight:900;
      font-size:12px;
      color:#6b0c35;
      background:rgba(255,77,161,.16);
      border:1px solid rgba(255,77,161,.22);
      padding:6px 10px;
      border-radius:999px;
    }
    .step svg{width:18px; height:18px; color:rgba(20,18,26,.75)}
    .step h3{margin:0; font-size:14px}
    .step p{margin:0; color:var(--muted); font-size:13px}
    .compare-wrap{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:
        radial-gradient(800px 340px at 0% 0%, rgba(255,77,161,.14), transparent 50%),
        radial-gradient(760px 340px at 100% 20%, rgba(255,178,219,.20), transparent 48%),
        rgba(255,255,255,.70);
      box-shadow:0 20px 60px rgba(20,18,26,.08);
      padding:14px;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:20px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.88);
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,18,26,.08);
      vertical-align:top;
      font-size:13px;
    }
    .compare-table th{
      background:linear-gradient(180deg, rgba(255,77,161,.12), rgba(255,255,255,.75));
      color:var(--text);
      font-weight:800;
      letter-spacing:-.2px;
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table tr:last-child td{border-bottom:none}
    .td-muted{color:var(--muted)}
    .chip-row{display:flex; flex-wrap:wrap; gap:8px}
    .chip{
      font-size:12px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.65);
      color:var(--muted);
      padding:7px 9px;
      border-radius:999px;
      white-space:nowrap;
    }
    .chip.good{
      border-color:rgba(15,138,82,.25);
      background:rgba(15,138,82,.08);
      color:#0e6e41;
      font-weight:750;
    }
    .chip.brand{
      border-color:rgba(255,77,161,.28);
      background:rgba(255,77,161,.10);
      color:#6b0c35;
      font-weight:800;
    }
    .form-wrap{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 20px 60px rgba(20,18,26,.08);
      padding:16px;
    }
    form{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .field{display:flex; flex-direction:column; gap:8px; min-width:0}
    .field label{font-size:13px; color:var(--muted); font-weight:650}
    .control, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,18,26,.12);
      background:#fff;
      padding:12px 12px;
      color:var(--text);
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
    }
    .control:focus, select:focus, textarea:focus{box-shadow:var(--focus); border-color:rgba(255,77,161,.35)}
    textarea{min-height:110px; resize:vertical}
    .form-foot{
      grid-column:1 / -1;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:4px;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12px;
      max-width:66ch;
    }
    .btn-submit{
      background:linear-gradient(180deg, rgba(255,77,161,.22), rgba(255,47,134,.10));
      border-color:rgba(255,77,161,.35);
      box-shadow:0 16px 34px rgba(255,77,161,.18);
      min-width:170px;
    }
    .btn-submit:hover{box-shadow:0 22px 46px rgba(255,77,161,.22)}
    .network{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .list-tiles{
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
    }
    .tile{
      display:flex; align-items:flex-start; gap:12px;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.70);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .tile:hover{transform:translateY(-2px); border-color:rgba(255,77,161,.26); box-shadow:0 18px 44px rgba(20,18,26,.10)}
    .tile .left{
      width:36px; height:36px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(255,77,161,.10);
      border:1px solid rgba(255,77,161,.20);
      flex:0 0 auto;
    }
    .tile .left svg{width:16px; height:16px; color:var(--brand3)}
    .tile .right{min-width:0}
    .tile .right strong{display:block; font-size:14px; margin-top:2px}
    .tile .right span{display:block; font-size:13px; color:var(--muted); margin-top:4px}
    .timeline{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow:0 18px 50px rgba(20,18,26,.08);
      padding:16px;
    }
    .timeline ul{
      list-style:none;
      padding:0; margin:0;
      display:grid;
      gap:12px;
    }
    .t-item{
      display:grid;
      grid-template-columns: 78px 1fr;
      gap:12px;
      align-items:start;
    }
    .t-dot{
      display:flex; gap:10px; align-items:flex-start;
    }
    .t-dot i{
      width:14px; height:14px; border-radius:6px;
      background:linear-gradient(180deg, rgba(255,77,161,.30), rgba(255,77,161,.10));
      border:1px solid rgba(255,77,161,.30);
      margin-top:6px;
      box-shadow:0 0 0 4px rgba(255,77,161,.14);
      display:block;
    }
    .t-when{
      font-size:12px; color:var(--muted2); font-weight:750;
      padding-top:2px;
      white-space:nowrap;
    }
    .t-body strong{display:block; font-size:14px}
    .t-body span{display:block; color:var(--muted); font-size:13px; margin-top:5px}
    .articles{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .article-card{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.72);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article-card:hover{transform:translateY(-2px); border-color:rgba(255,77,161,.26); box-shadow:0 18px 44px rgba(20,18,26,.10)}
    .article-top{
      display:flex; justify-content:space-between; gap:10px; align-items:flex-start;
    }
    .article-k{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
    }
    .mini-badge{
      font-size:11px; font-weight:850;
      color:#6b0c35;
      background:rgba(255,77,161,.12);
      border:1px solid rgba(255,77,161,.20);
      padding:5px 8px;
      border-radius:999px;
    }
    .article-date{
      font-size:12px; color:var(--muted2); white-space:nowrap;
    }
    .article-card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .article-card p{margin:0; color:var(--muted); font-size:13px}
    .article-link-row{
      display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:4px;
    }
    .linkish{
      display:inline-flex; gap:10px; align-items:center;
      color:var(--text);
      font-weight:800;
      font-size:13px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.66);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    .linkish:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(20,18,26,.10); border-color:rgba(255,77,161,.26)}
    .arrow{
      width:18px; height:18px; border-radius:10px;
      background:rgba(255,77,161,.14);
      border:1px solid rgba(255,77,161,.22);
      display:flex; align-items:center; justify-content:center;
    }
    .arrow svg{width:12px; height:12px; color:var(--brand3)}
    .pricing{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .price-card{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 55px rgba(20,18,26,.08);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .price-card:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(420px 220px at 10% 0%, rgba(255,77,161,.22), transparent 55%);
      pointer-events:none;
    }
    .price-card > *{position:relative; z-index:1}
    .price-card h3{margin:8px 0 6px; font-size:16px}
    .price-card p{margin:0; color:var(--muted); font-size:13px}
    .price-box{
      margin-top:12px;
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
    }
    .row{
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
    }
    .row strong{font-size:13px}
    .row span{color:var(--muted); font-size:12px}
    .row .right{
      text-align:right;
      min-width:120px;
    }
    .row .price{
      display:flex; flex-direction:column; gap:4px; align-items:flex-end;
    }
    .money{
      font-weight:900;
      letter-spacing:-.3px;
      color:#2a1f2f;
      font-size:16px;
    }
    .hint{
      font-size:11px; color:var(--muted2);
    }
    .faq{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 60px rgba(20,18,26,.08);
      padding:10px;
    }
    details{
      border-radius:18px;
      border:1px solid rgba(20,18,26,.08);
      background:rgba(255,255,255,.70);
      margin:10px 8px;
      overflow:hidden;
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    details[open]{border-color:rgba(255,77,161,.26); box-shadow:0 18px 46px rgba(255,77,161,.12)}
    summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      font-weight:850;
      font-size:14px;
      color:var(--text);
    }
    summary::-webkit-details-marker{display:none}
    .sum-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
      color:var(--muted2);
      font-weight:800;
      font-size:12px;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.66);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
    }
    details[open] .chev{transform:rotate(180deg); border-color:rgba(255,77,161,.26); background:rgba(255,77,161,.10)}
    .chev svg{width:14px; height:14px}
    .faq-body{
      padding:0 14px 14px 14px;
      color:var(--muted);
      font-size:13px;
    }
    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.76);
      padding:16px;
      box-shadow:0 18px 55px rgba(20,18,26,.06);
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-width:0;
      display:flex; flex-direction:column; gap:10px;
    }
    .review:hover{transform:translateY(-2px); border-color:rgba(255,77,161,.26); box-shadow:0 22px 60px rgba(20,18,26,.10)}
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:42px; height:42px; border-radius:18px;
      background:linear-gradient(180deg, rgba(255,77,161,.22), rgba(255,255,255,.70));
      border:1px solid rgba(255,77,161,.24);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#6b0c35;
    }
    .review .score{
      display:flex; align-items:center; gap:6px;
      color:#6b0c35;
      font-weight:900;
      font-size:12px;
      background:rgba(255,77,161,.10);
      border:1px solid rgba(255,77,161,.20);
      padding:6px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .stars svg{width:14px; height:14px}
    .review h3{margin:0; font-size:15px}
    .review p{margin:0; color:var(--muted); font-size:13px}
    .gallery{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .gallery-left{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 55px rgba(20,18,26,.08);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
    }
    .gallery-title{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .gallery-left h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .gallery-left p{margin:4px 0 0; color:var(--muted); font-size:13px}
    .thumbs{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      align-items:stretch;
    }
    .img-card{
      border-radius:22px;
      border:1px solid rgba(20,18,26,.10);
      overflow:hidden;
      background:#fff;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      box-shadow:0 14px 34px rgba(20,18,26,.06);
    }
    .img-card:hover{transform:translateY(-2px); box-shadow:0 22px 60px rgba(20,18,26,.10); border-color:rgba(255,77,161,.26)}
    .img-wrap{
      position:relative;
      aspect-ratio: 16/10;
      background:linear-gradient(180deg, rgba(255,77,161,.12), rgba(255,255,255,.85));
      display:flex; align-items:center; justify-content:center;
    }
    .img-wrap img{
      width:100%; height:100%;
      object-fit:cover;
      display:block;
    }
    .img-caption{
      padding:12px 12px;
      display:flex; justify-content:space-between; gap:10px; align-items:flex-start;
    }
    .img-caption strong{font-size:13px}
    .img-caption span{font-size:12px; color:var(--muted2)}
    .gallery-right{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 55px rgba(20,18,26,.08);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
    }
    .img-card-vert .img-wrap{aspect-ratio: 4/5}
    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:6px;
    }
    .tag-cloud a{
      border-radius:999px;
      padding:9px 10px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.70);
      color:var(--muted);
      font-size:12px;
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .tag-cloud a:hover{
      transform:translateY(-1px);
      border-color:rgba(255,77,161,.26);
      background:rgba(255,77,161,.08);
      color:var(--text);
    }
    .score-panel{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .star-big{
      display:flex; align-items:center; gap:14px;
    }
    .star-badge{
      width:62px; height:62px;
      border-radius:26px;
      background:linear-gradient(180deg, rgba(255,77,161,.20), rgba(255,255,255,.75));
      border:1px solid rgba(255,77,161,.26);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 18px 44px rgba(255,77,161,.16);
      flex:0 0 auto;
    }
    .star-badge svg{width:26px; height:26px; color:#b20f5a}
    .score-panel h3{margin:0; font-size:16px}
    .big-score{
      margin-top:4px;
      font-weight:950;
      font-size:34px;
      letter-spacing:-1px;
    }
    .score-meta{color:var(--muted); font-size:13px; margin-top:4px}
    .advisor{
      display:flex; flex-direction:column; gap:10px;
    }
    .advisor p{margin:0; color:var(--muted); font-size:13px}
    .list-bullets{
      display:grid; gap:10px;
      margin-top:2px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.68);
      padding:12px 12px;
    }
    .li .bicon{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(255,77,161,.22);
      background:rgba(255,77,161,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .li .bicon svg{width:14px; height:14px; color:var(--brand3)}
    .li strong{display:block; font-size:13px}
    .li span{display:block; color:var(--muted); font-size:12px; margin-top:4px}
    .footer{
      padding:22px 0 28px;
      background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,247,246,.65));
      border-top:1px solid rgba(20,18,26,.08);
      margin-top:10px;
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
      padding-top:10px;
    }
    .footer-card{
      border-radius:28px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.78);
      padding:16px;
      box-shadow:0 18px 55px rgba(20,18,26,.06);
    }
    .footer h3{margin:0 0 8px; font-size:15px}
    .footer p{margin:0; color:var(--muted); font-size:13px}
    .footer-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      border-radius:14px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.70);
      padding:10px 12px;
      color:var(--muted);
      font-size:13px;
      transition:transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
    }
    .footer-links a:hover{transform:translateY(-1px); border-color:rgba(255,77,161,.26); background:rgba(255,77,161,.08); color:var(--text)}
    .copyright{
      margin-top:14px;
      display:flex; justify-content:space-between; gap:12px; align-items:center; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12px;
    }
    .floating-cta{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-btn{
      pointer-events:auto;
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(20,18,26,.12);
      background:rgba(255,255,255,.80);
      backdrop-filter: blur(10px);
      box-shadow:0 18px 50px rgba(20,18,26,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .float-btn:hover{transform:translateY(-2px); border-color:rgba(255,77,161,.26); box-shadow:0 22px 70px rgba(255,77,161,.20)}
    .float-btn:focus{outline:none; box-shadow:var(--focus)}
    .float-btn svg{width:18px; height:18px}
    .float-pop{
      pointer-events:none;
      opacity:0;
      transform:translateY(10px);
      transition:opacity .2s ease, transform .2s ease;
      margin-right:6px;
      pointer-events:none;
    }
    .float-pop.show{opacity:1; transform:translateY(0); pointer-events:auto}
    .float-card{
      pointer-events:auto;
      width:min(310px, calc(100vw - 28px));
      border-radius:24px;
      border:1px solid rgba(20,18,26,.10);
      background:rgba(255,255,255,.90);
      backdrop-filter: blur(12px);
      box-shadow:0 24px 80px rgba(20,18,26,.18);
      overflow:hidden;
    }
    .float-card .head{
      padding:12px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      border-bottom:1px solid rgba(20,18,26,.08);
      background:linear-gradient(180deg, rgba(255,77,161,.10), rgba(255,255,255,.85));
    }
    .float-card .head strong{font-size:14px}
    .float-card .head span{display:block; margin-top:2px; color:var(--muted); font-size:12px}
    .float-card .body{
      padding:12px 14px 14px;
      display:flex; gap:12px; align-items:center;
    }
    .float-card img{
      width:82px; height:82px;
      border-radius:18px;
      border:1px solid rgba(20,18,26,.10);
      background:#fff;
      object-fit:cover;
    }
    .float-card .actions{
      display:flex; flex-direction:column; gap:10px;
      min-width:0;
    }
    .float-card .actions .small{
      font-size:12px; color:var(--muted);
    }
    .small-btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:16px;
      border:1px solid rgba(255,77,161,.30);
      background:linear-gradient(180deg, rgba(255,77,161,.18), rgba(255,255,255,.70));
      padding:11px 12px;
      font-weight:850;
      font-size:13px;
      cursor:pointer;
      transition:transform .15s ease, box-shadow .15s ease;
      white-space:nowrap;
    }
    .small-btn:hover{transform:translateY(-1px); box-shadow:0 18px 40px rgba(255,77,161,.18)}
    .reveal{
      opacity:0;
      transform:translateY(10px);
      transition:opacity .6s ease, transform .6s ease;
    }
    .reveal.show{
      opacity:1;
      transform:translateY(0);
    }
    .anchor{
      scroll-margin-top:86px;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      h1{font-size:30px}
      .steps{grid-template-columns: 1fr 1fr}
      .grid-3{grid-template-columns:1fr; }
      .reviews{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr}
      .pricing{grid-template-columns:1fr}
      .score-panel{grid-template-columns:1fr}
      .network{grid-template-columns:1fr}
      .footer-inner{grid-template-columns:1fr}
      form{grid-template-columns:1fr}
      .t-item{grid-template-columns: 74px 1fr}
    }
    @media (max-width: 860px){
      .nav{display:none}
      .hamburger{display:flex}
      .mobile-panel.show{display:block}
    }