:root{
      --bg0:#fffaf6;
      --bg1:#f6f7fb;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#667085;
      --muted2:#7c8798;
      --line:rgba(15,23,42,.10);
      --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,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --brand1:#ff3d7f;
      --brand2:#ff8a00;
      --brand3:#2f6bff;
      --brand4:#00b3a4;
      --brand5:#7c3aed;
      --btn:#111827;
      --btnText:#ffffff;
      --focus:rgba(47,107,255,.20);
      --container: 1120px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 15% -10%, rgba(255,61,127,.18), rgba(255,61,127,0) 55%),
        radial-gradient(900px 540px at 90% 10%, rgba(47,107,255,.14), rgba(47,107,255,0) 55%),
        radial-gradient(900px 540px at 60% 105%, rgba(0,179,164,.10), rgba(0,179,164,0) 52%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #ffffff 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    img{display:block}

    .container{
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background: rgba(255,250,246,.70);
      border-bottom:1px solid rgba(15,23,42,.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: 220px;
    }
    .brand img{
      width:42px;
      height:42px;
      border-radius:12px;
      box-shadow: 0 10px 30px rgba(255,61,127,.18);
      background:#fff;
      padding:6px;
      border:1px solid rgba(15,23,42,.06);
    }
    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-title span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px;
      color:rgba(17,24,39,.82);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(255,61,127,.08);
      border-color: rgba(255,61,127,.18);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width: 260px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 11px 14px;
      border-radius: 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      color: rgba(17,24,39,.92);
      font-weight:650;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      box-shadow: 0 10px 30px rgba(17,24,39,.06);
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(255,61,127,.25);
      box-shadow: 0 16px 44px rgba(17,24,39,.10);
    }
    .btn.primary{
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      border-color: rgba(255,61,127,.25);
      color:#fff;
      box-shadow: 0 18px 44px rgba(255,61,127,.20);
    }
    .btn.primary:hover{
      box-shadow: 0 22px 60px rgba(255,61,127,.26);
    }
    .btn.dark{
      background: #0f172a;
      border-color: rgba(15,23,42,.20);
      color:#fff;
      box-shadow: 0 18px 44px rgba(15,23,42,.18);
    }
    .btn.dark:hover{
      box-shadow: 0 22px 60px rgba(15,23,42,.25);
    }
    .btn.ghost{
      background: rgba(255,255,255,.62);
      border-color: rgba(15,23,42,.10);
      box-shadow:none;
    }

    .hamburger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
      box-shadow: 0 10px 30px rgba(17,24,39,.06);
    }
    .hamburger:active{transform: translateY(1px)}
    .hamburger span{
      width:18px;
      height:2px;
      background: rgba(17,24,39,.85);
      display:block;
      position:relative;
    }
    .hamburger span::before,.hamburger span::after{
      content:"";
      width:18px;
      height:2px;
      background: rgba(17,24,39,.85);
      position:absolute;
      left:0;
    }
    .hamburger span::before{top:-6px}
    .hamburger span::after{top:6px}

    .mobile-panel{
      display:none;
      padding: 10px 0 14px;
      border-top:1px solid rgba(15,23,42,.08);
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mobile-links a{
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      font-size:14px;
      color: rgba(17,24,39,.92);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }

    .hero{
      padding: 30px 0 18px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items:stretch;
    }

    .hero-card{
      position:relative;
      overflow:hidden;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(900px 420px at 20% 0%, rgba(255,61,127,.20), rgba(255,61,127,0) 55%),
        radial-gradient(700px 360px at 95% 30%, rgba(47,107,255,.18), rgba(47,107,255,0) 52%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: var(--shadow2);
      padding: 22px 22px;
      min-height: 360px;
    }

    .hero-card::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(180px 120px at 25% 20%, rgba(255,138,0,.35), rgba(255,138,0,0) 70%),
        radial-gradient(220px 140px at 70% 30%, rgba(124,58,237,.28), rgba(124,58,237,0) 70%);
      pointer-events:none;
      opacity:.9;
    }

    .hero-inner{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap: 14px;
      height:100%;
    }

    .eyebrow{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      color: rgba(17,24,39,.90);
      font-size:12px;
      font-weight:650;
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 22px rgba(255,61,127,.25);
    }

    h1{
      margin: 2px 0 0;
      font-size: 34px;
      letter-spacing: -0.6px;
      line-height: 1.12;
    }

    .lead{
      margin:0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      max-width: 62ch;
    }

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

    .mini-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-top: 6px;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
      color: rgba(17,24,39,.90);
      font-size:13px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .mini-link:hover{
      transform: translateY(-1px);
      border-color: rgba(47,107,255,.22);
      background: rgba(255,255,255,.78);
    }
    .mini-icon{
      width:30px; height:30px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(47,107,255,.18), rgba(0,179,164,.18));
      border:1px solid rgba(47,107,255,.16);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .mini-icon svg{width:16px; height:16px; opacity:.92}

    .hero-side{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      box-shadow: var(--shadow3);
      padding: 16px;
      display:flex;
      flex-direction:column;
      gap: 12px;
      min-height: 360px;
      overflow:hidden;
      position:relative;
    }
    .hero-side::before{
      content:"";
      position:absolute;
      inset:-30px -60px auto auto;
      width:240px; height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(255,61,127,.22), rgba(255,61,127,0) 60%);
      transform: rotate(15deg);
      pointer-events:none;
    }

    .hero-side > *{position:relative; z-index:1}

    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      align-items:stretch;
    }
    .data-card{
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      padding: 12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      min-height: 94px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      cursor:default;
    }
    .data-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,61,127,.22);
      box-shadow: 0 16px 44px rgba(17,24,39,.10);
    }
    .data-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .spark{
      width:34px; height:34px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(135deg, rgba(255,61,127,.16), rgba(255,138,0,.16));
    }
    .spark svg{width:16px; height:16px}
    .data-value{
      font-weight:900;
      font-size: 18px;
      letter-spacing:-.3px;
    }
    .data-label{
      color: var(--muted);
      font-size: 12px;
      line-height: 1.4;
      margin-top: 6px;
    }

    .side-block{
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      padding: 12px 12px;
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    .side-block h3{
      margin:0 0 6px;
      font-size: 14px;
      letter-spacing:-.2px;
    }
    .side-block p{
      margin:0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }
    .pill-row{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:10px;
    }
    .pill{
      font-size:12px;
      color: rgba(17,24,39,.88);
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      padding: 7px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }

    .section{
      padding: 26px 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:-.35px;
    }
    .section-title p{
      margin:0;
      color: var(--muted);
      font-size: 14px;
      line-height:1.7;
      max-width: 70ch;
    }

    .tagline{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .tag{
      font-size:12px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      color: rgba(17,24,39,.86);
      white-space:nowrap;
    }
    .tag strong{color: rgba(17,24,39,.95)}

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

    .card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      overflow:hidden;
      position:relative;
    }

    .card-pad{padding: 16px}
    .card h3{
      margin:0;
      font-size: 16px;
      letter-spacing:-.25px;
    }
    .card p{
      margin:10px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .feature-list{
      margin: 12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .feature-list li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 14px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(15,23,42,.07);
      transition: transform .15s ease, border-color .15s ease;
    }
    .feature-list li:hover{
      transform: translateY(-1px);
      border-color: rgba(47,107,255,.20);
    }
    .check{
      width:26px; height:26px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(0,179,164,.18), rgba(47,107,255,.18));
      border:1px solid rgba(0,179,164,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .check svg{width:14px; height:14px; opacity:.92}
    .feature-text{
      display:flex; flex-direction:column; gap:4px;
    }
    .feature-text strong{
      font-size: 13px;
      letter-spacing:-.1px;
    }
    .feature-text span{
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.55;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .step{
      padding: 14px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 170px;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 44px rgba(17,24,39,.10);
      border-color: rgba(255,61,127,.22);
    }
    .step::after{
      content:"";
      position:absolute;
      width:140px; height:140px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,61,127,.22), rgba(255,61,127,0) 60%);
      top:-70px; right:-70px;
      pointer-events:none;
      opacity:.75;
    }
    .step > *{position:relative; z-index:1}
    .step-num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:36px;
      height:36px;
      border-radius: 14px;
      font-weight:900;
      background: rgba(255,61,127,.12);
      border:1px solid rgba(255,61,127,.22);
      color: rgba(17,24,39,.92);
    }
    .step h3{margin-top:12px; font-size:15px}
    .step p{margin-top:8px; font-size:13.5px; color: var(--muted); line-height:1.65}

    .compare{
      overflow:hidden;
    }
    .compare .card-pad{padding:0}
    .table-wrap{
      width:100%;
      overflow:auto;
      -webkit-overflow-scrolling:touch;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 760px;
    }
    th,td{
      border-bottom:1px solid rgba(15,23,42,.08);
      padding: 12px 12px;
      text-align:left;
      vertical-align:top;
      font-size: 13.5px;
      color: rgba(17,24,39,.92);
      white-space:nowrap;
    }
    th{
      background: rgba(255,255,255,.76);
      position:sticky;
      top:0;
      z-index:1;
      border-bottom:1px solid rgba(15,23,42,.12);
      font-size:13px;
      color: rgba(17,24,39,.86);
    }
    td .muted{color:var(--muted); white-space:normal}
    .score{
      display:flex; flex-direction:column; gap:6px;
      min-width: 160px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:16px; height:16px;
      display:inline-flex; align-items:center; justify-content:center;
    }
    .star svg{width:16px; height:16px}
    .rank-note{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.5;
      white-space:normal;
    }

    .rating-card{
      padding: 16px;
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .rating-badge{
      flex:0 0 auto;
      width:92px;
      height:92px;
      border-radius: 26px;
      border:1px solid rgba(255,61,127,.22);
      background:
        radial-gradient(circle at 30% 30%, rgba(255,61,127,.20), rgba(255,61,127,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      box-shadow: 0 16px 44px rgba(255,61,127,.14);
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .rating-badge::after{
      content:"";
      position:absolute;
      width:120px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(255,138,0,.22), rgba(255,138,0,0) 60%);
      top:-55px; left:-45px;
      pointer-events:none;
      opacity:.85;
    }
    .rating-badge > div{position:relative; z-index:1; text-align:center}
    .rating-badge strong{
      display:block;
      font-size: 20px;
      letter-spacing:-.4px;
    }
    .rating-badge span{
      display:block;
      font-size: 12px;
      color: var(--muted);
      margin-top:4px;
      line-height:1.1;
    }

    .rating-content{
      display:flex;
      flex-direction:column;
      gap: 8px;
      padding-top: 2px;
    }
    .rating-content h3{margin:0; font-size:16px}
    .rating-content p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .rating-points{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:6px;
    }
    .rating-point{
      font-size:12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      color: rgba(17,24,39,.90);
      padding: 8px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }

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

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      align-items:stretch;
    }
    .case{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex;
      flex-direction:column;
      min-height: 320px;
    }
    .case:hover{
      transform: translateY(-2px);
      border-color: rgba(47,107,255,.20);
      box-shadow: 0 16px 44px rgba(17,24,39,.10);
    }
    .case-media{
      padding: 12px 12px 0;
    }
    .imgframe{
      border-radius: 16px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.56));
      height: 168px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .imgframe img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .case-body{
      padding: 12px 14px 14px;
      display:flex;
      flex-direction:column;
      gap: 8px;
      flex:1 1 auto;
    }
    .case-kicker{
      font-size:12px;
      color: var(--muted);
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      align-items:center;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 6px 9px;
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      color: rgba(17,24,39,.86);
      white-space:nowrap;
    }
    .case-title{
      font-size:15px;
      font-weight:850;
      letter-spacing:-.2px;
      margin: 0;
      line-height:1.35;
    }
    .case-desc{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.65;
      flex: 1 1 auto;
    }
    .case-footer{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
    }
    .case-link{
      font-size:13px;
      font-weight:750;
      color: rgba(17,24,39,.95);
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 9px 10px;
      border-radius: 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      transition: transform .15s ease, border-color .15s ease;
    }
    .case-link:hover{
      transform: translateY(-1px);
      border-color: rgba(255,61,127,.22);
    }
    .arrow{
      width:18px;height:18px;border-radius:9px;
      border:1px solid rgba(15,23,42,.10);
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.70);
    }
    .arrow svg{width:12px;height:12px}

    .list-block{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .item-row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 12px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      transition: transform .15s ease, border-color .15s ease;
    }
    .item-row:hover{
      transform: translateY(-1px);
      border-color: rgba(0,179,164,.22);
    }
    .item-left{
      display:flex; gap:10px; align-items:flex-start;
      min-width: 0;
    }
    .ico{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(0,179,164,.16), rgba(47,107,255,.16));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .ico svg{width:16px;height:16px}
    .item-text{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .item-text strong{
      font-size:14px;
      letter-spacing:-.2px;
    }
    .item-text span{
      font-size:13px;
      color: var(--muted);
      line-height:1.6;
    }
    .item-right{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
    }

    .news-row{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      transition: transform .15s ease, border-color .15s ease;
    }
    .news-row:hover{
      transform: translateY(-1px);
      border-color: rgba(255,138,0,.22);
    }
    .thumb{
      width:50px; height:50px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(255,61,127,.18), rgba(255,138,0,.18));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .thumb svg{width:18px;height:18px}
    .news-main{display:flex; flex-direction:column; gap:6px; min-width:0}
    .news-main strong{
      font-size:14px; letter-spacing:-.2px;
      line-height:1.3;
    }
    .news-main span{
      font-size:13px; color:var(--muted); line-height:1.6;
    }
    .news-url{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-top:6px;
      font-size:13px;
      font-weight:750;
      padding: 9px 10px;
      border-radius: 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      white-space:nowrap;
    }
    .news-url svg{width:12px;height:12px}

    .form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field label{
      font-size:13px;
      color: rgba(17,24,39,.88);
      font-weight:700;
      letter-spacing:-.1px;
    }
    .field input, .field select, .field textarea{
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
      padding: 12px 12px;
      font-size:14px;
      color: rgba(17,24,39,.95);
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    .field textarea{min-height: 108px; resize:vertical}
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color: rgba(47,107,255,.30);
      box-shadow: 0 0 0 4px var(--focus);
      background: rgba(255,255,255,.92);
    }
    .form .full{grid-column: 1 / -1}
    .form-actions{
      grid-column: 1 / -1;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      margin-top: 4px;
    }
    .fineprint{
      color: var(--muted);
      font-size:12.5px;
      line-height:1.6;
      max-width: 58ch;
    }
    .fineprint b{color: rgba(17,24,39,.90)}
    .toast{
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 100;
      background: rgba(17,24,39,.92);
      color:#fff;
      padding: 12px 14px;
      border-radius: 14px;
      box-shadow: 0 18px 60px rgba(17,24,39,.30);
      opacity:0;
      transform: translateY(10px);
      pointer-events:none;
      transition: opacity .22s ease, transform .22s ease;
      font-size: 13px;
      line-height:1.5;
      max-width: 260px;
    }
    .toast.show{
      opacity:1;
      transform: translateY(0);
    }

    .faq{
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    details.faq-item{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color: rgba(47,107,255,.22);
      box-shadow: 0 16px 44px rgba(17,24,39,.10);
    }
    summary{
      cursor:pointer;
      list-style:none;
      padding: 14px 14px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:850;
      letter-spacing:-.2px;
      font-size: 14px;
      color: rgba(17,24,39,.95);
      user-select:none;
    }
    summary::-webkit-details-marker{display:none}
    .summary-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
    }
    .faq-badge{
      font-weight:800;
      font-size:12px;
      border-radius: 999px;
      padding: 7px 10px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      color: rgba(17,24,39,.86);
      white-space:nowrap;
    }
    .chev{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, border-color .18s ease;
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    details[open] .chev{
      transform: rotate(180deg);
      border-color: rgba(255,61,127,.22);
    }
    .chev svg{width:14px;height:14px}
    .faq-answer{
      padding: 0 14px 14px;
      color: var(--muted);
      font-size: 13.8px;
      line-height: 1.75;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .review{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      display:flex;
      flex-direction:column;
      gap: 10px;
      min-height: 220px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .review:hover{
      transform: translateY(-2px);
      border-color: rgba(0,179,164,.22);
      box-shadow: 0 16px 44px rgba(17,24,39,.10);
    }
    .review-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap: 12px;
    }
    .avatar{
      width:44px; height:44px;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(47,107,255,.18), rgba(255,61,127,.18));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .avatar svg{width:18px;height:18px}
    .review-role{
      display:flex; flex-direction:column; gap:6px; min-width:0
    }
    .review-role strong{font-size:14px; letter-spacing:-.2px}
    .review-role span{font-size:12.5px; color:var(--muted); line-height:1.3}
    .review-stars{
      display:flex; gap:4px; align-items:center;
    }
    .review p{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .timeline{
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .time-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    .time-dot{
      width:38px; height:38px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(255,138,0,.18), rgba(255,61,127,.18));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top: 2px;
    }
    .time-dot svg{width:16px;height:16px}
    .time-main{
      display:flex; flex-direction:column; gap:6px; min-width:0
    }
    .time-main strong{
      font-size:14px;
      letter-spacing:-.2px;
    }
    .time-main span{
      color: var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }

    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
    }
    .cloud-item{
      border-radius: 999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      padding: 10px 12px;
      font-size: 13px;
      color: rgba(17,24,39,.90);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      transition: transform .15s ease, border-color .15s ease;
      cursor:default;
      user-select:none;
    }
    .cloud-item:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.22);
    }

    .footer{
      padding: 18px 0 26px;
      background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,.78));
      border-top:1px solid rgba(15,23,42,.08);
      margin-top: 10px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .footer-card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      padding: 16px;
    }
    .footer-card h3{margin:0; font-size:16px}
    .footer-card p{margin:10px 0 0; color:var(--muted); font-size:13.8px; line-height:1.7}
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 12px;
    }
    .footer-links a{
      padding: 9px 10px;
      border-radius: 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.62);
      font-size: 13px;
      font-weight:750;
      color: rgba(17,24,39,.92);
      transition: transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(47,107,255,.22);
    }

    .footer-right{
      display:flex;
      flex-direction:column;
      gap: 12px;
    }
    .contact-block{
      display:flex;
      gap: 12px;
      align-items:flex-start;
    }
    .contact-block img{
      width:86px; height:auto;
      border-radius: 18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      padding: 8px;
    }
    .contact-text{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .contact-text strong{font-size:14px}
    .contact-text span{font-size:13.5px; color:var(--muted); line-height:1.7}
    .copyright{
      margin-top: 12px;
      color: var(--muted);
      font-size: 12.5px;
      line-height:1.6;
    }

    .float-contact{
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 120;
      display:flex;
      flex-direction:column;
      gap: 10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-contact a{
      pointer-events:auto;
    }
    .float-btn{
      display:flex;
      gap:10px;
      align-items:center;
      padding: 11px 12px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 60px rgba(17,24,39,.18);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, opacity .15s ease;
      color: rgba(17,24,39,.95);
      font-weight:850;
      font-size: 13.5px;
      cursor:pointer;
      user-select:none;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(255,61,127,.22);
      box-shadow: 0 22px 80px rgba(17,24,39,.24);
    }
    .float-icon{
      width:34px;height:34px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,61,127,.18), rgba(47,107,255,.18));
      border:1px solid rgba(255,61,127,.18);
      display:flex;align-items:center;justify-content:center;
    }
    .float-icon svg{width:16px;height:16px}
    .to-top{
      display:flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius: 16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 60px rgba(17,24,39,.18);
      cursor:pointer;
      user-select:none;
      pointer-events:auto;
      transition: transform .15s ease, border-color .15s ease;
    }
    .to-top:hover{transform: translateY(-2px); border-color: rgba(47,107,255,.22)}
    .to-top svg{width:18px;height:18px}

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-side{min-height:auto}
      .steps{grid-template-columns: 1fr 1fr;}
      .grid-3{grid-template-columns: 1fr 1fr;}
      .case-grid{grid-template-columns: 1fr 1fr;}
      .reviews{grid-template-columns: 1fr 1fr;}
      .footer-grid{grid-template-columns: 1fr; }
      .nav-cta{min-width:auto}
    }

    @media (max-width: 760px){
      .nav-links{display:none}
      .nav-cta{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      .hero-card{min-height:auto}
      h1{font-size: 28px}
      .grid-2{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr;}
      .case-grid{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .split{grid-template-columns: 1fr}
      table{min-width: 720px}
      .form{grid-template-columns: 1fr}
      .form-actions{justify-content:flex-start}
      .float-contact{right: 12px; bottom: 12px}
      .float-btn{font-size:13px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn, .data-card, .case, .review, .news-row, .item-row{transition:none}
    }