:root{
      --bg0:#f7fbf6;
      --bg1:#ecf7ee;
      --card:#ffffff;
      --text:#1f2a24;
      --muted:#51635a;
      --border:rgba(23, 77, 58, .14);
      --shadow:0 10px 30px rgba(21, 86, 62, .10);
      --shadow2:0 8px 20px rgba(21, 86, 62, .10);
      --green:#2a9d69;
      --green2:#64c38f;
      --green3:#e7f7ee;
      --accent:#1e6f54;
      --accent2:#0f513a;
      --link:#0f5f44;
      --danger:#b42318;
      --radius:18px;
      --radius2:14px;
      --container:1160px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 420px at 18% -10%, rgba(100,195,143,.35), transparent 55%),
        radial-gradient(900px 360px at 75% 0%, rgba(42,157,105,.18), transparent 52%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 45%, #fff 100%);
      overflow-x:hidden;
    }

    a{color:var(--link); text-decoration:none}
    a:hover{opacity:.92}
    button{font-family:inherit}

    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

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

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(247, 251, 246, .72);
      border-bottom:1px solid rgba(23, 77, 58, .10);
    }

    .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:160px;
    }
    .logoMark{
      width:40px; height:40px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(42,157,105,.18), rgba(100,195,143,.26));
      border:1px solid rgba(42,157,105,.25);
      display:grid;
      place-items:center;
      box-shadow:0 8px 18px rgba(42,157,105,.14);
      color:var(--accent2);
      font-weight:900;
      letter-spacing:.02em;
      position:relative;
      overflow:hidden;
    }
    .logoMark:before{
      content:"";
      position:absolute; inset:-40% -60% auto auto;
      width:120px; height:120px;
      background:radial-gradient(circle at 30% 30%, rgba(100,195,143,.55), transparent 55%);
      transform:rotate(25deg);
      opacity:.9;
    }
    .logoMark span{position:relative; z-index:1; font-size:18px}

    .brandText{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brandText strong{
      font-size:14px;
      letter-spacing:.02em;
    }
    .brandText em{
      font-style:normal;
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }

    .navRight{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      flex:1;
    }

    .menuBtn{
      display:none;
      border:1px solid rgba(23, 77, 58, .18);
      background:linear-gradient(180deg, rgba(231,247,238,.9), #fff);
      color:var(--accent);
      border-radius:12px;
      padding:10px 12px;
      cursor:pointer;
      box-shadow:0 8px 18px rgba(42,157,105,.08);
      transition:transform .15s ease, box-shadow .15s ease;
    }
    .menuBtn:active{transform:scale(.98)}
    .menuIcon{
      width:18px; height:12px;
      display:inline-block;
      position:relative;
      margin-right:8px;
      vertical-align:-2px;
    }
    .menuIcon i{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:rgba(30,111,84,.9);
    }
    .menuIcon i:nth-child(1){top:0}
    .menuIcon i:nth-child(2){top:5px; width:78%; margin-left:auto}
    .menuIcon i:nth-child(3){bottom:0}

    nav ul{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      align-items:center;
      gap:14px;
      white-space:nowrap;
    }
    nav a{
      font-size:13px;
      color:rgba(31,42,36,.88);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:background .15s ease, border-color .15s ease, transform .15s ease;
    }
    nav a:hover{
      background:rgba(100,195,143,.12);
      border-color:rgba(42,157,105,.18);
      transform:translateY(-1px);
    }

    .ctaGroup{
      display:flex; align-items:center; gap:10px;
    }

    .btn{
      border:1px solid rgba(23, 77, 58, .18);
      background:rgba(255,255,255,.8);
      border-radius:14px;
      padding:10px 12px;
      cursor:pointer;
      color:var(--accent);
      font-weight:700;
      font-size:13px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      box-shadow:0 10px 22px rgba(42,157,105,.08);
      white-space:nowrap;
    }
    .btn:hover{
      border-color:rgba(42,157,105,.30);
      background:#fff;
      box-shadow:0 14px 26px rgba(42,157,105,.12);
      transform:translateY(-1px);
    }
    .btn:active{transform:translateY(0) scale(.99)}
    .btnPrimary{
      background:linear-gradient(135deg, rgba(42,157,105,.95), rgba(100,195,143,.92));
      border-color:rgba(20, 110, 75, .35);
      color:#fff;
      box-shadow:0 16px 34px rgba(42,157,105,.22);
    }
    .btnPrimary:hover{
      background:linear-gradient(135deg, rgba(42,157,105,1), rgba(100,195,143,1));
      box-shadow:0 18px 40px rgba(42,157,105,.26);
    }

    .btnIcon{
      width:18px; height:18px;
      border-radius:6px;
      background:rgba(255,255,255,.20);
      display:grid; place-items:center;
      border:1px solid rgba(255,255,255,.25);
    }
    .btnPrimary .btnIcon{
      background:rgba(255,255,255,.18);
      border-color:rgba(255,255,255,.28);
    }
    .btnIcon svg{display:block}

    main{padding:22px 0 42px}

    .hero{
      padding:18px 0 10px;
    }

    .heroGrid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:18px;
      align-items:stretch;
      margin-top:14px;
    }

    .heroCard{
      background:linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.76));
      border:1px solid rgba(23, 77, 58, .12);
      border-radius:var(--radius);
      box-shadow:var(--shadow2);
      overflow:hidden;
      position:relative;
      padding:22px;
      display:flex;
      flex-direction:column;
      gap:14px;
      transform:translateY(0);
      animation:fadeUp .55s ease both;
    }

    .heroCard:before{
      content:"";
      position:absolute; inset:-60px -60px auto auto;
      width:260px; height:260px;
      background:radial-gradient(circle at 30% 30%, rgba(100,195,143,.40), transparent 60%);
      transform:rotate(-12deg);
      pointer-events:none;
    }
    .heroCard:after{
      content:"";
      position:absolute; inset:auto auto -120px -120px;
      width:260px; height:260px;
      background:radial-gradient(circle at 70% 60%, rgba(42,157,105,.18), transparent 60%);
      pointer-events:none;
    }

    @keyframes fadeUp{
      from{opacity:0; transform:translateY(8px)}
      to{opacity:1; transform:translateY(0)}
    }

    .kicker{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(42,157,105,.20);
      background:rgba(231,247,238,.75);
      color:rgba(30,111,84,.98);
      font-weight:800;
      font-size:12px;
    }
    .pillDot{
      width:8px; height:8px;
      border-radius:50%;
      background:linear-gradient(180deg, rgba(42,157,105,1), rgba(100,195,143,1));
      box-shadow:0 0 0 4px rgba(42,157,105,.12);
    }

    h1{
      margin:0;
      font-size:30px;
      line-height:1.25;
      letter-spacing:-.02em;
      position:relative;
      z-index:1;
    }
    .sublead{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      position:relative;
      z-index:1;
      max-width:62ch;
    }

    .heroActions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:2px;
      position:relative;
      z-index:1;
    }

    .metaRow{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:auto;
      padding-top:6px;
      position:relative;
      z-index:1;
    }

    .metaItem{
      flex:1 1 180px;
      min-width:180px;
      border-radius:14px;
      padding:12px 12px;
      border:1px solid rgba(23, 77, 58, .12);
      background:rgba(255,255,255,.7);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .metaIcon{
      width:34px; height:34px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(42,157,105,.18), rgba(100,195,143,.25));
      border:1px solid rgba(42,157,105,.22);
      display:grid;
      place-items:center;
      flex:0 0 auto;
      color:var(--accent2);
    }
    .metaIcon svg{display:block}
    .metaItem strong{display:block; font-size:13px; margin-top:1px}
    .metaItem span{display:block; font-size:12px; color:var(--muted); margin-top:4px; line-height:1.45}

    .sideCard{
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
      border:1px solid rgba(23, 77, 58, .12);
      border-radius:var(--radius);
      box-shadow:var(--shadow2);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
      animation:fadeUp .62s ease both;
      animation-delay:.06s;
    }

    .sideTitle{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .sideTitle h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.01em;
    }
    .badgeSmall{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(42,157,105,.20);
      background:rgba(231,247,238,.75);
      color:rgba(30,111,84,.98);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }

    .toc{
      border-top:1px dashed rgba(23, 77, 58, .18);
      padding-top:10px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .toc a{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(23, 77, 58, .10);
      background:rgba(255,255,255,.6);
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
      outline:none;
    }
    .toc a:hover{
      transform:translateY(-1px);
      border-color:rgba(42,157,105,.26);
      background:#fff;
    }
    .tocNum{
      width:26px; height:26px;
      border-radius:10px;
      background:rgba(100,195,143,.18);
      border:1px solid rgba(42,157,105,.22);
      display:grid;
      place-items:center;
      font-weight:900;
      color:var(--accent);
      flex:0 0 auto;
      font-size:12px;
    }
    .tocText{
      display:flex;
      flex-direction:column;
      gap:4px;
    }
    .tocText strong{font-size:13px; line-height:1.3}
    .tocText span{font-size:12px; color:var(--muted); line-height:1.4}

    .section{
      margin-top:16px;
    }

    .sectionHeader{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin:8px 0 10px;
    }
    .sectionHeader h2{
      margin:0;
      font-size:18px;
      letter-spacing:-.01em;
    }
    .sectionHeader p{
      margin:0;
      font-size:12px;
      color:var(--muted);
      line-height:1.45;
    }

    .grid2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }

    .card{
      background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
      border:1px solid rgba(23, 77, 58, .12);
      border-radius:var(--radius2);
      box-shadow:0 10px 24px rgba(42,157,105,.08);
      padding:16px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-2px);
      border-color:rgba(42,157,105,.26);
      box-shadow:0 14px 30px rgba(42,157,105,.12);
    }
    .cardHead{
      display:flex;
      gap:12px;
      align-items:flex-start;
      justify-content:space-between;
      margin-bottom:10px;
    }
    .cardHeadLeft{
      display:flex; gap:12px; align-items:flex-start;
    }
    .chipIcon{
      width:38px; height:38px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(42,157,105,.18), rgba(100,195,143,.26));
      border:1px solid rgba(42,157,105,.22);
      display:grid; place-items:center;
      color:var(--accent2);
      flex:0 0 auto;
    }
    .chipIcon svg{display:block}
    .card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.01em;
      line-height:1.35;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:9px;
    }

    .li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 10px;
      border-radius:14px;
      background:rgba(255,255,255,.58);
      border:1px solid rgba(23, 77, 58, .10);
    }
    .tick{
      width:20px; height:20px;
      border-radius:8px;
      background:rgba(100,195,143,.18);
      border:1px solid rgba(42,157,105,.22);
      display:grid; place-items:center;
      flex:0 0 auto;
      margin-top:1px;
      color:var(--accent);
    }
    .li strong{
      font-size:13px;
      display:block;
      line-height:1.35;
    }
    .li span{
      display:block;
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
      line-height:1.45;
    }

    .howGrid{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }

    .steps{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }

    .step{
      background:rgba(255,255,255,.62);
      border:1px solid rgba(23, 77, 58, .12);
      border-radius:16px;
      padding:14px;
      display:flex;
      gap:12px;
      align-items:flex-start;
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .step:hover{
      transform:translateY(-1px);
      border-color:rgba(42,157,105,.24);
      background:#fff;
    }
    .stepNum{
      width:34px; height:34px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(42,157,105,.18), rgba(100,195,143,.26));
      border:1px solid rgba(42,157,105,.22);
      display:grid; place-items:center;
      font-weight:1000;
      color:var(--accent2);
      flex:0 0 auto;
    }
    .stepText strong{
      display:block;
      font-size:13px;
      line-height:1.35;
    }
    .stepText span{
      display:block;
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
      line-height:1.55;
    }

    .pricingNote{
      display:flex;
      gap:12px;
      align-items:flex-start;
      border-radius:16px;
      border:1px solid rgba(23, 77, 58, .12);
      background:linear-gradient(180deg, rgba(231,247,238,.66), rgba(255,255,255,.62));
      padding:14px;
    }
    .pricingNote .warnIcon{
      width:36px; height:36px;
      border-radius:14px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(42,157,105,.22);
      display:grid; place-items:center;
      color:var(--accent2);
      flex:0 0 auto;
    }
    .pricingNote strong{display:block; font-size:14px}
    .pricingNote p{margin-top:6px; color:var(--muted); font-size:13px; line-height:1.7}

    .faqWrap{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    details.faq{
      border-radius:16px;
      border:1px solid rgba(23, 77, 58, .12);
      background:rgba(255,255,255,.62);
      padding:14px 14px;
      box-shadow:0 10px 24px rgba(42,157,105,.06);
      transition:border-color .18s ease, transform .18s ease, background .18s ease;
    }
    details.faq[open]{
      border-color:rgba(42,157,105,.28);
      background:#fff;
      transform:translateY(-1px);
    }
    summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    summary::-webkit-details-marker{display:none}
    .faqQ{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .faqQ .qIcon{
      width:34px; height:34px;
      border-radius:14px;
      background:rgba(100,195,143,.18);
      border:1px solid rgba(42,157,105,.22);
      display:grid; place-items:center;
      color:var(--accent2);
      flex:0 0 auto;
      margin-top:1px;
    }
    .faqQ strong{
      font-size:14px;
      display:block;
      line-height:1.45;
    }
    .faqChevron{
      width:26px; height:26px;
      border-radius:10px;
      border:1px solid rgba(23, 77, 58, .14);
      background:rgba(231,247,238,.55);
      display:grid; place-items:center;
      color:rgba(30,111,84,.95);
      flex:0 0 auto;
      transition:transform .18s ease;
      margin-top:2px;
    }
    details[open] .faqChevron{transform:rotate(180deg)}
    .faqA{
      margin-top:10px;
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
    }

    .conclusion{
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border:1px solid rgba(23, 77, 58, .12);
      border-radius:var(--radius);
      box-shadow:var(--shadow2);
      padding:18px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .conclusionLeft{
      min-width:260px;
      flex:1 1 520px;
    }
    .conclusion h2{
      margin:0;
      font-size:18px;
      letter-spacing:-.01em;
    }
    .conclusion p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
      max-width:80ch;
    }
    .conclusionRight{
      flex:0 0 auto;
      display:flex;
      gap:10px;
      flex-direction:column;
      align-items:flex-end;
      min-width:240px;
    }
    .smallLinkCard{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(23, 77, 58, .12);
      background:rgba(231,247,238,.56);
      padding:12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      transition:transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .smallLinkCard:hover{
      transform:translateY(-1px);
      border-color:rgba(42,157,105,.26);
      background:rgba(231,247,238,.76);
    }
    .smallLinkCard strong{
      font-size:13px;
      line-height:1.35;
      color:rgba(30,111,84,.98);
    }
    .smallLinkCard span{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
      line-height:1.45;
    }
    .smallLinkCard .arrow{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(42,157,105,.22);
      background:rgba(255,255,255,.65);
      display:grid; place-items:center;
      color:var(--accent2);
      flex:0 0 auto;
    }

    .inlineKeywords{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .kw{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(23, 77, 58, .12);
      background:rgba(255,255,255,.62);
      color:rgba(31,42,36,.88);
      font-size:12px;
      font-weight:800;
    }

    figure.media{
      margin:14px 0 0;
      background:rgba(255,255,255,.55);
      border:1px solid rgba(23, 77, 58, .12);
      border-radius:var(--radius2);
      padding:10px;
      overflow:hidden;
      box-shadow:0 10px 24px rgba(42,157,105,.06);
      position:relative;
    }
    .mediaGrid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr 1fr;
      gap:10px;
      align-items:start;
    }
    .mediaItem{
      border-radius:14px;
      overflow:hidden;
      border:1px solid rgba(23, 77, 58, .10);
      background:rgba(231,247,238,.40);
      transition:transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .mediaItem:hover{
      transform:translateY(-2px);
      border-color:rgba(42,157,105,.24);
      background:#fff;
    }
    .mediaItem img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }

    footer{
      background:linear-gradient(180deg, rgba(21, 86, 62, .05), rgba(21, 86, 62, .10));
      border-top:1px solid rgba(23, 77, 58, .12);
      padding:18px 0 22px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .footerCard{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(23, 77, 58, .12);
      border-radius:var(--radius2);
      padding:14px;
    }
    .footerCard h3{
      margin:0;
      font-size:14px;
      letter-spacing:-.01em;
    }
    .footerCard p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
    }
    .footerCard ul{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .footerCard li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(100,195,143,.35);
      border:1px solid rgba(42,157,105,.22);
      margin-top:6px;
      flex:0 0 auto;
    }

    .footBottom{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(31,42,36,.76);
      font-size:12px;
    }
    .footLinks{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
    }
    .footLinks a{
      color:rgba(31,42,36,.78);
      border:1px solid rgba(23, 77, 58, .10);
      background:rgba(255,255,255,.60);
      border-radius:999px;
      padding:8px 10px;
    }
    .footLinks a:hover{
      border-color:rgba(42,157,105,.24);
      background:#fff;
    }

    .floatTop{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      opacity:0;
      transform:translateY(8px);
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
    }
    .floatTop.show{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .toTopBtn{
      border:none;
      background:linear-gradient(135deg, rgba(42,157,105,.98), rgba(100,195,143,.95));
      color:#fff;
      border-radius:16px;
      padding:12px 12px;
      box-shadow:0 18px 40px rgba(42,157,105,.28);
      cursor:pointer;
      display:flex; align-items:center; gap:10px;
      font-weight:900;
      font-size:13px;
    }
    .toTopBtn span{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.26);
      background:rgba(255,255,255,.14);
      display:grid; place-items:center;
      flex:0 0 auto;
    }

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; }
      h1{font-size:26px}
      .grid2{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .mediaGrid{grid-template-columns:1fr 1fr}
      .footerGrid{grid-template-columns:1fr}
      .conclusionRight{align-items:flex-start; min-width:0; width:100%}
      .conclusionLeft{flex:1 1 auto}
    }

    @media (max-width: 820px){
      nav ul{display:none}
      .menuBtn{display:inline-flex; align-items:center}
      .ctaGroup .btn{display:none}
      .ctaGroup .btnPrimary{display:inline-flex}
      .navRight{gap:8px}
    }

    .mobilePanel{
      display:none;
      border-top:1px solid rgba(23, 77, 58, .10);
      background:rgba(247, 251, 246, .88);
    }
    .mobilePanel.open{display:block}
    .mobilePanelInner{
      padding:10px 0 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .mobileLinks{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .mobileLinks a{
      padding:12px 12px;
      border:1px solid rgba(23, 77, 58, .10);
      background:rgba(255,255,255,.62);
      border-radius:14px;
      font-weight:800;
      font-size:13px;
      color:rgba(31,42,36,.88);
    }
    .mobileLinks a:hover{
      border-color:rgba(42,157,105,.24);
      background:#fff;
    }