:root{
      --bg: #fbf6ef;
      --panel:#ffffff;
      --text:#1f2430;
      --muted:#5b6476;
      --border: rgba(26,32,46,.12);
      --shadow: 0 14px 35px rgba(12,18,30,.10);
      --shadow2: 0 10px 24px rgba(12,18,30,.12);
      --orange:#ff6a2a;
      --orange2:#ff8a3d;
      --hot:#ff4d2e;
      --deep:#0f172a;
      --blue:#2563eb;
      --radius: 18px;
      --radius2: 26px;
      --focus: rgba(255,106,42,.35);
      --container: 1140px;
      --padX: 20px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1100px 540px at 16% -10%, rgba(255,106,42,.22), transparent 55%),
        radial-gradient(900px 520px at 85% 10%, rgba(255,77,46,.18), transparent 52%),
        linear-gradient(180deg, #fff 0%, var(--bg) 30%, #fff 100%);
      line-height:1.6;
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .skip{
      position:absolute;
      left:-999px;
      top:0;
      background: #111827;
      color:#fff;
      padding:10px 12px;
      border-radius:10px;
      z-index:9999;
    }
    .skip:focus{left:12px}

    header{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(26,32,46,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .logo{
      width:42px;
      height:42px;
      border-radius:14px;
      box-shadow: 0 10px 25px rgba(255,106,42,.22);
      background:#fff;
      border:1px solid rgba(26,32,46,.08);
      display:grid;
      place-items:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand img{width:100%; height:auto; display:block}
    .brandText{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .brandName{
      font-weight:850;
      letter-spacing:.2px;
      font-size:15px;
      line-height:1.1;
    }
    .brandSub{
      font-size:12px;
      color:var(--muted);
      line-height:1.1;
      white-space:nowrap;
    }

    .navRight{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex:1;
    }
    .navLinks{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      text-decoration:none;
      color: rgba(31,36,48,.86);
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      position:relative;
      white-space:nowrap;
    }
    .navLinks a:hover{
      background: rgba(255,106,42,.10);
      border-color: rgba(255,106,42,.22);
      transform: translateY(-1px);
    }

    .navCta{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:nowrap;
    }
    .btn{
      appearance:none;
      border:0;
      background: transparent;
      color:var(--text);
      border-radius:14px;
      padding:10px 12px;
      font-weight:720;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid rgba(26,32,46,.12);
      background: rgba(255,255,255,.72);
    }
    .btn:focus{outline:3px solid var(--focus); outline-offset:2px}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 12px 24px rgba(12,18,30,.10)}
    .btnPrimary{
      background: linear-gradient(135deg, var(--orange) 0%, var(--hot) 60%, #ffb14a 140%);
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      box-shadow: 0 18px 35px rgba(255,77,46,.22);
      position:relative;
      overflow:hidden;
    }
    .btnPrimary:hover{box-shadow: 0 22px 44px rgba(255,77,46,.28)}
    .btnPrimary::after{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(500px 120px at 20% 0%, rgba(255,255,255,.30), transparent 55%);
      opacity:.85;
      pointer-events:none;
      transform: translateX(-18%);
      transition: transform .35s ease, opacity .35s ease;
    }
    .btnPrimary:hover::after{transform: translateX(0%); opacity:1}
    .btnGhost{
      background: rgba(255,255,255,.75);
    }
    .btnSmall{
      padding:8px 10px;
      border-radius:12px;
      font-size:12.5px;
    }

    .burger{
      display:none;
      width:44px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(26,32,46,.12);
      background: rgba(255,255,255,.72);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }
    .burger:hover{transform: translateY(-1px); box-shadow: 0 12px 24px rgba(12,18,30,.10)}
    .burger:focus{outline:3px solid var(--focus); outline-offset:2px}
    .burgerLines{
      width:18px;
      height:12px;
      position:relative;
    }
    .burgerLines span{
      position:absolute;
      left:0;
      right:0;
      height:2px;
      background: rgba(31,36,48,.9);
      border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burgerLines span:nth-child(1){top:0}
    .burgerLines span:nth-child(2){top:5px}
    .burgerLines span:nth-child(3){top:10px}
    .burger[aria-expanded="true"] .burgerLines span:nth-child(1){top:5px; transform: rotate(45deg)}
    .burger[aria-expanded="true"] .burgerLines span:nth-child(2){opacity:0}
    .burger[aria-expanded="true"] .burgerLines span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobilePanel{
      display:none;
      padding:0 0 14px;
    }
    .mobilePanelInner{
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.8);
      border-radius: 18px;
      padding:12px;
      box-shadow: 0 18px 40px rgba(12,18,30,.10);
    }
    .mobileLinks{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-bottom:10px;
    }
    .mobileLinks a{
      text-decoration:none;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.7);
      font-weight:650;
      font-size:13px;
    }
    .mobileLinks a:hover{
      border-color: rgba(255,106,42,.32);
      background: rgba(255,106,42,.08);
    }
    .mobileActions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:space-between;
    }

    main{padding: 18px 0 40px}
    section{padding: 44px 0}
    .sectionTight{padding: 30px 0}
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border:1px solid rgba(255,106,42,.26);
      background: rgba(255,106,42,.10);
      color: rgba(150,52,30,.95);
      font-weight:750;
      border-radius:999px;
      font-size:12.5px;
      letter-spacing:.2px;
      white-space:nowrap;
    }
    .kickerDot{
      width:8px;height:8px;border-radius:50%;
      background: linear-gradient(135deg, var(--orange), var(--hot));
      box-shadow: 0 0 0 6px rgba(255,106,42,.14);
    }
    h1,h2,h3{margin:0}
    h1{
      font-size: clamp(28px, 4.4vw, 46px);
      letter-spacing:-.6px;
      line-height:1.08;
      margin-bottom:12px;
      font-weight:920;
      color:#0f172a;
    }
    .heroLead{
      font-size:16px;
      color: rgba(31,36,48,.82);
      max-width: 62ch;
      margin:0;
    }

    .hero{
      padding: 26px 0 14px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items:stretch;
    }
    .heroLeft{
      position:relative;
      border-radius: var(--radius2);
      background:
        radial-gradient(900px 420px at 0% 0%, rgba(255,106,42,.22), transparent 55%),
        radial-gradient(700px 360px at 98% 10%, rgba(255,77,46,.18), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.52) 100%);
      border:1px solid rgba(26,32,46,.10);
      box-shadow: var(--shadow);
      padding: 26px 22px 22px;
      overflow:hidden;
      min-height: 360px;
    }
    .heroLeft::before{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(600px 180px at 20% 0%, rgba(255,255,255,.38), transparent 55%),
        radial-gradient(540px 160px at 80% 15%, rgba(255,255,255,.22), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .heroTopRow{
      position:relative;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
    }
    .heroActions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
      position:relative;
    }

    .heroBadges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
      position:relative;
    }
    .badge{
      display:flex;
      align-items:center;
      gap:10px;
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.68);
      padding:10px 12px;
      border-radius: 16px;
      min-width: 210px;
    }
    .badgeIcon{
      width:34px;height:34px;border-radius:12px;
      background: rgba(255,106,42,.12);
      border:1px solid rgba(255,106,42,.28);
      display:grid; place-items:center;
      color: rgba(150,52,30,.95);
      flex:0 0 auto;
    }
    .badgeTitle{
      font-weight:850;
      font-size:13.5px;
      line-height:1.2;
    }
    .badgeSub{
      font-size:12.5px;
      color: var(--muted);
      margin-top:2px;
      line-height:1.2;
    }

    .heroRight{
      border-radius: var(--radius2);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 40px rgba(12,18,30,.10);
      padding: 18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height: 360px;
      overflow:hidden;
      position:relative;
    }
    .heroRight::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(520px 220px at 100% 0%, rgba(255,106,42,.24), transparent 52%),
        radial-gradient(420px 200px at 0% 50%, rgba(37,99,235,.10), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .heroRight > *{position:relative}
    .metricGrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .metric{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(26,32,46,.10);
      border-radius: 18px;
      padding: 14px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 92px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(12,18,30,.12);
      border-color: rgba(255,106,42,.28);
    }
    .metricTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .metricIcon{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(255,106,42,.22);
      background: rgba(255,106,42,.10);
      display:grid; place-items:center;
      color: rgba(150,52,30,.95);
      flex:0 0 auto;
    }
    .metricValue{
      font-size: 20px;
      font-weight:950;
      letter-spacing:-.3px;
      color:#0f172a;
    }
    .metricLabel{
      font-size:12.5px;
      color: var(--muted);
      margin-top:4px;
      line-height:1.2;
    }

    .matchCard{
      margin-top:auto;
      background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.62));
      border:1px solid rgba(26,32,46,.10);
      border-radius: 20px;
      padding: 14px 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .matchTitleRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .matchTitle{
      font-weight:900;
      letter-spacing:-.2px;
      font-size:14px;
    }
    .pillRow{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .pill{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.72);
      color: rgba(31,36,48,.82);
      white-space:nowrap;
    }
    .matchActions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
    }
    .hint{
      font-size:12.5px;
      color: var(--muted);
      margin:0;
    }

    .grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items:start;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      align-items:start;
    }
    .grid4{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      align-items:stretch;
    }

    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(26,32,46,.10);
      border-radius: var(--radius);
      box-shadow: 0 10px 26px rgba(12,18,30,.06);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(255,106,42,.25);
    }
    .cardTitle{
      font-weight:900;
      letter-spacing:-.25px;
      font-size:15px;
      margin-bottom:6px;
    }
    .cardDesc{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
    }
    .cardTopRow{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,106,42,.26);
      background: rgba(255,106,42,.10);
      color: rgba(150,52,30,.95);
      font-weight:780;
      font-size:12px;
      white-space:nowrap;
    }

    .iconBadge{
      width:42px;height:42px;border-radius:16px;
      background: rgba(255,106,42,.12);
      border:1px solid rgba(255,106,42,.26);
      display:grid; place-items:center;
      color: rgba(150,52,30,.95);
      flex:0 0 auto;
    }
    .mutedList{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mutedList li{
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
    }
    .check{
      width:18px;height:18px;border-radius:6px;
      background: rgba(255,106,42,.14);
      border:1px solid rgba(255,106,42,.26);
      display:grid; place-items:center;
      color: rgba(150,52,30,.95);
      flex:0 0 auto;
      margin-top:2px;
    }

    .steps{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .step{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(12,18,30,.10);
      border-color: rgba(255,106,42,.24);
    }
    .stepNo{
      width:42px;height:42px;border-radius:16px;
      background: linear-gradient(135deg, rgba(255,106,42,.22), rgba(255,77,46,.14));
      border:1px solid rgba(255,106,42,.28);
      display:grid; place-items:center;
      font-weight:950;
      color: rgba(150,52,30,.95);
      flex:0 0 auto;
    }
    .stepBody h3{
      font-size:15px; font-weight:930; letter-spacing:-.2px;
      margin-bottom:4px;
    }
    .stepBody p{
      margin:0; color: var(--muted); font-size:13.5px;
    }

    .compareWrap{
      border-radius: var(--radius2);
      border:1px solid rgba(26,32,46,.10);
      background:
        radial-gradient(780px 280px at 0% 0%, rgba(255,106,42,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.62) 100%);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .compareHead{
      padding: 18px 18px 0;
    }
    .scoreRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding: 12px 18px 18px;
    }
    .starBlock{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .starBadge{
      width:56px;height:56px;border-radius:20px;
      background: rgba(255,106,42,.14);
      border:1px solid rgba(255,106,42,.28);
      display:grid; place-items:center;
      box-shadow: 0 16px 30px rgba(255,106,42,.18);
    }
    .scoreText{
      display:flex; flex-direction:column; gap:4px;
    }
    .scoreText strong{
      font-size:16px;
      letter-spacing:-.2px;
    }
    .scoreText span{
      color:var(--muted);
      font-size:13px;
    }
    .rating{
      display:flex; align-items:center; gap:10px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(26,32,46,.10);
      padding: 10px 12px;
      border-radius: 18px;
    }
    .rating .big{
      font-size:26px;
      font-weight:980;
      letter-spacing:-.5px;
    }
    .rating .small{
      color:var(--muted);
      font-size:13px;
    }

    .tableWrap{
      padding: 0 18px 18px;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(26,32,46,.10);
      border-radius: 18px;
      overflow:hidden;
    }
    thead th{
      text-align:left;
      padding:14px 14px;
      background: rgba(255,106,42,.10);
      border-bottom:1px solid rgba(26,32,46,.10);
      font-size:13px;
      color: rgba(31,36,48,.92);
      font-weight:920;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(26,32,46,.08);
      font-size:13.5px;
      color: rgba(31,36,48,.88);
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:0}
    .cellStrong{font-weight:850}
    .markYes{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,106,42,.12);
      border:1px solid rgba(255,106,42,.26);
      font-weight:860;
      white-space:nowrap;
    }
    .markNo{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(26,32,46,.04);
      border:1px solid rgba(26,32,46,.10);
      font-weight:820;
      color: rgba(31,36,48,.65);
      white-space:nowrap;
    }

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

    .formCard{
      border-radius: var(--radius2);
      border:1px solid rgba(26,32,46,.10);
      background:
        radial-gradient(780px 240px at 0% 0%, rgba(255,106,42,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.62) 100%);
      box-shadow: var(--shadow);
      padding: 18px;
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    label{
      font-size:12.5px;
      color: rgba(31,36,48,.82);
      font-weight:750;
      display:block;
      margin-bottom:6px;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(26,32,46,.14);
      background: rgba(255,255,255,.86);
      padding: 11px 12px;
      font-size:14px;
      color: var(--text);
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    textarea{min-height: 114px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,106,42,.45);
      box-shadow: 0 0 0 4px rgba(255,106,42,.20);
      background:#fff;
    }
    .formActions{
      display:flex;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-top:14px;
    }
    .privacy{
      font-size:12.5px;
      color: var(--muted);
      margin:0;
      max-width: 52ch;
    }
    .statusToast{
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 18px;
      background: rgba(15,23,42,.92);
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      padding: 12px 14px;
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(0,0,0,.25);
      z-index: 200;
      display:none;
      max-width: calc(100vw - 24px);
    }
    .statusToast.show{display:block; animation: toastIn .22s ease}
    @keyframes toastIn{
      from{opacity:0; transform: translateX(-50%) translateY(8px)}
      to{opacity:1; transform: translateX(-50%) translateY(0)}
    }

    .accordion{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    details{
      border-radius: var(--radius);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.78);
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(12,18,30,.05);
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    details[open]{
      border-color: rgba(255,106,42,.28);
      box-shadow: 0 18px 38px rgba(12,18,30,.12);
      transform: translateY(-1px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      padding: 14px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      user-select:none;
      font-weight:900;
      letter-spacing:-.15px;
      font-size:14px;
      color:#0f172a;
    }
    summary::-webkit-details-marker{display:none}
    .summaryRight{
      display:flex; align-items:center; gap:10px;
      color: var(--muted);
      font-weight:850;
      font-size:12.5px;
      white-space:nowrap;
    }
    .chev{
      width:28px;height:28px;border-radius:12px;
      border:1px solid rgba(26,32,46,.12);
      background: rgba(255,255,255,.7);
      display:grid; place-items:center;
      transition: transform .22s ease, border-color .2s ease;
      flex:0 0 auto;
    }
    details[open] .chev{transform: rotate(180deg); border-color: rgba(255,106,42,.28)}
    .accBody{
      padding: 0 14px 14px;
      color: rgba(31,36,48,.86);
      font-size:13.5px;
    }

    .reviewGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      align-items:stretch;
    }
    .review{
      padding: 16px;
      border-radius: var(--radius);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(12,18,30,.06);
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .review:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(255,106,42,.25);
    }
    .reviewTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:40px;height:40px;border-radius:16px;
      background: linear-gradient(135deg, rgba(255,106,42,.20), rgba(37,99,235,.10));
      border:1px solid rgba(26,32,46,.10);
      display:grid; place-items:center;
      font-weight:950;
      color: rgba(31,36,48,.86);
      flex:0 0 auto;
    }
    .reviewMeta{
      display:flex; flex-direction:column; gap:3px; flex:1;
      min-width:0;
    }
    .reviewMeta strong{font-size:13.5px; font-weight:930; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
    .reviewMeta span{font-size:12.5px; color:var(--muted)}
    .stars{
      display:flex; gap:3px;
      color: rgba(255,106,42,.95);
      font-size:12.5px;
      flex:0 0 auto;
    }
    .reviewText{margin:0; color: rgba(31,36,48,.86); font-size:13.5px}
    .reviewFoot{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .miniChip{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.72);
      color: rgba(31,36,48,.76);
      font-weight:800;
      white-space:nowrap;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .article{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      text-decoration:none;
    }
    .article:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(255,106,42,.25);
    }
    .articleIcon{
      width:44px;height:44px;border-radius:18px;
      border:1px solid rgba(255,106,42,.26);
      background: rgba(255,106,42,.10);
      display:grid; place-items:center;
      color: rgba(150,52,30,.95);
      flex:0 0 auto;
    }
    .articleBody{
      min-width:0;
      display:flex; flex-direction:column; gap:6px;
    }
    .articleTitle{
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .articleMeta{
      color: var(--muted);
      font-size:12.5px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .tagCloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding: 14px;
      border-radius: var(--radius2);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 10px 26px rgba(12,18,30,.06);
    }
    .cloudTag{
      padding: 9px 12px;
      border-radius:999px;
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.80);
      font-size:12.5px;
      color: rgba(31,36,48,.84);
      font-weight:820;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloudTag:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,42,.26);
      background: rgba(255,106,42,.08);
    }

    .timeline{
      border-radius: var(--radius2);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 10px 26px rgba(12,18,30,.06);
      padding: 14px;
    }
    .timelineItems{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .tItem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding: 12px;
      border-radius: 16px;
      border:1px solid rgba(26,32,46,.08);
      background: rgba(255,255,255,.66);
    }
    .tDot{
      width:14px;height:14px;border-radius:6px;
      background: linear-gradient(135deg, var(--orange), var(--hot));
      box-shadow: 0 0 0 6px rgba(255,106,42,.14);
      margin-top:5px;
      flex:0 0 auto;
    }
    .tBody strong{
      display:block;
      font-size:13.5px;
      font-weight:950;
      letter-spacing:-.15px;
      margin-bottom:4px;
    }
    .tBody span{
      color: var(--muted);
      font-size:13.5px;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      align-items:stretch;
    }
    .case{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .case:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      border-color: rgba(255,106,42,.25);
    }
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .caseTitle{
      font-weight:950;
      font-size:14px;
      letter-spacing:-.2px;
      margin:0;
    }
    .caseDesc{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
    }
    .caseMeta{
      display:flex; gap:8px; flex-wrap:wrap; margin-top:auto;
    }

    .footer{
      background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.72) 35%, rgba(255,106,42,.06) 100%);
      border-top:1px solid rgba(26,32,46,.10);
      padding: 26px 0 16px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .footerCard{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(26,32,46,.10);
      border-radius: var(--radius2);
      padding: 16px;
      box-shadow: 0 10px 26px rgba(12,18,30,.05);
    }
    .footerTitle{
      font-weight:950;
      letter-spacing:-.2px;
      font-size:14.5px;
      margin-bottom:10px;
    }
    .footerText{
      margin:0;
      color: var(--muted);
      font-size:13.5px;
    }
    .footerLinks{
      display:flex;
      flex-direction:column;
      gap:9px;
      margin-top:10px;
    }
    .footerLinks a{
      text-decoration:none;
      color: rgba(31,36,48,.86);
      font-weight:780;
      font-size:13.5px;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.72);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(12,18,30,.12);
      border-color: rgba(255,106,42,.25);
    }
    .footerLinks a span{
      color: var(--muted);
      font-weight:900;
      font-size:12.5px;
    }
    .copyrightRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top: 14px;
      color: rgba(31,36,48,.72);
      font-size:12.5px;
    }
    .hr{
      height:1px;
      background: rgba(26,32,46,.10);
      margin-top:14px;
    }

    .backTop{
      position:fixed;
      right: 16px;
      bottom: 18px;
      z-index:120;
      width:46px;height:46px;
      border-radius: 18px;
      border:1px solid rgba(26,32,46,.12);
      background: rgba(255,255,255,.84);
      box-shadow: 0 16px 35px rgba(12,18,30,.14);
      display:grid;
      place-items:center;
      cursor:pointer;
      transition: transform .2s ease, opacity .2s ease;
      opacity:0;
      pointer-events:none;
    }
    .backTop.show{opacity:1; pointer-events:auto}
    .backTop:hover{transform: translateY(-2px)}
    .backTop:focus{outline:3px solid var(--focus); outline-offset:2px}

    .floatHelp{
      position:fixed;
      left: 16px;
      bottom: 18px;
      z-index:120;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-start;
    }
    .helpBtn{
      width:auto;
      max-width: 220px;
      border-radius: 18px;
      border:1px solid rgba(26,32,46,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 35px rgba(12,18,30,.14);
      padding: 10px 12px;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .helpBtn:hover{transform: translateY(-2px); box-shadow: 0 20px 45px rgba(12,18,30,.18)}
    .helpLeft{
      display:flex; gap:10px; align-items:center; min-width:0;
    }
    .helpIcon{
      width:34px;height:34px;border-radius:14px;
      background: rgba(255,106,42,.12);
      border:1px solid rgba(255,106,42,.26);
      display:grid; place-items:center;
      color: rgba(150,52,30,.95);
      flex:0 0 auto;
    }
    .helpText{
      display:flex; flex-direction:column; gap:2px; min-width:0;
    }
    .helpText strong{
      font-size:13.5px; font-weight:950; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .helpText span{
      font-size:12.5px; color: var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }

    .qrPopover{
      position:absolute;
      left:0;
      bottom: 60px;
      width: 236px;
      border-radius: 18px;
      border:1px solid rgba(26,32,46,.12);
      background: rgba(255,255,255,.94);
      box-shadow: 0 26px 70px rgba(0,0,0,.18);
      padding: 12px;
      display:none;
    }
    .qrPopover.show{display:block; animation: popIn .18s ease}
    @keyframes popIn{
      from{opacity:0; transform: translateY(6px)}
      to{opacity:1; transform: translateY(0)}
    }
    .qrTop{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      margin-bottom:10px;
    }
    .qrTop strong{font-weight:950; font-size:13.5px}
    .qrClose{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(26,32,46,.12);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      display:grid; place-items:center;
    }
    .qrClose:hover{background: rgba(255,106,42,.08); border-color: rgba(255,106,42,.26)}
    .qrImgWrap{
      border-radius: 16px;
      overflow:hidden;
      border:1px solid rgba(26,32,46,.10);
      background: rgba(255,255,255,.8);
      padding:8px;
    }
    .qrImgWrap img{width:100%; height:auto; display:block; border-radius: 12px}
    .qrBottom{
      margin-top:8px;
      color: var(--muted);
      font-size:12.5px;
    }

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroLeft,.heroRight{min-height:auto}
      .reviewGrid{grid-template-columns: 1fr; }
      .caseGrid{grid-template-columns: 1fr; }
      .grid3{grid-template-columns: 1fr; }
      .grid4{grid-template-columns: 1fr 1fr; }
      .twoColBlock{grid-template-columns: 1fr; }
      .articles{grid-template-columns: 1fr; }
      .footerGrid{grid-template-columns: 1fr; }
      .mobilePanel{display:block}
      .navLinks{display:none}
      .navCta{display:none}
      .burger{display:flex}
      .mobilePanel{display:none}
      header[data-mobile="open"] .mobilePanel{display:block}
      header[data-mobile="open"] .mobilePanel{padding-top:0}
    }
    @media (max-width: 560px){
      .badge{min-width: unset; width:100%}
      .metricGrid{grid-template-columns: 1fr 1fr}
      .grid4{grid-template-columns: 1fr}
      .formGrid{grid-template-columns: 1fr}
      .helpBtn{max-width: 180px}
      .floatHelp{left: 12px}
      .backTop{right: 12px}
    }

/* No global layout overrides beyond this page stylesheet */