:root{
      --bg:#fff7f3;
      --surface:#ffffff;
      --text:#1b1b1f;
      --muted:#5a5f6b;
      --muted2:#7a808f;
      --line:rgba(20,22,27,.10);
      --shadow:0 18px 40px rgba(18,16,25,.10);
      --shadow2:0 10px 22px rgba(18,16,25,.10);
      --shadow3:0 6px 14px rgba(18,16,25,.08);
      --brand1:#ff6a2d;
      --brand2:#ff3d1a;
      --brand3:#ffb08a;
      --brandDeep:#c43b16;
      --accent:#7c3aed;
      --ok:#10b981;
      --warn:#f59e0b;
      --radius-xl:28px;
      --radius-lg:18px;
      --radius-md:14px;
      --radius-sm:12px;
      --container:1180px;
    }

    *{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", "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(255,106,45,.18), transparent 55%),
        radial-gradient(900px 520px at 80% 0%, rgba(255,61,26,.16), transparent 52%),
        linear-gradient(180deg, #fff7f3 0%, #ffffff 42%, #fffaf7 100%);
    }

    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .skip-link{
      position:absolute; left:-999px; top:10px;
      background:var(--surface); color:var(--text);
      padding:10px 12px; border-radius:10px;
      box-shadow:var(--shadow3); z-index:9999;
    }
    .skip-link:focus{left:18px}

    header{
      position:sticky; top:0; z-index:60;
      background:rgba(255,247,243,.72);
      backdrop-filter:saturate(160%) blur(10px);
      border-bottom:1px solid rgba(20,22,27,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:12px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand .logo{
      width:40px; height:40px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(255,106,45,.18), rgba(255,61,26,.10));
      border:1px solid rgba(255,106,45,.20);
      box-shadow:0 10px 22px rgba(255,61,26,.10);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand .logo img{width:100%; height:100%; object-fit:cover}
    .brand .meta{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .meta strong{
      font-size:14px; letter-spacing:.2px;
    }
    .brand .meta span{
      font-size:12px; color:var(--muted2);
      margin-top:4px;
    }

    nav{
      display:flex; align-items:center; gap:14px;
    }
    .nav-links{
      display:flex; align-items:center; gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px; color:rgba(27,27,31,.78);
      padding:8px 10px; border-radius:12px;
      transition: background .18s ease, color .18s ease, transform .18s ease;
      outline:none;
    }
    .nav-links a:hover{
      background:rgba(255,106,45,.10);
      color:rgba(196,59,22,.95);
      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(20,22,27,.10);
      background:var(--surface);
      color:var(--text);
      font-weight:650;
      font-size:14px;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(0px) scale(.99)}
    .btn:hover{box-shadow:var(--shadow3)}
    .btn-primary{
      border-color:rgba(255,61,26,.28);
      background:linear-gradient(135deg, rgba(255,106,45,.95), rgba(255,61,26,.92));
      color:#fff;
      box-shadow:0 16px 34px rgba(255,61,26,.22);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow:0 20px 44px rgba(255,61,26,.25);
    }
    .btn-ghost{
      background:rgba(255,255,255,.65);
    }

    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(20,22,27,.10);
      background:rgba(255,255,255,.65);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
      align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .burger:hover{box-shadow:var(--shadow3); transform: translateY(-1px)}
    .burger svg{width:22px; height:22px}

    .mobile-panel{
      display:none;
      border-top:1px solid rgba(20,22,27,.08);
      padding:12px 0 16px;
    }
    .mobile-panel a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      margin-top:10px;
      font-weight:650;
      font-size:14px;
      color:rgba(27,27,31,.9);
    }
    .mobile-panel a span{color:var(--muted2); font-weight:650; font-size:12px}

    @media (max-width: 980px){
      .nav-links{display:none}
      .nav-cta .btn-ghost{display:none}
      .burger{display:flex}
      .mobile-panel{display:block}
      .brand{min-width:auto}
    }

    main{padding-bottom:40px}
    .section{
      padding:70px 0;
    }
    .section-tight{padding:52px 0}
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(255,61,26,.25);
      background:rgba(255,106,45,.10);
      color:rgba(196,59,22,.95);
      font-weight:750;
      letter-spacing:.2px;
      font-size:12px;
    }
    .h1{
      font-size:44px; line-height:1.08;
      margin:14px 0 10px;
      letter-spacing:-.8px;
    }
    .lead{
      font-size:16px;
      color:rgba(27,27,31,.78);
      line-height:1.75;
      max-width:640px;
      margin:0;
    }

    .hero{
      padding:34px 0 20px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:22px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; gap:16px}
      .h1{font-size:34px}
    }

    .hero-left{
      background:
        radial-gradient(900px 480px at 10% 10%, rgba(255,106,45,.22), transparent 55%),
        radial-gradient(700px 420px at 90% 0%, rgba(124,58,237,.14), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.60));
      border:1px solid rgba(20,22,27,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow2);
      padding:28px;
      overflow:hidden;
      position:relative;
      min-height:360px;
    }
    .hero-left:before{
      content:"";
      position:absolute; inset:-140px -120px auto auto;
      width:320px; height:320px;
      background:conic-gradient(from 210deg, rgba(255,106,45,.55), rgba(255,61,26,.18), rgba(255,176,138,.35), rgba(124,58,237,.25));
      filter: blur(22px);
      opacity:.55;
      transform: rotate(12deg);
      pointer-events:none;
    }
    .hero-left .topline{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      position:relative;
    }
    .chip-row{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;
      position:relative;
    }
    .chip{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; gap:10px;
      transition: transform .18s ease, box-shadow .18s ease;
      cursor:default;
    }
    .chip:hover{transform: translateY(-2px); box-shadow:var(--shadow3)}
    .chip svg{width:18px; height:18px; color:rgba(196,59,22,.95)}
    .chip strong{font-size:13px}
    .chip span{font-size:12px; color:var(--muted2); display:block; margin-top:2px}
    .hero-actions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:18px;
      position:relative;
    }

    .hero-right{
      border-radius:var(--radius-xl);
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.65);
      box-shadow:var(--shadow3);
      padding:18px;
      display:flex; flex-direction:column;
      gap:14px;
      min-height:360px;
    }
    .data-grid{
      display:grid; grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .data-card{
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(20,22,27,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.55));
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .data-card:hover{
      transform: translateY(-2px);
      box-shadow:var(--shadow3);
      border-color:rgba(255,61,26,.26);
    }
    .data-card .num{
      font-size:22px; font-weight:900; letter-spacing:-.5px;
    }
    .data-card .label{
      margin-top:6px; font-size:12px; color:var(--muted2);
      line-height:1.35;
    }
    .data-card:after{
      content:"";
      position:absolute; right:-28px; top:-28px;
      width:80px; height:80px;
      background:radial-gradient(circle at 30% 30%, rgba(255,61,26,.28), transparent 60%);
      opacity:.9;
    }
    .quick-panel{
      border-radius:18px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      padding:14px 14px;
    }
    .quick-panel h3{
      font-size:14px; margin:0 0 8px; letter-spacing:.2px;
    }
    .quick-list{
      list-style:none; padding:0; margin:0;
      display:flex; flex-direction:column; gap:10px;
    }
    .quick-item{
      display:flex; gap:10px; align-items:flex-start;
    }
    .dot{
      width:10px; height:10px; margin-top:4px;
      border-radius:50%;
      background:linear-gradient(135deg, rgba(255,106,45,.95), rgba(255,61,26,.92));
      box-shadow:0 10px 18px rgba(255,61,26,.20);
      flex:0 0 auto;
    }
    .quick-item strong{font-size:13px}
    .quick-item span{
      display:block;
      font-size:12px; color:var(--muted2);
      margin-top:2px;
      line-height:1.45;
    }

    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:16px; flex-wrap:wrap;
      margin-bottom:22px;
    }
    .section-title h2{
      font-size:28px; margin:0;
      letter-spacing:-.4px;
    }
    .section-title p{
      margin:0;
      color:rgba(27,27,31,.72);
      max-width:650px;
      line-height:1.7;
      font-size:14px;
    }

    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid-2{
      display:grid; grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .grid-4{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .grid-4{grid-template-columns:1fr 1fr}
    }

    .card{
      border-radius:var(--radius-lg);
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 8px 20px rgba(18,16,25,.06);
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(255,61,26,.22);
    }
    .card h3{margin:10px 0 6px; font-size:16px; letter-spacing:-.2px}
    .card p{margin:0; color:rgba(27,27,31,.70); line-height:1.7; font-size:14px}
    .icon-badge{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,61,26,.22);
      background:linear-gradient(135deg, rgba(255,106,45,.18), rgba(255,61,26,.08));
      box-shadow: 0 16px 34px rgba(255,61,26,.12);
      flex:0 0 auto;
    }
    .icon-badge svg{width:20px; height:20px; color:rgba(196,59,22,.95)}

    .list{
      margin:0; padding-left:18px; color:rgba(27,27,31,.72);
      line-height:1.75; font-size:14px;
    }
    .list li{margin:7px 0}

    .timeline{
      display:flex; flex-direction:column; gap:12px;
      margin-top:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.70);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .step:hover{transform: translateY(-2px); box-shadow:var(--shadow3)}
    .step .n{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(135deg, rgba(255,106,45,.95), rgba(255,61,26,.92));
      color:#fff;
      font-weight:900;
      flex:0 0 auto;
      box-shadow:0 16px 34px rgba(255,61,26,.20);
    }
    .step h3{margin:0; font-size:15px}
    .step p{margin:6px 0 0; color:rgba(27,27,31,.70); line-height:1.7; font-size:14px}

    .compare{
      border-radius:var(--radius-xl);
      border:1px solid rgba(20,22,27,.08);
      background:
        radial-gradient(700px 420px at 0% 0%, rgba(255,106,45,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      box-shadow:var(--shadow2);
      padding:18px;
      overflow:hidden;
    }
    .compare-top{
      display:flex; gap:16px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
      padding:6px 6px 10px;
    }
    .rating{
      display:flex; align-items:flex-end; gap:10px; flex-wrap:wrap;
    }
    .rating .stars{
      display:flex; gap:6px; align-items:center;
      color:rgba(196,59,22,.95);
    }
    .star{
      width:18px; height:18px;
    }
    .rating .score{
      font-weight:950; font-size:40px; line-height:1;
      letter-spacing:-1px;
    }
    .rating .meta{
      color:rgba(27,27,31,.70);
      font-size:14px;
      line-height:1.4;
      padding-bottom:6px;
    }

    .table-wrap{
      margin-top:12px;
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.70);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:860px;
    }
    th, td{
      padding:14px 12px;
      border-bottom:1px solid rgba(20,22,27,.08);
      vertical-align:top;
      text-align:left;
      font-size:14px;
      line-height:1.55;
    }
    th{
      position:sticky; top:0;
      background:rgba(255,255,255,.92);
      z-index:1;
      font-weight:900;
    }
    tr:last-child td{border-bottom:none}
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(20,22,27,.10);
      background:rgba(255,255,255,.75);
      font-weight:800;
      font-size:13px;
      margin-right:10px;
      margin-bottom:8px;
      white-space:nowrap;
    }
    .tag b{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, rgba(255,106,45,.95), rgba(255,61,26,.92));
      display:inline-block;
    }
    .tag.alt b{
      background:linear-gradient(135deg, rgba(124,58,237,.95), rgba(255,61,26,.75));
    }

    .pill-row{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .pill{
      padding:10px 12px; border-radius:999px;
      border:1px solid rgba(20,22,27,.10);
      background:rgba(255,255,255,.70);
      color:rgba(27,27,31,.80);
      font-size:13px; font-weight:750;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .pill:hover{transform: translateY(-2px); box-shadow:var(--shadow3)}
    .pill strong{color:rgba(196,59,22,.98)}

    .accordion{
      display:grid; gap:12px;
    }
    .acc-item{
      border-radius:18px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      overflow:hidden;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    .acc-item.open{
      border-color: rgba(255,61,26,.22);
      box-shadow: var(--shadow3);
    }
    .acc-btn{
      width:100%;
      text-align:left;
      padding:16px 16px;
      background:transparent;
      border:0;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      color:var(--text);
      font-weight:900;
      font-size:15px;
    }
    .acc-btn:focus{outline:3px solid rgba(255,61,26,.25); outline-offset:2px}
    .acc-body{
      padding:0 16px 16px;
      display:none;
    }
    .acc-item.open .acc-body{display:block}
    .acc-body p{margin:10px 0 0; color:rgba(27,27,31,.72); line-height:1.75; font-size:14px}

    .case-grid{
      display:grid; grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .case-grid{grid-template-columns:1fr}
    }
    .case-hero{
      border-radius:var(--radius-xl);
      border:1px solid rgba(20,22,27,.08);
      background:
        radial-gradient(800px 460px at 25% 0%, rgba(255,106,45,.20), transparent 56%),
        radial-gradient(650px 420px at 95% 40%, rgba(124,58,237,.12), transparent 52%),
        rgba(255,255,255,.65);
      box-shadow:var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .case-hero:after{
      content:"";
      position:absolute; inset:auto -120px -120px auto;
      width:280px; height:280px;
      background:radial-gradient(circle at 30% 30%, rgba(255,61,26,.30), transparent 60%);
      opacity:.7;
      pointer-events:none;
    }
    .case-hero h3{margin:0 0 8px; font-size:18px}
    .case-hero p{margin:0; color:rgba(27,27,31,.72); line-height:1.75; font-size:14px}
    .case-list{
      display:flex; flex-direction:column; gap:12px;
    }
    .mini-case{
      border-radius:18px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      padding:14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .mini-case:hover{transform: translateY(-2px); box-shadow:var(--shadow3); border-color: rgba(255,61,26,.22)}
    .mini-case .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .mini-case h4{margin:0; font-size:15px; letter-spacing:-.2px}
    .badge{
      font-size:12px; font-weight:900;
      padding:8px 10px; border-radius:999px;
      background:rgba(255,106,45,.12);
      border:1px solid rgba(255,106,45,.22);
      color:rgba(196,59,22,.95);
      white-space:nowrap;
    }
    .mini-case .desc{
      margin:8px 0 0;
      color:rgba(27,27,31,.70);
      line-height:1.7;
      font-size:13px;
    }

    .articles{
      display:grid; grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    @media (max-width: 980px){
      .articles{grid-template-columns:1fr}
    }
    .article{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article:hover{transform: translateY(-2px); box-shadow:var(--shadow3); border-color: rgba(255,61,26,.22)}
    .article .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted2); font-size:12px; font-weight:800;
    }
    .article h3{
      margin:10px 0 8px;
      font-size:15px; letter-spacing:-.2px;
    }
    .article p{
      margin:0;
      color:rgba(27,27,31,.70);
      line-height:1.7;
      font-size:13px;
    }
    .article a.readmore{
      display:inline-flex; align-items:center; gap:8px;
      margin-top:12px;
      font-weight:900;
      color:rgba(196,59,22,.95);
      font-size:13px;
    }
    .arrow{
      width:18px; height:18px;
      border-radius:8px;
      display:inline-flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,61,26,.22);
      background:rgba(255,106,45,.10);
    }

    .form-wrap{
      border-radius:var(--radius-xl);
      border:1px solid rgba(20,22,27,.08);
      background:
        radial-gradient(760px 480px at 15% 0%, rgba(255,106,45,.22), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.60));
      box-shadow:var(--shadow2);
      padding:18px;
      overflow:hidden;
    }
    .form-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .form-grid{grid-template-columns:1fr}
    }
    .form-wrap h3{margin:0 0 8px; font-size:18px}
    .form-wrap p{margin:0; color:rgba(27,27,31,.70); line-height:1.75; font-size:14px}
    form{
      display:grid; gap:12px;
      margin-top:6px;
    }
    .field{
      display:flex; flex-direction:column; gap:7px;
    }
    label{
      font-size:13px; color:rgba(27,27,31,.86); font-weight:900;
    }
    input, select, textarea{
      border-radius:14px;
      border:1px solid rgba(20,22,27,.12);
      background:rgba(255,255,255,.85);
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    textarea{min-height:104px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,61,26,.35);
      box-shadow: 0 0 0 4px rgba(255,106,45,.12);
    }
    .form-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:2px;
    }
    .helper{
      font-size:12px;
      color:var(--muted2);
      line-height:1.5;
      margin:0;
    }

    footer{
      background:
        radial-gradient(900px 520px at 18% 0%, rgba(255,106,45,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.78));
      border-top:1px solid rgba(20,22,27,.08);
      padding:22px 0 26px;
      margin-top:10px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    @media (max-width: 980px){
      .footer-grid{grid-template-columns:1fr}
    }
    .footer-card{
      border-radius:var(--radius-lg);
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.75);
      padding:16px;
      box-shadow:0 8px 20px rgba(18,16,25,.06);
    }
    .footer-card h3{
      margin:0 0 10px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .footer-card p{
      margin:0;
      color:rgba(27,27,31,.70);
      line-height:1.7;
      font-size:14px;
    }
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,22,27,.10);
      background:rgba(255,255,255,.72);
      font-weight:850;
      color:rgba(27,27,31,.82);
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{transform: translateY(-2px); box-shadow:var(--shadow3); border-color: rgba(255,61,26,.22)}
    .bottom-row{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:14px;
      color:rgba(27,27,31,.62);
      font-size:12px;
      flex-wrap:wrap;
    }

    .floating{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
    }
    .float-btn{
      width:54px; height:54px;
      border-radius:18px;
      border:1px solid rgba(20,22,27,.12);
      background:rgba(255,255,255,.80);
      box-shadow:var(--shadow3);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .float-btn:hover{transform: translateY(-3px); box-shadow:var(--shadow2); border-color: rgba(255,61,26,.22)}
    .float-btn svg{width:22px; height:22px}
    .float-btn.primary{
      background:linear-gradient(135deg, rgba(255,106,45,.95), rgba(255,61,26,.92));
      border-color: rgba(255,61,26,.30);
      color:#fff;
      box-shadow:0 20px 44px rgba(255,61,26,.22);
    }
    .float-btn.primary svg{color:#fff}
    .float-tooltip{
      position:absolute;
      right:62px; bottom:10px;
      background:rgba(27,27,31,.92);
      color:#fff;
      padding:10px 12px;
      border-radius:14px;
      font-size:12px;
      font-weight:850;
      opacity:0; transform: translateX(6px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
      white-space:nowrap;
    }
    .float-btn:hover .float-tooltip{
      opacity:1; transform: translateX(0);
    }

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

    .sr-only{
      position:absolute; width:1px; height:1px;
      padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }

    .grid-img{
      display:grid; gap:12px;
      grid-template-columns:1fr 1fr;
      align-items:start;
    }
    @media (max-width: 980px){
      .grid-img{grid-template-columns:1fr}
    }
    .img-card{
      border-radius:var(--radius-xl);
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 8px 20px rgba(18,16,25,.06);
      overflow:hidden;
    }
    .img-card figure{
      margin:0;
    }
    .img-card .cap{
      padding:14px 16px;
    }
    .img-card .cap h3{
      margin:0 0 6px; font-size:16px; letter-spacing:-.2px;
    }
    .img-card .cap p{
      margin:0; color:rgba(27,27,31,.70); line-height:1.7; font-size:14px;
    }
    .img-card img{
      width:100%;
      height:220px;
      object-fit:cover;
      filter:saturate(1.02) contrast(1.02);
    }
    @media (max-width: 980px){
      .img-card img{height:200px}
    }

    .price-row{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .price-row{grid-template-columns:1fr}
    }
    .price-card{
      border-radius:var(--radius-xl);
      border:1px solid rgba(20,22,27,.08);
      background:
        radial-gradient(800px 460px at 20% 0%, rgba(255,106,45,.18), transparent 56%),
        rgba(255,255,255,.68);
      box-shadow:var(--shadow2);
      padding:18px;
      overflow:hidden;
    }
    .price-card h3{margin:0 0 10px; font-size:18px}
    .price-card p{margin:0; color:rgba(27,27,31,.70); line-height:1.75; font-size:14px}
    .price-table{
      margin-top:12px;
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(20,22,27,.08);
      background:rgba(255,255,255,.75);
    }
    .price-table table{min-width:640px}
    .price-hint{
      display:flex; gap:12px; flex-wrap:wrap; margin-top:12px;
    }
    .hint-pill{
      padding:10px 12px; border-radius:16px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,22,27,.10);
      font-weight:850;
      font-size:13px;
      color:rgba(27,27,31,.82);
    }
    .hint-pill i{
      font-style:normal; color:rgba(196,59,22,.98);
      font-weight:1000;
      margin-right:8px;
    }