:root{
      --bg0:#fff7f6;
      --bg1:#ffffff;
      --ink:#161616;
      --muted:#5a5a5a;
      --subtle:#7a7a7a;
      --card:#ffffff;
      --stroke:rgba(17,17,17,.10);
      --stroke2:rgba(17,17,17,.14);
      --shadow:0 10px 30px rgba(16,16,16,.08);
      --shadow2:0 18px 50px rgba(200,0,45,.16);
      --brand:#c3002e;
      --brand2:#ff3b5c;
      --brand3:#7b001e;
      --ok:#0f7a4f;
      --warn:#9a5a00;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
      --gap:18px;
      --focus:rgba(195,0,46,.22);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      background:
        radial-gradient(1200px 600px at 10% -5%, rgba(255,59,92,.20), rgba(255,59,92,0) 55%),
        radial-gradient(900px 520px at 95% 0%, rgba(195,0,46,.18), rgba(195,0,46,0) 55%),
        linear-gradient(180deg, var(--bg0), #fff 45%, #fff 100%);
      color:var(--ink);
      line-height:1.55;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip{
      position:absolute;
      left:-9999px;
      top:10px;
      background:#fff;
      border:1px solid var(--stroke2);
      padding:10px 12px;
      border-radius:12px;
      z-index:9999;
    }
    .skip:focus{left:18px; box-shadow:0 0 0 4px var(--focus); outline:none}

    header{
      position:sticky;
      top:0;
      z-index:40;
      backdrop-filter:saturate(150%) blur(10px);
      background:rgba(255,255,255,.72);
      border-bottom:1px solid rgba(17,17,17,.07);
    }
    .navRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .ai-page-logo{
      width:40px;
      height:40px;
      border-radius:12px;
      object-fit:contain;
      background:linear-gradient(135deg, rgba(195,0,46,.12), rgba(255,59,92,.08));
      border:1px solid rgba(195,0,46,.20);
      padding:6px;
    }
    .brandText{display:flex; flex-direction:column; gap:2px}
    .brandText strong{font-size:15px; letter-spacing:.2px}
    .brandText span{font-size:12px; color:var(--subtle)}
    .navLinks{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      font-size:13px;
      color:rgba(22,22,22,.82);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition:background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navLinks a:hover{
      background:rgba(195,0,46,.06);
      border-color:rgba(195,0,46,.20);
      transform:translateY(-1px);
    }
    .navCtas{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:12px;
      border:1px solid rgba(195,0,46,.22);
      background:#fff;
      color:var(--brand);
      font-weight:650;
      font-size:13px;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 10px 22px rgba(195,0,46,.14)}
    .btnPrimary{
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      color:#fff;
      border-color:rgba(255,255,255,.10);
      box-shadow:0 14px 35px rgba(195,0,46,.20);
    }
    .btnPrimary:hover{box-shadow:0 18px 45px rgba(195,0,46,.26)}
    .btnGhost{
      background:rgba(255,255,255,.65);
      border-color:rgba(17,17,17,.10);
      color:rgba(22,22,22,.88);
    }
    .btnIcon{
      width:18px; height:18px; display:inline-block;
    }

    .mobileToggle{
      display:none;
      align-items:center;
      justify-content:center;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(17,17,17,.12);
      background:rgba(255,255,255,.6);
      cursor:pointer;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .mobileToggle:hover{transform:translateY(-1px); box-shadow:0 12px 26px rgba(0,0,0,.10)}
    .hamb{width:18px; height:12px; position:relative}
    .hamb span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:999px;
      background:rgba(22,22,22,.82);
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamb span:nth-child(1){top:0}
    .hamb span:nth-child(2){top:5px}
    .hamb span:nth-child(3){top:10px}
    .mobileToggle[data-open="true"] .hamb span:nth-child(1){top:5px; transform:rotate(45deg)}
    .mobileToggle[data-open="true"] .hamb span:nth-child(2){opacity:0}
    .mobileToggle[data-open="true"] .hamb span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobilePanel{
      display:none;
      padding:10px 0 16px;
    }
    .mobilePanel .mobileLinks{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mobilePanel .mobileLinks a{
      padding:10px 12px;
      border:1px solid rgba(17,17,17,.10);
      border-radius:14px;
      background:rgba(255,255,255,.72);
      font-weight:600;
      font-size:14px;
    }
    .mobilePanel .mobileActions{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}

    main{padding-bottom:22px}

    .hero{
      padding:34px 0 18px;
      position:relative;
      overflow:hidden;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
      padding:18px 0;
    }
    .heroLeft{
      background:
        radial-gradient(900px 420px at 0% 0%, rgba(195,0,46,.16), rgba(195,0,46,0) 55%),
        radial-gradient(800px 420px at 65% 10%, rgba(255,59,92,.14), rgba(255,59,92,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.92));
      border:1px solid rgba(195,0,46,.14);
      border-radius:var(--radius2);
      padding:22px 20px;
      box-shadow:0 22px 60px rgba(195,0,46,.10);
      position:relative;
      overflow:hidden;
      min-height:360px;
    }
    .heroLeft::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        conic-gradient(from 220deg at 20% 0%, rgba(195,0,46,.24), rgba(255,59,92,.0), rgba(195,0,46,.18));
      filter:blur(18px);
      opacity:.55;
      pointer-events:none;
    }
    .heroInner{position:relative; z-index:1}
    .pillRow{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(195,0,46,.18);
      background:rgba(255,255,255,.62);
      font-size:12px;
      color:rgba(22,22,22,.86);
      font-weight:650;
    }
    .dot{
      width:9px; height:9px;
      border-radius:99px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 4px rgba(195,0,46,.15);
    }
    h1{
      margin:14px 0 10px;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.15;
    }
    .lead{
      color:rgba(22,22,22,.78);
      font-size:15px;
      max-width:62ch;
      margin:0 0 14px;
    }
    .heroCtas{display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:10px}
    .noteRow{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .miniStat{
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.72);
      border-radius:16px;
      padding:12px 12px;
      position:relative;
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .miniStat:hover{transform:translateY(-2px); box-shadow:0 18px 45px rgba(0,0,0,.08)}
    .miniStat .k{font-weight:900; font-size:18px}
    .miniStat .t{color:rgba(22,22,22,.70); font-size:12px; margin-top:4px}
    .miniStat::after{
      content:"";
      position:absolute;
      top:-40px; right:-40px;
      width:90px; height:90px;
      background:radial-gradient(circle at 30% 30%, rgba(255,59,92,.25), rgba(255,59,92,0) 60%);
      pointer-events:none;
    }

    .heroRight{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .glassCard{
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.72);
      border-radius:var(--radius2);
      padding:16px 16px;
      box-shadow:0 18px 44px rgba(0,0,0,.06);
      position:relative;
      overflow:hidden;
    }
    .glassCard::before{
      content:"";
      position:absolute;
      inset:-60px -40px auto auto;
      width:220px; height:220px;
      background:radial-gradient(circle at 30% 30%, rgba(195,0,46,.26), rgba(195,0,46,0) 60%);
      pointer-events:none;
    }
    .glassInner{position:relative; z-index:1}
    .cardTitle{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .cardTitle h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .badge{
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(195,0,46,.22);
      background:rgba(255,255,255,.65);
      color:rgba(195,0,46,.95);
      font-weight:750;
      white-space:nowrap;
    }
    .list{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(17,17,17,.08);
      background:rgba(255,255,255,.7);
      transition:transform .2s ease, border-color .2s ease;
    }
    .list li:hover{transform:translateY(-1px); border-color:rgba(195,0,46,.20)}
    .icon{
      width:26px; height:26px;
      border-radius:10px;
      background:linear-gradient(135deg, rgba(195,0,46,.16), rgba(255,59,92,.10));
      border:1px solid rgba(195,0,46,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .icon svg{width:14px; height:14px; fill:none; stroke:rgba(195,0,46,.98); stroke-width:2; stroke-linecap:round; stroke-linejoin:round}
    .liText strong{display:block; font-size:13px; margin-top:1px}
    .liText span{display:block; color:rgba(22,22,22,.70); font-size:12px; margin-top:3px}

    .quickLinks{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .quickLink{
      border-radius:16px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .quickLink:hover{transform:translateY(-2px); box-shadow:0 18px 44px rgba(195,0,46,.12); border-color:rgba(195,0,46,.22)}
    .quickLink strong{font-size:13px}
    .arrow{
      width:34px; height:34px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(195,0,46,.16), rgba(255,59,92,.10));
      border:1px solid rgba(195,0,46,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .arrow svg{width:16px; height:16px; stroke:rgba(195,0,46,.95); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round}

    section{
      padding:22px 0;
    }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .sectionHead h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .sectionHead p{
      margin:0;
      color:rgba(22,22,22,.72);
      font-size:13.5px;
      max-width:60ch;
    }
    .grid2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
    .grid3{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px}
    .grid4{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:14px}

    .sectionCard{
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      border-radius:var(--radius2);
      padding:16px 16px;
      box-shadow:0 18px 44px rgba(0,0,0,.05);
    }
    .softHeader{
      display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px;
    }
    .softHeader h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .tag{
      font-size:12px;
      color:rgba(22,22,22,.78);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.7);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .capList{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .capItem{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(17,17,17,.08);
      background:rgba(255,255,255,.7);
    }
    .capItem strong{display:block; font-size:13px}
    .capItem span{display:block; color:rgba(22,22,22,.70); font-size:12px; margin-top:3px}

    .steps{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .step{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      padding:16px 14px;
      position:relative;
      overflow:hidden;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step:hover{transform:translateY(-2px); box-shadow:0 20px 55px rgba(0,0,0,.08); border-color:rgba(195,0,46,.20)}
    .step .num{
      font-weight:950;
      font-size:12px;
      letter-spacing:.12em;
      color:rgba(195,0,46,.92);
      background:rgba(195,0,46,.10);
      border:1px solid rgba(195,0,46,.18);
      padding:6px 10px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:10px;
    }
    .step h3{margin:0 0 6px; font-size:15px}
    .step p{margin:0; color:rgba(22,22,22,.72); font-size:13px}

    .compareWrap{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 44px rgba(0,0,0,.05);
      overflow:hidden;
    }
    .compareTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:16px 16px;
      border-bottom:1px solid rgba(17,17,17,.08);
      background:
        radial-gradient(1000px 220px at 10% 0%, rgba(195,0,46,.16), rgba(195,0,46,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
    }
    .ratingBlock{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
    .stars{
      display:flex; gap:4px; align-items:center;
      color:var(--brand);
      font-weight:900;
      letter-spacing:.02em;
      font-size:16px;
    }
    .ratingScore{
      display:flex; flex-direction:column; gap:2px;
    }
    .ratingScore strong{font-size:22px; letter-spacing:-.4px}
    .ratingScore span{font-size:12.5px; color:rgba(22,22,22,.68)}
    .compareControls{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end
    }
    .chip{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.70);
      color:rgba(22,22,22,.78);
      cursor:pointer;
      transition:transform .2s ease, border-color .2s ease, background .2s ease;
      user-select:none;
      white-space:nowrap;
    }
    .chip[aria-pressed="true"]{
      background:rgba(195,0,46,.10);
      border-color:rgba(195,0,46,.28);
      color:rgba(195,0,46,.95);
      font-weight:750;
    }
    .chip:hover{transform:translateY(-1px); border-color:rgba(195,0,46,.22)}

    .tableWrap{overflow:auto}
    table{
      width:100%;
      border-collapse:collapse;
      min-width:760px;
      background:#fff;
    }
    th,td{
      border-bottom:1px solid rgba(17,17,17,.08);
      padding:14px 12px;
      vertical-align:top;
      font-size:13px;
    }
    th{
      text-align:left;
      color:rgba(22,22,22,.82);
      font-weight:850;
      background:rgba(255,255,255,.85);
      position:sticky;
      top:0;
      z-index:1;
    }
    td{
      color:rgba(22,22,22,.74);
    }
    .tdStrong{
      color:rgba(22,22,22,.92);
      font-weight:800;
    }
    .yes{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(15,122,79,.22);
      background:rgba(15,122,79,.08);
      color:rgba(15,122,79,.95);
      font-weight:800;
      white-space:nowrap;
    }
    .no{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(154,90,0,.22);
      background:rgba(154,90,0,.08);
      color:rgba(154,90,0,.95);
      font-weight:800;
      white-space:nowrap;
    }

    .cardsRow{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .reviewCard{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      padding:16px 14px;
      box-shadow:0 18px 44px rgba(0,0,0,.05);
      transition:transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .reviewCard:hover{transform:translateY(-2px); box-shadow:0 26px 70px rgba(0,0,0,.08)}
    .reviewCard::after{
      content:"";
      position:absolute;
      inset:auto -80px -90px auto;
      width:240px; height:240px;
      background:radial-gradient(circle at 30% 30%, rgba(195,0,46,.18), rgba(195,0,46,0) 60%);
      pointer-events:none;
    }
    .reviewInner{position:relative; z-index:1}
    .reviewTop{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
    .avatar{
      width:44px; height:44px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(195,0,46,.16), rgba(255,59,92,.08));
      border:1px solid rgba(195,0,46,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(195,0,46,.95);
      flex:0 0 auto;
    }
    .reviewMeta strong{display:block; font-size:14px}
    .reviewMeta span{display:block; color:rgba(22,22,22,.68); font-size:12.5px; margin-top:3px}
    .quote{
      margin:0;
      color:rgba(22,22,22,.78);
      font-size:13px;
    }
    .quote b{color:rgba(22,22,22,.92)}
    .starsRow{
      display:flex; gap:3px; margin-top:10px;
      color:var(--brand);
      font-weight:900;
      letter-spacing:.05em;
      font-size:13px;
    }

    .gallery{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }
    .caseCard{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      padding:16px 16px;
      box-shadow:0 18px 44px rgba(0,0,0,.05);
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .caseMedia{
      border-radius:18px;
      border:1px solid rgba(17,17,17,.10);
      overflow:hidden;
      background:linear-gradient(135deg, rgba(195,0,46,.10), rgba(255,59,92,.06));
      padding:12px;
    }
    .caseMedia img{
      width:100%;
      height:auto;
      display:block;
      border-radius:14px;
      object-fit:contain;
      background:#fff;
    }
    .caseInfo h3{margin:0; font-size:15px}
    .caseInfo p{margin:6px 0 0; color:rgba(22,22,22,.72); font-size:13.5px}
    .caseBullets{
      margin:0; padding:0; list-style:none;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .caseBullets li{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.72);
      color:rgba(22,22,22,.78);
    }
    .caseActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}

    .articleGrid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .article{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      padding:14px 14px;
      box-shadow:0 18px 44px rgba(0,0,0,.05);
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:160px;
    }
    .article:hover{transform:translateY(-2px); box-shadow:0 26px 70px rgba(0,0,0,.08); border-color:rgba(195,0,46,.22)}
    .article .meta{display:flex; justify-content:space-between; gap:10px; align-items:center}
    .kicker{
      font-size:12px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(195,0,46,.18);
      background:rgba(195,0,46,.08);
      color:rgba(195,0,46,.95);
      font-weight:800;
      white-space:nowrap;
    }
    .date{font-size:12.5px; color:rgba(22,22,22,.62); white-space:nowrap}
    .article h3{margin:0; font-size:14.5px; letter-spacing:-.2px}
    .article p{margin:0; color:rgba(22,22,22,.72); font-size:13px}
    .article a.more{
      margin-top:auto;
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:800;
      color:rgba(195,0,46,.95);
    }
    .article a.more svg{width:14px; height:14px; stroke:rgba(195,0,46,.95); stroke-width:2; fill:none}

    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .formCard{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.80);
      box-shadow:0 18px 44px rgba(0,0,0,.05);
      padding:16px 16px;
    }
    form{margin:0}
    .fieldRow{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    label{
      display:flex;
      flex-direction:column;
      gap:7px;
      font-size:12.5px;
      color:rgba(22,22,22,.78);
      font-weight:750;
    }
    input, select, textarea{
      width:100%;
      padding:11px 12px;
      border-radius:14px;
      border:1px solid rgba(17,17,17,.14);
      background:rgba(255,255,255,.85);
      color:rgba(22,22,22,.92);
      outline:none;
      transition:box-shadow .2s ease, border-color .2s ease;
      font-size:14px;
    }
    textarea{min-height:120px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(195,0,46,.35);
      box-shadow:0 0 0 4px var(--focus);
    }
    .formActions{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:12px; flex-wrap:wrap;
    }
    .formHint{
      color:rgba(22,22,22,.62);
      font-size:12.5px;
      max-width:48ch;
    }
    .agreeLine{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(22,22,22,.68);
      font-size:12.5px;
      margin-top:10px;
    }
    .agreeLine input{width:16px; height:16px; margin-top:2px; accent-color:var(--brand)}
    .toast{
      position:fixed;
      left:50%;
      transform:translateX(-50%);
      bottom:18px;
      background:rgba(22,22,22,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:14px;
      box-shadow:0 22px 60px rgba(0,0,0,.18);
      z-index:999;
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
      max-width:92vw;
      font-size:13px;
    }
    .toast.show{
      opacity:1;
      pointer-events:auto;
      transform:translateX(-50%) translateY(-4px);
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details.faqItem{
      border-radius:18px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      padding:0 12px;
      box-shadow:0 14px 38px rgba(0,0,0,.04);
      transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
      overflow:hidden;
    }
    details.faqItem[open]{border-color:rgba(195,0,46,.22); box-shadow:0 22px 60px rgba(195,0,46,.10)}
    summary{
      cursor:pointer;
      list-style:none;
      padding:14px 4px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      user-select:none;
      outline:none;
    }
    summary::-webkit-details-marker{display:none}
    .qText{font-weight:900; font-size:14px; line-height:1.35}
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:-3px;
      transition:transform .2s ease, border-color .2s ease;
    }
    details[open] .chev{transform:rotate(180deg); border-color:rgba(195,0,46,.24)}
    .chev svg{width:16px; height:16px; stroke:rgba(195,0,46,.95); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round}
    .aText{
      padding:0 4px 14px 4px;
      color:rgba(22,22,22,.74);
      font-size:13.5px;
      max-width:90ch;
    }

    .timeline{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 44px rgba(0,0,0,.05);
      padding:16px 16px;
    }
    .timeRow{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .timeLeft h3{margin:0; font-size:15px}
    .timeLeft p{margin:8px 0 0; color:rgba(22,22,22,.72); font-size:13.5px}
    .timeSteps{
      margin-top:6px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .timeStep{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(17,17,17,.08);
      background:rgba(255,255,255,.72);
    }
    .timeStep .tDot{
      width:28px; height:28px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(195,0,46,.16), rgba(255,59,92,.10));
      border:1px solid rgba(195,0,46,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(195,0,46,.95);
      flex:0 0 auto;
    }
    .timeStep strong{display:block; font-size:13.5px}
    .timeStep span{display:block; font-size:12.5px; color:rgba(22,22,22,.68); margin-top:3px}

    .cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .cloud a{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.72);
      color:rgba(22,22,22,.78);
      transition:transform .2s ease, border-color .2s ease;
    }
    .cloud a:hover{transform:translateY(-1px); border-color:rgba(195,0,46,.22);}

    .networkGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .networkCard{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      box-shadow:0 18px 44px rgba(0,0,0,.05);
      padding:16px 16px;
      overflow:hidden;
      position:relative;
    }
    .networkCard::before{
      content:"";
      position:absolute;
      inset:auto auto -120px -140px;
      width:340px; height:340px;
      background:radial-gradient(circle at 30% 30%, rgba(195,0,46,.18), rgba(195,0,46,0) 60%);
      pointer-events:none;
    }
    .networkInner{position:relative; z-index:1}
    .networkTop{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px}
    .networkTop h3{margin:0; font-size:15px}
    .kpiRow{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:10px; margin-top:12px}
    .kpi{
      border-radius:18px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.72);
      padding:12px 12px;
    }
    .kpi strong{display:block; font-size:18px}
    .kpi span{display:block; margin-top:4px; font-size:12.5px; color:rgba(22,22,22,.68)}
    .kv{
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
      margin-top:10px;
    }
    .kvItem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(17,17,17,.08);
      background:rgba(255,255,255,.72);
    }
    .kvItem .pillIcon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(195,0,46,.20);
      background:linear-gradient(135deg, rgba(195,0,46,.16), rgba(255,59,92,.10));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .kvItem .pillIcon svg{width:16px; height:16px; stroke:rgba(195,0,46,.95); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round}
    .kvItem strong{display:block; font-size:13.5px}
    .kvItem span{display:block; margin-top:4px; color:rgba(22,22,22,.68); font-size:12.5px}

    .footer{
      background:rgba(255,255,255,.78);
      border-top:1px solid rgba(17,17,17,.08);
      padding:18px 0 26px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footerCard{
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.85);
      padding:16px 16px;
      box-shadow:0 14px 38px rgba(0,0,0,.04);
    }
    .footerCard h3{margin:0 0 10px; font-size:15px}
    .footerCols{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .footerCols a{
      display:block;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(17,17,17,.08);
      background:rgba(255,255,255,.78);
      color:rgba(22,22,22,.78);
      font-size:13px;
      transition:transform .2s ease, border-color .2s ease;
    }
    .footerCols a:hover{transform:translateY(-1px); border-color:rgba(195,0,46,.22)}
    .linksBlock h3{margin:0 0 10px; font-size:15px}
    .friendLinks{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .friendLinks a{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.78);
      color:rgba(22,22,22,.78);
      transition:transform .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .friendLinks a:hover{transform:translateY(-1px); border-color:rgba(195,0,46,.22)}
    .copyright{
      margin-top:12px;
      color:rgba(22,22,22,.62);
      font-size:12.5px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }

    .floatChat{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .chatBtn{
      width:54px; height:54px;
      border-radius:18px;
      border:1px solid rgba(195,0,46,.22);
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 18px 55px rgba(195,0,46,.22);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .2s ease;
      user-select:none;
    }
    .chatBtn:hover{transform:translateY(-2px)}
    .chatBtn svg{width:22px; height:22px; stroke:#fff; stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round}
    .chatPanel{
      width:min(320px, calc(100vw - 36px));
      border-radius:var(--radius2);
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.92);
      box-shadow:0 26px 80px rgba(0,0,0,.16);
      overflow:hidden;
      display:none;
    }
    .chatPanel[data-open="true"]{display:block; animation:pop .22s ease both}
    @keyframes pop{from{transform:translateY(6px); opacity:.0} to{transform:translateY(0); opacity:1}}
    .chatTop{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(17,17,17,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.84));
    }
    .chatTop strong{font-size:13.5px}
    .closeX{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .2s ease;
    }
    .closeX:hover{transform:translateY(-1px)}
    .closeX svg{width:16px; height:16px; stroke:rgba(22,22,22,.86); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round}
    .chatBody{padding:12px 12px}
    .chatRow{
      display:flex; gap:12px; align-items:flex-start;
    }
    .chatRow img{
      width:86px; height:auto; border-radius:16px; border:1px solid rgba(17,17,17,.10);
      background:#fff; padding:6px;
    }
    .chatText p{margin:0; color:rgba(22,22,22,.72); font-size:13px}
    .chatText .contactMail{margin-top:8px; display:flex; gap:10px; align-items:center; flex-wrap:wrap}
    .smallLink{
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,17,17,.10);
      background:rgba(255,255,255,.82);
      color:rgba(22,22,22,.78);
      transition:transform .2s ease, border-color .2s ease;
      display:inline-flex; align-items:center; gap:8px;
    }
    .smallLink:hover{transform:translateY(-1px); border-color:rgba(195,0,46,.22)}
    .smallLink svg{width:14px; height:14px; stroke:rgba(195,0,46,.95); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round}

    .toTop{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:70;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(17,17,17,.12);
      background:rgba(255,255,255,.82);
      box-shadow:0 18px 45px rgba(0,0,0,.08);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:opacity .2s ease, transform .2s ease;
      opacity:0;
      pointer-events:none;
    }
    .toTop.show{opacity:1; pointer-events:auto; transform:translateY(-2px)}
    .toTop svg{width:18px; height:18px; stroke:rgba(195,0,46,.95); stroke-width:2; fill:none; stroke-linecap:round; stroke-linejoin:round}

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; }
      .heroLeft{min-height:auto}
      .steps{grid-template-columns:repeat(2, minmax(0,1fr))}
      .grid3{grid-template-columns:1fr}
      .grid4{grid-template-columns:repeat(2, minmax(0,1fr))}
      .cardsRow{grid-template-columns:1fr}
      .articleGrid{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr}
      .formGrid{grid-template-columns:1fr}
      .fieldRow{grid-template-columns:1fr}
      .timeRow{grid-template-columns:1fr}
      .networkGrid{grid-template-columns:1fr}
      .footerGrid{grid-template-columns:1fr}
      table{min-width:680px}
      .noteRow{grid-template-columns:1fr}
      .kpiRow{grid-template-columns:repeat(3, minmax(0,1fr))}
      .navLinks{display:none}
      .navCtas{display:none}
      .mobileToggle{display:flex}
      .mobilePanel{display:block}
      header{position:sticky}
      .mobilePanel[data-open="false"]{display:none}
    }
    @media (max-width: 480px){
      h1{font-size:28px}
      .steps{grid-template-columns:1fr}
      .grid4{grid-template-columns:1fr 1fr}
      .kpiRow{grid-template-columns:1fr 1fr}
      .heroLeft{padding:18px 14px}
      .hero{padding-top:24px}
      .container{padding:0 14px}
      .toTop{left:12px; bottom:12px}
      .floatChat{right:12px; bottom:12px}
    }