:root{
      --bg: #f7fbf7;
      --surface: #ffffff;
      --surface2: #f1fff2;
      --text: #0f172a;
      --muted:#5b6b7c;
      --muted2:#7a8b9b;
      --line:#e6eef0;
      --line2:#d6f3de;
      --brand:#18c964;
      --brand2:#0ea857;
      --brand3:#0aa34f;
      --accent:#39d98a;
      --danger:#0f766e;
      --shadow: 0 18px 50px rgba(13, 48, 26, .10);
      --shadow2: 0 10px 30px rgba(18, 201, 100, .12);
      --radius: 18px;
      --radius2: 14px;
      --radius3: 12px;
      --container: 1120px;
      --padX: 20px;
      --focus: 0 0 0 3px rgba(24,201,100,.22);
    }

    *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC","Noto Sans",sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 70% -40px, rgba(24,201,100,.22), transparent 60%),
        radial-gradient(700px 360px at 10% 0px, rgba(57,217,138,.18), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 60%, #f6faf7 100%);
      min-height: 100vh;
    }

    a{ color: inherit; text-decoration: none; }
    button, input, select, textarea{ font: inherit; }

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

    .skip-link{
      position:absolute;
      top:10px; left:10px;
      padding:10px 12px;
      border-radius: 10px;
      background: var(--surface);
      border: 1px solid var(--line);
      transform: translateY(-140%);
      transition: transform .2s ease;
      z-index: 9999;
      box-shadow: var(--shadow2);
    }
    .skip-link:focus{ transform: translateY(0); outline:none; box-shadow: var(--shadow2), var(--focus); }

    header{
      position: sticky;
      top:0;
      z-index: 60;
      backdrop-filter: blur(10px);
      background: rgba(247, 251, 247, .72);
      border-bottom: 1px solid rgba(230, 238, 240, .7);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 0;
    }
    .brand{
      display:flex; align-items:center; gap: 12px; min-width: 220px;
    }
    .ai-page-logo{
      width: 130px;
      height: auto;
      display:block;
      filter: drop-shadow(0 10px 18px rgba(16,185,129,.18));
    }

    nav{
      display:flex;
      align-items:center;
      justify-content: flex-end;
      gap: 10px;
      flex: 1;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .nav-links a{
      padding: 8px 10px;
      border-radius: 12px;
      color: rgba(15,23,42,.86);
      font-weight: 600;
      font-size: 13px;
      border: 1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space: nowrap;
    }
    .nav-links a:hover{
      background: rgba(24,201,100,.08);
      border-color: rgba(24,201,100,.20);
      transform: translateY(-1px);
    }

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

    .pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(24,201,100,.10);
      border: 1px solid rgba(24,201,100,.22);
      color: rgba(11, 78, 44, .92);
      font-weight: 700;
      font-size: 12px;
      white-space: nowrap;
    }
    .pill svg{ width: 16px; height: 16px; }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select: none;
      white-space: nowrap;
    }
    .btn:focus{ outline: none; box-shadow: var(--focus); }
    .btn-primary{
      background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
      color: #062012;
      box-shadow: 0 16px 40px rgba(24,201,100,.22);
      border-color: rgba(0,0,0,.03);
    }
    .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 22px 60px rgba(24,201,100,.28); }
    .btn-ghost{
      background: rgba(255,255,255,.7);
      border-color: rgba(230,238,240,.95);
      color: rgba(15,23,42,.92);
    }
    .btn-ghost:hover{ transform: translateY(-2px); border-color: rgba(24,201,100,.25); box-shadow: 0 14px 30px rgba(16,185,129,.10); }

    .burger{
      display:none;
      width: 44px; height: 44px;
      border-radius: 14px;
      background: rgba(255,255,255,.7);
      border: 1px solid rgba(230,238,240,.95);
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .burger:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(16,185,129,.10); border-color: rgba(24,201,100,.25); }
    .burger:focus{ outline:none; box-shadow: var(--focus); }
    .burger span{
      display:block; width: 20px; height: 2px; background: rgba(15,23,42,.85);
      position: relative;
    }
    .burger span:before, .burger span:after{
      content:"";
      position:absolute; left:0;
      width: 20px; height: 2px; background: rgba(15,23,42,.85);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:before{ top:-6px; }
    .burger span:after{ top:6px; }
    .burger[aria-expanded="true"] span{ background: transparent; }
    .burger[aria-expanded="true"] span:before{ top:0; transform: rotate(45deg); }
    .burger[aria-expanded="true"] span:after{ top:0; transform: rotate(-45deg); }

    .mobile-panel{
      display:none;
      padding: 12px 0 18px;
    }
    .mobile-links{
      display:grid;
      gap: 10px;
      padding: 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.75);
      border: 1px solid rgba(230,238,240,.9);
      box-shadow: 0 18px 45px rgba(13, 48, 26, .08);
    }
    .mobile-links a{
      padding: 12px 12px;
      border-radius: 14px;
      font-weight: 800;
      border: 1px solid rgba(230,238,240,.9);
      background: rgba(241,255,242,.6);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .mobile-links a:hover{ transform: translateY(-2px); border-color: rgba(24,201,100,.28); background: rgba(241,255,242,.9); }
    .mobile-actions{
      display:flex; gap: 10px; flex-wrap: wrap;
      margin-top: 12px;
    }

    .hero{
      padding: 34px 0 14px;
      position: relative;
      overflow: hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: stretch;
    }

    .hero-card{
      border-radius: 26px;
      background:
        radial-gradient(1000px 500px at 10% 10%, rgba(24,201,100,.24), transparent 55%),
        radial-gradient(700px 360px at 90% 30%, rgba(57,217,138,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(241,255,242,.7) 100%);
      border: 1px solid rgba(214,243,222,.8);
      box-shadow: var(--shadow);
      padding: 26px;
      position: relative;
      overflow: hidden;
      display:flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 360px;
    }

    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(280px 120px at 16% 18%, rgba(24,201,100,.35), transparent 60%),
        radial-gradient(200px 110px at 70% 20%, rgba(57,217,138,.30), transparent 60%),
        radial-gradient(260px 150px at 85% 75%, rgba(16,185,129,.22), transparent 60%);
      pointer-events:none;
      filter: blur(0px);
      opacity: .9;
    }
    .hero-inner{ position: relative; z-index: 1; }

    .hero-kicker{
      display:flex; flex-wrap: wrap; gap: 10px; align-items:center;
      margin-bottom: 12px;
    }
    .kicker-tag{
      display:inline-flex; align-items:center; gap: 9px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(230,238,240,.95);
      font-weight: 900;
      font-size: 12px;
      color: rgba(15,23,42,.92);
      letter-spacing:.2px;
    }
    .kicker-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
      box-shadow: 0 10px 22px rgba(24,201,100,.25);
    }

    h1{
      margin: 0 0 10px;
      font-size: 34px;
      line-height: 1.15;
      letter-spacing: -0.6px;
    }
    .hero-sub{
      margin: 0 0 18px;
      color: rgba(15,23,42,.70);
      font-weight: 650;
      font-size: 14.5px;
      line-height: 1.75;
      max-width: 60ch;
    }

    .hero-actions{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items:center;
      margin: 8px 0 10px;
    }

    .trust-row{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: stretch;
      margin-top: 18px;
    }
    .trust-item{
      flex: 1;
      min-width: 170px;
      border-radius: 18px;
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(230,238,240,.95);
      padding: 12px 14px;
      display:flex;
      gap: 12px;
      align-items:flex-start;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .trust-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(13,48,26,.08);
    }
    .trust-icon{
      width: 34px; height: 34px; border-radius: 12px;
      background: rgba(24,201,100,.12);
      border: 1px solid rgba(24,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .trust-icon svg{ width: 18px; height: 18px; color: rgba(11,78,44,.95); }
    .trust-title{ font-weight: 950; font-size: 13px; margin:0; }
    .trust-desc{ margin: 4px 0 0; color: rgba(15,23,42,.68); font-weight: 650; font-size: 12.8px; line-height:1.45; }

    .hero-side{
      border-radius: 26px;
      border: 1px solid rgba(230,238,240,.9);
      background: rgba(255,255,255,.72);
      box-shadow: 0 20px 55px rgba(13,48,26,.06);
      padding: 18px;
      display:flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 360px;
      position: relative;
      overflow:hidden;
    }
    .hero-side:after{
      content:"";
      position:absolute;
      right:-80px; top:-80px;
      width: 220px; height: 220px;
      background: radial-gradient(circle at 30% 30%, rgba(24,201,100,.25), transparent 60%);
      pointer-events:none;
    }

    .side-title{
      display:flex;
      align-items:flex-start;
      justify-content: space-between;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .side-title h2{
      margin: 0;
      font-size: 16px;
      letter-spacing: -.2px;
    }
    .badge{
      display:inline-flex; align-items:center; gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(24,201,100,.10);
      border: 1px solid rgba(24,201,100,.22);
      font-weight: 900;
      font-size: 12px;
      color: rgba(11,78,44,.95);
      white-space: nowrap;
    }
    .badge i{
      width: 10px; height: 10px; border-radius: 50%;
      background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
      display:inline-block;
      box-shadow: 0 10px 22px rgba(24,201,100,.24);
    }

    .metric-grid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      position: relative;
      z-index: 1;
    }
    .metric{
      border-radius: 18px;
      border: 1px solid rgba(230,238,240,.9);
      background: rgba(241,255,242,.55);
      padding: 12px;
      min-height: 98px;
      display:flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      border-color: rgba(24,201,100,.25);
      box-shadow: 0 18px 45px rgba(13,48,26,.08);
    }
    .metric .num{
      font-size: 18px;
      font-weight: 1000;
      letter-spacing: -.4px;
    }
    .metric .lbl{
      color: rgba(15,23,42,.68);
      font-weight: 750;
      font-size: 12.5px;
      line-height: 1.3;
      margin-top: 6px;
    }
    .side-footer{
      margin-top: 14px;
      position: relative;
      z-index: 1;
      border-radius: 18px;
      border: 1px dashed rgba(24,201,100,.35);
      background: rgba(255,255,255,.65);
      padding: 12px;
    }
    .side-footer p{
      margin: 0;
      color: rgba(15,23,42,.72);
      font-weight: 700;
      font-size: 12.8px;
      line-height: 1.6;
    }

    .section{
      padding: 28px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
    }
    .section-title{
      margin:0;
      font-size: 22px;
      letter-spacing:-.4px;
    }
    .section-lead{
      margin: 6px 0 0;
      color: rgba(15,23,42,.68);
      font-weight: 650;
      line-height: 1.75;
      max-width: 70ch;
      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: 12px;
    }

    .card{
      border-radius: var(--radius);
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.76);
      box-shadow: 0 16px 40px rgba(13,48,26,.05);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position: relative;
      overflow:hidden;
    }
    .card:hover{ transform: translateY(-3px); box-shadow: 0 22px 60px rgba(13,48,26,.08); border-color: rgba(24,201,100,.24); }
    .card h3{
      margin: 0 0 8px;
      font-size: 15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin: 0;
      color: rgba(15,23,42,.68);
      font-weight: 650;
      line-height: 1.7;
      font-size: 13.2px;
    }

    .icon-pill{
      width: 44px; height: 44px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(24,201,100,.12);
      border: 1px solid rgba(24,201,100,.22);
      margin-bottom: 12px;
      transition: transform .2s ease;
    }
    .card:hover .icon-pill{ transform: translateY(-2px); }
    .icon-pill svg{ width: 20px; height: 20px; color: rgba(11,78,44,.98); }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .step{
      border-radius: var(--radius);
      border: 1px solid rgba(230,238,240,.95);
      background:
        radial-gradient(420px 140px at 10% 0%, rgba(24,201,100,.18), transparent 55%),
        rgba(255,255,255,.76);
      padding: 16px;
      position: relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .step:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 60px rgba(13,48,26,.08);
      border-color: rgba(24,201,100,.24);
    }
    .step-top{
      display:flex; align-items:center; justify-content: space-between; gap: 10px;
      margin-bottom: 10px;
    }
    .step-num{
      font-weight: 1000;
      font-size: 18px;
      letter-spacing: -.4px;
      color: rgba(11,78,44,.96);
    }
    .step-chip{
      display:inline-flex; align-items:center; gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(241,255,242,.75);
      border: 1px solid rgba(24,201,100,.22);
      font-size: 12px;
      font-weight: 900;
      color: rgba(11,78,44,.95);
      white-space: nowrap;
    }
    .step h3{ margin: 0 0 8px; font-size: 15px; }
    .step p{ margin: 0; color: rgba(15,23,42,.68); font-weight: 650; line-height: 1.7; font-size: 13.2px; }

    .compare-wrap{
      border-radius: 26px;
      border: 1px solid rgba(214,243,222,.85);
      background:
        radial-gradient(800px 260px at 25% 0%, rgba(24,201,100,.18), transparent 60%),
        rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 20px 55px rgba(13,48,26,.06);
    }

    .compare-top{
      display:flex;
      align-items:flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .rating{
      display:flex;
      flex-direction: column;
      align-items:flex-start;
      gap: 8px;
    }
    .stars{
      display:flex; gap: 6px; align-items:center;
    }
    .star{
      width: 22px; height: 22px;
      filter: drop-shadow(0 10px 18px rgba(24,201,100,.16));
    }
    .score-row{
      display:flex; align-items: baseline; gap: 8px;
    }
    .score{
      font-weight: 1100;
      font-size: 28px;
      letter-spacing: -.8px;
      color: rgba(11,78,44,.96);
    }
    .score-label{
      font-weight: 850;
      color: rgba(15,23,42,.68);
    }
    table{
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      overflow:hidden;
      border-radius: 18px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.80);
    }
    thead th{
      text-align:left;
      font-size: 13px;
      font-weight: 1000;
      color: rgba(15,23,42,.88);
      padding: 12px 12px;
      border-bottom: 1px solid rgba(230,238,240,.95);
      background: linear-gradient(180deg, rgba(241,255,242,.95), rgba(255,255,255,.9));
      white-space: nowrap;
    }
    tbody td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(230,238,240,.85);
      color: rgba(15,23,42,.74);
      font-weight: 700;
      font-size: 13px;
      vertical-align: top;
      line-height: 1.6;
    }
    tbody tr:last-child td{ border-bottom: none; }
    .tag-ok{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(24,201,100,.10);
      border: 1px solid rgba(24,201,100,.22);
      color: rgba(11,78,44,.95);
      font-weight: 950;
      white-space: nowrap;
    }
    .tag-mid{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(56,189,248,.10);
      border: 1px solid rgba(56,189,248,.22);
      color: rgba(5, 70, 95, .95);
      font-weight: 950;
      white-space: nowrap;
    }

    .two-col{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:start;
    }

    .list{
      display:flex; flex-direction: column; gap: 10px;
      margin-top: 6px;
    }
    .li{
      display:flex; gap: 10px; align-items:flex-start;
      padding: 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(230,238,240,.95);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .li:hover{ transform: translateY(-2px); box-shadow: 0 18px 45px rgba(13,48,26,.08); border-color: rgba(24,201,100,.24); }
    .check{
      width: 22px; height: 22px;
      border-radius: 8px;
      background: rgba(24,201,100,.12);
      border: 1px solid rgba(24,201,100,.24);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .check svg{ width: 14px; height: 14px; color: rgba(11,78,44,.98); }
    .li strong{
      display:block;
      font-size: 13.5px;
      letter-spacing: -.1px;
      margin-bottom: 3px;
    }
    .li span{
      color: rgba(15,23,42,.68);
      font-weight: 650;
      line-height: 1.65;
      font-size: 13px;
    }

    .timeline{
      display:grid;
      gap: 10px;
    }
    .time-item{
      display:grid;
      grid-template-columns: 120px 1fr;
      gap: 12px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.74);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .time-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(13,48,26,.08);
      border-color: rgba(24,201,100,.24);
    }
    .time-left{
      display:flex;
      flex-direction: column;
      gap: 7px;
    }
    .time-chip{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(24,201,100,.10);
      border: 1px solid rgba(24,201,100,.22);
      color: rgba(11,78,44,.95);
      font-weight: 950;
      font-size: 12px;
      width: fit-content;
      white-space: nowrap;
    }
    .time-date{
      color: rgba(15,23,42,.66);
      font-weight: 850;
      font-size: 12.8px;
    }
    .time-title{
      margin: 0 0 6px;
      font-size: 14.5px;
      letter-spacing: -.2px;
      font-weight: 1000;
    }
    .time-desc{
      margin:0;
      color: rgba(15,23,42,.68);
      font-weight: 650;
      line-height: 1.7;
      font-size: 13px;
    }

    .gallery-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:start;
    }
    .case-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .case{
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.76);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction: column;
      gap: 10px;
      min-height: 160px;
    }
    .case:hover{ transform: translateY(-3px); box-shadow: 0 22px 60px rgba(13,48,26,.08); border-color: rgba(24,201,100,.24); }
    .case .top{
      display:flex; align-items:center; justify-content: space-between; gap: 10px;
    }
    .case h3{ margin:0; font-size: 14.5px; letter-spacing:-.2px; font-weight: 1000; }
    .case .type{
      font-size: 12px;
      color: rgba(11,78,44,.95);
      font-weight: 950;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(24,201,100,.10);
      border: 1px solid rgba(24,201,100,.22);
      white-space: nowrap;
    }
    .case ul{
      margin:0; padding-left: 18px;
      color: rgba(15,23,42,.68);
      font-weight: 650;
      line-height: 1.7;
      font-size: 13px;
    }
    .side-media{
      border-radius: 26px;
      border: 1px solid rgba(214,243,222,.85);
      background:
        radial-gradient(900px 260px at 20% 0%, rgba(24,201,100,.20), transparent 60%),
        rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 20px 55px rgba(13,48,26,.06);
      overflow:hidden;
      position: relative;
    }
    .side-media .media-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-top: 10px;
    }
    .img-wrap{
      border-radius: 18px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .img-wrap:hover{ transform: translateY(-3px); box-shadow: 0 22px 60px rgba(13,48,26,.08); }
    .img-wrap img{
      width: 100%;
      height:auto;
      display:block;
      object-fit: contain;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .article-card{
      padding: 16px;
      border-radius: 20px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.76);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .article-card:hover{ transform: translateY(-3px); box-shadow: 0 22px 60px rgba(13,48,26,.08); border-color: rgba(24,201,100,.24); }
    .article-top{
      display:flex; align-items:center; justify-content: space-between; gap: 10px;
    }
    .article-card h3{
      margin:0;
      font-size: 14.8px;
      letter-spacing: -.2px;
      font-weight: 1000;
    }
    .article-meta{
      color: rgba(15,23,42,.60);
      font-weight: 850;
      font-size: 12px;
      white-space: nowrap;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(241,255,242,.75);
      border: 1px solid rgba(24,201,100,.22);
    }
    .article-card p{
      margin:0;
      color: rgba(15,23,42,.68);
      font-weight: 650;
      line-height: 1.7;
      font-size: 13px;
    }
    .article-link{
      display:flex; align-items:center; justify-content: space-between; gap: 10px;
      margin-top:auto;
      padding-top: 6px;
    }
    .article-link a{
      font-weight: 950;
      color: rgba(11,78,44,.95);
    }
    .arrow{
      width: 34px; height: 34px; border-radius: 14px;
      border: 1px solid rgba(24,201,100,.22);
      background: rgba(24,201,100,.10);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease;
    }
    .article-card:hover .arrow{ transform: translateX(3px); }
    .arrow svg{ width: 16px; height: 16px; color: rgba(11,78,44,.95); }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    details{
      border-radius: 18px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.76);
      padding: 12px 14px;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    details[open]{
      border-color: rgba(24,201,100,.25);
      box-shadow: 0 22px 60px rgba(13,48,26,.08);
      transform: translateY(-2px);
    }
    summary{
      cursor: pointer;
      list-style: none;
      display:flex;
      align-items:flex-start;
      gap: 12px;
      font-weight: 950;
      color: rgba(15,23,42,.92);
      padding: 2px 0;
    }
    summary::-webkit-details-marker{ display:none; }
    .qmark{
      width: 30px; height: 30px;
      border-radius: 12px;
      background: rgba(24,201,100,.10);
      border: 1px solid rgba(24,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top: 1px;
    }
    .qmark svg{ width: 16px; height: 16px; color: rgba(11,78,44,.95); }
    .faq-ans{
      margin: 10px 0 0;
      color: rgba(15,23,42,.68);
      font-weight: 650;
      line-height: 1.75;
      font-size: 13.2px;
    }

    .comments{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }
    .comment{
      border-radius: 22px;
      border: 1px solid rgba(230,238,240,.95);
      background:
        radial-gradient(520px 160px at 10% 0%, rgba(24,201,100,.18), transparent 60%),
        rgba(255,255,255,.76);
      padding: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex;
      flex-direction: column;
      gap: 10px;
      min-height: 210px;
    }
    .comment:hover{ transform: translateY(-3px); box-shadow: 0 22px 60px rgba(13,48,26,.08); border-color: rgba(24,201,100,.24); }
    .comment .role{
      display:flex; align-items:center; justify-content: space-between; gap: 10px;
    }
    .avatar{
      width: 40px; height: 40px;
      border-radius: 16px;
      background: rgba(24,201,100,.12);
      border: 1px solid rgba(24,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: rgba(11,78,44,.95);
    }
    .comment h3{
      margin:0;
      font-size: 14.5px;
      letter-spacing:-.2px;
      font-weight: 1000;
    }
    .comment .biz{
      color: rgba(15,23,42,.62);
      font-weight: 850;
      font-size: 12px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(241,255,242,.75);
      border: 1px solid rgba(24,201,100,.22);
      white-space: nowrap;
    }
    .quote{
      margin:0;
      color: rgba(15,23,42,.70);
      font-weight: 650;
      line-height: 1.8;
      font-size: 13.2px;
    }
    .comment .sig{
      margin-top:auto;
      display:flex; align-items:center; justify-content: space-between; gap: 10px;
      color: rgba(15,23,42,.62);
      font-weight: 850;
      font-size: 12.5px;
    }

    .form-card{
      border-radius: 26px;
      border: 1px solid rgba(214,243,222,.85);
      background:
        radial-gradient(900px 260px at 20% 0%, rgba(24,201,100,.20), transparent 60%),
        rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 20px 55px rgba(13,48,26,.06);
    }
    form{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 10px;
    }
    .field{
      display:flex;
      flex-direction: column;
      gap: 8px;
    }
    .field.full{ grid-column: 1 / -1; }
    label{
      color: rgba(15,23,42,.82);
      font-weight: 950;
      font-size: 13px;
    }
    input, select, textarea{
      border-radius: 14px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.78);
      padding: 12px 12px;
      color: rgba(15,23,42,.92);
      font-weight: 750;
      outline: none;
      transition: box-shadow .2s ease, border-color .2s ease;
    }
    textarea{ min-height: 120px; resize: vertical; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(24,201,100,.35);
      box-shadow: var(--focus);
    }
    .form-actions{
      grid-column: 1 / -1;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 4px;
      padding-top: 6px;
      border-top: 1px solid rgba(230,238,240,.85);
    }
    .hint{
      color: rgba(15,23,42,.62);
      font-weight: 750;
      font-size: 12.8px;
      line-height: 1.6;
      max-width: 58ch;
    }

    .btn-submit{
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.03);
      background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
      color: #062012;
      font-weight: 1100;
      box-shadow: 0 16px 40px rgba(24,201,100,.22);
      transition: transform .2s ease, box-shadow .2s ease;
      cursor:pointer;
      min-width: 160px;
    }
    .btn-submit:hover{ transform: translateY(-2px); box-shadow: 0 22px 60px rgba(24,201,100,.28); }
    .btn-submit:focus{ outline:none; box-shadow: var(--focus), 0 22px 60px rgba(24,201,100,.28); }

    .tag-cloud{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }
    .cloud-tag{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.78);
      font-weight: 950;
      color: rgba(15,23,42,.78);
      font-size: 12.7px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloud-tag:hover{ transform: translateY(-2px); border-color: rgba(24,201,100,.24); box-shadow: 0 18px 45px rgba(13,48,26,.08); }

    .floating{
      position: fixed;
      right: 14px;
      bottom: 14px;
      z-index: 80;
      display:flex;
      flex-direction: column;
      gap: 10px;
      align-items:flex-end;
      pointer-events: none;
    }
    .float-btn{
      pointer-events: auto;
      border-radius: 16px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.82);
      box-shadow: 0 22px 60px rgba(13,48,26,.10);
      display:flex;
      align-items:center;
      gap: 10px;
      padding: 12px 12px;
      cursor:pointer;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .float-btn:hover{ transform: translateY(-3px); border-color: rgba(24,201,100,.24); box-shadow: 0 22px 70px rgba(13,48,26,.14); }
    .float-btn:focus{ outline:none; box-shadow: var(--focus); }
    .float-btn svg{ width: 18px; height: 18px; color: rgba(11,78,44,.95); }
    .float-btn span{
      font-weight: 1000;
      color: rgba(15,23,42,.88);
      font-size: 13px;
    }

    .float-panel{
      pointer-events: auto;
      width: 320px;
      border-radius: 22px;
      border: 1px solid rgba(214,243,222,.85);
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(24,201,100,.20), transparent 60%),
        rgba(255,255,255,.92);
      box-shadow: 0 26px 80px rgba(13,48,26,.14);
      overflow:hidden;
      transform-origin: 100% 100%;
      transform: scale(.98);
      opacity: 0;
      transition: opacity .16s ease, transform .16s ease;
    }
    .float-panel.open{
      transform: scale(1);
      opacity: 1;
    }
    .float-panel .panel-top{
      padding: 14px 14px 10px;
      display:flex; align-items:flex-start; justify-content: space-between; gap: 12px;
      border-bottom: 1px solid rgba(230,238,240,.85);
    }
    .panel-top h3{
      margin:0;
      font-size: 14.8px;
      font-weight: 1100;
      letter-spacing: -.2px;
    }
    .panel-top p{
      margin: 6px 0 0;
      color: rgba(15,23,42,.64);
      font-weight: 750;
      font-size: 12.6px;
      line-height: 1.6;
    }
    .close-x{
      width: 40px; height: 40px;
      border-radius: 16px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease;
      flex: 0 0 auto;
    }
    .close-x:hover{ transform: translateY(-2px); border-color: rgba(24,201,100,.25); }
    .close-x svg{ width: 16px; height: 16px; color: rgba(15,23,42,.78); }

    .panel-body{
      padding: 12px 14px 14px;
      display:flex; flex-direction: column; gap: 10px;
    }
    .qrcode{
      width: 160px;
      aspect-ratio: 1/1;
      border-radius: 18px;
      border: 1px solid rgba(230,238,240,.95);
      overflow:hidden;
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      margin-left: 4px;
    }
    .qrcode img{
      width: 100%;
      height:auto;
      display:block;
      object-fit: contain;
    }
    .panel-row{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items:center;
      justify-content: space-between;
      margin-top: 4px;
    }
    .small-link{
      font-weight: 950;
      color: rgba(11,78,44,.95);
      border: 1px solid rgba(24,201,100,.22);
      background: rgba(24,201,100,.10);
      padding: 10px 12px;
      border-radius: 14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:inline-flex; align-items:center; gap: 8px;
    }
    .small-link:hover{ transform: translateY(-2px); box-shadow: 0 18px 45px rgba(13,48,26,.10); border-color: rgba(24,201,100,.30); }
    .small-link svg{ width: 16px; height: 16px; }

    footer{
      padding: 22px 0 28px;
      border-top: 1px solid rgba(230,238,240,.9);
      background: rgba(255,255,255,.55);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .foot-left{
      border-radius: 24px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.80);
      padding: 16px;
    }
    .foot-right{
      border-radius: 24px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(255,255,255,.80);
      padding: 16px;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .foot-title{
      margin:0 0 8px;
      font-weight: 1100;
      letter-spacing: -.3px;
      font-size: 16px;
    }
    .foot-text{
      margin:0;
      color: rgba(15,23,42,.68);
      font-weight: 700;
      line-height: 1.7;
      font-size: 13.2px;
    }
    .footer-links{
      display:flex; flex-wrap: wrap; gap: 10px;
      margin-top: 12px;
    }
    .footer-links a{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(241,255,242,.55);
      font-weight: 950;
      color: rgba(15,23,42,.78);
      font-size: 12.7px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }
    .footer-links a:hover{ transform: translateY(-2px); border-color: rgba(24,201,100,.25); box-shadow: 0 18px 45px rgba(13,48,26,.08); }

    .foot-meta{
      display:flex; flex-direction: column; gap: 10px;
    }
    .meta-row{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items:center;
    }
    .meta-pill{
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(230,238,240,.95);
      background: rgba(241,255,242,.55);
      font-weight: 900;
      font-size: 12.8px;
      color: rgba(15,23,42,.78);
      display:inline-flex;
      align-items:center;
      gap: 8px;
    }
    .meta-pill svg{ width: 16px; height: 16px; color: rgba(11,78,44,.95); }

    .copyright{
      margin-top: 14px;
      color: rgba(15,23,42,.62);
      font-weight: 800;
      font-size: 12.6px;
      text-align: center;
    }

    .fade-in{
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .45s ease, transform .45s ease;
    }
    .fade-in.show{
      opacity: 1;
      transform: translateY(0);
    }

    .anchor{
      scroll-margin-top: 90px;
    }

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

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-card, .hero-side{ min-height: unset; }
      h1{ font-size: 30px; }
      .grid-3{ grid-template-columns: 1fr; }
      .grid-4{ grid-template-columns: 1fr 1fr; }
      .steps{ grid-template-columns: 1fr 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .gallery-grid{ grid-template-columns: 1fr; }
      .articles{ grid-template-columns: 1fr; }
      .faq{ grid-template-columns: 1fr; }
      .comments{ grid-template-columns: 1fr; }
      .case-list{ grid-template-columns: 1fr; }
      .time-item{ grid-template-columns: 1fr; }
      .footer-grid{ grid-template-columns: 1fr; }
      nav{ display:none; }
      .burger{ display:flex; }
      .mobile-panel{ display:block; }
      .hero{ padding-top: 18px; }
    }

    @media (prefers-reduced-motion: reduce){
      html{ scroll-behavior: auto; }
      .fade-in{ transition: none; }
      .btn, .card, .step, .metric, .trust-item, details, .case, .article-card{ transition: none !important; }
    }