/* roulang page: index */
:root{
      --bg:#FFF8F1;
      --bg-soft:#FFFDF8;
      --sand:#F7F3EA;
      --primary:#E86F61;
      --primary-hover:#D85C4E;
      --sage:#7DAE8B;
      --apricot:#F2C98B;
      --text:#2E2A27;
      --muted:#6F6760;
      --border:#EBDCCB;
      --card:#FFFFFF;
      --card-warm:#FFFDF9;
      --shadow:0 16px 40px rgba(130,94,64,.10);
      --shadow-hover:0 22px 54px rgba(130,94,64,.16);
      --radius:28px;
      --radius-lg:34px;
      --ring:0 0 0 4px rgba(232,111,97,.18);
    }
    *{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(--text);
      background:
        radial-gradient(circle at 10% 8%, rgba(242,201,139,.36), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(125,174,139,.18), transparent 30%),
        linear-gradient(180deg,var(--bg) 0%, var(--bg-soft) 48%, var(--sand) 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    button,input,textarea,select{font:inherit}
    img,svg{max-width:100%;display:block}
    ::selection{background:rgba(232,111,97,.22)}
    .site-container{width:min(1280px, calc(100% - 32px));margin-inline:auto}
    .map-texture{
      position:relative;
      overflow:hidden;
    }
    .map-texture:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        radial-gradient(circle, rgba(232,111,97,.12) 1px, transparent 1.5px),
        linear-gradient(120deg, rgba(125,174,139,.10) 1px, transparent 1px);
      background-size:22px 22px, 72px 72px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.22));
      pointer-events:none;
    }
    .nav-wrap{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,248,241,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(235,220,203,.78);
    }
    .nav-inner{
      min-height:82px;
      display:grid;
      grid-template-columns:auto minmax(280px,1fr) auto;
      gap:18px;
      align-items:center;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:850;
      letter-spacing:-.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:16px;
      background:linear-gradient(135deg,var(--primary),#F3B19E);
      box-shadow:0 12px 28px rgba(232,111,97,.28);
      display:grid;place-items:center;color:white;font-weight:900;
    }
    .searchbar{
      height:52px;
      border:1px solid var(--border);
      background:white;
      border-radius:999px;
      display:flex;
      align-items:center;
      padding:0 8px 0 18px;
      box-shadow:0 10px 30px rgba(130,94,64,.08);
      transition:.25s ease;
    }
    .searchbar:focus-within{box-shadow:var(--ring), var(--shadow);border-color:rgba(232,111,97,.55)}
    .searchbar input{
      flex:1;border:0;outline:0;background:transparent;color:var(--text);
      min-width:0;
    }
    .searchbar input::placeholder{color:#9a8e84}
    .nav-links{display:flex;align-items:center;gap:8px}
    .nav-link{
      display:inline-flex;align-items:center;justify-content:center;
      min-height:40px;padding:0 14px;border-radius:999px;
      color:var(--muted);font-size:14px;font-weight:750;
      border:1px solid transparent;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-link:hover,.nav-link.active{
      color:var(--primary-hover);
      background:rgba(232,111,97,.10);
      border-color:rgba(232,111,97,.22);
    }
    .mobile-toggle{
      display:none;
      width:42px;height:42px;border-radius:14px;border:1px solid var(--border);
      background:white;color:var(--text);
      align-items:center;justify-content:center;
      box-shadow:0 10px 22px rgba(130,94,64,.07);
    }
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      border-radius:999px;
      padding:13px 20px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
      cursor:pointer;
      min-height:48px;
    }
    .btn-primary{background:var(--primary);color:white;box-shadow:0 14px 30px rgba(232,111,97,.28)}
    .btn-primary:hover{background:var(--primary-hover);transform:translateY(-2px);box-shadow:0 18px 38px rgba(216,92,78,.34)}
    .btn-secondary{background:white;color:#675144;border-color:var(--border)}
    .btn-secondary:hover{background:#FFF0EA;border-color:rgba(232,111,97,.3);transform:translateY(-2px)}
    .btn-sage{background:rgba(125,174,139,.13);color:#486E55;border-color:rgba(125,174,139,.28)}
    .btn-sage:hover{background:rgba(125,174,139,.22);transform:translateY(-2px)}
    .badge{
      display:inline-flex;align-items:center;gap:7px;
      padding:7px 11px;border-radius:999px;
      background:rgba(255,255,255,.74);
      border:1px solid var(--border);
      color:var(--muted);
      font-size:13px;font-weight:800;
    }
    .section{padding:82px 0;position:relative}
    .section-title{font-size:clamp(26px,3.4vw,42px);line-height:1.18;font-weight:850;letter-spacing:-.04em;color:var(--text)}
    .section-desc{max-width:760px;color:var(--muted);font-size:16px;margin-top:14px}
    .card{
      background:rgba(255,255,255,.86);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:.25s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{box-shadow:var(--shadow-hover);transform:translateY(-3px);border-color:rgba(232,111,97,.30)}
    .hero{
      padding:74px 0 64px;
    }
    .hero-shell{
      position:relative;
      border:1px solid var(--border);
      border-radius:38px;
      background:linear-gradient(135deg,rgba(255,255,255,.82),rgba(255,250,244,.92));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      padding:42px;
      z-index:1;
    }
    .hero h1{
      font-size:clamp(34px,5vw,62px);
      line-height:1.1;
      font-weight:900;
      letter-spacing:-.055em;
      margin:18px 0 18px;
    }
    .hero p.lead{
      font-size:17px;color:var(--muted);max-width:680px;margin:0 0 24px;
    }
    .trust-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
    .progress-ring{
      width:150px;height:150px;border-radius:50%;
      background:conic-gradient(var(--primary) 0 72%, rgba(235,220,203,.75) 72% 100%);
      display:grid;place-items:center;
      box-shadow:0 18px 42px rgba(232,111,97,.18);
      margin-inline:auto;
    }
    .progress-ring-inner{
      width:112px;height:112px;border-radius:50%;background:white;display:grid;place-items:center;text-align:center;
      border:1px solid var(--border);
    }
    .map-panel{
      min-height:430px;
      padding:22px;
      background:
        radial-gradient(circle at 78% 20%, rgba(125,174,139,.16), transparent 28%),
        linear-gradient(180deg,#FFFDF9,#FFF7EF);
    }
    .route-stage{
      position:relative;
      min-height:260px;
      border-radius:24px;
      background:
        linear-gradient(90deg, rgba(232,111,97,.08) 1px, transparent 1px),
        linear-gradient(rgba(125,174,139,.08) 1px, transparent 1px);
      background-size:38px 38px;
      border:1px dashed rgba(130,94,64,.16);
      overflow:hidden;
    }
    .route-stage:after{
      content:"";
      position:absolute;inset:26px 35px;
      border:2px dashed rgba(232,111,97,.28);
      border-left-color:rgba(125,174,139,.32);
      border-radius:46% 38% 44% 34%;
      transform:rotate(-7deg);
    }
    .node{
      position:absolute;
      z-index:2;
      background:white;
      border:1px solid var(--border);
      border-radius:18px;
      padding:10px 12px;
      box-shadow:0 12px 28px rgba(130,94,64,.12);
      font-weight:850;
      font-size:13px;
      color:var(--text);
    }
    .node span{color:var(--primary);margin-right:4px}
    .node-1{left:8%;top:18%}.node-2{right:10%;top:16%}.node-3{left:18%;bottom:17%}.node-4{right:18%;bottom:24%}.node-5{left:43%;top:43%}
    .tier-preview{
      display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:16px;
    }
    .tier-mini{
      padding:13px;border-radius:18px;background:white;border:1px solid var(--border);
    }
    .tier-mini strong{display:block;font-size:14px}
    .tier-mini small{color:var(--muted);font-weight:700}
    .route-line{
      position:relative;
    }
    .route-line:before{
      content:"";
      position:absolute;
      left:9%;right:9%;top:51px;
      border-top:2px dashed rgba(232,111,97,.34);
      z-index:0;
    }
    .step-node{position:relative;z-index:1}
    .step-num{
      width:64px;height:64px;border-radius:22px;
      background:linear-gradient(135deg,var(--primary),#F2A08C);
      color:white;display:grid;place-items:center;
      font-weight:900;font-size:20px;
      box-shadow:0 14px 28px rgba(232,111,97,.24);
    }
    .package-card.recommended{
      border-color:rgba(232,111,97,.45);
      background:linear-gradient(180deg,#fff,#fff7f1);
    }
    .corner{
      position:absolute;right:18px;top:18px;
      background:var(--primary);color:white;font-size:12px;font-weight:900;
      padding:5px 10px;border-radius:999px;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border:1px solid var(--border);
      border-radius:24px;
      background:white;
      box-shadow:var(--shadow);
    }
    .compare-table th,.compare-table td{
      padding:16px;
      text-align:left;
      border-bottom:1px solid var(--border);
      color:var(--muted);
      vertical-align:top;
    }
    .compare-table th{background:#FFF6ED;color:var(--text);font-weight:850}
    .compare-table tr:last-child td{border-bottom:0}
    .entry-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr 1fr;
      gap:16px;
    }
    .entry-card{
      min-height:164px;
      padding:22px;
      border-radius:28px;
      background:white;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      transition:.25s ease;
    }
    .entry-card:hover{transform:translateY(-3px);border-color:rgba(125,174,139,.42);box-shadow:var(--shadow-hover)}
    .entry-card.large{grid-row:span 2;background:linear-gradient(145deg,#FFFFFF,#FFF1E9)}
    .input-field{
      width:100%;
      min-height:52px;
      border:1px solid var(--border);
      background:#FFFDF9;
      border-radius:18px;
      padding:12px 15px;
      outline:0;
      transition:.2s ease;
      color:var(--text);
    }
    .input-field:focus{border-color:rgba(232,111,97,.58);box-shadow:var(--ring);background:white}
    textarea.input-field{min-height:118px;resize:vertical}
    .news-list a{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:17px 0;
      border-bottom:1px dashed rgba(235,220,203,.9);
      transition:.2s ease;
    }
    .news-list a:hover{color:var(--primary-hover);padding-left:6px}
    .news-index{
      width:34px;height:34px;border-radius:13px;background:#FFF0EA;color:var(--primary-hover);
      display:grid;place-items:center;font-weight:900;font-size:13px;
    }
    details.faq-item{
      border:1px solid var(--border);
      border-radius:24px;
      background:white;
      padding:0;
      box-shadow:0 12px 28px rgba(130,94,64,.07);
      overflow:hidden;
    }
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:20px 22px;
      font-weight:850;
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item summary:after{
      content:"+";
      width:28px;height:28px;border-radius:50%;
      display:grid;place-items:center;
      background:#FFF0EA;color:var(--primary);font-weight:900;flex:none;
    }
    details.faq-item[open] summary:after{content:"−";background:var(--primary);color:white}
    details.faq-item p{padding:0 22px 20px;color:var(--muted);margin:0}
    .footer{
      background:#F5EBDD;
      border-top:1px solid var(--border);
      padding:50px 0 26px;
      position:relative;
      overflow:hidden;
    }
    .footer:before{
      content:"";
      position:absolute;inset:0;
      background-image:radial-gradient(circle, rgba(130,94,64,.10) 1px, transparent 1.6px);
      background-size:24px 24px;
      opacity:.45;
    }
    .footer>*{position:relative}
    .footer-link{color:var(--muted);font-weight:750;transition:.2s ease}
    .footer-link:hover{color:var(--primary-hover)}
    .float-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:45;
      width:min(760px,calc(100% - 28px));
      background:rgba(255,255,255,.92);
      border:1px solid var(--border);
      border-radius:999px;
      box-shadow:0 18px 50px rgba(130,94,64,.18);
      backdrop-filter:blur(14px);
      padding:8px 10px 8px 18px;
      display:flex;align-items:center;justify-content:space-between;gap:12px;
    }
    @media (max-width:1024px){
      .nav-inner{grid-template-columns:1fr auto;gap:12px}
      .searchbar{grid-column:1 / -1;order:3}
      .nav-links{display:none;grid-column:1 / -1;order:4;padding:8px 0 2px}
      .nav-links.open{display:flex}
      .mobile-toggle{display:flex}
      .hero-grid{grid-template-columns:1fr;padding:30px}
      .route-line:before{left:32px;right:auto;top:0;bottom:0;border-top:0;border-left:2px dashed rgba(232,111,97,.34)}
      .entry-grid{grid-template-columns:1fr 1fr}
      .entry-card.large{grid-row:auto}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 24px,1280px)}
      .section{padding:58px 0}
      .hero{padding:34px 0 48px}
      .hero-grid{padding:22px;border-radius:28px}
      .hero-shell{border-radius:28px}
      .tier-preview{grid-template-columns:1fr}
      .map-panel{min-height:390px;padding:16px}
      .entry-grid{grid-template-columns:1fr}
      .compare-wrap{overflow-x:auto;padding-bottom:8px}
      .compare-table{min-width:680px}
      .news-list a{grid-template-columns:auto 1fr}
      .news-list a span:last-child{grid-column:2}
      .float-cta{border-radius:24px;align-items:flex-start;flex-direction:column;padding:14px}
    }
    @media (max-width:520px){
      .brand span:last-child{font-size:14px;max-width:190px;white-space:normal;line-height:1.25}
      .searchbar{height:auto;min-height:50px;border-radius:22px;flex-wrap:wrap;padding:10px}
      .searchbar .btn{width:100%;min-height:42px;padding:10px}
      .hero h1{font-size:34px}
      .btn{width:100%}
      .trust-row .badge{width:100%;justify-content:center}
      .progress-ring{width:128px;height:128px}
      .progress-ring-inner{width:96px;height:96px}
      .node{font-size:12px;padding:8px 9px}
      .node-5{left:34%}
    }

/* roulang page: category1 */
:root{
      --bg:#fff8f1;
      --bg-soft:#fffdf8;
      --sand:#f7f3ea;
      --primary:#e86f61;
      --primary-hover:#d85c4e;
      --sage:#7dae8b;
      --apricot:#f2c98b;
      --text:#2e2a27;
      --muted:#6f6760;
      --border:#ebdccb;
      --card:#fffdf9;
      --shadow:0 16px 40px rgba(130,94,64,.10);
      --shadow-lg:0 24px 60px rgba(130,94,64,.15);
      --radius:26px;
      --radius-lg:34px;
    }
    *{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(--text);
      background:
        radial-gradient(circle at 12% 8%,rgba(232,111,97,.14),transparent 28%),
        radial-gradient(circle at 88% 16%,rgba(125,174,139,.15),transparent 30%),
        linear-gradient(180deg,var(--bg),var(--bg-soft) 42%,#fff);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img,svg{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    .site-container{width:min(1180px,calc(100% - 40px));margin-inline:auto}
    .map-texture{position:relative;overflow:hidden}
    .map-texture:before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      opacity:.42;
      background-image:
        radial-gradient(circle,rgba(130,94,64,.16) 1px,transparent 1px),
        linear-gradient(135deg,transparent 0 47%,rgba(232,111,97,.08) 48% 52%,transparent 53% 100%);
      background-size:26px 26px,120px 120px;
      mask-image:linear-gradient(180deg,#000,transparent 90%);
    }
    .header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,248,241,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(235,220,203,.78);
    }
    .header:after{
      content:"";
      display:block;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(232,111,97,.36),rgba(125,174,139,.28),transparent);
    }
    .nav-wrap{display:grid;grid-template-columns:auto minmax(280px,1fr) auto;align-items:center;gap:18px;padding:15px 0}
    .brand{align-items:center;gap:10px;font-weight:900;letter-spacing:-.02em;color:var(--text)}
    .brand-mark{
      width:42px;height:42px;border-radius:16px;
      display:inline-grid;place-items:center;
      color:#fff;background:linear-gradient(135deg,var(--primary),#f09976);
      box-shadow:0 12px 26px rgba(232,111,97,.28);
      font-weight:950;
    }
    .search-shell{
      display:flex;align-items:center;gap:10px;
      background:#fff;border:1px solid rgba(235,220,203,.95);
      border-radius:999px;padding:8px 10px 8px 16px;
      box-shadow:0 10px 28px rgba(130,94,64,.08);
      min-width:0;
    }
    .search-shell svg{width:19px;height:19px;color:var(--sage);flex:0 0 auto}
    .search-shell input{
      border:0;outline:0;background:transparent;width:100%;
      color:var(--text);font-size:14px;min-width:0;
    }
    .search-shell input::placeholder{color:#9a8f86}
    .search-btn{
      border:0;border-radius:999px;background:var(--primary);color:#fff;
      padding:9px 16px;font-weight:800;font-size:13px;
      transition:.22s ease;white-space:nowrap;
      box-shadow:0 10px 22px rgba(232,111,97,.22);
    }
    .search-btn:hover{background:var(--primary-hover);transform:translateY(-1px);box-shadow:0 14px 28px rgba(232,111,97,.28)}
    .nav-links{display:flex;align-items:center;gap:8px;white-space:nowrap}
    .nav-link{
      display:inline-flex;align-items:center;justify-content:center;
      min-height:38px;padding:8px 13px;border-radius:999px;
      font-size:14px;font-weight:800;color:var(--muted);
      transition:.2s ease;border:1px solid transparent;
    }
    .nav-link:hover{background:#fff1e9;color:var(--primary);border-color:rgba(232,111,97,.18)}
    .nav-link.active{background:rgba(232,111,97,.13);color:var(--primary);border-color:rgba(232,111,97,.24)}
    .menu-toggle{
      display:none;border:1px solid var(--border);background:#fff;border-radius:14px;
      width:42px;height:42px;align-items:center;justify-content:center;
      color:var(--text);box-shadow:0 8px 20px rgba(130,94,64,.08)
    }
    .mobile-panel{display:none;padding:0 0 14px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      border-radius:999px;padding:12px 19px;font-weight:900;
      transition:.22s ease;border:1px solid transparent;
      min-height:46px;
    }
    .btn-primary{background:var(--primary);color:#fff;box-shadow:0 14px 28px rgba(232,111,97,.24)}
    .btn-primary:hover{background:var(--primary-hover);transform:translateY(-2px);box-shadow:0 20px 38px rgba(232,111,97,.30)}
    .btn-secondary{background:#fff;color:#6a4d35;border-color:rgba(125,174,139,.34);box-shadow:0 10px 22px rgba(130,94,64,.06)}
    .btn-secondary:hover{background:#fff4e8;border-color:rgba(232,111,97,.30);transform:translateY(-2px)}
    .badge{
      display:inline-flex;align-items:center;gap:6px;
      border-radius:999px;padding:7px 11px;
      font-size:12px;font-weight:900;
      background:#fff;border:1px solid rgba(235,220,203,.92);
      color:#7b6250;
      box-shadow:0 8px 18px rgba(130,94,64,.06);
    }
    .section{padding:78px 0}
    .section-tight{padding:52px 0}
    .hero{
      padding:34px 0 44px;
      border-bottom:1px solid rgba(235,220,203,.72);
    }
    .hero-band{
      position:relative;
      border:1px solid rgba(235,220,203,.9);
      background:linear-gradient(135deg,rgba(255,253,249,.94),rgba(255,244,232,.78));
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-band:after{
      content:"";
      position:absolute;
      right:-80px;top:-90px;
      width:260px;height:260px;border-radius:50%;
      border:36px solid rgba(125,174,139,.12);
    }
    .hero h1{font-size:clamp(32px,5vw,58px);line-height:1.12;font-weight:950;letter-spacing:-.045em}
    .hero-lead{font-size:17px;color:var(--muted);max-width:760px}
    .mini-search{
      display:flex;gap:10px;align-items:center;
      background:#fff;border:1px solid var(--border);border-radius:22px;
      padding:10px;box-shadow:0 12px 26px rgba(130,94,64,.07);
    }
    .mini-search input{flex:1;min-width:0;border:0;outline:0;background:transparent;padding:0 8px;color:var(--text)}
    .filter-card,.content-card,.node-card,.aside-card,.faq-card{
      background:rgba(255,253,249,.92);
      border:1px solid rgba(235,220,203,.92);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .filter-row{display:flex;flex-wrap:wrap;gap:10px}
    .chip{
      display:inline-flex;align-items:center;min-height:40px;
      padding:8px 14px;border-radius:999px;
      background:#fff;border:1px solid rgba(235,220,203,.95);
      color:#745f4d;font-weight:850;font-size:14px;
      transition:.2s ease;
    }
    .chip:hover{background:#fff1e9;color:var(--primary);border-color:rgba(232,111,97,.25);transform:translateY(-1px)}
    .chip.active{background:var(--primary);color:#fff;border-color:var(--primary);box-shadow:0 10px 22px rgba(232,111,97,.20)}
    .area-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr 1fr;
      grid-auto-rows:minmax(150px,auto);
      gap:16px;
    }
    .area-card{
      position:relative;overflow:hidden;
      padding:22px;border-radius:28px;
      border:1px solid rgba(235,220,203,.92);
      background:#fff;
      box-shadow:0 12px 30px rgba(130,94,64,.08);
      transition:.22s ease;
    }
    .area-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:rgba(232,111,97,.28)}
    .area-card.large{grid-row:span 2;background:linear-gradient(135deg,#fff,#fff1e9)}
    .area-card.sage{background:linear-gradient(135deg,#fff,#edf7ee)}
    .area-card.apricot{background:linear-gradient(135deg,#fff,#fff4d8)}
    .coord{
      display:inline-flex;align-items:center;justify-content:center;
      width:34px;height:34px;border-radius:14px;
      background:rgba(232,111,97,.12);color:var(--primary);
      font-weight:950;margin-bottom:14px;
    }
    .route-line{
      height:2px;
      background-image:linear-gradient(90deg,rgba(232,111,97,.45) 50%,transparent 50%);
      background-size:12px 2px;
    }
    .list-card{
      display:grid;grid-template-columns:auto 1fr auto;gap:18px;align-items:start;
      padding:20px;border-radius:24px;border:1px solid rgba(235,220,203,.9);
      background:#fff;box-shadow:0 10px 26px rgba(130,94,64,.07);
      transition:.22s ease;
    }
    .list-card:hover{border-color:rgba(232,111,97,.28);transform:translateY(-2px);box-shadow:0 18px 40px rgba(130,94,64,.11)}
    .node-dot{
      width:42px;height:42px;border-radius:16px;display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(232,111,97,.14),rgba(242,201,139,.22));
      color:var(--primary);font-weight:950;border:1px solid rgba(232,111,97,.16);
    }
    .status{
      display:inline-flex;border-radius:999px;padding:6px 10px;
      background:rgba(125,174,139,.12);color:#4e7d5d;
      font-size:12px;font-weight:900;white-space:nowrap;
    }
    .step-list{counter-reset:step}
    .step-item{
      position:relative;padding:22px 22px 22px 76px;
      background:#fff;border:1px solid rgba(235,220,203,.92);
      border-radius:24px;box-shadow:0 10px 28px rgba(130,94,64,.07);
    }
    .step-item:before{
      counter-increment:step;
      content:"0" counter(step);
      position:absolute;left:20px;top:22px;width:40px;height:40px;
      display:grid;place-items:center;border-radius:15px;
      background:var(--primary);color:#fff;font-weight:950;
      box-shadow:0 10px 22px rgba(232,111,97,.22);
    }
    .aside-card{padding:22px;position:sticky;top:105px}
    .quick-list a{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      padding:12px 0;border-bottom:1px dashed rgba(130,94,64,.18);
      color:var(--muted);font-weight:800;transition:.2s ease;
    }
    .quick-list a:hover{color:var(--primary);padding-left:4px}
    .form-control{
      width:100%;border:1px solid var(--border);background:#fff;border-radius:17px;
      min-height:52px;padding:12px 14px;outline:none;color:var(--text);
      transition:.18s ease;
    }
    textarea.form-control{min-height:112px;resize:vertical}
    .form-control:focus{border-color:rgba(232,111,97,.72);box-shadow:0 0 0 4px rgba(232,111,97,.12)}
    details.faq-card{padding:0;overflow:hidden}
    details.faq-card summary{
      list-style:none;cursor:pointer;padding:20px 22px;
      font-weight:900;display:flex;align-items:center;justify-content:space-between;gap:14px;
    }
    details.faq-card summary::-webkit-details-marker{display:none}
    details.faq-card summary:after{content:"+";width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:#fff1e9;color:var(--primary);font-weight:950}
    details[open].faq-card summary:after{content:"−"}
    details.faq-card p{padding:0 22px 20px;margin:0;color:var(--muted)}
    .cta-panel{
      position:relative;overflow:hidden;border-radius:34px;
      background:linear-gradient(135deg,#fff,#fff0e8 52%,#eef7ef);
      border:1px solid rgba(235,220,203,.92);
      box-shadow:var(--shadow-lg);
    }
    .footer{
      position:relative;background:linear-gradient(180deg,#fff7ed,#f7f3ea);
      padding:58px 0 28px;border-top:1px solid rgba(235,220,203,.85);
      overflow:hidden;
    }
    .footer:before{
      content:"";position:absolute;inset:0;opacity:.24;pointer-events:none;
      background-image:radial-gradient(circle,rgba(130,94,64,.22) 1px,transparent 1px);
      background-size:28px 28px;
    }
    .footer .site-container{position:relative}
    .footer-link{color:var(--muted);font-weight:850;transition:.2s ease}
    .footer-link:hover{color:var(--primary)}
    @media (max-width:1024px){
      .nav-wrap{grid-template-columns:auto 1fr auto}
      .desktop-search{grid-column:1 / -1;grid-row:2}
      .nav-wrap .nav-links{display:none}
      .menu-toggle{display:flex}
      .mobile-panel.open{display:block}
      .mobile-panel .nav-links{display:flex;flex-direction:column;align-items:stretch}
      .mobile-panel .nav-link{justify-content:flex-start}
      .area-grid{grid-template-columns:1fr 1fr}
      .area-card.large{grid-row:auto}
      .aside-card{position:static}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 28px,1180px)}
      .section{padding:58px 0}
      .hero{padding:24px 0 34px}
      .hero-band{border-radius:28px}
      .mini-search{flex-direction:column;align-items:stretch;border-radius:22px}
      .mini-search .btn{width:100%}
      .area-grid{grid-template-columns:1fr}
      .list-card{grid-template-columns:auto 1fr}
      .list-card .status{grid-column:2}
      .filter-scroll{overflow-x:auto;padding-bottom:4px}
      .filter-row{flex-wrap:nowrap;min-width:max-content}
    }
    @media (max-width:520px){
      .brand span:last-child{font-size:14px;max-width:180px;line-height:1.25}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .search-shell{padding:8px}
      .search-btn{padding:9px 12px;font-size:0}
      .search-btn:after{content:"搜索";font-size:13px}
      .hero h1{font-size:34px}
      .btn{width:100%}
      .step-item{padding-left:68px}
    }
