:root{
      --bg0:#f6faf7;
      --bg1:#ffffff;
      --ink:#1f2a26;
      --muted:#5b6b64;
      --muted2:#74857d;
      --line:rgba(26, 44, 36, .12);
      --line2:rgba(26, 44, 36, .18);
      --card:#ffffff;
      --accent:#1aa36a;
      --accent2:#22c55e;
      --mint:#bff7dc;
      --mint2:#d7fae8;
      --leaf:#0f766e;
      --blue:#2563eb;
      --shadow: 0 16px 40px rgba(15,118,110,.12);
      --shadow2: 0 10px 26px rgba(16, 185, 129, .12);
      --radius:18px;
      --radius2:26px;
      --container:1120px;
      --pad:18px;
      --focus: 0 0 0 4px rgba(26,163,106,.18);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB","Microsoft YaHei", Arial, "Noto Sans", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1000px 500px at 10% -10%, rgba(34,197,94,.16), rgba(34,197,94,0) 60%),
        radial-gradient(900px 520px at 95% 0%, rgba(26,163,106,.14), rgba(26,163,106,0) 58%),
        linear-gradient(180deg, var(--bg0), #fbfffe 40%, #ffffff 100%);
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--pad);
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(246, 250, 247, .78);
      border-bottom:1px solid rgba(26,44,36,.08);
    }
    .nav{
      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;
    }
    .brand img{
      width:40px; height:40px; object-fit:contain;
      filter:saturate(1.05);
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name{
      font-weight:800; letter-spacing:.2px;
      font-size:14px;
    }
    .brand .sub{
      font-size:12px; color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
    }

    .nav-links{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none;
      font-size:13px;
      color:var(--muted);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
      user-select:none;
    }
    .nav-links a:hover{
      color:var(--ink);
      border-color: rgba(26,163,106,.22);
      background: rgba(191,247,220,.32);
      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:12px 14px;
      border-radius:14px;
      border:1px solid rgba(26,163,106,.28);
      background: #ffffff;
      color:var(--ink);
      font-weight:700;
      font-size:14px;
      text-decoration:none;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow: var(--focus);}
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2);}
    .btn-primary{
      background: linear-gradient(180deg, rgba(26,163,106,.98), rgba(15,118,110,.98));
      border-color: rgba(12, 88, 74, .24);
      color:#ffffff;
      box-shadow: 0 18px 36px rgba(15,118,110,.18);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 46px rgba(15,118,110,.24);
      background: linear-gradient(180deg, rgba(34,197,94,.98), rgba(15,118,110,.98));
    }
    .btn-ghost{
      background: rgba(255,255,255,.75);
      border-color: rgba(26,44,36,.14);
      color:var(--ink);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }

    .mobile-toggle{
      display:none;
      border:1px solid rgba(26,44,36,.14);
      background: rgba(255,255,255,.8);
      border-radius:12px;
      padding:10px 12px;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .mobile-toggle:hover{transform: translateY(-1px); box-shadow: 0 10px 24px rgba(26,163,106,.14);}
    .hamburger{
      width:18px; height:14px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background: rgba(31,42,38,.92);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:6px}
    .hamburger span:nth-child(3){top:12px}

    .mobile-panel{
      display:none;
      border-top:1px solid rgba(26,44,36,.08);
      padding:12px 0 14px;
    }
    .mobile-panel .grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mobile-panel a{
      text-decoration:none;
      border:1px solid rgba(26,44,36,.12);
      background: rgba(255,255,255,.72);
      padding:10px 12px;
      border-radius:14px;
      font-size:13px;
      color:var(--muted);
      transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
    }
    .mobile-panel a:hover{
      transform: translateY(-1px);
      border-color: rgba(26,163,106,.28);
      background: rgba(191,247,220,.28);
      color:var(--ink);
    }

    .hero{
      padding:28px 0 12px;
    }
    .hero-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(26,44,36,.10);
      background:
        radial-gradient(900px 500px at 0% 0%, rgba(26,163,106,.20), rgba(26,163,106,0) 58%),
        radial-gradient(700px 420px at 100% 10%, rgba(34,197,94,.16), rgba(34,197,94,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.68));
      box-shadow: 0 30px 70px rgba(15,118,110,.12);
      overflow:hidden;
      position:relative;
    }
    .hero-wrap::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(closest-side at 16% 30%, rgba(34,197,94,.20), rgba(34,197,94,0) 60%),
        radial-gradient(closest-side at 80% 20%, rgba(15,118,110,.16), rgba(15,118,110,0) 60%);
      pointer-events:none;
      filter:saturate(1.1);
      opacity:.9;
    }
    .hero-inner{
      position:relative;
      padding:28px 20px 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:start;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(26,163,106,.20);
      background: rgba(191,247,220,.22);
      color: var(--leaf);
      font-weight:800;
      letter-spacing:.2px;
      font-size:12.5px;
    }
    .dot{
      width:10px; height:10px; border-radius:999px;
      background: radial-gradient(circle at 30% 30%, #7CFFB2, #16A34A 60%, #0E766E 100%);
      box-shadow: 0 10px 18px rgba(22,163,74,.28);
    }
    h1{
      margin:14px 0 10px;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width:58ch;
    }
    .hero-actions{
      margin-top:16px;
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
    }
    .micro{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:18px;
      padding-top:14px;
      border-top:1px solid rgba(26,44,36,.10);
    }
    .micro .item{
      display:flex; align-items:flex-start; gap:10px;
      min-width: 170px;
    }
    .micro .badge{
      width:30px; height:30px; border-radius:12px;
      background: rgba(191,247,220,.35);
      border:1px solid rgba(26,163,106,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .micro .item strong{display:block; font-size:13px;}
    .micro .item span{display:block; color:var(--muted); font-size:12.5px; margin-top:2px; line-height:1.4;}

    .hero-side{
      padding:10px 8px 2px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .side-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(26,44,36,.10);
      border-radius: 18px;
      padding:14px 14px;
      box-shadow: 0 18px 44px rgba(15,118,110,.08);
      position:relative;
      overflow:hidden;
      transform: translateZ(0);
      animation: floatIn .55s ease both;
    }
    @keyframes floatIn{
      from{opacity:0; transform: translateY(10px)}
      to{opacity:1; transform: translateY(0)}
    }
    .side-card:nth-child(2){animation-delay:.06s}
    .side-card:nth-child(3){animation-delay:.12s}

    .side-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .side-title{
      font-weight:900; letter-spacing:-.2px;
      font-size:14px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(191,247,220,.28);
      border:1px solid rgba(26,163,106,.18);
      color: var(--leaf);
      font-size:12.5px; font-weight:800;
      white-space:nowrap;
    }
    .side-list{
      display:grid; gap:10px;
      margin-top:6px;
    }
    .side-row{
      display:flex; align-items:center; gap:10px;
      color:var(--muted);
      font-size:13px;
      line-height:1.4;
    }
    .check{
      width:18px; height:18px;
      border-radius:7px;
      background: rgba(26,163,106,.12);
      border:1px solid rgba(26,163,106,.22);
      display:flex; align-items:center; justify-content:center;
      color: var(--accent);
      flex:0 0 auto;
    }

    .section{
      padding:26px 0;
    }
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
      margin-bottom:14px;
    }
    .section-title h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.6;
      max-width:48ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .card{
      background: var(--card);
      border:1px solid rgba(26,44,36,.10);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 18px 50px rgba(15,118,110,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 70px rgba(15,118,110,.10);
      border-color: rgba(26,163,106,.22);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .card .tagrow{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      border:1px solid rgba(26,44,36,.10);
      background: rgba(246, 250, 247, .55);
      color: var(--muted);
      border-radius:999px;
      padding:7px 10px;
      font-size:12.5px;
      white-space:nowrap;
    }
    .tag .t-dot{
      width:8px; height:8px; border-radius:99px;
      background: rgba(26,163,106,.70);
      box-shadow: 0 8px 16px rgba(26,163,106,.18);
    }

    .timeline{
      display:grid; gap:12px;
    }
    .step{
      display:flex; gap:14px; align-items:flex-start;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(26,44,36,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(15,118,110,.06);
      transition: transform .18s ease;
    }
    .step:hover{transform: translateY(-2px);}
    .step .num{
      width:36px; height:36px; border-radius:14px;
      background: linear-gradient(180deg, rgba(191,247,220,.55), rgba(255,255,255,.85));
      border:1px solid rgba(26,163,106,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: var(--leaf);
      flex:0 0 auto;
    }
    .step .content strong{
      display:block;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .step .content span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }

    .compare-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(26,44,36,.10);
      background:
        radial-gradient(900px 300px at 0% 0%, rgba(26,163,106,.12), rgba(26,163,106,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68));
      box-shadow: 0 30px 70px rgba(15,118,110,.10);
      overflow:hidden;
    }
    .compare-head{
      padding:16px 16px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:12px;
      padding:12px 12px;
      border-radius: 18px;
      border:1px solid rgba(26,163,106,.20);
      background: rgba(191,247,220,.22);
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      color:#0f766e;
      font-weight:900;
      letter-spacing:.2px;
    }
    .stars svg{width:18px; height:18px}
    .rating .score strong{
      display:block; font-size:18px; letter-spacing:-.4px;
    }
    .rating .score span{
      display:block; color:var(--muted); font-size:12.5px; margin-top:2px; line-height:1.3;
    }
    .compare-body{
      padding:12px 12px 16px;
    }
    .table-wrap{
      overflow:auto;
      border-radius: 16px;
      border:1px solid rgba(26,44,36,.10);
      background: rgba(255,255,255,.78);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
      font-size:13.5px;
    }
    thead th{
      text-align:left;
      padding:12px 12px;
      background: rgba(191,247,220,.25);
      border-bottom:1px solid rgba(26,44,36,.10);
      color: var(--ink);
      font-weight:900;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid rgba(26,44,36,.08);
      color: var(--muted);
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    .best{
      background: rgba(26,163,106,.10);
      border:1px solid rgba(26,163,106,.18);
      color: var(--leaf);
      font-weight:900;
      border-radius:12px;
      padding:8px 10px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .best .mini{
      width:10px; height:10px; border-radius:999px;
      background: rgba(26,163,106,.85);
      box-shadow: 0 10px 18px rgba(26,163,106,.25);
      flex:0 0 auto;
    }

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

    .gallery{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .thumb{
      border-radius: 18px;
      border:1px solid rgba(26,44,36,.10);
      background: rgba(255,255,255,.78);
      overflow:hidden;
      box-shadow: 0 18px 44px rgba(15,118,110,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column;
    }
    .thumb:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,118,110,.12);
      border-color: rgba(26,163,106,.22);
    }
    .thumb .imgbox{
      padding:10px 10px 0;
    }
    .thumb img{
      width:100%;
      height:auto;
      border-radius: 14px;
      object-fit:contain;
      background: linear-gradient(180deg, rgba(191,247,220,.24), rgba(255,255,255,0));
    }
    .thumb .meta{
      padding:12px 12px 14px;
      display:flex; flex-direction:column; gap:6px;
    }
    .thumb .meta strong{font-size:14px; letter-spacing:-.2px}
    .thumb .meta span{color:var(--muted); font-size:13px; line-height:1.5}

    .articles{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .article{
      border:1px solid rgba(26,44,36,.10);
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(15,118,110,.06);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,118,110,.12);
      border-color: rgba(26,163,106,.22);
    }
    .article .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .article .badge2{
      border:1px solid rgba(26,163,106,.18);
      background: rgba(191,247,220,.22);
      color: var(--leaf);
      font-weight:900;
      font-size:12.5px;
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .article strong{font-size:14.5px; letter-spacing:-.2px; line-height:1.35}
    .article p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.7}
    .article a.more{
      margin-top:auto;
      text-decoration:none;
      color: var(--leaf);
      font-weight:900;
      display:inline-flex; align-items:center; gap:10px;
      width:max-content;
      padding:9px 10px;
      border-radius:12px;
      border:1px solid rgba(26,44,36,.10);
      background: rgba(255,255,255,.7);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .article a.more:hover{
      transform: translateY(-1px);
      border-color: rgba(26,163,106,.26);
      box-shadow: 0 18px 44px rgba(15,118,110,.12);
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details.faq-item{
      border-radius: 16px;
      border:1px solid rgba(26,44,36,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(15,118,110,.06);
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease;
    }
    details.faq-item:hover{
      border-color: rgba(26,163,106,.22);
      transform: translateY(-1px);
    }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      padding:14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:900;
      letter-spacing:-.2px;
      outline:none;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .faq-q{
      font-size:14.5px;
      line-height:1.4;
    }
    .chev{
      width:22px; height:22px;
      border-radius:10px;
      border:1px solid rgba(26,44,36,.10);
      background: rgba(191,247,220,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
      margin-top:2px;
    }
    details[open] .chev{transform: rotate(180deg);}
    .faq-a{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    form{
      display:grid;
      gap:12px;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:block;
      font-size:12.5px;
      color: var(--muted2);
      margin-bottom:7px;
      font-weight:800;
      letter-spacing:.1px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(26,44,36,.14);
      background: rgba(255,255,255,.86);
      color: var(--ink);
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
      font-size:14px;
    }
    textarea{min-height:110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(26,163,106,.35);
      box-shadow: var(--focus);
    }
    .form-actions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:4px;
    }
    .hint{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.5;
      max-width:52ch;
    }
    .privacy{
      display:flex; align-items:flex-start; gap:10px;
      padding:10px 12px;
      border-radius: 14px;
      border:1px solid rgba(26,44,36,.10);
      background: rgba(246,250,247,.55);
    }
    .privacy input[type="checkbox"]{
      width:18px; height:18px; margin-top:2px;
      accent-color: var(--accent);
    }
    .privacy span{
      font-size:12.5px;
      color:var(--muted);
      line-height:1.6;
      font-weight:700;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(26,44,36,.10);
      border-radius: var(--radius);
      padding:14px;
      box-shadow: 0 18px 44px rgba(15,118,110,.06);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height: 210px;
    }
    .review:hover{
      transform: translateY(-2px);
      border-color: rgba(26,163,106,.22);
      box-shadow: 0 26px 70px rgba(15,118,110,.12);
    }
    .review .who{
      display:flex; align-items:center; gap:12px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(26,44,36,.10);
      background:
        radial-gradient(circle at 30% 30%, rgba(191,247,220,.95), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(191,247,220,.35), rgba(255,255,255,.75));
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: var(--leaf);
      flex:0 0 auto;
    }
    .review .who strong{font-size:14px; letter-spacing:-.2px}
    .review .who span{display:block; color:var(--muted); font-size:12.5px; margin-top:2px}
    .review .stars2{
      color:#0f766e;
      display:flex; gap:4px; align-items:center;
      font-weight:900;
    }
    .review p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.75}

    .label-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:10px 0 0;
    }
    .cloud-item{
      border:1px solid rgba(26,44,36,.10);
      background: rgba(255,255,255,.74);
      border-radius:999px;
      padding:10px 12px;
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
      display:inline-flex; align-items:center; gap:10px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
    }
    .cloud-item:hover{
      transform: translateY(-1px);
      border-color: rgba(26,163,106,.22);
      background: rgba(191,247,220,.24);
      color: var(--ink);
    }
    .cloud-item i{
      width:10px; height:10px; border-radius:999px;
      background: rgba(26,163,106,.70);
      box-shadow: 0 10px 20px rgba(26,163,106,.18);
      display:inline-block;
    }

    .networks{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .network-card{
      border-radius: var(--radius);
      border:1px solid rgba(26,44,36,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(15,118,110,.06);
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .network-card strong{
      font-size:14.5px; letter-spacing:-.2px;
      display:flex; align-items:center; gap:10px;
    }
    .network-card ul{
      margin:0; padding-left:18px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.8;
    }
    .network-card li{margin:4px 0}

    .badge-inline{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(26,163,106,.20);
      background: rgba(191,247,220,.22);
      color: var(--leaf);
      font-weight:900;
      font-size:12.5px;
      white-space:nowrap;
    }

    footer{
      margin-top:10px;
      background: #0c2a22;
      color:#e7f3ee;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-inner{
      padding:22px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr 1fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      border-radius: 18px;
      padding:14px;
    }
    .foot-brand{
      display:flex; align-items:center; gap:12px;
    }
    .foot-brand img{
      width:44px; height:44px;
      object-fit:contain;
      filter: brightness(1.05) saturate(1.05);
    }
    .foot-brand strong{
      font-size:15px;
      letter-spacing:-.2px;
      display:block;
    }
    .foot-brand span{
      display:block;
      color:rgba(231,243,238,.8);
      margin-top:4px;
      font-size:12.5px;
      line-height:1.5;
    }
    .foot-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .foot-links a{
      text-decoration:none;
      color: rgba(231,243,238,.9);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      padding:10px 12px;
      border-radius:14px;
      font-weight:800;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .foot-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(34,197,94,.35);
      background: rgba(34,197,94,.10);
    }
    .footer-bottom{
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
      padding-top:14px;
      margin-top:14px;
      border-top: 1px solid rgba(255,255,255,.10);
      color: rgba(231,243,238,.78);
      font-size:12.5px;
      align-items:center;
    }
    .foot-legal{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .sep{
      width:5px; height:5px; border-radius:999px;
      background: rgba(231,243,238,.35);
      display:inline-block;
    }

    .float-customer{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .float-pill{
      display:flex; align-items:center; gap:10px;
      padding:12px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.88);
      border:1px solid rgba(26,44,36,.14);
      box-shadow: 0 20px 50px rgba(15,118,110,.18);
      backdrop-filter: blur(10px);
      max-width: 210px;
      transition: transform .18s ease, box-shadow .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .float-pill:hover{
      transform: translateY(-2px);
      box-shadow: 0 26px 70px rgba(15,118,110,.24);
    }
    .float-pill .mini-icon{
      width:34px; height:34px; border-radius:14px;
      background: rgba(191,247,220,.35);
      border:1px solid rgba(26,163,106,.20);
      display:flex; align-items:center; justify-content:center;
      color: var(--leaf);
      flex:0 0 auto;
    }
    .float-pill strong{
      font-size:13.5px; letter-spacing:-.2px;
      display:block;
      line-height:1.2;
    }
    .float-pill span{
      color:var(--muted);
      font-size:12.5px;
      display:block;
      margin-top:3px;
      line-height:1.2;
    }
    .qr-pop{
      display:none;
      border-radius: 18px;
      border:1px solid rgba(26,44,36,.14);
      background: rgba(255,255,255,.96);
      box-shadow: 0 24px 70px rgba(15,118,110,.22);
      padding:12px;
      width: 220px;
      overflow:hidden;
      transform-origin: top right;
      animation: pop .22s ease both;
      backdrop-filter: blur(10px);
    }
    @keyframes pop{
      from{opacity:0; transform: translateY(6px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .qr-pop .qr-title{
      font-weight:950;
      letter-spacing:-.2px;
      margin-bottom:8px;
      font-size:13.5px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .qr-pop button{
      border:none; background: rgba(26,44,36,.08);
      color:var(--muted);
      border-radius:12px;
      padding:6px 9px;
      cursor:pointer;
      font-weight:900;
      transition: background .18s ease, transform .18s ease;
    }
    .qr-pop button:hover{background: rgba(26,163,106,.12); transform: translateY(-1px);}
    .qr-pop img{
      width:100%;
      height:auto;
      border-radius:16px;
      border:1px solid rgba(26,44,36,.10);
      background: #fff;
    }
    .qr-pop .qr-note{
      margin-top:8px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.5;
      font-weight:800;
    }

    .to-top{
      display:none;
      border:none;
      cursor:pointer;
      background: rgba(255,255,255,.9);
      border:1px solid rgba(26,44,36,.14);
      box-shadow: 0 20px 50px rgba(15,118,110,.18);
      width:44px; height:44px;
      border-radius: 16px;
      color: var(--leaf);
      font-weight:950;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .to-top:hover{transform: translateY(-2px); box-shadow: 0 26px 70px rgba(15,118,110,.24);}
    .to-top:focus{outline:none; box-shadow: var(--focus);}

    .skip{
      position:absolute;
      left:12px; top:-60px;
      background: #ffffff;
      color: var(--ink);
      border:1px solid rgba(26,44,36,.18);
      padding:10px 12px;
      border-radius:14px;
      font-weight:900;
      z-index:100;
      transition: top .2s ease;
      text-decoration:none;
    }
    .skip:focus{top:12px}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .split{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .networks{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .nav-links{display:none}
      .mobile-toggle{display:inline-flex}
      .mobile-panel{display:block}
      .mobile-panel[aria-hidden="true"]{display:none}
      .mobile-panel[aria-hidden="false"]{display:block}
      h1{font-size:30px}
      .form-grid{grid-template-columns:1fr}
      .float-pill{max-width: 220px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .card, .thumb, .article, .step, details.faq-item, .float-pill {transition:none !important}
      .side-card{animation:none !important}
      .qr-pop{animation:none !important}
    }