:root{
      --bg0:#fff7f3;
      --bg1:#ffffff;
      --text:#161616;
      --muted:#5a5a5a;
      --subtle:#7a7a7a;
      --line:rgba(20,20,20,.10);
      --shadow: 0 12px 40px rgba(17,17,17,.10);
      --shadow2: 0 8px 22px rgba(17,17,17,.10);
      --shadow3: 0 18px 55px rgba(232,65,59,.18);
      --brand:#ff4d3a;
      --brand2:#ff7a18;
      --brand3:#ff2b78;
      --card:#ffffff;
      --chip: rgba(255,77,58,.08);
      --chip2: rgba(255,122,24,.10);
      --btnText:#0f0f0f;
      --radius:18px;
      --radius2:24px;
      --container: 1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Roboto, Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 600px at 15% -10%, rgba(255,77,58,.22), transparent 55%),
        radial-gradient(900px 520px at 80% 0%, rgba(255,122,24,.20), transparent 52%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 45%, #fff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    header{
      position: sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.65);
      border-bottom: 1px solid rgba(20,20,20,.08);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 10px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brand-logo{
      width:46px;height:46px;border-radius:14px;
      background:
        radial-gradient(18px 18px at 30% 25%, rgba(255,255,255,.75), transparent 62%),
        linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 10px 25px rgba(255,77,58,.25);
      display:flex;align-items:center;justify-content:center;
      overflow:hidden;
      border:1px solid rgba(0,0,0,.06);
    }
    .brand-logo img{
      width:100%; height:100%; object-fit:cover; display:block;
      filter: saturate(1.05) contrast(1.02);
    }
    .brand-name{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-name strong{font-size:14px; letter-spacing:.2px}
    .brand-name span{font-size:12px; color:var(--muted); margin-top:4px}

    .nav-links{
      display:flex; gap:18px; align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px; color:#2a2a2a;
      padding:10px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(255,77,58,.08);
      border-color: rgba(255,77,58,.18);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding: 11px 14px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.75);
      color:#101010;
      font-weight:700;
      font-size:13px;
      box-shadow: 0 10px 30px rgba(17,17,17,.06);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(17,17,17,.12);
      border-color: rgba(255,77,58,.25);
      background: #fff;
    }
    .btn.primary{
      border-color: rgba(255,77,58,.35);
      background: linear-gradient(135deg, rgba(255,77,58,.95), rgba(255,122,24,.92));
      color:#0b0b0b;
      box-shadow: 0 18px 55px rgba(255,77,58,.22);
    }
    .btn.primary:hover{
      box-shadow: 0 25px 70px rgba(255,77,58,.28);
    }
    .btn .dot{
      width:10px;height:10px;border-radius:50%;
      background: rgba(255,255,255,.65);
      box-shadow: 0 0 0 6px rgba(255,255,255,.15);
    }

    .hamburger{
      display:none;
      width:44px;height:44px;border-radius:14px;
      border:1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      align-items:center;justify-content:center;
      transition: transform .18s ease;
    }
    .hamburger:active{transform: translateY(1px)}
    .hamburger span{
      width:18px;height:2px;background:#141414; display:block; position:relative;
    }
    .hamburger span:before,.hamburger span:after{
      content:""; position:absolute; left:0; width:18px;height:2px;background:#141414;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:before{top:-6px}
    .hamburger span:after{top:6px}

    .mobile-panel{
      display:none;
      border-top: 1px solid rgba(20,20,20,.08);
      padding: 12px 0 16px;
    }
    .mobile-panel .mobile-links{
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-panel a{
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.75);
      font-weight:700; font-size:13px;
    }
    .mobile-panel a:hover{
      border-color: rgba(255,77,58,.25);
      background: #fff;
    }
    .mobile-cta{
      display:flex; gap:10px; margin-top:12px; flex-wrap:wrap;
    }

    .hero{
      padding: 34px 0 16px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 22px;
      align-items: stretch;
    }
    .hero-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background:
        radial-gradient(650px 240px at 10% 10%, rgba(255,77,58,.22), transparent 60%),
        radial-gradient(500px 240px at 80% 0%, rgba(255,122,24,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.92));
      box-shadow: var(--shadow3);
      padding: 22px 22px 18px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(260px 140px at 65% 15%, rgba(255,43,120,.18), transparent 62%),
        radial-gradient(220px 120px at 20% 85%, rgba(255,122,24,.16), transparent 65%);
      pointer-events:none;
      opacity:.9;
    }
    .hero-inner{position:relative; z-index:1;}
    .kicker{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom: 14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 12px;
      background: rgba(255,77,58,.10);
      border: 1px solid rgba(255,77,58,.18);
      border-radius: 999px;
      font-weight:800;
      font-size:12px;
      letter-spacing:.2px;
    }
    .badge i{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      display:inline-block;
      box-shadow: 0 0 0 6px rgba(255,77,58,.12);
    }
    .kicker .meta{
      font-size:12px; color:var(--muted); font-weight:700;
    }
    h1{
      margin: 0 0 12px;
      font-size: clamp(24px, 3.3vw, 40px);
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .lead{
      margin: 0 0 16px;
      color: #2c2c2c;
      font-size: 14px;
      line-height:1.7;
      max-width: 64ch;
      font-weight:600;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top: 14px;
    }
    .ghost{
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(0,0,0,.12);
    }
    .hero-points{
      margin-top: 18px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .point{
      flex: 1 1 auto;
      min-width: 160px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 16px;
      padding: 12px 12px;
      display:flex; gap:10px; align-items:flex-start;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .point:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,58,.20);
      box-shadow: 0 18px 45px rgba(17,17,17,.10);
    }
    .icon{
      width:36px;height:36px;border-radius:14px;
      background: linear-gradient(135deg, rgba(255,77,58,.18), rgba(255,122,24,.16));
      border:1px solid rgba(255,77,58,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .icon svg{width:18px;height:18px; fill:#1b1b1b; opacity:.95}
    .point strong{display:block; font-size:13px; margin-top:1px}
    .point span{display:block; font-size:12px; color:var(--muted); margin-top:6px; line-height:1.4; font-weight:650}

    .hero-side{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.92));
      box-shadow: var(--shadow2);
      padding: 18px;
      display:flex; flex-direction:column; gap:14px;
      position:relative;
      overflow:hidden;
    }
    .hero-side:after{
      content:"";
      position:absolute; right:-80px; top:-90px; width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(255,77,58,.30), transparent 60%);
      transform: rotate(15deg);
      pointer-events:none;
      opacity:.9;
    }
    .side-inner{position:relative; z-index:1;}
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .pill{
      font-size:12px;
      font-weight:900;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,77,58,.22);
      background: rgba(255,77,58,.10);
      white-space:nowrap;
    }
    .side-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .mini{
      display:flex; gap:10px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
    }
    .mini .n{
      width:32px;height:32px;border-radius:12px;
      background: linear-gradient(135deg, rgba(255,77,58,.18), rgba(255,122,24,.16));
      border:1px solid rgba(255,77,58,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; font-size:13px;
      flex:0 0 auto;
    }
    .mini strong{display:block; font-size:13px; margin-top:1px}
    .mini span{display:block; font-size:12px; color:var(--muted); margin-top:6px; line-height:1.45; font-weight:650}

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

    .reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
    .reveal.show{opacity:1; transform: translateY(0)}
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: 0 10px 26px rgba(17,17,17,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,77,58,.20);
      box-shadow: 0 18px 45px rgba(17,17,17,.10);
    }
    .card .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,77,58,.20);
      background: rgba(255,77,58,.10);
      font-weight:900;
      font-size:12px;
    }
    .card h3{
      margin: 12px 0 8px;
      font-size: 16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      font-weight:650;
    }
    .stats-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 14px;
    }
    .stat{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(0,0,0,.08);
      border-radius: var(--radius);
      padding: 14px;
      display:flex; flex-direction:column; gap:8px;
      transition: transform .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .stat:before{
      content:"";
      position:absolute; inset:-1px;
      background: radial-gradient(140px 80px at 20% 20%, rgba(255,77,58,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .stat > *{position:relative; z-index:1}
    .stat .k{
      font-size:12px; color:var(--muted); font-weight:800;
      display:flex; align-items:center; gap:8px;
    }
    .stat .k i{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      display:inline-block;
    }
    .stat strong{
      font-size: 20px;
      letter-spacing:-.4px;
    }
    .stat span{
      font-size:12px; color:var(--muted); font-weight:700; line-height:1.4;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .steps{
      display:flex; flex-direction:column; gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
    }
    .step .num{
      width:40px; height:40px; border-radius: 16px;
      background: linear-gradient(135deg, rgba(255,77,58,.22), rgba(255,122,24,.18));
      border:1px solid rgba(255,77,58,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .step h3{margin:0; font-size:15px}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.65; font-weight:650}

    .contrast-wrap{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background:
        radial-gradient(500px 260px at 85% 10%, rgba(255,77,58,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.92));
      box-shadow: 0 12px 35px rgba(17,17,17,.08);
      padding: 16px;
      overflow:hidden;
    }
    .compare-meta{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding: 2px 2px 12px;
    }
    .score{
      display:flex; align-items:center; gap:12px;
    }
    .score .stars{
      width:54px;height:54px;border-radius:18px;
      background: linear-gradient(135deg, rgba(255,77,58,.20), rgba(255,122,24,.18));
      border:1px solid rgba(255,77,58,.20);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 45px rgba(255,77,58,.12);
      flex:0 0 auto;
    }
    .score .stars svg{width:22px;height:22px; fill:#1b1b1b}
    .score .txt strong{display:block; font-size:22px; letter-spacing:-.4px}
    .score .txt span{display:block; color:var(--muted); font-weight:750; font-size:12px; margin-top:4px; line-height:1.35}
    .compare-table{
      width:100%;
      border-collapse:collapse;
      table-layout:fixed;
    }
    .compare-table th, .compare-table td{
      border:1px solid rgba(0,0,0,.08);
      padding: 12px 10px;
      vertical-align:top;
      font-size:13px;
      line-height:1.55;
      font-weight:700;
      color:#242424;
      background: rgba(255,255,255,.75);
    }
    .compare-table th{
      background: rgba(255,77,58,.08);
      font-size:13px;
      color:#181818;
    }
    .compare-table td{
      color: var(--muted);
      font-weight:650;
    }
    .good{
      color:#151515;
      font-weight:1000;
    }
    .check{
      display:inline-flex; align-items:center; gap:8px;
      color:#171717; font-weight:900;
    }
    .check svg{width:16px;height:16px; fill:#161616}

    .timeline{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .time-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
    }
    .time-item .dot2{
      width:14px;height:14px;border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 6px rgba(255,77,58,.12);
      margin-top: 6px;
      flex:0 0 auto;
    }
    .time-item strong{display:block; font-size:15px}
    .time-item span{display:block; margin-top:6px; color:var(--muted); font-weight:650; font-size:13px; line-height:1.65}

    .gallery-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .case{
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height: 210px;
    }
    .case:hover{transform: translateY(-3px); box-shadow: 0 18px 45px rgba(17,17,17,.10)}
    .case .thumb{
      border-radius: 16px;
      border: 1px solid rgba(0,0,0,.08);
      background:
        linear-gradient(135deg, rgba(255,77,58,.18), rgba(255,122,24,.14)),
        radial-gradient(280px 120px at 20% 20%, rgba(255,255,255,.55), transparent 60%);
      height: 86px;
      display:flex; align-items:center; justify-content:space-between;
      padding: 12px;
      overflow:hidden;
      position:relative;
    }
    .case .thumb:after{
      content:"";
      position:absolute; right:-60px; bottom:-90px;
      width:180px;height:180px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,43,120,.20), transparent 60%);
      transform: rotate(-8deg);
    }
    .thumb .tchip{
      position:relative; z-index:1;
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(0,0,0,.08);
      font-weight:950; font-size:12px;
    }
    .thumb .tchip i{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      display:inline-block;
    }
    .case h3{margin:0; font-size:15px}
    .case p{margin:0; color:var(--muted); font-weight:650; font-size:13px; line-height:1.65}
    .case .meta-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto}
    .chip{
      padding: 8px 10px;
      border-radius:999px;
      border:1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.72);
      color: #232323;
      font-weight:850; font-size:12px;
    }

    .list{
      display:flex; flex-direction:column; gap:10px;
    }
    .list-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 14px;
      border-radius: var(--radius);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .list-item:hover{transform: translateY(-2px); box-shadow: 0 18px 45px rgba(17,17,17,.10); border-color: rgba(255,77,58,.20)}
    .list-item .bullet{
      width:12px;height:12px;border-radius:4px;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      margin-top:7px; flex:0 0 auto;
      box-shadow: 0 0 0 6px rgba(255,77,58,.10);
    }
    .list-item strong{display:block; font-size:14px}
    .list-item span{display:block; margin-top:6px; color:var(--muted); font-weight:650; font-size:13px; line-height:1.65}
    .list-item a{
      display:inline-flex; align-items:center; gap:8px;
      margin-top:10px;
      font-weight:950; font-size:13px;
      color:#1b1b1b;
    }
    .arrow{
      width:18px;height:18px;border-radius:8px;
      border:1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
    }
    .arrow svg{width:12px;height:12px; fill:#171717}

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items:start;
    }
    .faq{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(17,17,17,.06);
      overflow:hidden;
    }
    .faq-header{
      padding: 14px 16px;
      border-bottom: 1px solid rgba(0,0,0,.08);
      background: linear-gradient(135deg, rgba(255,77,58,.10), rgba(255,122,24,.08));
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .faq-header strong{font-size:14px}
    .faq-header span{font-size:12px; color:var(--muted); font-weight:750}
    details.faq-item{
      border-top: 1px solid rgba(0,0,0,.08);
      padding: 10px 14px;
      background: rgba(255,255,255,.75);
    }
    details.faq-item:first-of-type{border-top:0}
    details.faq-item summary{
      cursor:pointer;
      font-weight:900;
      font-size:13px;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding: 2px 0;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .sum-icon{
      width:26px; height:26px; border-radius:10px;
      border:1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .22s ease;
      margin-top:-2px;
    }
    details[open] .sum-icon{transform: rotate(45deg)}
    .sum-icon svg{width:14px;height:14px; fill:#171717}
    details.faq-item .faq-answer{
      padding: 10px 0 2px;
      color: var(--muted);
      font-size:13px;
      line-height:1.8;
      font-weight:650;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .review{
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(0,0,0,.08);
      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;
      min-height: 210px;
    }
    .review:hover{transform: translateY(-3px); box-shadow: 0 18px 45px rgba(17,17,17,.10); border-color: rgba(255,77,58,.20)}
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:42px;height:42px;border-radius:16px;
      background: linear-gradient(135deg, rgba(255,77,58,.22), rgba(255,122,24,.18));
      border:1px solid rgba(255,77,58,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; color:#101010;
      flex:0 0 auto;
    }
    .starsRow{
      display:flex; gap:4px; align-items:center;
    }
    .starsRow svg{width:14px;height:14px; fill:#171717; opacity:.95}
    .review p{
      margin:0;
      color: var(--muted);
      font-weight:650;
      font-size:13px;
      line-height:1.75;
    }
    .review .who strong{display:block; font-size:13px}
    .review .who span{display:block; margin-top:6px; color:var(--subtle); font-weight:800; font-size:12px; line-height:1.4}

    .form-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .form-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background:
        radial-gradient(460px 260px at 15% 0%, rgba(255,77,58,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.92));
      box-shadow: 0 12px 35px rgba(17,17,17,.08);
      padding: 16px;
    }
    form{
      display:flex; flex-direction:column; gap:12px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-weight:900; font-size:12px; color:#1a1a1a;
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.12);
      background: rgba(255,255,255,.78);
      padding: 12px 12px;
      font-size:14px;
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease;
      color:#111;
      font-weight:750;
    }
    textarea{min-height: 110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,77,58,.45);
      box-shadow: 0 0 0 5px rgba(255,77,58,.12);
      background:#fff;
    }
    .form-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top: 2px;
    }
    .hint{
      color: var(--muted);
      font-size:12px; font-weight:700; line-height:1.5;
      margin: 0;
    }
    .side-steps{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(17,17,17,.06);
      padding: 16px;
    }
    .side-steps h3{
      margin: 0 0 10px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .side-steps .small{
      margin:0 0 12px;
      color: var(--muted);
      font-size:13px;
      line-height:1.7;
      font-weight:650;
    }

    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding: 12px;
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(17,17,17,.06);
    }
    .tagcloud a{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.75);
      font-size:12px;
      font-weight:900;
      color:#1a1a1a;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .tagcloud a:hover{
      transform: translateY(-2px);
      border-color: rgba(255,77,58,.25);
      background: rgba(255,77,58,.08);
    }

    .price-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      align-items:stretch;
    }
    .price{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(17,17,17,.06);
      padding: 16px;
      display:flex; flex-direction:column; gap:10px;
    }
    .price .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .price strong{font-size:15px}
    .price .r{
      font-size:12px; font-weight:1000;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,77,58,.22);
      background: rgba(255,77,58,.10);
      white-space:nowrap;
    }
    .price .val{
      font-size: 24px;
      letter-spacing:-.5px;
      font-weight:1000;
      margin-top: 4px;
    }
    .price p{
      margin:0;
      color: var(--muted);
      font-weight:650;
      font-size:13px;
      line-height:1.7;
    }
    .price .bul{
      display:flex; flex-direction:column; gap:8px;
      margin-top:auto;
    }
    .price .bul div{
      display:flex; gap:10px; align-items:flex-start;
      color: var(--muted);
      font-weight:700;
      font-size:13px;
      line-height:1.5;
    }
    .price .bul div svg{width:16px;height:16px; fill:#171717; margin-top:1px; flex:0 0 auto}

    .contact-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .contact-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background:
        radial-gradient(560px 260px at 15% 0%, rgba(255,77,58,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.92));
      box-shadow: 0 12px 35px rgba(17,17,17,.08);
      padding: 16px;
    }
    .contact-card h3{margin:0 0 8px; font-size:16px}
    .contact-card p{margin:0 0 12px; color: var(--muted); font-weight:650; font-size:13px; line-height:1.7}
    .contact-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 10px;
    }
    .contact-item{
      border-radius: 16px;
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      padding: 12px;
      min-height: 88px;
      display:flex; flex-direction:column; gap:8px;
    }
    .contact-item span{font-size:12px; color: var(--muted); font-weight:850}
    .contact-item strong{font-size:13px; font-weight:1000; letter-spacing:-.1px}
    .qr{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(17,17,17,.06);
      padding: 16px;
      display:flex; flex-direction:column; gap:12px;
    }
    .qr-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .qr-top h3{margin:0; font-size:16px}
    .qr-top span{color: var(--muted); font-size:12px; font-weight:800; line-height:1.4; margin-top:6px; display:block}
    .qr-img{
      width: 168px;
      max-width: 100%;
      margin: 0 auto;
      border-radius: 18px;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(255,255,255,.88);
      padding: 10px;
    }
    .qr-img img{width:100%; height:auto; display:block}
    .qr-note{
      color: var(--muted);
      font-size:12px; font-weight:750;
      line-height:1.6;
      margin:0;
      text-align:center;
    }

    .partner-net{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 12px;
    }
    .partner-net a{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.75);
      font-weight:900;
      font-size:12px;
      transition: transform .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .partner-net a:hover{transform: translateY(-2px); border-color: rgba(255,77,58,.25)}

    footer{
      padding: 18px 0 26px;
      margin-top: 10px;
      border-top: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.60);
    }
    .footer-wrap{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .foot-card{
      border-radius: var(--radius2);
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 10px 26px rgba(17,17,17,.06);
    }
    .foot-card h3{margin:0 0 10px; font-size:15px}
    .foot-card p{margin:0; color:var(--muted); font-weight:650; font-size:13px; line-height:1.75}
    .foot-links{
      display:flex; flex-direction:column; gap:10px;
    }
    .foot-links a{
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.08);
      background: rgba(255,255,255,.78);
      font-weight:900; font-size:13px;
      transition: transform .2s ease, border-color .2s ease;
    }
    .foot-links a:hover{transform: translateY(-2px); border-color: rgba(255,77,58,.25)}
    .copyright{
      margin-top: 14px;
      color: var(--subtle);
      font-size:12px;
      font-weight:800;
      text-align:center;
    }

    .float-chat{
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 60;
      display:flex;
      flex-direction:column;
      gap:10px;
      pointer-events:none;
    }
    .float-chat a, .float-chat button{
      pointer-events:auto;
    }
    .float-btn{
      width: 52px; height: 52px;
      border-radius: 18px;
      border: 1px solid rgba(0,0,0,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 55px rgba(17,17,17,.15);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease;
    }
    .float-btn:hover{transform: translateY(-2px)}
    .float-btn svg{width:22px;height:22px; fill:#171717}
    .backtop{
      display:none;
    }

    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left: 14px; top: 14px; width:auto; height:auto;
      background:#fff; z-index:1000;
      padding: 10px 12px; border-radius: 14px;
      border:1px solid rgba(0,0,0,.12);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      .stats-grid{grid-template-columns: repeat(2, 1fr)}
      .grid-3{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .gallery-grid{grid-template-columns: 1fr}
      .faq-grid{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .form-wrap{grid-template-columns: 1fr}
      .price-grid{grid-template-columns: 1fr}
      .contact-grid{grid-template-columns: 1fr}
      .footer-wrap{grid-template-columns: 1fr}
      .nav-links{display:none}
      .nav-cta{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      header{background: rgba(255,255,255,.78)}
    }