/* roulang page: index */
:root{
      --bg:#F6F4EE;
      --bg-soft:#FAFAF7;
      --bg-tint:#EEF5F2;
      --surface:#ffffff;
      --surface-2:#F9FBF9;
      --text:#17211F;
      --muted:#61706B;
      --border:#DDE5DE;
      --primary:#176B5B;
      --primary-2:#0F766E;
      --primary-weak:#E3F1EC;
      --accent:#D89B2B;
      --accent-weak:#F7E9C7;
      --warn:#B45309;
      --warn-soft:#FFF4E3;
      --shadow:0 12px 30px rgba(23,33,31,.08);
      --shadow-hover:0 18px 42px rgba(23,33,31,.12);
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --container:1240px;
      --transition:.22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.8;
      background:
        radial-gradient(circle at 20% 10%, rgba(23,107,91,.10), transparent 22%),
        radial-gradient(circle at 85% 12%, rgba(216,155,43,.10), transparent 18%),
        linear-gradient(180deg, #fbfbf8 0%, var(--bg) 40%, #f4f6f3 100%);
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    a{color:inherit;text-decoration:none;transition:color var(--transition),background var(--transition),border-color var(--transition),transform var(--transition),box-shadow var(--transition),opacity var(--transition)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(23,107,91,.16);color:var(--text)}
    :focus{outline:none}
    :focus-visible{
      outline:3px solid rgba(23,107,91,.28);
      outline-offset:3px;
      border-radius:10px;
    }
    .page-shell{
      position:relative;
      overflow:hidden;
    }
    .page-shell::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      background-image:linear-gradient(rgba(23,33,31,.03) 1px, transparent 1px),linear-gradient(90deg, rgba(23,33,31,.03) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.45), transparent 82%);
      opacity:.35;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:90;
      backdrop-filter:saturate(1.04) blur(10px);
      background:rgba(250,250,247,.88);
      border-bottom:1px solid rgba(221,229,222,.86);
    }
    .header-inner{
      max-width:var(--container);
      margin:0 auto;
      min-height:74px;
      padding:12px 20px;
      display:flex;
      align-items:center;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:0 0 auto;
    }
    .brand-mark{
      width:40px;
      height:40px;
      border-radius:14px;
      background:linear-gradient(145deg, var(--primary), var(--primary-2));
      box-shadow:0 10px 24px rgba(23,107,91,.18);
      display:grid;
      place-items:center;
      color:#fff;
      flex:0 0 auto;
    }
    .brand-text{
      min-width:0;
    }
    .brand-text strong{
      display:block;
      font-size:15px;
      line-height:1.25;
      letter-spacing:.2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text span{
      display:block;
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:6px;
      margin-left:8px;
      flex:1 1 auto;
      min-width:0;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      height:42px;
      padding:0 16px;
      border-radius:999px;
      color:#2b3835;
      font-size:14px;
      border:1px solid transparent;
    }
    .nav-link:hover{
      background:rgba(23,107,91,.06);
      color:var(--primary);
    }
    .nav-link.active{
      background:var(--primary-weak);
      border-color:rgba(23,107,91,.16);
      color:var(--primary);
      font-weight:700;
    }
    .nav-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 10px;
      border-radius:999px;
      background:var(--warn-soft);
      color:var(--warn);
      font-size:12px;
      font-weight:700;
      margin-left:8px;
    }
    .header-tools{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
      flex:0 0 auto;
    }
    .nav-search{
      display:flex;
      align-items:center;
      gap:8px;
      width:min(300px, 30vw);
      min-width:220px;
      padding:0 14px;
      height:44px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:999px;
      box-shadow:0 2px 10px rgba(23,33,31,.03);
    }
    .nav-search svg{flex:0 0 auto; color:var(--muted)}
    .nav-search input{
      border:0;
      box-shadow:none;
      background:transparent;
      margin:0;
      height:100%;
      padding:0;
      color:var(--text);
      font-size:14px;
    }
    .nav-search input::placeholder{color:#8a9692}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:700;
      line-height:1;
      cursor:pointer;
      transition:transform var(--transition),box-shadow var(--transition),background var(--transition),border-color var(--transition),color var(--transition);
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(23,33,31,.08)}
    .btn-primary{
      background:var(--primary);
      color:#fff;
      box-shadow:0 12px 24px rgba(23,107,91,.16);
    }
    .btn-primary:hover{background:#14584b;color:#fff}
    .btn-secondary{
      background:#fff;
      color:var(--primary);
      border-color:rgba(23,107,91,.18);
    }
    .btn-secondary:hover{
      background:rgba(23,107,91,.06);
      color:var(--primary);
    }
    .btn-accent{
      background:var(--accent-weak);
      color:#7c5415;
      border-color:rgba(216,155,43,.2);
    }
    .btn-accent:hover{background:#f6dfae;color:#6c4811}
    .btn-ghost{
      background:transparent;
      color:var(--muted);
      border-color:rgba(221,229,222,.92);
    }
    .btn-ghost:hover{
      background:#fff;
      color:var(--text);
    }
    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border-radius:14px;
      border:1px solid var(--border);
      background:#fff;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      flex:0 0 auto;
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after{
      display:block;
      width:18px;
      height:2px;
      background:var(--text);
      border-radius:2px;
      position:relative;
      transition:transform var(--transition),top var(--transition),opacity var(--transition),background var(--transition);
    }
    .menu-toggle span::before,
    .menu-toggle span::after{
      content:"";
      position:absolute;
      left:0;
    }
    .menu-toggle span::before{top:-6px}
    .menu-toggle span::after{top:6px}
    .mobile-panel{
      display:none;
      border-top:1px solid var(--border);
      background:rgba(250,250,247,.98);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
    }
    .mobile-panel.is-open{display:block}
    .mobile-panel-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:16px 20px 20px;
      display:grid;
      gap:14px;
    }
    .mobile-panel .nav-search{
      width:100%;
      min-width:0;
    }
    .mobile-links{
      display:grid;
      gap:8px;
    }
    .mobile-links .nav-link{
      justify-content:flex-start;
      width:100%;
      border:1px solid var(--border);
      background:#fff;
    }

    .main{
      position:relative;
      z-index:1;
    }
    .section{
      padding:84px 0;
    }
    .section-tight{padding:60px 0}
    .container-wide{
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
      position:relative;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(23,107,91,.08);
      color:var(--primary);
      font-size:13px;
      font-weight:700;
      letter-spacing:.2px;
    }
    .eyebrow .dot{
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(216,155,43,.14);
    }
    .hero{
      padding:52px 0 28px;
    }
    .hero-card{
      background:
        radial-gradient(circle at 85% 12%, rgba(216,155,43,.14), transparent 16%),
        linear-gradient(135deg, rgba(255,255,255,.88), rgba(238,245,242,.82));
      border:1px solid rgba(221,229,222,.95);
      border-radius:34px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-card::after{
      content:"";
      position:absolute;
      inset:auto -30px -50px auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(23,107,91,.10), transparent 66%);
      pointer-events:none;
    }
    .hero-inner{
      padding:34px;
    }
    .hero-grid{
      align-items:center;
      gap:22px;
    }
    .hero-copy{
      padding:10px 0 10px 6px;
    }
    .hero h1{
      margin:18px 0 14px;
      font-size:clamp(32px, 4.7vw, 54px);
      line-height:1.16;
      letter-spacing:-.02em;
      font-weight:800;
      color:#15211e;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:17px;
      line-height:1.9;
      max-width:58ch;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .hero-list{
      display:flex;
      flex-wrap:wrap;
      gap:10px 16px;
      margin-top:22px;
      padding:0;
      list-style:none;
      color:#31413d;
      font-size:14px;
    }
    .hero-list li{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .hero-list i{
      width:18px;
      height:18px;
      border-radius:50%;
      background:rgba(23,107,91,.10);
      display:inline-grid;
      place-items:center;
      color:var(--primary);
      font-style:normal;
      font-size:12px;
      font-weight:900;
    }
    .hero-panel{
      position:relative;
      background:linear-gradient(180deg, #fff, #f6fbf8);
      border:1px solid rgba(221,229,222,.95);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:22px;
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(23,33,31,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(23,33,31,.03) 1px, transparent 1px);
      background-size:24px 24px;
      opacity:.45;
      pointer-events:none;
    }
    .panel-head,
    .panel-foot{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .panel-head h2{
      margin:0;
      font-size:16px;
      font-weight:800;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:var(--primary-weak);
      color:var(--primary);
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .status-pill .mini{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 4px rgba(23,107,91,.12);
    }
    .audit-visual{
      position:relative;
      z-index:1;
      margin-top:18px;
      display:grid;
      gap:14px;
    }
    .audit-row{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:14px;
    }
    .audit-card{
      border:1px solid var(--border);
      border-radius:22px;
      background:#fff;
      padding:16px;
      box-shadow:0 8px 20px rgba(23,33,31,.05);
    }
    .audit-card h3{
      margin:0 0 8px;
      font-size:15px;
      color:#24312d;
    }
    .audit-card .small{
      font-size:13px;
      color:var(--muted);
      line-height:1.7;
      margin:0;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      background:#f4f8f5;
      color:#2f413c;
      border:1px solid rgba(221,229,222,.9);
    }
    .tag.primary{
      background:var(--primary-weak);
      color:var(--primary);
      border-color:rgba(23,107,91,.16);
    }
    .tag.accent{
      background:var(--accent-weak);
      color:#7c5415;
      border-color:rgba(216,155,43,.20);
    }
    .tag.warn{
      background:#fff0d8;
      color:var(--warn);
      border-color:rgba(180,83,9,.12);
    }
    .meter{
      margin-top:12px;
      display:grid;
      gap:8px;
    }
    .meter-bar{
      width:100%;
      height:10px;
      border-radius:999px;
      background:#edf3ef;
      overflow:hidden;
    }
    .meter-bar > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--primary), #18a388);
    }
    .meter-label{
      display:flex;
      justify-content:space-between;
      gap:12px;
      font-size:12px;
      color:var(--muted);
    }
    .audit-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .audit-metric{
      background:rgba(23,107,91,.04);
      border:1px solid rgba(23,107,91,.10);
      border-radius:18px;
      padding:14px 12px;
      text-align:center;
    }
    .audit-metric strong{
      display:block;
      font-size:24px;
      line-height:1.1;
      color:var(--primary);
    }
    .audit-metric span{
      display:block;
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
    }
    .audit-glyph{
      height:170px;
      border-radius:22px;
      background:
        radial-gradient(circle at 30% 30%, rgba(23,107,91,.16), transparent 34%),
        radial-gradient(circle at 78% 28%, rgba(216,155,43,.20), transparent 28%),
        linear-gradient(180deg, #f9fcfb, #eef5f2);
      border:1px solid rgba(221,229,222,.9);
      position:relative;
      overflow:hidden;
    }
    .audit-glyph::before,
    .audit-glyph::after{
      content:"";
      position:absolute;
      border-radius:50%;
      background:rgba(23,107,91,.12);
    }
    .audit-glyph::before{
      width:94px;
      height:94px;
      right:16px;
      top:18px;
    }
    .audit-glyph::after{
      width:54px;
      height:54px;
      left:22px;
      bottom:22px;
      background:rgba(216,155,43,.16);
    }
    .glyph-label{
      position:absolute;
      left:18px;
      top:18px;
      max-width:70%;
      padding:10px 12px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(221,229,222,.96);
      box-shadow:0 12px 24px rgba(23,33,31,.06);
      font-size:13px;
      line-height:1.55;
    }
    .glyph-label strong{display:block;margin-bottom:4px;color:var(--primary)}
    .glyph-card{
      position:absolute;
      right:18px;
      bottom:18px;
      width:132px;
      padding:12px;
      border-radius:18px;
      background:#102b25;
      color:rgba(255,255,255,.92);
      box-shadow:0 14px 30px rgba(16,43,37,.22);
    }
    .glyph-card span{
      display:block;
      font-size:12px;
      color:rgba(255,255,255,.68);
    }
    .glyph-card strong{
      display:block;
      margin-top:4px;
      font-size:18px;
      line-height:1.2;
    }

    .section-head{
      margin-bottom:28px;
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:18px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(26px, 3vw, 38px);
      line-height:1.22;
      letter-spacing:-.02em;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:58ch;
      font-size:15px;
      line-height:1.9;
    }
    .section-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:#34433f;
      font-size:12px;
      font-weight:700;
      box-shadow:0 8px 16px rgba(23,33,31,.04);
      white-space:nowrap;
    }
    .grid-card{
      background:var(--surface);
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      padding:26px;
      height:100%;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
    }
    .grid-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(23,107,91,.22);
    }
    .step-num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      background:var(--primary-weak);
      color:var(--primary);
      font-weight:800;
      margin-bottom:14px;
    }
    .grid-card h3{
      margin:0 0 10px;
      font-size:21px;
      line-height:1.28;
    }
    .grid-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.88;
    }
    .connector{
      position:relative;
    }
    .connector::after{
      content:"";
      position:absolute;
      top:22px;
      right:-15px;
      width:30px;
      height:2px;
      background:linear-gradient(90deg, rgba(23,107,91,.28), rgba(23,107,91,.06));
    }
    .process-grid{
      margin-top:10px;
    }
    .process-grid .grid-card{
      position:relative;
      overflow:hidden;
    }
    .process-grid .grid-card::before{
      content:"";
      position:absolute;
      inset:auto -16px -18px auto;
      width:120px;
      height:120px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(23,107,91,.08), transparent 68%);
      pointer-events:none;
    }
    .process-grid .grid-card ul{
      list-style:none;
      margin:14px 0 0;
      padding:0;
      display:grid;
      gap:8px;
    }
    .process-grid .grid-card li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#31413d;
      font-size:14px;
      line-height:1.8;
    }
    .process-grid .grid-card li::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      margin-top:9px;
      flex:0 0 auto;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(216,155,43,.12);
    }

    .scenes{
      background:linear-gradient(180deg, rgba(238,245,242,.84), rgba(255,255,255,.48));
      border-top:1px solid rgba(221,229,222,.64);
      border-bottom:1px solid rgba(221,229,222,.64);
    }
    .scene-card{
      padding:24px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      box-shadow:var(--shadow);
      height:100%;
      transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .scene-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(23,107,91,.22);
    }
    .scene-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .scene-card h3{
      margin:0;
      font-size:20px;
      line-height:1.3;
    }
    .risk-level{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
      background:var(--warn-soft);
      color:var(--warn);
    }
    .risk-level .ring{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(216,155,43,.14);
    }
    .scene-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .scene-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .mini-note{
      margin-top:14px;
      padding-top:14px;
      border-top:1px dashed var(--border);
      color:#3f504b;
      font-size:13px;
      line-height:1.7;
    }

    .focus-box{
      background:linear-gradient(180deg, #fff, #f7faf8);
      border:1px solid var(--border);
      border-radius:34px;
      box-shadow:var(--shadow);
      padding:28px;
    }
    .focus-grid{
      margin-top:10px;
    }
    .focus-item{
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:22px;
      height:100%;
      box-shadow:0 8px 20px rgba(23,33,31,.05);
    }
    .focus-icon{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      margin-bottom:14px;
      background:var(--primary-weak);
      color:var(--primary);
    }
    .focus-item h3{
      margin:0 0 10px;
      font-size:19px;
      line-height:1.3;
    }
    .focus-item p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .focus-item ul{
      list-style:none;
      margin:14px 0 0;
      padding:0;
      display:grid;
      gap:8px;
    }
    .focus-item li{
      display:flex;
      gap:8px;
      color:#31413d;
      font-size:14px;
      line-height:1.7;
    }
    .focus-item li::before{
      content:"✓";
      color:var(--primary);
      font-weight:900;
      flex:0 0 auto;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:minmax(0, 1.3fr) minmax(260px, .7fr);
      gap:24px;
      align-items:start;
    }
    .faq-panel{
      background:#fff;
      border:1px solid var(--border);
      border-radius:34px;
      box-shadow:var(--shadow);
      padding:18px 18px 4px;
    }
    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid var(--border);
      background:#fff;
      transition:border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .accordion-item.is-active{
      border-color:rgba(23,107,91,.24);
      box-shadow:0 12px 24px rgba(23,33,31,.06);
      background:#fbfefc;
    }
    .accordion-title{
      color:var(--text);
      font-size:16px;
      line-height:1.7;
      font-weight:700;
      border:0;
      padding:18px 20px;
      background:transparent;
      position:relative;
    }
    .accordion-title::before{
      right:20px;
      color:var(--primary);
      margin-top:-9px;
      border-width:0 0 2px 2px;
      width:10px;
      height:10px;
      transform:rotate(-45deg);
      transition:transform var(--transition), top var(--transition);
    }
    .accordion-item.is-active > .accordion-title::before{
      transform:rotate(135deg);
      margin-top:-3px;
    }
    .accordion-content{
      border:0;
      padding:0 20px 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
      background:transparent;
    }
    .faq-aside{
      display:grid;
      gap:16px;
    }
    .aside-card{
      background:linear-gradient(180deg, #fff, #f6fbf8);
      border:1px solid var(--border);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:24px;
    }
    .aside-card h3{
      margin:0 0 12px;
      font-size:20px;
      line-height:1.3;
    }
    .aside-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .aside-list{
      margin:16px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .aside-list li{
      display:flex;
      align-items:center;
      gap:10px;
      color:#31413d;
      font-size:14px;
      line-height:1.7;
    }
    .aside-list li::before{
      content:"";
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(216,155,43,.12);
      flex:0 0 auto;
    }
    .aside-cta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }

    .cta-banner{
      padding:0 0 92px;
    }
    .cta-card{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      background:linear-gradient(135deg, #10322c 0%, #14584b 45%, #0f4037 100%);
      color:#fff;
      box-shadow:0 18px 48px rgba(16,43,37,.22);
      padding:30px;
      border:1px solid rgba(255,255,255,.10);
    }
    .cta-card::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size:26px 26px;
      opacity:.35;
      pointer-events:none;
    }
    .cta-card .eyebrow{
      background:rgba(255,255,255,.10);
      color:#fff;
    }
    .cta-card h2{
      margin:18px 0 12px;
      font-size:clamp(26px, 3vw, 40px);
      line-height:1.2;
      letter-spacing:-.02em;
    }
    .cta-card p{
      margin:0;
      max-width:60ch;
      color:rgba(255,255,255,.80);
      font-size:16px;
      line-height:1.9;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .cta-card .btn-primary{
      background:#fff;
      color:#0f4037;
    }
    .cta-card .btn-primary:hover{background:#eff7f4;color:#0f4037}
    .cta-card .btn-secondary{
      background:transparent;
      color:#fff;
      border-color:rgba(255,255,255,.28);
    }
    .cta-card .btn-secondary:hover{
      background:rgba(255,255,255,.08);
      color:#fff;
    }
    .cta-card .btn-accent{
      background:rgba(216,155,43,.18);
      color:#fff;
      border-color:rgba(255,255,255,.12);
    }
    .cta-card .btn-accent:hover{background:rgba(216,155,43,.28)}
    .cta-stamp{
      margin-top:18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .cta-stamp .stamp{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      color:rgba(255,255,255,.86);
      font-size:12px;
      border:1px solid rgba(255,255,255,.12);
    }

    .footer{
      background:#102B25;
      color:rgba(255,255,255,.75);
      position:relative;
      overflow:hidden;
    }
    .footer::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size:28px 28px;
      opacity:.3;
      pointer-events:none;
    }
    .footer-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:42px 20px;
      position:relative;
      z-index:1;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:24px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:12px;
    }
    .footer-brand .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      box-shadow:none;
    }
    .footer-title{
      color:#fff;
      font-size:16px;
      font-weight:800;
      margin:0 0 8px;
    }
    .footer-text{
      margin:0;
      color:rgba(255,255,255,.76);
      font-size:14px;
      line-height:1.9;
      max-width:54ch;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,255,255,.76);
      font-size:14px;
      line-height:1.7;
    }
    .footer-links a:hover{color:#c5efe4}
    .footer-note{
      margin-top:28px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
      color:rgba(255,255,255,.62);
      font-size:13px;
      line-height:1.8;
    }
    .footer-note a{color:#c5efe4}
    .inline-svg{
      display:inline-block;
      vertical-align:middle;
    }

    @media (max-width: 1023px){
      .desktop-nav{display:none}
      .menu-toggle{display:inline-flex}
      .header-tools{gap:8px}
      .nav-search{width:min(42vw, 290px); min-width:0}
      .hero-inner{padding:26px}
      .hero-grid{gap:18px}
      .audit-row{grid-template-columns:1fr}
      .audit-grid{grid-template-columns:repeat(3,1fr)}
      .footer-top{grid-template-columns:1fr 1fr}
      .footer-top .footer-group:last-child{grid-column:1 / -1}
      .faq-wrap{grid-template-columns:1fr}
      .connector::after{display:none}
    }
    @media (max-width: 639px){
      .header-inner{min-height:68px; padding:10px 16px}
      .brand-text strong{font-size:14px}
      .brand-text span{font-size:11px}
      .nav-search{display:none}
      .header-tools .btn-ghost{display:none}
      .hero{padding:24px 0 18px}
      .hero-card{border-radius:26px}
      .hero-inner{padding:20px}
      .hero h1{font-size:clamp(30px, 9vw, 36px)}
      .hero p{font-size:15px}
      .hero-actions .btn{width:100%}
      .hero-list{gap:8px 12px}
      .section{padding:54px 0}
      .section-tight{padding:42px 0}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
        margin-bottom:20px;
      }
      .grid-card,.scene-card,.focus-item,.aside-card,.cta-card,.faq-panel{
        border-radius:24px;
        padding:20px;
      }
      .audit-grid{grid-template-columns:1fr}
      .audit-glyph{height:150px}
      .section-head h2{font-size:26px}
      .grid-card h3,.focus-item h3,.scene-card h3{font-size:18px}
      .process-grid .cell{padding-bottom:12px}
      .faq-panel{padding:12px 12px 4px}
      .accordion-title{padding:16px 16px}
      .accordion-content{padding:0 16px 16px}
      .footer-top{grid-template-columns:1fr}
      .footer-note{flex-direction:column}
      .cta-actions .btn{width:100%}
      .cta-stamp .stamp{width:100%}
    }

/* roulang page: category1 */
:root{
      --color-primary:#176B5B;
      --color-primary-dark:#102B25;
      --color-primary-deep:#0E4F44;
      --color-primary-soft:#E6F2EE;
      --color-accent:#D89B2B;
      --color-accent-soft:#FFF3D8;
      --color-warning:#B45309;
      --color-bg:#F6F4EE;
      --color-bg-2:#FAFAF7;
      --color-bg-3:#EEF5F2;
      --color-card:#FFFFFF;
      --color-text:#17211F;
      --color-muted:#65716D;
      --color-light:#F9FBF8;
      --color-border:#DDE5DE;
      --shadow-sm:0 8px 22px rgba(23,33,31,.06);
      --shadow-md:0 12px 30px rgba(23,33,31,.08);
      --shadow-lg:0 18px 42px rgba(23,33,31,.12);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1220px;
      --transition:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 12% 8%, rgba(23,107,91,.10), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(216,155,43,.12), transparent 26%),
        linear-gradient(180deg,var(--color-bg) 0%, var(--color-bg-2) 46%, #fff 100%);
      line-height:1.78;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover,a:focus{color:var(--color-primary)}
    img,svg{max-width:100%;vertical-align:middle}
    button,input,select,textarea{font:inherit}
    input,select,textarea{
      width:100%;
      border:1px solid var(--color-border);
      border-radius:16px;
      background:#fff;
      color:var(--color-text);
      min-height:48px;
      padding:12px 15px;
      outline:none;
      transition:var(--transition);
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(23,107,91,.12);
    }
    textarea{min-height:120px;resize:vertical}
    button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(23,107,91,.36);
      outline-offset:3px;
    }

    .grid-container,.container{
      max-width:var(--container);
      padding-left:22px;
      padding-right:22px;
    }
    .section{padding:78px 0}
    .section-tight{padding:54px 0}
    .section-head{
      max-width:760px;
      margin-bottom:32px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin:0 0 12px;
      padding:7px 12px;
      color:var(--color-primary-deep);
      background:var(--color-primary-soft);
      border:1px solid rgba(23,107,91,.13);
      border-radius:var(--radius-pill);
      font-size:14px;
      font-weight:700;
    }
    .section-title{
      margin:0;
      font-size:34px;
      line-height:1.25;
      letter-spacing:-.02em;
      font-weight:800;
      color:var(--color-text);
    }
    .section-desc{
      margin:14px 0 0;
      font-size:17px;
      color:var(--color-muted);
      line-height:1.9;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(250,250,247,.92);
      border-bottom:1px solid rgba(221,229,222,.82);
      backdrop-filter:saturate(140%) blur(18px);
    }
    .header-inner{
      max-width:1280px;
      margin:0 auto;
      min-height:74px;
      padding:0 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:280px;
    }
    .brand:hover .brand-mark{transform:translateY(-1px);box-shadow:0 10px 24px rgba(23,107,91,.22)}
    .brand-mark{
      flex:0 0 auto;
      width:42px;
      height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      background:linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));
      box-shadow:0 8px 20px rgba(23,107,91,.18);
      transition:var(--transition);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.2}
    .brand-text strong{
      font-size:16px;
      font-weight:800;
      color:var(--color-text);
      max-width:268px;
      overflow:hidden;
      white-space:nowrap;
      text-overflow:ellipsis;
    }
    .brand-text span{
      margin-top:4px;
      color:var(--color-muted);
      font-size:12px;
      letter-spacing:.02em;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      flex:1 1 auto;
    }
    .nav-link{
      min-height:40px;
      display:inline-flex;
      align-items:center;
      padding:9px 13px;
      border-radius:var(--radius-pill);
      color:#33403C;
      font-size:14px;
      font-weight:700;
    }
    .nav-link:hover{
      background:var(--color-primary-soft);
      color:var(--color-primary-deep);
    }
    .nav-link.active{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 10px 22px rgba(23,107,91,.18);
    }
    .nav-chip{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      margin-left:4px;
      padding:6px 11px;
      border-radius:var(--radius-pill);
      background:var(--color-accent-soft);
      color:#805A13;
      font-size:12px;
      font-weight:700;
      white-space:nowrap;
    }
    .header-tools{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      min-width:360px;
    }
    .nav-search{
      min-width:222px;
      min-height:42px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 12px;
      border:1px solid var(--color-border);
      border-radius:var(--radius-pill);
      color:var(--color-muted);
      background:#fff;
      transition:var(--transition);
    }
    .nav-search:focus-within{
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(23,107,91,.10);
    }
    .nav-search input{
      min-height:40px;
      padding:0;
      border:0;
      border-radius:0;
      box-shadow:none;
      background:transparent;
      font-size:13px;
    }
    .nav-search input:focus{box-shadow:none}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      cursor:pointer;
      font-weight:800;
      line-height:1.2;
      transition:var(--transition);
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      color:#fff;
      background:var(--color-primary);
      border-color:var(--color-primary);
      box-shadow:0 12px 24px rgba(23,107,91,.18);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      background:var(--color-primary-dark);
      border-color:var(--color-primary-dark);
    }
    .btn-ghost{
      color:var(--color-primary-deep);
      background:#fff;
      border-color:var(--color-border);
    }
    .btn-ghost:hover{
      background:var(--color-primary-soft);
      border-color:rgba(23,107,91,.35);
    }
    .btn-warning{
      color:#61420B;
      background:var(--color-accent-soft);
      border-color:rgba(216,155,43,.32);
    }
    .btn-warning:hover{background:#FFE6AC;color:#4F3507}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--color-border);
      background:#fff;
      position:relative;
      cursor:pointer;
    }
    .menu-toggle span,.menu-toggle span:before,.menu-toggle span:after{
      content:"";
      position:absolute;
      left:12px;
      right:12px;
      height:2px;
      background:var(--color-primary-dark);
      border-radius:4px;
      transition:var(--transition);
    }
    .menu-toggle span{top:21px}
    .menu-toggle span:before{left:0;right:0;top:-7px}
    .menu-toggle span:after{left:0;right:0;top:7px}
    .menu-toggle.is-open span{background:transparent}
    .menu-toggle.is-open span:before{top:0;transform:rotate(45deg)}
    .menu-toggle.is-open span:after{top:0;transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      border-top:1px solid var(--color-border);
      background:rgba(250,250,247,.98);
    }
    .mobile-panel.is-open{display:block}
    .mobile-panel-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:16px 22px 20px;
      display:grid;
      gap:12px;
    }
    .mobile-nav-links{
      display:grid;
      gap:8px;
    }
    .mobile-actions{
      display:grid;
      gap:10px;
      margin-top:4px;
    }

    .page-hero{
      position:relative;
      overflow:hidden;
      padding:72px 0 46px;
      border-bottom:1px solid rgba(221,229,222,.7);
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(23,107,91,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,107,91,.055) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg,#000 10%,transparent 100%);
      pointer-events:none;
    }
    .page-hero .grid-container{position:relative;z-index:1}
    .hero-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      background:#fff;
      border:1px solid rgba(23,107,91,.18);
      color:var(--color-primary-deep);
      font-size:14px;
      font-weight:800;
      box-shadow:var(--shadow-sm);
      margin-bottom:18px;
    }
    h1{
      margin:0;
      max-width:790px;
      font-size:48px;
      line-height:1.16;
      letter-spacing:-.04em;
      font-weight:850;
      color:var(--color-text);
    }
    .hero-lead{
      max-width:770px;
      margin:18px 0 0;
      font-size:18px;
      line-height:1.9;
      color:#52615D;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border:1px solid var(--color-border);
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.78);
      color:#40514C;
      font-size:14px;
      font-weight:700;
    }
    .tag:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--color-accent);
    }

    .scan-card{
      position:relative;
      margin-top:10px;
      padding:26px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-md);
    }
    .scan-card:after{
      content:"";
      position:absolute;
      right:24px;
      top:24px;
      width:58px;
      height:58px;
      border-radius:20px;
      background:linear-gradient(135deg,rgba(23,107,91,.14),rgba(216,155,43,.18));
      z-index:0;
    }
    .scan-card > *{position:relative;z-index:1}
    .scan-top{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-start;
      margin-bottom:18px;
    }
    .scan-title{
      margin:0;
      font-size:22px;
      font-weight:850;
      line-height:1.35;
    }
    .risk-badge{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:5px 10px;
      border-radius:var(--radius-pill);
      background:var(--color-accent-soft);
      color:#7A4F09;
      border:1px solid rgba(216,155,43,.25);
      font-size:12px;
      font-weight:850;
      white-space:nowrap;
    }
    .scan-input{
      padding:14px 16px;
      border-radius:18px;
      background:var(--color-bg-3);
      border:1px dashed rgba(23,107,91,.26);
      color:#30413D;
      font-weight:800;
      word-break:break-all;
    }
    .scan-list{
      margin:20px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .scan-list li{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      padding:13px 14px;
      border-radius:16px;
      background:var(--color-light);
      border:1px solid rgba(221,229,222,.78);
    }
    .scan-list strong{font-size:14px;color:#2E3B38}
    .status{
      flex:0 0 auto;
      font-size:12px;
      font-weight:850;
      color:var(--color-primary-deep);
      background:#E0F0EB;
      padding:4px 9px;
      border-radius:var(--radius-pill);
    }
    .status.warn{
      color:#7A4F09;
      background:var(--color-accent-soft);
    }
    .progress-wrap{
      margin-top:18px;
      padding-top:18px;
      border-top:1px solid var(--color-border);
    }
    .progress-label{
      display:flex;
      justify-content:space-between;
      margin-bottom:8px;
      font-size:13px;
      font-weight:800;
      color:#40514C;
    }
    .progress-line{
      height:10px;
      border-radius:99px;
      background:#EAF0EC;
      overflow:hidden;
    }
    .progress-line span{
      display:block;
      height:100%;
      width:78%;
      border-radius:99px;
      background:linear-gradient(90deg,var(--color-primary),var(--color-accent));
    }

    .notice-band{
      padding:18px 20px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(216,155,43,.32);
      box-shadow:var(--shadow-sm);
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .notice-icon{
      width:38px;
      height:38px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#76500D;
      background:var(--color-accent-soft);
      flex:0 0 auto;
      font-weight:900;
    }
    .notice-band p{margin:0;color:#4E5B57;font-size:15px;line-height:1.8}
    .notice-band strong{color:#2C3835}

    .card{
      position:relative;
      height:100%;
      padding:26px;
      border-radius:var(--radius-lg);
      background:var(--color-card);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
    }
    .card:hover{
      transform:translateY(-2px);
      border-color:rgba(23,107,91,.38);
      box-shadow:var(--shadow-lg);
    }
    .icon-circle{
      width:48px;
      height:48px;
      border-radius:17px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-deep);
      margin-bottom:16px;
    }
    .card h3{
      margin:0 0 9px;
      font-size:21px;
      line-height:1.38;
      font-weight:850;
    }
    .card p{
      margin:0;
      color:var(--color-muted);
      font-size:15.5px;
      line-height:1.85;
    }
    .card-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid var(--color-border);
      font-size:13px;
      color:#6A7773;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--color-primary-deep);
      font-weight:850;
    }

    .risk-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .risk-card{
      padding:24px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
    }
    .risk-card:hover{
      transform:translateY(-2px);
      border-color:rgba(23,107,91,.38);
      box-shadow:var(--shadow-lg);
    }
    .risk-card-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      margin-bottom:12px;
    }
    .risk-card .label{
      display:inline-flex;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      background:var(--color-primary-soft);
      color:var(--color-primary-deep);
      font-size:12px;
      font-weight:850;
    }
    .risk-card h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.35;
      font-weight:850;
    }
    .risk-card:hover h3{color:var(--color-primary)}
    .risk-card p{margin:0;color:var(--color-muted);font-size:15.5px}
    .check-list{
      margin:16px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .check-list li{
      position:relative;
      padding-left:25px;
      color:#3F4C48;
      font-size:14.5px;
    }
    .check-list li:before{
      content:"";
      position:absolute;
      left:0;
      top:.55em;
      width:14px;
      height:14px;
      border-radius:50%;
      background:var(--color-primary-soft);
      border:4px solid var(--color-primary);
    }

    .two-column-wrap{
      display:grid;
      grid-template-columns:minmax(0,1.7fr) minmax(290px,.8fr);
      gap:24px;
      align-items:start;
    }
    .sidebar{
      display:grid;
      gap:18px;
      position:sticky;
      top:92px;
    }
    .side-card{
      padding:23px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
    }
    .side-card h3{
      margin:0 0 10px;
      font-size:20px;
      font-weight:850;
    }
    .side-card p{
      margin:0;
      color:var(--color-muted);
      font-size:15px;
    }
    .hot-tags{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:14px;
    }
    .hot-tags a{
      display:inline-flex;
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:var(--color-bg-3);
      color:#42524E;
      font-size:13px;
      font-weight:750;
      border:1px solid transparent;
    }
    .hot-tags a:hover{
      border-color:rgba(23,107,91,.3);
      background:#fff;
      color:var(--color-primary-deep);
    }
    .support-list{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .support-list li{
      padding:12px 13px;
      border-radius:16px;
      background:var(--color-bg-2);
      border:1px solid var(--color-border);
      font-size:14px;
      color:#40514C;
    }

    .steps{
      counter-reset:step;
      display:grid;
      gap:16px;
    }
    .step-item{
      counter-increment:step;
      position:relative;
      display:grid;
      grid-template-columns:58px 1fr;
      gap:16px;
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
    }
    .step-num{
      width:54px;
      height:54px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));
      box-shadow:0 12px 24px rgba(23,107,91,.18);
    }
    .step-item h3{margin:0 0 6px;font-size:20px;font-weight:850}
    .step-item p{margin:0;color:var(--color-muted);font-size:15.5px}

    .panel-demo{
      padding:26px;
      border-radius:28px;
      background:linear-gradient(180deg,#FFFFFF,#F6FAF7);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-md);
    }
    .panel-window{
      overflow:hidden;
      border-radius:22px;
      border:1px solid var(--color-border);
      background:#fff;
    }
    .window-bar{
      display:flex;
      gap:7px;
      padding:13px 16px;
      background:#F1F5F2;
      border-bottom:1px solid var(--color-border);
    }
    .window-bar span{
      width:10px;
      height:10px;
      border-radius:50%;
      background:#C8D5CE;
    }
    .window-body{
      padding:20px;
      display:grid;
      gap:14px;
    }
    .rule-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:14px;
      align-items:center;
      padding:13px;
      border-radius:16px;
      background:var(--color-light);
      border:1px solid rgba(221,229,222,.75);
    }
    .rule-row strong{font-size:14px;color:#2C3936}
    .rule-row small{display:block;margin-top:4px;color:var(--color-muted)}
    .pill-ok,.pill-warn{
      padding:5px 9px;
      border-radius:var(--radius-pill);
      font-size:12px;
      font-weight:850;
      white-space:nowrap;
    }
    .pill-ok{background:#E1F2EC;color:var(--color-primary-deep)}
    .pill-warn{background:var(--color-accent-soft);color:#76500D}

    .consult-box{
      padding:30px;
      border-radius:28px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-md);
    }
    .form-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .form-field.full{grid-column:1 / -1}
    .form-field label{
      display:block;
      margin:0 0 7px;
      font-size:14px;
      font-weight:800;
      color:#35423F;
    }
    .form-tip{
      margin:10px 0 0;
      color:#7A4F09;
      font-size:13px;
      line-height:1.65;
    }

    .faq-wrap{
      border-radius:28px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      border-bottom:1px solid var(--color-border);
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      position:relative;
      display:block;
      padding:20px 56px 20px 24px;
      border:0;
      color:var(--color-text);
      font-size:17px;
      font-weight:850;
      line-height:1.45;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      color:var(--color-primary-deep);
      background:var(--color-bg-3);
    }
    .accordion-title:before{
      right:24px;
      margin-top:-12px;
      color:var(--color-primary);
      font-size:24px;
      transition:var(--transition);
    }
    .is-active > .accordion-title{
      background:var(--color-bg-3);
      color:var(--color-primary-deep);
      box-shadow:inset 4px 0 0 var(--color-primary);
    }
    .accordion-content{
      border:0;
      padding:0 24px 22px;
      background:var(--color-bg-3);
      color:#52615D;
      line-height:1.86;
    }

    .cta{
      padding:0 0 84px;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:42px;
      border-radius:32px;
      background:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(135deg,var(--color-primary-dark),#123C34);
      background-size:28px 28px,28px 28px,auto;
      color:#fff;
      box-shadow:0 22px 54px rgba(16,43,37,.22);
    }
    .cta-panel:after{
      content:"";
      position:absolute;
      width:240px;
      height:240px;
      right:-70px;
      top:-80px;
      border-radius:50%;
      background:rgba(216,155,43,.16);
    }
    .cta-content{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:28px}
    .cta-panel .section-kicker{
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.16);
      color:#FFE3A1;
    }
    .cta-panel h2{
      margin:0;
      max-width:720px;
      color:#fff;
      font-size:34px;
      line-height:1.25;
      font-weight:850;
    }
    .cta-panel p{
      margin:12px 0 0;
      max-width:740px;
      color:rgba(255,255,255,.76);
      font-size:16.5px;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .cta-actions .btn-ghost{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.24);
    }
    .cta-actions .btn-ghost:hover{
      background:rgba(255,255,255,.16);
      color:#fff;
    }
    .cta-actions .btn-primary{
      background:#fff;
      color:var(--color-primary-dark);
      border-color:#fff;
    }

    .footer{
      background:var(--color-primary-dark);
      color:rgba(255,255,255,.72);
      padding:54px 0 28px;
    }
    .footer-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:0 22px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.5fr .8fr .8fr;
      gap:32px;
      padding-bottom:32px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:14px;
    }
    .footer-title{
      margin:0 0 10px;
      color:#fff;
      font-size:16px;
      font-weight:850;
      line-height:1.5;
    }
    .footer-text{
      max-width:560px;
      margin:0;
      color:rgba(255,255,255,.72);
      font-size:14.5px;
      line-height:1.85;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-size:14.5px;
    }
    .footer-links a:hover{
      color:#A9E7D7;
      transform:translateX(2px);
    }
    .footer-note{
      display:flex;
      justify-content:space-between;
      gap:18px;
      padding-top:22px;
      color:rgba(255,255,255,.58);
      font-size:13.5px;
      line-height:1.7;
    }

    @media screen and (max-width:1180px){
      .desktop-nav{gap:4px}
      .nav-chip{display:none}
      .header-tools{min-width:auto}
      .brand{min-width:250px}
      .nav-search{min-width:190px}
    }
    @media screen and (max-width:1023px){
      .desktop-nav,.header-tools .nav-search.show-for-medium,.header-tools .btn-ghost{display:none}
      .header-inner{min-height:68px}
      .brand{min-width:0}
      .menu-toggle{display:inline-flex}
      .header-tools{gap:10px}
      h1{font-size:40px}
      .page-hero{padding:56px 0 36px}
      .two-column-wrap{grid-template-columns:1fr}
      .sidebar{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}
      .cta-content{display:block}
      .cta-actions{justify-content:flex-start;margin-top:22px}
      .footer-top{grid-template-columns:1fr 1fr}
      .footer-group:first-child{grid-column:1 / -1}
    }
    @media screen and (max-width:760px){
      .section{padding:58px 0}
      .section-tight{padding:42px 0}
      .section-title{font-size:28px}
      h1{font-size:34px;letter-spacing:-.025em}
      .hero-lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .risk-grid,.form-grid,.sidebar{grid-template-columns:1fr}
      .scan-top{display:block}
      .scan-top .risk-badge{margin-top:10px}
      .step-item{grid-template-columns:1fr}
      .cta-panel{padding:30px 24px;border-radius:26px}
      .cta-panel h2{font-size:28px}
      .cta-actions .btn{width:100%}
      .footer-top{grid-template-columns:1fr}
      .footer-note{display:grid}
    }
    @media screen and (max-width:520px){
      .grid-container,.container,.footer-inner{padding-left:16px;padding-right:16px}
      .brand-text strong{font-size:14px;max-width:205px}
      .brand-text span{font-size:11px}
      .header-inner{padding:0 16px}
      .header-tools .btn-primary{display:none}
      .page-hero{padding:42px 0 30px}
      h1{font-size:31px}
      .card,.risk-card,.consult-box,.panel-demo,.scan-card{padding:20px}
      .tag-row{gap:8px}
      .tag{font-size:13px}
    }

/* roulang page: category2 */
:root{
      --color-primary:#176B5B;
      --color-primary-dark:#102B25;
      --color-primary-deep:#0D4F43;
      --color-accent:#D89B2B;
      --color-warning:#B45309;
      --color-bg:#F6F4EE;
      --color-bg-soft:#FAFAF7;
      --color-bg-green:#EEF5F2;
      --color-card:#FFFFFF;
      --color-text:#17211F;
      --color-muted:#63736E;
      --color-border:#DDE5DE;
      --color-border-strong:#C7D7D0;
      --shadow-soft:0 12px 30px rgba(23,33,31,.08);
      --shadow-hover:0 18px 42px rgba(23,33,31,.12);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1220px;
      --header-height:74px;
      --transition:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 12% 12%, rgba(216,155,43,.12), transparent 28%),
        radial-gradient(circle at 90% 6%, rgba(23,107,91,.12), transparent 32%),
        linear-gradient(180deg,#FAFAF7 0%,#F6F4EE 45%,#EEF5F2 100%);
      line-height:1.78;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover{color:var(--color-primary)}
    img,svg{max-width:100%;vertical-align:middle}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(23,107,91,.18);color:var(--color-primary-dark)}
    :focus-visible{
      outline:3px solid rgba(23,107,91,.34);
      outline-offset:3px;
      border-radius:12px;
    }

    .grid-container{
      max-width:var(--container);
      padding-left:24px;
      padding-right:24px;
    }
    .section{
      padding:78px 0;
      position:relative;
    }
    .section.compact{padding:54px 0}
    .section-title{
      margin-bottom:30px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      background:rgba(23,107,91,.09);
      color:var(--color-primary-deep);
      border:1px solid rgba(23,107,91,.16);
      font-size:14px;
      font-weight:700;
      line-height:1.3;
    }
    .eyebrow .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--color-accent);
      box-shadow:0 0 0 5px rgba(216,155,43,.18);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(32px,5vw,52px);
      line-height:1.17;
      letter-spacing:-.03em;
      font-weight:800;
      margin:18px 0 18px;
      color:var(--color-text);
    }
    h2{
      font-size:clamp(27px,3.2vw,38px);
      line-height:1.24;
      font-weight:800;
      letter-spacing:-.02em;
      margin-bottom:14px;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    p{color:var(--color-muted);font-size:16px}
    .lead{
      font-size:18px;
      color:#465954;
      max-width:720px;
      line-height:1.9;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(250,250,247,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(221,229,222,.86);
    }
    .header-inner{
      max-width:var(--container);
      min-height:var(--header-height);
      margin:0 auto;
      padding:0 24px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:250px;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--color-primary),#1B8B76);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 24px rgba(23,107,91,.22);
      flex:0 0 auto;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.2;
    }
    .brand-text strong{
      font-size:16px;
      font-weight:800;
      color:var(--color-text);
      white-space:nowrap;
    }
    .brand-text span{
      color:var(--color-muted);
      font-size:12px;
      margin-top:4px;
      white-space:nowrap;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex:1;
      justify-content:center;
    }
    .nav-link{
      padding:10px 13px;
      border-radius:var(--radius-pill);
      font-weight:700;
      color:#41534E;
      font-size:14px;
    }
    .nav-link:hover,.nav-link.active{
      background:rgba(23,107,91,.1);
      color:var(--color-primary);
    }
    .nav-chip{
      display:inline-flex;
      align-items:center;
      padding:8px 11px;
      border-radius:var(--radius-pill);
      background:rgba(216,155,43,.12);
      color:#7A520C;
      font-weight:700;
      font-size:13px;
      border:1px solid rgba(216,155,43,.22);
      white-space:nowrap;
    }
    .header-tools{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-search{
      min-width:220px;
      height:42px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 13px;
      background:#F0F4F1;
      border:1px solid var(--color-border);
      border-radius:var(--radius-pill);
      color:#75847F;
      transition:var(--transition);
    }
    .nav-search:focus-within{
      background:#fff;
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(23,107,91,.12);
    }
    .nav-search input{
      border:0;
      box-shadow:none;
      margin:0;
      padding:0;
      height:38px;
      background:transparent;
      font-size:14px;
      color:var(--color-text);
    }
    .nav-search input:focus{
      border:0;
      box-shadow:none;
      background:transparent;
    }
    .btn{
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      padding:12px 20px;
      font-weight:800;
      font-size:14px;
      border:1px solid transparent;
      line-height:1;
      transition:var(--transition);
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      color:#fff;
      background:var(--color-primary);
      box-shadow:0 12px 24px rgba(23,107,91,.22);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      background:var(--color-primary-deep);
      box-shadow:0 16px 30px rgba(23,107,91,.28);
    }
    .btn-ghost{
      color:var(--color-primary);
      background:#fff;
      border-color:rgba(23,107,91,.22);
    }
    .btn-ghost:hover{
      background:rgba(23,107,91,.08);
      color:var(--color-primary-deep);
    }
    .btn-warning{
      background:rgba(216,155,43,.14);
      color:#6B4708;
      border-color:rgba(216,155,43,.24);
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--color-border);
      border-radius:14px;
      background:#fff;
      align-items:center;
      justify-content:center;
    }
    .menu-toggle span,.menu-toggle span:before,.menu-toggle span:after{
      display:block;
      width:18px;
      height:2px;
      border-radius:2px;
      background:var(--color-primary-dark);
      position:relative;
      transition:var(--transition);
    }
    .menu-toggle span:before,.menu-toggle span:after{
      content:"";
      position:absolute;
      left:0;
    }
    .menu-toggle span:before{top:-6px}
    .menu-toggle span:after{top:6px}
    .menu-toggle.is-open span{background:transparent}
    .menu-toggle.is-open span:before{top:0;transform:rotate(45deg)}
    .menu-toggle.is-open span:after{top:0;transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      border-top:1px solid var(--color-border);
      background:rgba(250,250,247,.98);
    }
    .mobile-panel.is-open{display:block}
    .mobile-panel-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:18px 24px 22px;
      display:grid;
      gap:12px;
    }
    .mobile-links{
      display:grid;
      gap:8px;
    }
    .mobile-links .nav-link{
      padding:13px 14px;
      background:#fff;
      border:1px solid var(--color-border);
    }
    .mobile-actions{
      display:grid;
      gap:10px;
      margin-top:4px;
    }

    .hero{
      padding:76px 0 54px;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(23,107,91,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,107,91,.06) 1px, transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.75), transparent 88%);
      pointer-events:none;
    }
    .hero-card{
      position:relative;
      border-radius:34px;
      background:linear-gradient(135deg,rgba(255,255,255,.88),rgba(238,245,242,.92));
      border:1px solid rgba(221,229,222,.92);
      box-shadow:var(--shadow-soft);
      padding:42px;
      overflow:hidden;
    }
    .hero-card:after{
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      right:-80px;
      top:-90px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(216,155,43,.18),transparent 68%);
      pointer-events:none;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .hero-note{
      margin-top:18px;
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#516560;
      font-size:14px;
      max-width:650px;
    }
    .hero-note svg{color:var(--color-accent);flex:0 0 auto;margin-top:4px}
    .console{
      position:relative;
      background:#102B25;
      color:#fff;
      border-radius:28px;
      padding:22px;
      box-shadow:0 24px 46px rgba(16,43,37,.22);
      border:1px solid rgba(255,255,255,.1);
    }
    .console-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:18px;
      gap:12px;
    }
    .console-title{
      color:#fff;
      font-weight:800;
      margin:0;
    }
    .status-pill{
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:rgba(216,155,43,.18);
      color:#FFE1A3;
      font-size:12px;
      font-weight:800;
      border:1px solid rgba(216,155,43,.28);
    }
    .risk-row{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:18px;
      padding:14px;
      margin-bottom:12px;
    }
    .risk-row-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      color:rgba(255,255,255,.9);
      font-weight:800;
      font-size:14px;
      margin-bottom:9px;
    }
    .meter{
      height:9px;
      border-radius:20px;
      background:rgba(255,255,255,.12);
      overflow:hidden;
    }
    .meter span{
      display:block;
      height:100%;
      border-radius:20px;
      background:linear-gradient(90deg,var(--color-accent),#F5C56C);
    }
    .console-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .mini-tile{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:18px;
      padding:14px;
    }
    .mini-tile strong{
      display:block;
      color:#fff;
      font-size:20px;
      line-height:1.2;
    }
    .mini-tile span{
      color:rgba(255,255,255,.66);
      font-size:13px;
    }
    .control-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .control-list li{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--color-border);
      color:#41534E;
      font-weight:700;
    }
    .control-list .tag{
      font-size:12px;
      color:var(--color-primary);
      background:rgba(23,107,91,.09);
      padding:5px 9px;
      border-radius:var(--radius-pill);
      white-space:nowrap;
    }

    .card{
      background:var(--color-card);
      border:1px solid var(--color-border);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-soft);
      padding:28px;
      transition:var(--transition);
      height:100%;
    }
    .card:hover{
      border-color:rgba(23,107,91,.42);
      box-shadow:var(--shadow-hover);
      transform:translateY(-2px);
    }
    .card-icon{
      width:50px;
      height:50px;
      border-radius:18px;
      background:rgba(23,107,91,.1);
      color:var(--color-primary);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:18px;
    }
    .feature-card{
      position:relative;
      overflow:hidden;
      min-height:250px;
    }
    .feature-card:after{
      content:"";
      position:absolute;
      width:130px;
      height:130px;
      right:-48px;
      bottom:-46px;
      border-radius:50%;
      background:rgba(23,107,91,.06);
    }
    .feature-list{
      margin:16px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .feature-list li{
      display:flex;
      gap:9px;
      align-items:flex-start;
      color:#516560;
      font-size:15px;
    }
    .feature-list li:before{
      content:"";
      width:7px;
      height:7px;
      margin-top:10px;
      border-radius:50%;
      background:var(--color-accent);
      flex:0 0 auto;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      border-radius:var(--radius-pill);
      padding:6px 10px;
      background:rgba(23,107,91,.09);
      color:var(--color-primary);
      border:1px solid rgba(23,107,91,.16);
      font-size:13px;
      font-weight:800;
    }
    .badge.warning{
      background:rgba(216,155,43,.14);
      color:#76500C;
      border-color:rgba(216,155,43,.24);
    }

    .process-wrap{
      background:#fff;
      border:1px solid var(--color-border);
      border-radius:32px;
      box-shadow:var(--shadow-soft);
      padding:30px;
    }
    .process-line{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
      position:relative;
    }
    .process-step{
      position:relative;
      padding:22px 18px;
      border-radius:22px;
      background:linear-gradient(180deg,#FAFAF7,#F0F6F3);
      border:1px solid var(--color-border);
      min-height:170px;
    }
    .process-step .num{
      width:36px;
      height:36px;
      border-radius:14px;
      background:var(--color-primary);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      margin-bottom:14px;
      box-shadow:0 10px 18px rgba(23,107,91,.18);
    }
    .process-step h3{font-size:18px}
    .process-step p{font-size:14px;margin-bottom:0;line-height:1.65}

    .panel-section{
      background:linear-gradient(135deg,#0F332B,#102B25);
      color:#fff;
      border-radius:34px;
      padding:38px;
      overflow:hidden;
      position:relative;
    }
    .panel-section:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.06) 1px, transparent 1px);
      background-size:30px 30px;
      opacity:.65;
    }
    .panel-section > *{position:relative}
    .panel-section h2,.panel-section h3{color:#fff}
    .panel-section p{color:rgba(255,255,255,.72)}
    .audit-table{
      display:grid;
      gap:12px;
    }
    .audit-item{
      display:grid;
      grid-template-columns:1.1fr .8fr .9fr .8fr;
      gap:12px;
      align-items:center;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.82);
      font-size:14px;
    }
    .audit-item.header{
      background:rgba(255,255,255,.13);
      color:#fff;
      font-weight:900;
    }
    .state{
      display:inline-flex;
      justify-content:center;
      padding:6px 9px;
      border-radius:var(--radius-pill);
      font-size:12px;
      font-weight:800;
      background:rgba(216,155,43,.18);
      color:#FFE1A3;
      border:1px solid rgba(216,155,43,.24);
    }
    .state.green{
      background:rgba(93,208,178,.16);
      color:#BDF4E4;
      border-color:rgba(93,208,178,.22);
    }

    .metrics{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .metric-card{
      padding:26px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
    }
    .metric-card strong{
      display:block;
      font-size:34px;
      line-height:1.1;
      color:var(--color-primary);
      font-weight:900;
      margin-bottom:8px;
    }
    .metric-card p{font-size:15px;margin:0}

    .consult-card{
      border-radius:32px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
      padding:34px;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .field.full{grid-column:1/-1}
    label{
      display:block;
      color:#31443F;
      font-weight:800;
      margin-bottom:8px;
      font-size:14px;
    }
    input[type="text"],input[type="email"],input[type="tel"],select,textarea{
      width:100%;
      border:1px solid var(--color-border);
      border-radius:16px;
      background:#FAFAF7;
      min-height:48px;
      padding:12px 14px;
      box-shadow:none;
      color:var(--color-text);
      transition:var(--transition);
      margin:0;
    }
    textarea{min-height:118px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      background:#fff;
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(23,107,91,.12);
      outline:0;
    }
    .hint{
      color:#7A520C;
      background:rgba(216,155,43,.12);
      border:1px solid rgba(216,155,43,.22);
      border-radius:16px;
      padding:12px 14px;
      font-size:14px;
      margin:16px 0 0;
    }

    .accordion{
      background:transparent;
    }
    .accordion-item{
      border:1px solid var(--color-border);
      border-radius:20px;
      background:#fff;
      margin-bottom:12px;
      overflow:hidden;
      box-shadow:0 8px 20px rgba(23,33,31,.05);
      transition:var(--transition);
    }
    .accordion-item.is-active{
      border-color:rgba(23,107,91,.44);
      background:#F6FBF8;
    }
    .accordion-title{
      border:0!important;
      color:var(--color-text)!important;
      font-size:17px;
      font-weight:800;
      padding:20px 56px 20px 22px;
      line-height:1.5;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(23,107,91,.06);
      color:var(--color-primary)!important;
    }
    .accordion-title:before{
      right:22px;
      margin-top:-9px;
      color:var(--color-primary);
      font-size:22px;
    }
    .accordion-content{
      border:0!important;
      background:transparent;
      padding:0 22px 22px;
      color:var(--color-muted);
      line-height:1.85;
    }

    .cta-banner{
      border-radius:34px;
      background:
        linear-gradient(135deg,rgba(16,43,37,.96),rgba(23,107,91,.94)),
        var(--color-primary-dark);
      color:#fff;
      padding:42px;
      position:relative;
      overflow:hidden;
      box-shadow:0 24px 50px rgba(16,43,37,.22);
    }
    .cta-banner:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.08) 1px, transparent 1px);
      background-size:32px 32px;
      opacity:.55;
    }
    .cta-banner > *{position:relative}
    .cta-banner h2{color:#fff;margin-bottom:12px}
    .cta-banner p{color:rgba(255,255,255,.74);margin-bottom:0}
    .cta-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:12px;
      flex-wrap:wrap;
      height:100%;
    }
    .cta-banner .btn-ghost{
      background:rgba(255,255,255,.1);
      border-color:rgba(255,255,255,.28);
      color:#fff;
    }
    .cta-banner .btn-ghost:hover{
      background:rgba(255,255,255,.16);
      color:#fff;
    }
    .cta-banner .btn-primary{
      background:#fff;
      color:var(--color-primary-dark);
      box-shadow:none;
    }
    .cta-banner .btn-primary:hover{
      background:#F6E7C7;
      color:var(--color-primary-dark);
    }

    .footer{
      background:#102B25;
      color:rgba(255,255,255,.72);
      padding:56px 0 28px;
      margin-top:70px;
    }
    .footer-inner{
      max-width:var(--container);
      margin:0 auto;
      padding:0 24px;
    }
    .footer-top{
      display:grid;
      grid-template-columns:1.5fr .8fr .8fr;
      gap:36px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      display:flex;
      gap:14px;
      align-items:flex-start;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin:0 0 12px;
      font-size:17px;
    }
    .footer-text{
      color:rgba(255,255,255,.7);
      max-width:520px;
      margin:0;
      font-size:15px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.72);
      font-size:15px;
    }
    .footer-links a:hover{
      color:#A8F0DC;
      transform:translateX(2px);
    }
    .footer-note{
      padding-top:22px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      color:rgba(255,255,255,.58);
      font-size:13px;
      flex-wrap:wrap;
    }

    @media screen and (max-width:1120px){
      .desktop-nav{display:none}
      .menu-toggle{display:inline-flex}
      .brand{min-width:auto}
      .brand-text strong{max-width:250px;overflow:hidden;text-overflow:ellipsis}
      .header-tools .btn-ghost{display:none}
      .process-line{grid-template-columns:repeat(3,1fr)}
      .audit-item{grid-template-columns:1fr 1fr}
    }
    @media screen and (max-width:768px){
      .grid-container{padding-left:18px;padding-right:18px}
      .section{padding:58px 0}
      .hero{padding:42px 0 32px}
      .hero-card{padding:28px;border-radius:28px}
      .brand-text span{display:none}
      .brand-text strong{font-size:14px;max-width:190px}
      .header-inner{padding:0 16px;gap:10px}
      .header-tools .btn-primary{padding:12px 14px}
      .nav-search{min-width:100%;border-radius:18px}
      .console{margin-top:26px}
      .process-line{grid-template-columns:1fr}
      .metrics{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .panel-section,.consult-card,.cta-banner{padding:28px;border-radius:28px}
      .cta-actions{justify-content:flex-start;margin-top:22px}
      .cta-actions .btn,.hero-actions .btn{width:100%}
      .footer-top{grid-template-columns:1fr;gap:26px}
      .footer-note{display:grid}
    }
    @media screen and (max-width:520px){
      body{font-size:15px}
      .lead{font-size:16px}
      .header-tools{gap:6px}
      .header-tools .btn-primary{display:none}
      .hero-card{padding:22px}
      .console-grid{grid-template-columns:1fr}
      .audit-item,.audit-item.header{grid-template-columns:1fr;gap:8px}
      .card,.metric-card{padding:22px;border-radius:22px}
      .footer{margin-top:44px}
    }
