/* roulang page: index */
:root{
      --primary:#4B365F;
      --primary-deep:#382847;
      --secondary:#E9A6B4;
      --accent:#7FB7A6;
      --text:#242128;
      --muted:#746D7C;
      --bg:#F8F3EC;
      --card:#FFFDF9;
      --line:#E7DED6;
      --soft-purple:#F1E8F3;
      --soft-mint:#EEF6F3;
      --soft-rose:#FBEDF0;
      --shadow:0 12px 30px rgba(46,35,55,.08);
      --shadow-hover:0 18px 48px rgba(46,35,55,.13);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1180px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 10%, rgba(233,166,180,.16), transparent 24%),
        radial-gradient(circle at 92% 18%, rgba(127,183,166,.16), transparent 22%),
        radial-gradient(circle at 50% 0%, rgba(75,54,95,.10), transparent 28%),
        linear-gradient(180deg, #FBF7F1 0%, #F7F1EA 40%, #F8F3EC 100%);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Source Han Sans SC",Arial,sans-serif;
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(75,54,95,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75,54,95,.04) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,0));
      opacity:.45;
      z-index:-1;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:color .24s var(--ease), background-color .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), opacity .24s var(--ease);
    }
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    :focus{outline:none}
    :focus-visible{
      outline:3px solid rgba(75,54,95,.28);
      outline-offset:3px;
      border-radius:12px;
    }
    .site-container{
      width:min(var(--container), calc(100% - 2rem));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:16px;
      z-index:80;
      padding:0;
      margin-bottom:10px;
    }
    .nav-shell{
      background:rgba(255,253,249,.82);
      backdrop-filter:blur(16px);
      border:1px solid rgba(75,54,95,.10);
      border-radius:999px;
      box-shadow:0 18px 40px rgba(34,25,43,.08);
      padding:.8rem 1rem;
    }
    .nav-row{
      display:flex;
      align-items:center;
      gap:1rem;
      justify-content:space-between;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:.8rem;
      min-width:0;
      color:var(--text);
    }
    .brand:hover{transform:translateY(-1px)}
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      background:
        linear-gradient(145deg, rgba(75,54,95,1), rgba(127,183,166,.9));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.18), 0 10px 22px rgba(75,54,95,.18);
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:800;
      letter-spacing:.06em;
      flex:0 0 auto;
    }
    .brand-copy{
      display:flex;
      flex-direction:column;
      line-height:1.2;
      min-width:0;
    }
    .brand-copy strong{
      font-size:1rem;
      font-weight:800;
      letter-spacing:.01em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-copy small{
      font-size:.78rem;
      color:var(--muted);
      letter-spacing:.04em;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:.35rem;
      padding:.25rem;
      border-radius:999px;
      background:rgba(255,255,255,.36);
      border:1px solid rgba(75,54,95,.08);
    }
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      min-height:42px;
      padding:.65rem .95rem;
      border-radius:999px;
      color:var(--text);
      font-weight:600;
      font-size:.95rem;
      position:relative;
    }
    .desktop-nav a:hover{
      background:rgba(233,166,180,.16);
      color:var(--primary);
    }
    .desktop-nav a.is-active{
      background:rgba(75,54,95,.10);
      color:var(--primary);
      box-shadow:inset 0 0 0 1px rgba(75,54,95,.10);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:.75rem;
    }
    .nav-toggle{
      display:none;
      align-items:center;
      justify-content:center;
      min-height:44px;
      min-width:44px;
      padding:.75rem 1rem;
      border-radius:999px;
      border:1px solid rgba(75,54,95,.14);
      background:rgba(255,255,255,.8);
      color:var(--primary);
      font-weight:700;
      box-shadow:0 8px 20px rgba(34,25,43,.05);
    }
    .nav-toggle:hover{background:#fff;transform:translateY(-1px)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.45rem;
      min-height:48px;
      padding:.85rem 1.3rem;
      border-radius:999px;
      font-weight:700;
      font-size:.98rem;
      letter-spacing:.01em;
      border:1px solid transparent;
      white-space:nowrap;
      cursor:pointer;
      transition:transform .24s var(--ease), box-shadow .24s var(--ease), background-color .24s var(--ease), border-color .24s var(--ease), color .24s var(--ease);
    }
    .btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover)}
    .btn-primary{
      background:var(--primary);
      color:#fff;
      box-shadow:0 12px 26px rgba(75,54,95,.18);
    }
    .btn-primary:hover{background:var(--primary-deep);color:#fff}
    .btn-secondary{
      background:#fff;
      color:var(--primary);
      border-color:#D8CBDC;
    }
    .btn-secondary:hover{
      background:rgba(241,232,243,.7);
      border-color:rgba(75,54,95,.18);
    }
    .btn-text{
      padding:.7rem .3rem;
      min-height:auto;
      border:none;
      background:transparent;
      color:var(--primary);
      font-weight:700;
      box-shadow:none;
    }
    .btn-text:hover{transform:translateX(2px);box-shadow:none;color:var(--primary-deep)}
    .mobile-panel{
      display:none;
      margin-top:.8rem;
      background:rgba(255,253,249,.94);
      border:1px solid rgba(75,54,95,.10);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:1rem;
    }
    .mobile-panel.is-open{display:block}
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:.45rem;
    }
    .mobile-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:48px;
      border-radius:16px;
      padding:.85rem 1rem;
      color:var(--text);
      font-weight:600;
      background:transparent;
    }
    .mobile-links a:hover,
    .mobile-links a.is-active{
      background:rgba(75,54,95,.08);
      color:var(--primary);
    }
    .mobile-panel .btn{
      width:100%;
      margin-top:.75rem;
    }
    .section{
      padding:96px 0;
      position:relative;
    }
    .section.compact{padding:78px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.4rem .8rem;
      border-radius:999px;
      background:rgba(241,232,243,.95);
      color:var(--primary);
      font-size:.82rem;
      font-weight:700;
      letter-spacing:.06em;
      text-transform:none;
      margin-bottom:1rem;
      border:1px solid rgba(75,54,95,.08);
    }
    .section-head{
      max-width:780px;
      margin-bottom:2rem;
    }
    .section-head h2{
      margin:0;
      color:var(--text);
      font-size:clamp(2rem, 3vw, 2.8rem);
      line-height:1.2;
      letter-spacing:-.02em;
      font-weight:800;
    }
    .section-head p{
      margin:.9rem 0 0;
      color:var(--muted);
      font-size:1.04rem;
    }
    .hero{
      padding-top:34px;
      padding-bottom:86px;
    }
    .hero-grid{
      align-items:center;
      gap:1.5rem;
    }
    .hero-copy-wrap{
      padding:1rem 0 0;
      max-width:620px;
    }
    .hero-title{
      margin:0;
      font-size:clamp(2.2rem, 5vw, 4rem);
      line-height:1.12;
      font-weight:800;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .hero-copy{
      margin:1.1rem 0 0;
      color:var(--muted);
      font-size:1.08rem;
      line-height:1.9;
      max-width:38rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.85rem;
      margin-top:1.6rem;
    }
    .trust-pills{
      display:flex;
      flex-wrap:wrap;
      gap:.65rem;
      margin-top:1.5rem;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:.4rem .8rem;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      color:var(--muted);
      font-size:.86rem;
      font-weight:600;
      box-shadow:0 8px 18px rgba(46,35,55,.04);
    }
    .hero-visual{
      position:relative;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76)),
        radial-gradient(circle at top left, rgba(233,166,180,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(127,183,166,.12), transparent 34%);
      border:1px solid rgba(75,54,95,.12);
      border-radius:36px;
      box-shadow:var(--shadow);
      padding:1.1rem;
      overflow:hidden;
    }
    .hero-visual::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(75,54,95,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(75,54,95,.05) 1px, transparent 1px);
      background-size:34px 34px;
      opacity:.33;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.72), transparent 92%);
      pointer-events:none;
    }
    .visual-top{
      position:relative;
      display:grid;
      grid-template-columns:1.3fr .9fr;
      gap:.85rem;
      z-index:1;
    }
    .search-faux{
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      border-radius:20px;
      padding:1rem 1rem .95rem;
      box-shadow:0 10px 22px rgba(46,35,55,.05);
    }
    .search-faux span{
      display:block;
      color:var(--primary);
      font-weight:700;
      font-size:.95rem;
      margin-bottom:.18rem;
    }
    .search-faux small{
      color:var(--muted);
      font-size:.88rem;
    }
    .visual-stats{
      display:grid;
      grid-template-columns:1fr;
      gap:.7rem;
    }
    .visual-stats span{
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:52px;
      border-radius:18px;
      padding:.72rem .95rem;
      background:rgba(241,232,243,.92);
      border:1px solid rgba(75,54,95,.08);
      font-weight:700;
      color:var(--primary);
    }
    .visual-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:.9rem;
      margin-top:.95rem;
      align-items:stretch;
    }
    .visual-card{
      border-radius:24px;
      padding:1rem;
      border:1px solid rgba(75,54,95,.10);
      background:#fffdfb;
      box-shadow:0 12px 26px rgba(46,35,55,.05);
      min-height:162px;
      position:relative;
      overflow:hidden;
    }
    .visual-card:nth-child(2){
      background:linear-gradient(180deg, #fff, rgba(241,232,243,.68));
    }
    .visual-card:nth-child(3){
      background:linear-gradient(180deg, #fff, rgba(238,246,243,.78));
    }
    .visual-card h3{
      margin:0 0 .45rem;
      font-size:1rem;
      line-height:1.35;
      color:var(--text);
      font-weight:800;
    }
    .visual-card p{
      margin:0;
      color:var(--muted);
      font-size:.88rem;
      line-height:1.7;
    }
    .card-tags{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin-top:.85rem;
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      padding:.28rem .58rem;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(75,54,95,.08);
      color:var(--primary);
      font-size:.76rem;
      font-weight:700;
    }
    .mini-tag.green{background:rgba(238,246,243,.95);color:#35665b}
    .mini-tag.pink{background:rgba(251,237,240,.95);color:#8b4d61}
    .mini-tag.purple{background:rgba(241,232,243,.95);color:#5c4273}
    .floating-chip{
      position:absolute;
      z-index:2;
      right:18px;
      bottom:18px;
      padding:.55rem .85rem;
      border-radius:999px;
      background:rgba(75,54,95,.96);
      color:#fff;
      font-weight:700;
      font-size:.84rem;
      box-shadow:0 12px 24px rgba(75,54,95,.18);
    }
    .floating-chip.chip-a{top:18px;left:18px;right:auto;bottom:auto;background:rgba(127,183,166,.95)}
    .floating-chip.chip-b{top:18px;right:18px;bottom:auto;left:auto;background:rgba(233,166,180,.96)}
    .feature-band{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1rem;
      margin-top:1.5rem;
    }
    .metric-card{
      background:rgba(255,255,255,.9);
      border:1px solid rgba(75,54,95,.10);
      border-radius:22px;
      box-shadow:0 12px 24px rgba(46,35,55,.05);
      padding:1.1rem 1.1rem 1rem;
      position:relative;
      overflow:hidden;
    }
    .metric-card::after{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:100%;
      height:4px;
      background:linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
      opacity:.8;
    }
    .metric-number{
      font-size:2rem;
      line-height:1;
      font-weight:800;
      letter-spacing:-.04em;
      color:var(--primary);
      margin-bottom:.5rem;
    }
    .metric-label{
      font-weight:700;
      color:var(--text);
      margin-bottom:.35rem;
    }
    .metric-desc{
      color:var(--muted);
      font-size:.92rem;
      line-height:1.65;
    }
    .service-layout{
      align-items:stretch;
      margin-top:1rem;
    }
    .intro-panel{
      background:linear-gradient(180deg, rgba(75,54,95,.06), rgba(241,232,243,.46));
      border:1px solid rgba(75,54,95,.10);
      border-radius:28px;
      padding:1.5rem;
      box-shadow:var(--shadow);
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .intro-panel h3{
      margin:0;
      font-size:1.65rem;
      line-height:1.25;
      color:var(--text);
      font-weight:800;
    }
    .intro-panel p{
      margin:1rem 0 0;
      color:var(--muted);
      line-height:1.9;
    }
    .intro-list{
      list-style:none;
      margin:1.2rem 0 0;
      padding:0;
      display:grid;
      gap:.6rem;
    }
    .intro-list li{
      display:flex;
      gap:.65rem;
      align-items:flex-start;
      color:var(--text);
      line-height:1.7;
    }
    .intro-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(127,183,166,.14);
      margin-top:.5rem;
      flex:0 0 auto;
    }
    .service-stack{
      display:grid;
      grid-template-columns:1fr;
      gap:1rem;
    }
    .service-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:1.25rem 1.25rem 1.15rem;
      height:100%;
      position:relative;
      overflow:hidden;
      transition:transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
    }
    .service-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(75,54,95,.16);
    }
    .service-card:nth-child(1){transform:translateX(18px)}
    .service-card:nth-child(2){transform:translateX(-8px)}
    .service-card:nth-child(3){transform:translateX(16px)}
    .service-card .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:46px;
      height:46px;
      border-radius:16px;
      background:rgba(75,54,95,.10);
      color:var(--primary);
      font-weight:800;
      margin-bottom:.9rem;
    }
    .service-card h3{
      margin:0;
      font-size:1.25rem;
      line-height:1.35;
      font-weight:800;
    }
    .service-card p{
      margin:.7rem 0 0;
      color:var(--muted);
      line-height:1.8;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin-top:1rem;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:.25rem .6rem;
      border-radius:999px;
      background:rgba(241,232,243,.95);
      color:var(--primary);
      border:1px solid rgba(75,54,95,.08);
      font-size:.78rem;
      font-weight:700;
    }
    .tag.mint{background:rgba(238,246,243,.95);color:#38665b}
    .tag.rose{background:rgba(251,237,240,.95);color:#8f5365}
    .tag.white{background:#fff;color:var(--primary)}
    .grid-title{
      margin-bottom:1.1rem;
    }
    .timeline-wrap{
      position:relative;
      padding-left:1rem;
    }
    .timeline-wrap::before{
      content:"";
      position:absolute;
      left:34px;
      top:8px;
      bottom:8px;
      width:2px;
      background:linear-gradient(180deg, rgba(75,54,95,.28), rgba(127,183,166,.25));
    }
    .timeline-step{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:1rem;
      align-items:flex-start;
      margin-bottom:1rem;
      position:relative;
    }
    .timeline-index{
      width:44px;
      height:44px;
      border-radius:50%;
      background:#fff;
      border:1px solid rgba(75,54,95,.12);
      display:grid;
      place-items:center;
      color:var(--primary);
      font-weight:800;
      box-shadow:0 10px 18px rgba(46,35,55,.05);
      position:relative;
      z-index:1;
    }
    .timeline-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:24px;
      padding:1rem 1.1rem;
      box-shadow:0 10px 20px rgba(46,35,55,.04);
    }
    .timeline-card h3{
      margin:0 0 .3rem;
      font-size:1.05rem;
      font-weight:800;
      color:var(--text);
    }
    .timeline-card p{
      margin:0;
      color:var(--muted);
    }
    .scenes-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:1rem;
    }
    .scenario-card{
      background:linear-gradient(180deg, #fff, rgba(251,237,240,.28));
      border:1px solid rgba(75,54,95,.10);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:1.2rem;
      min-height:100%;
      transition:transform .24s var(--ease), box-shadow .24s var(--ease);
    }
    .scenario-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover)}
    .scenario-card h3{
      margin:0;
      font-size:1.18rem;
      line-height:1.35;
      font-weight:800;
    }
    .scenario-card .meta{
      margin-top:.8rem;
      display:grid;
      gap:.8rem;
    }
    .scenario-block{
      border-radius:18px;
      background:rgba(255,255,255,.8);
      border:1px solid rgba(75,54,95,.08);
      padding:.9rem 1rem;
    }
    .scenario-block b{
      display:block;
      color:var(--primary);
      margin-bottom:.25rem;
      font-size:.86rem;
      letter-spacing:.02em;
    }
    .scenario-block span{
      color:var(--muted);
      line-height:1.7;
      display:block;
    }
    .index-map{
      margin-top:1rem;
    }
    .map-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:1.25rem;
      height:100%;
      position:relative;
      overflow:hidden;
      transition:transform .24s var(--ease), box-shadow .24s var(--ease);
    }
    .map-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .map-card::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:5px;
      background:linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    }
    .map-card .eyebrow-mini{
      display:inline-flex;
      align-items:center;
      padding:.35rem .7rem;
      border-radius:999px;
      font-size:.78rem;
      font-weight:700;
      letter-spacing:.05em;
      background:rgba(75,54,95,.08);
      color:var(--primary);
      margin-bottom:.85rem;
    }
    .map-card h3{
      margin:0;
      font-size:1.38rem;
      line-height:1.35;
      font-weight:800;
    }
    .map-card p{
      margin:.7rem 0 0;
      color:var(--muted);
      line-height:1.8;
    }
    .map-card .link{
      margin-top:1rem;
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      font-weight:700;
      color:var(--primary);
    }
    .map-card .link:hover{color:var(--primary-deep);transform:translateX(2px)}
    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      border:none;
      background:transparent;
    }
    .accordion-item{
      border:1px solid rgba(75,54,95,.10);
      border-radius:20px;
      overflow:hidden;
      margin-bottom:.9rem;
      background:rgba(255,255,255,.92);
      box-shadow:0 10px 22px rgba(46,35,55,.04);
    }
    .accordion-title{
      font-size:1.02rem;
      line-height:1.5;
      color:var(--text);
      font-weight:700;
      padding:1.05rem 1.15rem;
      background:transparent;
      transition:background-color .24s var(--ease), color .24s var(--ease);
    }
    .accordion-title:hover{background:rgba(241,232,243,.45);color:var(--primary)}
    .accordion-title::before{
      content:"+";
      color:var(--primary);
      font-weight:800;
      top:50%;
      transform:translateY(-50%);
    }
    .is-active>.accordion-title::before{content:"−"}
    .accordion-content{
      padding:0 1.15rem 1.1rem;
      color:var(--muted);
      line-height:1.85;
      border-top:1px solid rgba(75,54,95,.08);
    }
    .contact-grid{
      align-items:stretch;
      gap:1rem;
    }
    .contact-panel,
    .contact-side{
      background:rgba(255,255,255,.92);
      border:1px solid rgba(75,54,95,.10);
      border-radius:30px;
      box-shadow:var(--shadow);
      padding:1.3rem;
      height:100%;
    }
    .contact-form label{
      display:block;
      font-size:.9rem;
      font-weight:700;
      color:var(--text);
      margin:0 0 .45rem;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea{
      width:100%;
      min-height:50px;
      border-radius:14px;
      border:1px solid #E3D8E5;
      background:#fff;
      color:var(--text);
      box-shadow:none;
      padding:.8rem .95rem;
      transition:border-color .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease), background-color .24s var(--ease);
    }
    .contact-form textarea{
      min-height:132px;
      resize:vertical;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder{
      color:#978D9B;
    }
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus{
      border-color:rgba(75,54,95,.48);
      box-shadow:0 0 0 4px rgba(75,54,95,.10);
      background:#fff;
    }
    .form-note{
      margin-top:.9rem;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.8;
    }
    .side-steps{
      display:grid;
      gap:.8rem;
      margin-top:1rem;
    }
    .side-step{
      display:flex;
      gap:.8rem;
      align-items:flex-start;
      padding:1rem;
      border-radius:20px;
      background:linear-gradient(180deg, rgba(241,232,243,.62), rgba(255,255,255,.92));
      border:1px solid rgba(75,54,95,.08);
    }
    .side-step .badge-num{
      flex:0 0 auto;
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(75,54,95,.10);
      color:var(--primary);
      font-weight:800;
    }
    .side-step b{
      display:block;
      margin-bottom:.25rem;
      font-size:1rem;
    }
    .side-step span{
      display:block;
      color:var(--muted);
      line-height:1.75;
    }
    .cta-strip{
      margin-top:1.15rem;
      padding:1.1rem 1.2rem;
      border-radius:22px;
      background:linear-gradient(135deg, rgba(75,54,95,.08), rgba(127,183,166,.10));
      border:1px solid rgba(75,54,95,.10);
      color:var(--primary);
      font-weight:700;
    }
    .footer{
      margin-top:24px;
      background:linear-gradient(180deg, #30233C 0%, #261C31 100%);
      color:#F8F3EC;
      padding:74px 0 40px;
      position:relative;
    }
    .footer::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size:36px 36px;
      opacity:.25;
      pointer-events:none;
    }
    .footer-inner{
      position:relative;
      z-index:1;
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:.85rem;
      margin-bottom:1rem;
    }
    .footer-brand .brand-mark{
      width:48px;
      height:48px;
      border-radius:16px;
      background:linear-gradient(145deg, rgba(233,166,180,1), rgba(127,183,166,.88));
      color:#fff;
    }
    .footer h3{
      margin:0;
      color:#fff;
      font-size:1.05rem;
      font-weight:800;
    }
    .footer p,
    .footer a{
      color:rgba(248,243,236,.86);
    }
    .footer a:hover{color:#fff}
    .footer-cols{
      display:grid;
      grid-template-columns:1.4fr .8fr .9fr;
      gap:1.2rem;
      margin-top:1rem;
    }
    .footer-col h4{
      margin:0 0 .85rem;
      color:#fff;
      font-size:1rem;
      font-weight:800;
    }
    .footer-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:.55rem;
    }
    .footer-list a{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
    }
    .footer-tags{
      display:flex;
      flex-wrap:wrap;
      gap:.5rem;
    }
    .footer .tag{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.09);
      color:#fff;
    }
    .footer-bottom{
      position:relative;
      z-index:1;
      margin-top:2rem;
      padding-top:1.2rem;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(248,243,236,.72);
      font-size:.92rem;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:.8rem;
    }
    .section-decor{
      position:absolute;
      inset:auto auto 20px 18px;
      width:140px;
      height:140px;
      border-radius:40px;
      background:radial-gradient(circle, rgba(233,166,180,.16), rgba(233,166,180,0) 70%);
      pointer-events:none;
    }
    .soft-line{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(75,54,95,.18), transparent);
      margin:1.3rem 0;
    }
    .text-link{
      color:var(--primary);
      font-weight:700;
    }
    .text-link:hover{color:var(--primary-deep)}
    .label-row{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin-top:.8rem;
    }
    .subtle{
      color:var(--muted);
    }
    .dashboard{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:1rem;
      align-items:stretch;
    }
    .dashboard-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:1.2rem;
      min-height:100%;
    }
    .dashboard-card h3{
      margin:0 0 .8rem;
      font-size:1.15rem;
      font-weight:800;
    }
    .bar-list{
      display:grid;
      gap:.85rem;
    }
    .bar-item{
      display:grid;
      grid-template-columns:140px 1fr 48px;
      gap:.8rem;
      align-items:center;
      font-size:.93rem;
    }
    .bar-track{
      height:10px;
      border-radius:999px;
      background:#EFE7EB;
      overflow:hidden;
    }
    .bar-fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    }
    .bar-value{
      text-align:right;
      color:var(--primary);
      font-weight:700;
    }
    .report-box{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:.8rem;
      height:100%;
    }
    .report-mini{
      border-radius:20px;
      background:linear-gradient(180deg, rgba(241,232,243,.76), rgba(255,255,255,.96));
      border:1px solid rgba(75,54,95,.08);
      padding:1rem;
    }
    .report-mini b{
      display:block;
      font-size:1.6rem;
      line-height:1;
      color:var(--primary);
      margin-bottom:.4rem;
    }
    .report-mini span{
      color:var(--muted);
      line-height:1.6;
      font-size:.92rem;
    }
    .map-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1rem;
      margin-top:1.2rem;
    }
    .map-card:nth-child(1){background:linear-gradient(180deg, #fff, rgba(241,232,243,.58))}
    .map-card:nth-child(2){background:linear-gradient(180deg, #fff, rgba(238,246,243,.60))}
    .map-card:nth-child(3){background:linear-gradient(180deg, #fff, rgba(251,237,240,.55))}
    .small-note{
      font-size:.88rem;
      color:var(--muted);
      margin-top:.7rem;
    }
    .content-inline{
      display:flex;
      flex-wrap:wrap;
      gap:.5rem;
      margin-top:1rem;
    }
    .content-inline .pill{
      background:rgba(255,255,255,.9);
    }
    .centered{ text-align:center; }
    .max-760{ max-width:760px; }
    .mt-0{margin-top:0}
    .mb-0{margin-bottom:0}
    @media (max-width: 1023px){
      .desktop-nav,
      .nav-actions .nav-cta{display:none}
      .nav-toggle{display:inline-flex}
      .nav-row{gap:.65rem}
      .hero{padding-top:22px}
      .feature-band{grid-template-columns:repeat(2,1fr)}
      .scenes-grid,
      .dashboard,
      .footer-cols,
      .map-grid{grid-template-columns:1fr}
      .visual-top,
      .visual-grid{grid-template-columns:1fr}
      .service-card:nth-child(1),
      .service-card:nth-child(2),
      .service-card:nth-child(3){transform:none}
      .hero-title{font-size:clamp(2rem, 8vw, 3.3rem)}
      .timeline-wrap{padding-left:0}
      .timeline-wrap::before{left:22px}
      .bar-item{grid-template-columns:1fr}
      .bar-value{text-align:left}
    }
    @media (max-width: 639px){
      .site-header{top:10px}
      .nav-shell{border-radius:28px;padding:.75rem .85rem}
      .brand-mark{width:40px;height:40px;border-radius:14px}
      .brand-copy strong{font-size:.96rem}
      .brand-copy small{font-size:.74rem}
      .section{padding:68px 0}
      .section.compact{padding:60px 0}
      .hero{padding-top:16px;padding-bottom:64px}
      .hero-copy{font-size:1rem}
      .hero-actions .btn,
      .mobile-panel .btn{width:100%}
      .feature-band{grid-template-columns:1fr}
      .grid-title h2,
      .section-head h2{font-size:clamp(1.65rem, 8vw, 2.2rem)}
      .intro-panel,
      .service-card,
      .scenario-card,
      .map-card,
      .contact-panel,
      .contact-side{border-radius:24px}
      .accordion-title{padding:1rem}
      .accordion-content{padding:0 1rem 1rem}
      .footer{padding:60px 0 32px}
      .footer-bottom{font-size:.85rem}
    }

/* roulang page: category1 */
:root{
      --primary:#4B365F;
      --primary-dark:#382847;
      --secondary:#E9A6B4;
      --accent:#7FB7A6;
      --text:#242128;
      --muted:#746D7C;
      --bg:#F8F3EC;
      --card:#FFFDF9;
      --white:#FFFFFF;
      --border:#E7DED6;
      --soft-purple:#F1E8F3;
      --soft-green:#EEF6F3;
      --soft-pink:#FBEDF0;
      --shadow:0 12px 30px rgba(46,35,55,.08);
      --shadow-hover:0 18px 48px rgba(46,35,55,.13);
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --container:1180px;
      --ease:all .24s ease;
    }

    *{box-sizing:border-box;}
    html{scroll-behavior:smooth;}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Source Han Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 12%, rgba(233,166,180,.24), transparent 30%),
        radial-gradient(circle at 88% 4%, rgba(127,183,166,.20), transparent 26%),
        linear-gradient(180deg,#FDF8F1 0%,var(--bg) 48%,#FFFDF9 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease);}
    a:hover{color:var(--primary);}
    img{max-width:100%;height:auto;display:block;}
    button,input,textarea,select{font-family:inherit;}
    button{cursor:pointer;}
    ::selection{background:rgba(233,166,180,.45);color:var(--primary-dark);}
    :focus-visible{
      outline:3px solid rgba(127,183,166,.55);
      outline-offset:3px;
      border-radius:12px;
    }

    .site-container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:96px 0;
      position:relative;
    }
    .section-sm{padding:72px 0;}
    .section-title{
      max-width:760px;
      margin:0 0 36px;
    }
    .section-title.center{
      margin-left:auto;
      margin-right:auto;
      text-align:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(241,232,243,.88);
      border:1px solid rgba(75,54,95,.10);
      color:var(--primary);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(127,183,166,.14);
    }
    h1,h2,h3,h4,p{margin-top:0;}
    h1{
      font-size:clamp(34px,5vw,56px);
      line-height:1.12;
      font-weight:800;
      letter-spacing:-.04em;
      color:var(--text);
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(30px,3.6vw,40px);
      line-height:1.25;
      font-weight:800;
      letter-spacing:-.03em;
      margin-bottom:16px;
    }
    h3{
      font-size:24px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:12px;
    }
    h4{
      font-size:17px;
      line-height:1.45;
      font-weight:800;
      margin-bottom:10px;
    }
    p{
      color:var(--muted);
      font-size:16px;
    }
    .lead{
      font-size:18px;
      line-height:1.85;
      max-width:720px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.45rem;
      border-radius:999px;
      padding:14px 24px;
      min-height:48px;
      font-size:15px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      line-height:1;
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--primary);
      color:#fff;
      box-shadow:0 12px 28px rgba(75,54,95,.20);
    }
    .btn-primary:hover,
    .btn-primary:focus{
      background:var(--primary-dark);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(75,54,95,.26);
    }
    .btn-secondary{
      background:rgba(255,255,255,.72);
      border-color:#D8CBDC;
      color:var(--primary);
    }
    .btn-secondary:hover,
    .btn-secondary:focus{
      background:var(--soft-purple);
      color:var(--primary-dark);
      transform:translateY(-2px);
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--primary);
      font-weight:800;
    }
    .text-link span{transition:transform .2s ease;}
    .text-link:hover span{transform:translateX(4px);}

    .tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      padding:7px 11px;
      background:var(--soft-purple);
      color:var(--primary);
      font-size:13px;
      font-weight:700;
      line-height:1;
      border:1px solid rgba(75,54,95,.08);
    }
    .tag.green{background:var(--soft-green);color:#437C6C;}
    .tag.pink{background:var(--soft-pink);color:#A35468;}
    .tag.dark{background:rgba(75,54,95,.10);color:var(--primary-dark);}

    .card{
      background:rgba(255,253,249,.88);
      border:1px solid rgba(75,54,95,.12);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      transition:var(--ease);
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(75,54,95,.20);
    }

    .site-header{
      position:sticky;
      top:18px;
      z-index:100;
      padding:0;
      pointer-events:none;
    }
    .site-header .site-container{pointer-events:auto;}
    .nav-shell{
      width:100%;
      border-radius:999px;
      background:rgba(255,253,249,.88);
      border:1px solid rgba(75,54,95,.12);
      box-shadow:0 14px 36px rgba(46,35,55,.10);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      padding:10px 14px;
    }
    .nav-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      color:var(--text);
    }
    .brand:hover{color:var(--text);}
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:
        linear-gradient(135deg,var(--primary) 0%,#6B4E7D 52%,var(--secondary) 100%);
      color:#fff;
      font-weight:900;
      box-shadow:0 10px 22px rgba(75,54,95,.22);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:8px;
      border:1px solid rgba(255,255,255,.38);
      border-radius:11px;
    }
    .brand-copy{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand-copy strong{
      font-size:16px;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-copy small{
      margin-top:3px;
      color:var(--muted);
      font-size:10px;
      letter-spacing:.04em;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:4px;
      padding:4px;
      border-radius:999px;
      background:rgba(248,243,236,.56);
      margin-left:auto;
    }
    .desktop-nav a{
      padding:10px 13px;
      border-radius:999px;
      font-size:14px;
      font-weight:750;
      color:var(--muted);
      line-height:1;
      white-space:nowrap;
    }
    .desktop-nav a:hover{
      color:var(--primary);
      background:rgba(241,232,243,.88);
    }
    .desktop-nav a.is-active{
      color:var(--primary);
      background:var(--soft-purple);
      box-shadow:inset 0 0 0 1px rgba(75,54,95,.08);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .nav-cta{
      min-height:40px;
      padding:11px 17px;
      font-size:14px;
    }
    .nav-toggle{
      display:none;
      min-height:40px;
      padding:0 14px;
      border-radius:999px;
      border:1px solid rgba(75,54,95,.14);
      background:#fff;
      color:var(--primary);
      font-weight:800;
    }
    .mobile-panel{
      display:none;
      margin-top:10px;
      padding:14px;
      border-radius:24px;
      background:rgba(255,253,249,.96);
      border:1px solid rgba(75,54,95,.12);
      box-shadow:var(--shadow);
    }
    .mobile-panel.is-open{display:block;}
    .mobile-links{
      display:grid;
      gap:8px;
      margin-bottom:12px;
    }
    .mobile-links a{
      display:flex;
      align-items:center;
      min-height:46px;
      padding:0 14px;
      border-radius:16px;
      color:var(--muted);
      font-weight:800;
    }
    .mobile-links a:hover,
    .mobile-links a.is-active{
      background:var(--soft-purple);
      color:var(--primary);
    }

    .inner-hero{
      padding:126px 0 76px;
      position:relative;
      overflow:hidden;
    }
    .inner-hero::before{
      content:"一区 二区 三区";
      position:absolute;
      right:-40px;
      top:90px;
      font-size:118px;
      line-height:1;
      font-weight:900;
      color:rgba(75,54,95,.035);
      letter-spacing:.05em;
      white-space:nowrap;
      pointer-events:none;
    }
    .inner-hero::after{
      content:"";
      position:absolute;
      inset:auto -16% 0 auto;
      width:520px;
      height:520px;
      background:radial-gradient(circle, rgba(233,166,180,.24), transparent 62%);
      pointer-events:none;
    }
    .hero-panel{
      min-height:440px;
      padding:28px;
      border-radius:36px;
      background:
        linear-gradient(145deg,rgba(255,255,255,.80),rgba(241,232,243,.66)),
        repeating-linear-gradient(90deg,rgba(75,54,95,.05) 0,rgba(75,54,95,.05) 1px,transparent 1px,transparent 30px);
      border:1px solid rgba(75,54,95,.12);
      box-shadow:var(--shadow-hover);
      position:relative;
      overflow:hidden;
    }
    .layer-map{
      display:grid;
      gap:18px;
      position:relative;
      z-index:2;
    }
    .map-row{
      border-radius:24px;
      padding:22px;
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      box-shadow:0 10px 26px rgba(46,35,55,.07);
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      min-height:112px;
    }
    .map-row:nth-child(1){transform:translateX(0);background:linear-gradient(135deg,#fff,#FBEDF0);}
    .map-row:nth-child(2){transform:translateX(24px);background:linear-gradient(135deg,#fff,#F1E8F3);}
    .map-row:nth-child(3){transform:translateX(48px);background:linear-gradient(135deg,#fff,#EEF6F3);}
    .map-no{
      width:54px;
      height:54px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--primary);
      color:#fff;
      font-size:20px;
      font-weight:900;
      box-shadow:0 12px 24px rgba(75,54,95,.18);
    }
    .map-row:nth-child(2) .map-no{background:#7A5B89;}
    .map-row:nth-child(3) .map-no{background:#5A9383;}
    .map-title strong{
      display:block;
      font-size:18px;
      font-weight:900;
      color:var(--text);
      margin-bottom:4px;
    }
    .map-title span{
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .map-dots{
      display:flex;
      gap:6px;
      align-items:center;
    }
    .map-dots i{
      width:8px;
      height:8px;
      border-radius:50%;
      background:rgba(75,54,95,.25);
      display:block;
    }
    .map-dots i:nth-child(2){background:rgba(233,166,180,.75);}
    .map-dots i:nth-child(3){background:rgba(127,183,166,.85);}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }

    .layer-explain{
      padding:34px;
    }
    .layer-list{
      display:grid;
      gap:16px;
      margin-top:24px;
    }
    .layer-item{
      display:grid;
      grid-template-columns:56px 1fr;
      gap:16px;
      align-items:start;
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(75,54,95,.10);
      transition:var(--ease);
    }
    .layer-item:hover{
      background:#fff;
      transform:translateX(4px);
      box-shadow:0 12px 26px rgba(46,35,55,.07);
    }
    .layer-icon{
      width:56px;
      height:56px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      color:var(--primary);
      background:var(--soft-purple);
    }
    .layer-item:nth-child(2) .layer-icon{background:var(--soft-pink);color:#A35468;}
    .layer-item:nth-child(3) .layer-icon{background:var(--soft-green);color:#437C6C;}
    .structure-card{
      padding:30px;
      min-height:100%;
    }
    .structure-board{
      border-radius:26px;
      background:#fff;
      border:1px solid rgba(75,54,95,.12);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .structure-board::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(75,54,95,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(75,54,95,.04) 1px,transparent 1px);
      background-size:28px 28px;
      opacity:.8;
    }
    .stack{
      position:relative;
      z-index:2;
      display:grid;
      gap:14px;
      padding:8px 0;
    }
    .stack-layer{
      border-radius:20px;
      padding:20px;
      border:1px solid rgba(75,54,95,.10);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .stack-layer strong{font-size:18px;color:var(--text);}
    .stack-layer span{font-size:13px;color:var(--muted);font-weight:700;}
    .stack-layer.one{background:linear-gradient(90deg,#FBEDF0,#fff);}
    .stack-layer.two{background:linear-gradient(90deg,#F1E8F3,#fff);margin-left:26px;}
    .stack-layer.three{background:linear-gradient(90deg,#EEF6F3,#fff);margin-left:52px;}
    .connector{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:22px;
    }
    .connector div{
      min-height:74px;
      border-radius:18px;
      padding:14px;
      background:rgba(248,243,236,.75);
      border:1px dashed rgba(75,54,95,.20);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }

    .detail-grid{
      display:grid;
      gap:24px;
    }
    .detail-block{
      padding:30px;
      position:relative;
    }
    .detail-block::before{
      content:"";
      position:absolute;
      top:0;
      left:30px;
      right:30px;
      height:4px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--secondary),var(--primary),var(--accent));
      opacity:.78;
    }
    .detail-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .detail-no{
      width:58px;
      height:58px;
      border-radius:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--primary);
      color:#fff;
      font-size:20px;
      font-weight:900;
      flex:0 0 auto;
    }
    .detail-meta{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:22px;
    }
    .mini-box{
      padding:16px;
      border-radius:18px;
      background:rgba(248,243,236,.70);
      border:1px solid rgba(75,54,95,.09);
    }
    .mini-box b{
      display:block;
      color:var(--text);
      font-size:14px;
      margin-bottom:6px;
    }
    .mini-box span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }

    .compare-wrap{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:stretch;
    }
    .compare-card{
      padding:32px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(75,54,95,.12);
      background:rgba(255,253,249,.86);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .compare-card.weak{
      background:linear-gradient(145deg,#fff,#F8F3EC);
    }
    .compare-card.strong{
      background:linear-gradient(145deg,#fff,#EEF6F3);
      border-color:rgba(127,183,166,.32);
    }
    .compare-card h3{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .compare-badge{
      width:34px;
      height:34px;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(75,54,95,.10);
      color:var(--primary);
      font-weight:900;
      font-size:14px;
      flex:0 0 auto;
    }
    .compare-card.strong .compare-badge{
      background:rgba(127,183,166,.20);
      color:#437C6C;
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:22px 0 0;
      display:grid;
      gap:13px;
    }
    .check-list li{
      display:grid;
      grid-template-columns:26px 1fr;
      gap:10px;
      color:var(--muted);
      line-height:1.65;
    }
    .check-list li::before{
      content:"";
      width:26px;
      height:26px;
      border-radius:9px;
      background:rgba(233,166,180,.22);
      border:1px solid rgba(233,166,180,.36);
      position:relative;
    }
    .strong .check-list li::before{
      background:rgba(127,183,166,.20);
      border-color:rgba(127,183,166,.34);
    }

    .process-strip{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:16px;
      position:relative;
    }
    .process-step{
      padding:22px 18px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      box-shadow:var(--shadow);
      position:relative;
      transition:var(--ease);
    }
    .process-step:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .process-step::after{
      content:"";
      position:absolute;
      top:38px;
      right:-18px;
      width:20px;
      height:2px;
      background:rgba(75,54,95,.16);
    }
    .process-step:last-child::after{display:none;}
    .step-num{
      width:36px;
      height:36px;
      border-radius:13px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--soft-purple);
      color:var(--primary);
      font-weight:900;
      margin-bottom:14px;
    }
    .process-step p{
      font-size:14px;
      line-height:1.7;
      margin-bottom:0;
    }

    .cta-panel{
      padding:42px;
      border-radius:36px;
      background:
        radial-gradient(circle at 12% 0%, rgba(233,166,180,.24), transparent 30%),
        linear-gradient(135deg,var(--primary),#5F4871);
      color:#fff;
      box-shadow:0 22px 56px rgba(75,54,95,.24);
      overflow:hidden;
      position:relative;
    }
    .cta-panel::after{
      content:"";
      position:absolute;
      right:-60px;
      bottom:-80px;
      width:260px;
      height:260px;
      border-radius:80px;
      border:1px solid rgba(255,255,255,.18);
      transform:rotate(18deg);
    }
    .cta-panel h2,
    .cta-panel p{color:#fff;}
    .cta-panel p{opacity:.82;}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }
    .cta-panel .btn-primary{
      background:#fff;
      color:var(--primary);
      box-shadow:none;
    }
    .cta-panel .btn-primary:hover{
      background:var(--soft-pink);
      color:var(--primary-dark);
    }
    .cta-panel .btn-secondary{
      color:#fff;
      border-color:rgba(255,255,255,.36);
      background:rgba(255,255,255,.08);
    }
    .cta-panel .btn-secondary:hover{
      background:rgba(255,255,255,.16);
      color:#fff;
    }

    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:20px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(75,54,95,.11);
      box-shadow:0 8px 22px rgba(46,35,55,.06);
    }
    .accordion-title{
      padding:20px 54px 20px 22px;
      color:var(--text);
      font-weight:900;
      font-size:16px;
      border:0;
      background:#fff;
      line-height:1.5;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:var(--soft-purple);
      color:var(--primary);
    }
    .accordion-title::before{
      right:22px;
      margin-top:-10px;
      color:var(--primary);
      font-size:22px;
    }
    .accordion-content{
      border:0;
      padding:0 22px 22px;
      background:#fff;
      color:var(--muted);
      line-height:1.8;
    }

    .contact-card{
      padding:34px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid rgba(75,54,95,.12);
      box-shadow:var(--shadow);
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .form-field.full{grid-column:1 / -1;}
    label{
      color:var(--text);
      font-weight:800;
      font-size:14px;
      margin-bottom:8px;
    }
    input[type="text"],
    input[type="tel"],
    textarea,
    select{
      width:100%;
      min-height:52px;
      border-radius:14px;
      border:1px solid #E3D8E5;
      background:#FFFDF9;
      box-shadow:none;
      padding:12px 14px;
      color:var(--text);
      font-size:15px;
      transition:var(--ease);
      margin-bottom:0;
    }
    textarea{min-height:126px;resize:vertical;}
    input:focus,
    textarea:focus,
    select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(75,54,95,.10);
      background:#fff;
    }
    .contact-note{
      padding:30px;
      border-radius:var(--radius-lg);
      background:linear-gradient(145deg,#fff,var(--soft-green));
      border:1px solid rgba(127,183,166,.22);
      box-shadow:var(--shadow);
      height:100%;
    }
    .note-list{
      list-style:none;
      padding:0;
      margin:22px 0 0;
      display:grid;
      gap:14px;
    }
    .note-list li{
      display:grid;
      grid-template-columns:38px 1fr;
      gap:12px;
      align-items:start;
    }
    .note-list b{
      width:38px;
      height:38px;
      border-radius:14px;
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#437C6C;
      box-shadow:0 8px 18px rgba(46,35,55,.07);
    }
    .note-list strong{
      display:block;
      color:var(--text);
      margin-bottom:2px;
    }
    .note-list span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }

    .footer{
      background:#2D2138;
      color:rgba(255,255,255,.78);
      padding:66px 0 28px;
      position:relative;
      overflow:hidden;
    }
    .footer::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 10% 10%, rgba(233,166,180,.16), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(127,183,166,.14), transparent 30%);
      pointer-events:none;
    }
    .footer-inner{position:relative;z-index:2;}
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
      margin-bottom:34px;
    }
    .footer h3,
    .footer h4{color:#fff;}
    .footer p{color:rgba(255,255,255,.72);}
    .footer-cols{
      display:grid;
      grid-template-columns:1.1fr .8fr 1fr;
      gap:34px;
    }
    .footer-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-list a{
      color:rgba(255,255,255,.72);
      font-weight:650;
    }
    .footer-list a:hover{color:var(--secondary);}
    .footer-tags{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .footer .tag{
      background:rgba(255,255,255,.10);
      color:rgba(255,255,255,.82);
      border-color:rgba(255,255,255,.12);
    }
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.58);
      font-size:14px;
    }

    @media screen and (max-width: 1100px){
      .desktop-nav{display:none;}
      .nav-toggle{display:inline-flex;align-items:center;justify-content:center;}
      .nav-shell{border-radius:28px;}
      .process-strip{grid-template-columns:repeat(3,1fr);}
      .process-step::after{display:none;}
      .map-row:nth-child(2),
      .map-row:nth-child(3){transform:none;}
    }
    @media screen and (max-width: 820px){
      .site-container{width:min(calc(100% - 28px),var(--container));}
      .site-header{top:10px;}
      .brand-copy small{display:none;}
      .nav-cta{display:none;}
      .inner-hero{padding:104px 0 54px;}
      .section{padding:68px 0;}
      .section-sm{padding:56px 0;}
      .hero-panel{min-height:auto;padding:20px;border-radius:28px;}
      .map-row{
        grid-template-columns:auto 1fr;
      }
      .map-dots{grid-column:2;}
      .compare-wrap,
      .detail-meta,
      .footer-cols,
      .form-grid{
        grid-template-columns:1fr;
      }
      .process-strip{grid-template-columns:1fr 1fr;}
      .cta-actions{justify-content:flex-start;}
      .footer-bottom{flex-direction:column;align-items:flex-start;}
      .stack-layer.two,
      .stack-layer.three{margin-left:0;}
      .connector{grid-template-columns:1fr;}
    }
    @media screen and (max-width: 560px){
      h1{font-size:34px;}
      h2{font-size:29px;}
      .nav-shell{padding:9px;border-radius:24px;}
      .brand-mark{width:38px;height:38px;border-radius:14px;}
      .brand-copy strong{font-size:14px;}
      .mobile-panel .btn{width:100%;}
      .hero-actions,
      .cta-actions{
        flex-direction:column;
      }
      .hero-actions .btn,
      .cta-actions .btn,
      .contact-card .btn{width:100%;}
      .layer-explain,
      .structure-card,
      .detail-block,
      .compare-card,
      .contact-card,
      .contact-note,
      .cta-panel{padding:24px;}
      .layer-item{
        grid-template-columns:1fr;
      }
      .detail-head{
        flex-direction:column;
      }
      .process-strip{grid-template-columns:1fr;}
      .footer-brand{flex-direction:column;}
      .inner-hero::before{font-size:64px;top:120px;}
    }

/* roulang page: category3 */
:root{
      --bg:#F8F3EC;
      --bg-2:#FBF8F3;
      --card:#FFFDF9;
      --line:#E7DED6;
      --line-2:#D9CFD9;
      --text:#242128;
      --muted:#746D7C;
      --primary:#4B365F;
      --primary-2:#382847;
      --secondary:#E9A6B4;
      --accent:#7FB7A6;
      --soft-purple:#F1E8F3;
      --soft-green:#EEF6F3;
      --soft-pink:#FBEDF0;
      --shadow:0 12px 30px rgba(46,35,55,.08);
      --shadow-hover:0 18px 48px rgba(46,35,55,.13);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --container:1200px;
      --ease:cubic-bezier(.2,.7,.2,1);
    }
    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(233,166,180,.15), transparent 22%),
        radial-gradient(circle at 88% 14%, rgba(127,183,166,.14), transparent 24%),
        linear-gradient(180deg, #F9F5EF 0%, var(--bg) 100%);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Source Han Sans SC",Arial,sans-serif;
      line-height:1.75;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:all .25s var(--ease)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(75,54,95,.18)}
    :focus-visible{outline:3px solid rgba(127,183,166,.45);outline-offset:3px}
    .site-container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      padding:18px 0 0;
      pointer-events:none;
    }
    .nav-shell{
      pointer-events:auto;
      background:rgba(255,253,249,.86);
      border:1px solid rgba(75,54,95,.12);
      box-shadow:0 10px 30px rgba(36,33,40,.06);
      border-radius:999px;
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      overflow:hidden;
    }
    .nav-row{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:12px 16px 12px 14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:0 0 auto;
    }
    .brand-mark{
      width:42px;height:42px;
      border-radius:14px;
      background:linear-gradient(145deg, var(--primary), #6C587F);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:800;
      letter-spacing:.08em;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
    }
    .brand-copy{display:flex;flex-direction:column;line-height:1.12;min-width:0}
    .brand-copy strong{
      font-size:16px;
      color:var(--text);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-copy small{
      font-size:12px;
      color:var(--muted);
      letter-spacing:.03em;
      margin-top:4px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex:1 1 auto;
      justify-content:center;
      min-width:0;
    }
    .desktop-nav a,
    .mobile-links a{
      position:relative;
      color:var(--muted);
      font-size:14px;
      font-weight:600;
      padding:10px 14px;
      border-radius:999px;
      line-height:1.2;
      white-space:nowrap;
    }
    .desktop-nav a:hover,
    .mobile-links a:hover{
      color:var(--primary);
      background:rgba(233,166,180,.14);
    }
    .desktop-nav a.is-active,
    .mobile-links a.is-active{
      color:var(--primary);
      background:rgba(75,54,95,.08);
      box-shadow:inset 0 0 0 1px rgba(75,54,95,.10);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.45rem;
      border:1px solid transparent;
      border-radius:999px;
      font-weight:700;
      padding:13px 22px;
      font-size:15px;
      line-height:1;
      cursor:pointer;
      transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    }
    .btn:hover{transform:translateY(-2px);box-shadow:0 16px 28px rgba(46,35,55,.10)}
    .btn-primary{
      background:var(--primary);
      color:#fff;
      box-shadow:0 10px 22px rgba(75,54,95,.18);
    }
    .btn-primary:hover{background:var(--primary-2);color:#fff}
    .btn-secondary{
      background:#fff;
      color:var(--primary);
      border-color:#D9CFDF;
    }
    .btn-secondary:hover{background:rgba(241,232,243,.85);color:var(--primary-2)}
    .btn-text{
      background:transparent;
      color:var(--primary);
      padding:0;
      border-radius:0;
      font-weight:700;
    }
    .btn-text:hover{transform:translateX(2px);box-shadow:none}
    .nav-cta{padding:12px 18px;font-size:14px}
    .nav-toggle{
      display:none;
      border:1px solid rgba(75,54,95,.14);
      background:#fff;
      color:var(--primary);
      border-radius:999px;
      padding:12px 16px;
      font-weight:700;
      box-shadow:none;
    }
    .nav-toggle:hover{background:rgba(241,232,243,.85)}
    .mobile-panel{
      display:none;
      padding:0 14px 14px;
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:12px;
      background:#fff;
      border-radius:24px;
      border:1px solid rgba(75,54,95,.10);
      box-shadow:var(--shadow);
      margin-bottom:12px;
    }

    main{display:block}
    .hero{
      padding:86px 0 34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      background:rgba(75,54,95,.08);
      border:1px solid rgba(75,54,95,.10);
      border-radius:999px;
      padding:9px 14px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(127,183,166,.14);
    }
    h1{
      font-size:clamp(34px, 5vw, 58px);
      line-height:1.08;
      margin:0;
      letter-spacing:-.03em;
      max-width:12ch;
    }
    h2{
      font-size:clamp(28px, 3vw, 40px);
      line-height:1.2;
      margin:0;
      letter-spacing:-.02em;
    }
    h3{
      font-size:clamp(20px, 2.2vw, 26px);
      line-height:1.28;
      margin:0;
    }
    h4{
      font-size:18px;
      line-height:1.35;
      margin:0;
    }
    p{margin:0}
    .hero p.lead{
      font-size:18px;
      color:var(--muted);
      max-width:44rem;
      margin-top:18px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .trust-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      color:var(--text);
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
    }
    .tag.soft-purple{background:var(--soft-purple)}
    .tag.soft-green{background:var(--soft-green)}
    .tag.soft-pink{background:var(--soft-pink)}
    .hero-panel{
      position:relative;
      border-radius:var(--radius-xl);
      padding:22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.86)),
        radial-gradient(circle at 18% 10%, rgba(233,166,180,.18), transparent 28%),
        radial-gradient(circle at 86% 22%, rgba(127,183,166,.16), transparent 26%);
      border:1px solid rgba(75,54,95,.10);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:26px;
      border:1px dashed rgba(75,54,95,.10);
      pointer-events:none;
    }
    .hero-panel-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:20px;
      align-items:stretch;
      min-height:390px;
    }
    .ui-shell,
    .dashboard-shell{
      position:relative;
      z-index:1;
    }
    .search-bar{
      display:flex;
      align-items:center;
      gap:10px;
      padding:14px 16px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      box-shadow:0 8px 20px rgba(46,35,55,.05);
      margin-bottom:16px;
    }
    .search-dot{
      width:11px;height:11px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 6px rgba(127,183,166,.13);
      flex:0 0 auto;
    }
    .search-text{
      color:var(--muted);
      font-size:14px;
    }
    .panel-stack{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .panel-card{
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 10px 22px rgba(46,35,55,.05);
      min-height:120px;
    }
    .panel-card.large{
      min-height:180px;
    }
    .panel-label{
      display:inline-flex;
      align-items:center;
      gap:7px;
      font-size:12px;
      font-weight:700;
      color:var(--primary);
      background:rgba(241,232,243,.85);
      padding:6px 10px;
      border-radius:999px;
      margin-bottom:12px;
    }
    .panel-label.green{background:rgba(238,246,243,.95); color:#456f62}
    .panel-label.pink{background:rgba(251,237,240,.95); color:#8a4d61}
    .mini-lines{
      display:grid;
      gap:8px;
      margin-top:12px;
    }
    .mini-line{
      height:10px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(75,54,95,.12), rgba(75,54,95,.04));
    }
    .mini-line.short{width:72%}
    .mini-line.long{width:92%}
    .mini-line.green{background:linear-gradient(90deg, rgba(127,183,166,.24), rgba(127,183,166,.08))}
    .mini-line.pink{background:linear-gradient(90deg, rgba(233,166,180,.28), rgba(233,166,180,.09))}
    .floating-badge{
      position:absolute;
      right:18px;
      top:18px;
      background:rgba(255,253,249,.94);
      border:1px solid rgba(75,54,95,.12);
      border-radius:999px;
      padding:10px 14px;
      font-size:12px;
      font-weight:800;
      color:var(--primary);
      box-shadow:var(--shadow);
    }
    .floating-badge.bottom{
      right:auto;
      left:20px;
      bottom:18px;
      top:auto;
    }
    .hero-note{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(75,54,95,.10);
      margin-top:14px;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .hero-note strong{color:var(--primary)}
    .section{
      padding:76px 0;
    }
    .section.tight-top{padding-top:46px}
    .section-heading{
      max-width:760px;
      margin-bottom:28px;
    }
    .section-heading p{
      color:var(--muted);
      font-size:17px;
      line-height:1.88;
      margin-top:14px;
    }
    .eyebrow-inline{
      color:var(--accent);
      font-size:13px;
      font-weight:800;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:12px;
    }
    .feature-layout{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:24px;
      align-items:start;
    }
    .feature-story{
      position:sticky;
      top:112px;
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.88));
      border:1px solid rgba(75,54,95,.10);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:28px;
    }
    .feature-story p{
      color:var(--muted);
      margin-top:14px;
      line-height:1.9;
      font-size:16px;
    }
    .feature-track{
      display:grid;
      gap:18px;
    }
    .plan-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:24px;
      transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }
    .plan-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(75,54,95,.18);
    }
    .plan-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:18px;
      margin-bottom:14px;
    }
    .plan-no{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;
      height:42px;
      border-radius:14px;
      background:rgba(75,54,95,.08);
      color:var(--primary);
      font-weight:800;
    }
    .plan-title{
      flex:1 1 auto;
    }
    .plan-title h3{margin-bottom:6px}
    .plan-title p{
      color:var(--muted);
      line-height:1.8;
      font-size:15px;
    }
    .chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      padding:8px 11px;
      border-radius:999px;
      background:#faf7fc;
      border:1px solid rgba(75,54,95,.08);
      color:var(--text);
      font-size:12px;
      font-weight:700;
    }
    .chip.accent{background:rgba(238,246,243,.95)}
    .chip.secondary{background:rgba(251,237,240,.95)}
    .chip.primary{background:rgba(241,232,243,.95)}
    .metrics-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
    }
    .metric{
      background:linear-gradient(180deg, #fff, rgba(255,255,255,.86));
      border:1px solid rgba(75,54,95,.10);
      border-radius:24px;
      padding:22px 18px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
      min-height:158px;
    }
    .metric::after{
      content:"";
      position:absolute;
      inset:auto -18px -18px auto;
      width:84px;height:84px;border-radius:50%;
      background:radial-gradient(circle, rgba(233,166,180,.18), rgba(233,166,180,0) 68%);
    }
    .metric .num{
      font-size:34px;
      font-weight:800;
      color:var(--primary);
      line-height:1;
      margin-bottom:10px;
      letter-spacing:-.03em;
    }
    .metric p{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin-top:8px;
    }
    .metric .label{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(127,183,166,.12);
      color:#456f62;
      font-size:12px;
      font-weight:800;
    }
    .scene-grid{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:18px;
    }
    .scene-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:24px;
      transition:transform .25s var(--ease), box-shadow .25s var(--ease);
      min-height:220px;
    }
    .scene-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .scene-card .scene-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .scene-card .badge{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(75,54,95,.08);
      color:var(--primary);
      font-size:12px;
      font-weight:800;
      flex:0 0 auto;
    }
    .scene-card p{
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }
    .scene-flow{
      margin-top:16px;
      display:grid;
      gap:10px;
    }
    .scene-step{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--text);
      font-size:14px;
      line-height:1.7;
    }
    .scene-step i{
      width:20px;height:20px;
      border-radius:50%;
      display:inline-grid;
      place-items:center;
      background:rgba(127,183,166,.16);
      color:#456f62;
      font-style:normal;
      font-weight:800;
      flex:0 0 auto;
      margin-top:2px;
    }
    .scene-card.w-6{grid-column:span 6}
    .scene-card.w-4{grid-column:span 4}
    .process{
      background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.94));
      border-top:1px solid rgba(75,54,95,.06);
      border-bottom:1px solid rgba(75,54,95,.06);
    }
    .timeline{
      display:grid;
      grid-template-columns:repeat(5,minmax(0,1fr));
      gap:16px;
    }
    .step-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:24px;
      padding:20px;
      box-shadow:var(--shadow);
      position:relative;
    }
    .step-card::before{
      content:"";
      position:absolute;
      left:20px; right:20px; top:16px;
      height:3px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(75,54,95,.18), rgba(127,183,166,.18));
    }
    .step-index{
      display:inline-flex;
      margin-top:16px;
      width:34px;height:34px;
      border-radius:12px;
      align-items:center;
      justify-content:center;
      background:rgba(75,54,95,.08);
      color:var(--primary);
      font-weight:800;
    }
    .step-card p{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin-top:12px;
    }
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:18px;
    }
    .compare-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:24px;
    }
    .compare-card.good{background:linear-gradient(180deg, rgba(238,246,243,.95), #fff)}
    .compare-card.bad{background:linear-gradient(180deg, rgba(251,237,240,.95), #fff)}
    .compare-card h3{margin-bottom:14px}
    .compare-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .compare-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .compare-list li::before{
      content:"";
      width:10px;height:10px;border-radius:50%;
      margin-top:8px;
      background:var(--accent);
      flex:0 0 auto;
    }
    .compare-card.bad .compare-list li::before{background:#C48693}
    .cta-block{
      background:
        radial-gradient(circle at 18% 12%, rgba(233,166,180,.18), transparent 22%),
        radial-gradient(circle at 86% 84%, rgba(127,183,166,.16), transparent 24%),
        linear-gradient(180deg, rgba(75,54,95,.98), rgba(56,40,71,.98));
      color:#fff;
      border-radius:34px;
      padding:34px;
      box-shadow:0 18px 48px rgba(46,35,55,.18);
      overflow:hidden;
      position:relative;
    }
    .cta-block::before{
      content:"";
      position:absolute;
      inset:16px;
      border-radius:26px;
      border:1px solid rgba(255,255,255,.09);
      pointer-events:none;
    }
    .cta-block .inner{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .cta-block p{
      color:rgba(255,255,255,.82);
      max-width:42rem;
      margin-top:12px;
      font-size:16px;
      line-height:1.9;
    }
    .cta-actions{display:flex;flex-wrap:wrap;gap:12px}
    .cta-actions .btn-secondary{
      border-color:rgba(255,255,255,.18);
      color:#fff;
      background:rgba(255,255,255,.06);
    }
    .cta-actions .btn-secondary:hover{background:rgba(255,255,255,.12)}
    .cta-actions .btn-primary{background:#fff;color:var(--primary)}
    .cta-actions .btn-primary:hover{background:#f4eef7;color:var(--primary-2)}
    .faq-wrap{
      background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.96));
      border:1px solid rgba(75,54,95,.10);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .accordion,
    .accordion-content{
      margin:0;
    }
    .accordion-title{
      font-size:16px;
      font-weight:800;
      color:var(--text);
      padding:18px 20px;
      border-radius:18px;
    }
    .accordion-item{
      border:0;
      border-radius:18px;
      margin-bottom:12px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      box-shadow:0 6px 18px rgba(46,35,55,.04);
    }
    .accordion-item.is-active{
      box-shadow:0 12px 30px rgba(46,35,55,.08);
      border-color:rgba(75,54,95,.16);
    }
    .accordion-content{
      border:0;
      padding:0 20px 18px;
      color:var(--muted);
      line-height:1.9;
      font-size:15px;
    }
    .accordion-title::before{
      right:18px;
      color:var(--primary);
      font-size:26px;
      margin-top:-13px;
    }
    .contact-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:20px;
      align-items:start;
    }
    .form-card,
    .info-card{
      background:var(--card);
      border:1px solid rgba(75,54,95,.10);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:26px;
    }
    .form-group{margin-bottom:16px}
    label{
      display:block;
      font-size:14px;
      font-weight:700;
      color:var(--text);
      margin-bottom:8px;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea,
    select{
      width:100%;
      border-radius:14px;
      border:1px solid #E3D8E5;
      background:#fff;
      color:var(--text);
      min-height:50px;
      padding:13px 14px;
      box-shadow:none;
      transition:border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
    }
    textarea{
      min-height:138px;
      resize:vertical;
    }
    input::placeholder,
    textarea::placeholder{color:#B4A9B8}
    input:focus,
    textarea:focus,
    select:focus{
      border-color:rgba(75,54,95,.42);
      box-shadow:0 0 0 4px rgba(75,54,95,.10);
      outline:none;
      background:#fff;
    }
    .form-note{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin-top:10px;
    }
    .info-step{
      display:flex;
      gap:14px;
      padding:16px 0;
      border-bottom:1px solid rgba(75,54,95,.08);
    }
    .info-step:last-child{border-bottom:0;padding-bottom:0}
    .info-step:first-child{padding-top:0}
    .info-step .bullet{
      width:34px;height:34px;
      border-radius:12px;
      background:rgba(127,183,166,.14);
      color:#456f62;
      display:grid;
      place-items:center;
      font-weight:800;
      flex:0 0 auto;
    }
    .info-step p{
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      margin-top:4px;
    }
    .footer{
      background:linear-gradient(180deg, #34263F, #2A1E34);
      color:#F8F3EC;
      margin-top:76px;
      padding:44px 0 22px;
    }
    .footer-inner{display:grid;gap:26px}
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:14px;
    }
    .footer-brand .brand-mark{
      background:linear-gradient(145deg, #5D476F, #4B365F);
      box-shadow:none;
      flex:0 0 auto;
    }
    .footer-brand h3{
      font-size:22px;
      margin:0 0 8px;
      color:#fff;
    }
    .footer-brand p{color:rgba(248,243,236,.82)}
    .footer-cols{
      display:grid;
      grid-template-columns:1.05fr .95fr 1fr;
      gap:22px;
    }
    .footer-col h4{
      color:#fff;
      margin-bottom:12px;
      font-size:16px;
    }
    .footer-col p,
    .footer-col a,
    .footer-bottom{
      color:rgba(248,243,236,.80);
      font-size:14px;
    }
    .footer-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .footer-list a{
      display:inline-flex;
      width:fit-content;
      padding:4px 0;
      border-bottom:1px solid transparent;
    }
    .footer-list a:hover{
      color:#fff;
      border-bottom-color:rgba(255,255,255,.35);
    }
    .footer-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-tags .tag{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.10);
      color:#fff;
    }
    .footer-bottom{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
    }

    .soft-banner{
      margin-top:16px;
      padding:16px 18px;
      border-radius:20px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(75,54,95,.10);
      color:var(--muted);
      line-height:1.85;
    }

    .grid-note{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
      margin-top:16px;
    }
    .note-pill{
      padding:14px 15px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(75,54,95,.10);
      color:var(--muted);
      box-shadow:0 8px 18px rgba(46,35,55,.04);
    }
    .note-pill strong{
      display:block;
      color:var(--primary);
      margin-bottom:4px;
      font-size:14px;
    }

    @media (max-width: 1024px){
      .desktop-nav{display:none}
      .nav-toggle{display:inline-flex}
      .mobile-panel{display:none}
      .mobile-panel.is-open{display:block}
      .hero{padding-top:64px}
      .hero-panel-grid,
      .feature-layout,
      .contact-grid{
        grid-template-columns:1fr;
      }
      .feature-story{position:relative;top:0}
      .metrics-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .timeline{grid-template-columns:repeat(2,minmax(0,1fr))}
      .scene-card.w-6,
      .scene-card.w-4{grid-column:span 12}
      .scene-grid{grid-template-columns:repeat(12,minmax(0,1fr))}
      .compare-grid{grid-template-columns:1fr}
      .footer-cols{grid-template-columns:1fr}
      .cta-block .inner{flex-direction:column;align-items:flex-start}
      .grid-note{grid-template-columns:1fr}
    }
    @media (max-width: 640px){
      .site-header{padding-top:10px}
      .nav-shell{border-radius:24px}
      .nav-row{min-height:66px;padding:10px 12px}
      .brand-mark{width:38px;height:38px;border-radius:12px}
      .brand-copy strong{font-size:15px}
      .brand-copy small{font-size:11px}
      .hero{padding:44px 0 22px}
      h1{max-width:none}
      .hero p.lead{font-size:16px}
      .hero-actions,.cta-actions{flex-direction:column}
      .hero-actions .btn,
      .cta-actions .btn,
      .nav-actions .btn{width:100%}
      .hero-panel{padding:16px}
      .hero-panel-grid{min-height:auto}
      .panel-stack{grid-template-columns:1fr}
      .panel-card.large{min-height:150px}
      .metrics-grid,
      .timeline{grid-template-columns:1fr}
      .section{padding:58px 0}
      .section.tight-top{padding-top:28px}
      .plan-card,.scene-card,.step-card,.compare-card,.form-card,.info-card,.faq-wrap,.feature-story{
        border-radius:22px;
        padding:20px;
      }
      .cta-block{padding:24px;border-radius:28px}
      .footer{padding-top:34px}
      .footer-bottom{flex-direction:column;align-items:flex-start}
      .mobile-links a{padding:12px 14px}
    }

/* roulang page: category2 */
:root{
      --bg:#f8f3ec;
      --bg-soft:#fbf7f2;
      --surface:#fffdf9;
      --surface-2:#ffffff;
      --text:#242128;
      --muted:#746d7c;
      --muted-2:#8b8391;
      --primary:#4b365f;
      --primary-dark:#382847;
      --primary-soft:rgba(75,54,95,.08);
      --accent:#7fb7a6;
      --accent-soft:rgba(127,183,166,.12);
      --rose:#e9a6b4;
      --rose-soft:rgba(233,166,180,.14);
      --lilac:#f1e8f3;
      --mint:#eef6f3;
      --blush:#fbedf0;
      --border:#e7ded6;
      --border-strong:#d9ccda;
      --shadow:0 12px 30px rgba(46,35,55,.08);
      --shadow-hover:0 18px 48px rgba(46,35,55,.13);
      --radius-xl:30px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1180px;
      --transition:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Source Han Sans SC",Arial,sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 8% 10%, rgba(233,166,180,.16), transparent 20%),
        radial-gradient(circle at 94% 12%, rgba(127,183,166,.14), transparent 18%),
        radial-gradient(circle at 40% 92%, rgba(75,54,95,.05), transparent 22%),
        linear-gradient(180deg, #f8f3ec 0%, #f7f1e8 42%, #f8f3ec 100%);
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(75,54,95,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(75,54,95,.04) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.25), transparent 72%);
      opacity:.28;
      z-index:-1;
    }

    a{
      color:inherit;
      text-decoration:none;
      transition:var(--transition);
    }
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{
      font:inherit;
      color:inherit;
    }
    button{
      cursor:pointer;
      border:0;
      background:none;
    }
    ::selection{
      background:rgba(75,54,95,.14);
      color:var(--text);
    }
    :focus-visible{
      outline:3px solid rgba(127,183,166,.65);
      outline-offset:3px;
      border-radius:10px;
    }

    .site-container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:16px;
      z-index:1000;
      padding:0 0 8px;
    }

    .nav-shell{
      background:rgba(255,253,249,.86);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      border:1px solid rgba(75,54,95,.12);
      box-shadow:var(--shadow);
      border-radius:var(--radius-pill);
      padding:10px 14px;
    }

    .nav-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex:0 0 auto;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:800;
      letter-spacing:.02em;
      background:
        linear-gradient(135deg, var(--primary), #6a4f7e);
      box-shadow:0 10px 22px rgba(75,54,95,.18);
      flex:0 0 auto;
    }
    .brand-copy{
      min-width:0;
      line-height:1.2;
    }
    .brand-copy strong{
      display:block;
      font-size:1rem;
      font-weight:800;
      letter-spacing:.01em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-copy small{
      display:block;
      margin-top:2px;
      font-size:.8rem;
      color:var(--muted);
      letter-spacing:.02em;
      white-space:nowrap;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex-wrap:wrap;
      justify-content:center;
      flex:1 1 auto;
    }
    .desktop-nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      font-weight:700;
      font-size:.96rem;
      letter-spacing:.01em;
      transition:var(--transition);
    }
    .desktop-nav a:hover,
    .desktop-nav a:focus-visible{
      color:var(--primary);
      background:rgba(75,54,95,.07);
    }
    .desktop-nav a.is-active{
      color:var(--primary);
      background:rgba(75,54,95,.11);
      box-shadow:inset 0 0 0 1px rgba(75,54,95,.08);
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:.5rem;
      min-height:46px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:800;
      font-size:.96rem;
      line-height:1.1;
      letter-spacing:.01em;
      white-space:nowrap;
      transition:var(--transition);
      border:1px solid transparent;
      text-align:center;
    }
    .btn-primary{
      color:#fff;
      background:var(--primary);
      box-shadow:0 12px 24px rgba(75,54,95,.18);
    }
    .btn-primary:hover,
    .btn-primary:focus-visible{
      color:#fff;
      background:var(--primary-dark);
      transform:translateY(-2px);
      box-shadow:0 18px 32px rgba(75,54,95,.24);
    }
    .btn-secondary{
      color:var(--primary);
      background:rgba(255,255,255,.72);
      border-color:rgba(75,54,95,.14);
      box-shadow:0 10px 22px rgba(46,35,55,.05);
    }
    .btn-secondary:hover,
    .btn-secondary:focus-visible{
      background:rgba(75,54,95,.06);
      color:var(--primary);
      transform:translateY(-1px);
      border-color:rgba(75,54,95,.2);
    }
    .btn-light{
      background:#fff;
      color:var(--primary);
      border-color:rgba(75,54,95,.14);
    }
    .btn-light:hover,
    .btn-light:focus-visible{
      background:rgba(75,54,95,.06);
      color:var(--primary);
    }

    .nav-cta{
      padding-left:18px;
      padding-right:18px;
      min-height:44px;
    }

    .nav-toggle{
      display:none;
      min-height:44px;
      padding:10px 16px;
      border-radius:999px;
      color:var(--primary);
      background:#fff;
      border:1px solid rgba(75,54,95,.14);
      box-shadow:0 10px 22px rgba(46,35,55,.05);
      font-weight:800;
      transition:var(--transition);
    }
    .nav-toggle:hover,
    .nav-toggle:focus-visible{
      background:rgba(75,54,95,.06);
      transform:translateY(-1px);
    }

    .mobile-panel{
      display:block;
      max-height:0;
      opacity:0;
      overflow:hidden;
      pointer-events:none;
      transform:translateY(-8px);
      transition:max-height .32s ease, opacity .22s ease, transform .22s ease;
      margin-top:12px;
      background:rgba(255,253,249,.96);
      border:1px solid rgba(75,54,95,.12);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:0 14px;
    }
    .mobile-panel.is-open{
      max-height:500px;
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
      padding:14px;
    }
    .mobile-links{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin-bottom:14px;
    }
    .mobile-links a{
      min-height:46px;
      padding:12px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(75,54,95,.08);
      color:var(--text);
      font-weight:700;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .mobile-links a:hover,
    .mobile-links a:focus-visible{
      background:rgba(75,54,95,.06);
      color:var(--primary);
    }
    .mobile-links a.is-active{
      color:var(--primary);
      background:rgba(75,54,95,.11);
      border-color:rgba(75,54,95,.12);
    }

    main{
      position:relative;
      z-index:1;
    }

    section{
      scroll-margin-top:120px;
      position:relative;
    }

    .page-hero{
      padding:4.8rem 0 4rem;
    }

    .eyebrow-row{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .eyebrow,
    .section-kicker,
    .mini-kicker{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:32px;
      padding:6px 12px;
      border-radius:999px;
      font-weight:800;
      font-size:.78rem;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:var(--primary);
      background:rgba(75,54,95,.08);
      border:1px solid rgba(75,54,95,.08);
    }
    .crumb{
      font-size:.9rem;
      color:var(--muted);
      padding:6px 0;
    }

    .hero-title,
    .section-heading h2{
      margin:0;
      color:var(--text);
      letter-spacing:-.03em;
      line-height:1.12;
      font-weight:800;
    }
    .hero-title{
      font-size:clamp(2.15rem, 5vw, 3.85rem);
      max-width:12.4ch;
    }
    .hero-lead,
    .section-heading p,
    .panel-copy,
    .note-copy,
    .card-copy,
    .quality-text,
    .footer p{
      color:var(--muted);
      font-size:1rem;
      line-height:1.85;
    }

    .hero-lead{
      max-width:40rem;
      margin:18px 0 0;
      font-size:1.08rem;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:28px 0 22px;
    }

    .trust-pills{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:8px;
    }

    .trust-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:38px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(75,54,95,.11);
      color:var(--muted);
      font-size:.86rem;
      font-weight:700;
      box-shadow:0 10px 18px rgba(46,35,55,.04);
    }
    .trust-pill i{
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--accent);
      display:inline-block;
      box-shadow:0 0 0 6px rgba(127,183,166,.12);
    }

    .panel{
      background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,253,249,.98));
      border:1px solid rgba(75,54,95,.12);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      overflow:hidden;
    }

    .panel-hero{
      padding:22px;
      position:relative;
      isolation:isolate;
    }
    .panel-hero::before{
      content:"";
      position:absolute;
      inset:auto -14% -12% auto;
      width:260px;
      height:260px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(233,166,180,.24), transparent 68%);
      z-index:-1;
      pointer-events:none;
    }
    .panel-hero::after{
      content:"";
      position:absolute;
      inset:18px 18px auto auto;
      width:150px;
      height:150px;
      border-radius:32px;
      border:1px solid rgba(127,183,166,.18);
      background:
        linear-gradient(135deg, rgba(241,232,243,.84), rgba(238,246,243,.8));
      transform:rotate(8deg);
      z-index:-1;
      opacity:.95;
    }

    .search-shell{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border-radius:18px;
      background:rgba(248,243,236,.92);
      border:1px solid rgba(75,54,95,.1);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
    }
    .search-shell .search-icon{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:rgba(75,54,95,.08);
      color:var(--primary);
      font-weight:800;
      flex:0 0 auto;
    }
    .search-shell input{
      border:0;
      background:transparent;
      width:100%;
      color:var(--text);
      min-width:0;
      outline:none;
      box-shadow:none;
      margin:0;
      padding:0;
      font-size:.98rem;
    }
    .search-shell input::placeholder{
      color:#938899;
    }

    .chip-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:16px 0 18px;
    }
    .tag,
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:32px;
      padding:7px 12px;
      border-radius:999px;
      font-size:.82rem;
      font-weight:700;
      line-height:1;
      letter-spacing:.01em;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .tag{
      background:rgba(75,54,95,.08);
      color:var(--primary);
      border-color:rgba(75,54,95,.08);
    }
    .tag--mint{
      background:rgba(127,183,166,.12);
      color:#46786d;
      border-color:rgba(127,183,166,.12);
    }
    .tag--rose{
      background:rgba(233,166,180,.16);
      color:#8c5464;
      border-color:rgba(233,166,180,.14);
    }
    .tag--lilac{
      background:rgba(241,232,243,.95);
      color:#655272;
      border-color:rgba(75,54,95,.06);
    }
    .tag--soft{
      background:rgba(255,255,255,.86);
      color:var(--muted);
      border-color:rgba(75,54,95,.08);
    }

    .hero-map{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .mini-card{
      padding:16px 16px 15px;
      border-radius:22px;
      background:rgba(255,255,255,.9);
      border:1px solid rgba(75,54,95,.1);
      box-shadow:0 10px 22px rgba(46,35,55,.05);
      min-height:132px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
      transition:var(--transition);
    }
    .mini-card:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
    }
    .mini-card strong{
      font-size:1.03rem;
      line-height:1.35;
      color:var(--text);
    }
    .mini-card p{
      margin:0;
      color:var(--muted);
      font-size:.93rem;
      line-height:1.7;
    }
    .mini-card--accent{
      background:linear-gradient(135deg, rgba(241,232,243,.88), rgba(255,253,249,.92));
    }
    .mini-card--mint{
      background:linear-gradient(135deg, rgba(238,246,243,.92), rgba(255,253,249,.95));
    }

    .panel-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:16px;
      padding-top:16px;
      border-top:1px dashed rgba(75,54,95,.14);
      flex-wrap:wrap;
    }

    .panel-metrics{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:10px;
    }
    .metric{
      padding:12px;
      border-radius:18px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(75,54,95,.1);
    }
    .metric strong{
      display:block;
      color:var(--primary);
      font-size:1.2rem;
      line-height:1.1;
      font-weight:800;
    }
    .metric span{
      display:block;
      margin-top:5px;
      color:var(--muted);
      font-size:.82rem;
      line-height:1.45;
    }

    .content-section{
      padding:5.8rem 0;
    }
    .content-section.alt{
      background:
        linear-gradient(180deg, rgba(241,232,243,.34), rgba(255,253,249,.28));
      border-top:1px solid rgba(75,54,95,.05);
      border-bottom:1px solid rgba(75,54,95,.05);
    }

    .section-heading{
      max-width:760px;
      margin:0 0 2rem;
    }
    .section-heading h2{
      font-size:clamp(1.8rem, 3vw, 2.75rem);
    }
    .section-heading p{
      margin:14px 0 0;
      max-width:44rem;
    }

    .principle-card,
    .step-card,
    .index-card,
    .quality-card,
    .contact-copy,
    .form-card,
    .process-card,
    .note-card{
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,253,249,.98));
      border:1px solid rgba(75,54,95,.12);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      transition:var(--transition);
      overflow:hidden;
    }
    .principle-card:hover,
    .step-card:hover,
    .index-card:hover,
    .quality-card:hover,
    .contact-copy:hover,
    .form-card:hover,
    .process-card:hover,
    .note-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
    }

    .principle-card{
      padding:24px;
      height:100%;
      position:relative;
      min-height:230px;
    }
    .principle-card::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:4px;
      background:linear-gradient(90deg, var(--primary), rgba(127,183,166,.72), rgba(233,166,180,.8));
    }
    .principle-num{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      font-weight:800;
      color:var(--primary);
      background:rgba(75,54,95,.08);
      box-shadow:inset 0 0 0 1px rgba(75,54,95,.08);
    }
    .principle-card h3,
    .step-card h3,
    .index-card h3,
    .quality-card h3,
    .contact-copy h3,
    .form-card h3,
    .process-card h3,
    .note-card h3{
      margin:14px 0 10px;
      color:var(--text);
      font-weight:800;
      line-height:1.3;
      letter-spacing:-.02em;
      font-size:1.32rem;
    }
    .principle-card p,
    .step-card p,
    .index-card p,
    .quality-card p,
    .contact-copy p,
    .form-card p,
    .process-card p,
    .note-card p{
      margin:0;
      color:var(--muted);
      line-height:1.85;
      font-size:.98rem;
    }
    .principle-meta,
    .card-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }

    .principle-card--lilac{background:linear-gradient(180deg, rgba(241,232,243,.92), rgba(255,253,249,.98))}
    .principle-card--mint{background:linear-gradient(180deg, rgba(238,246,243,.92), rgba(255,253,249,.98))}
    .principle-card--rose{background:linear-gradient(180deg, rgba(251,237,240,.94), rgba(255,253,249,.98))}
    .principle-card--warm{background:linear-gradient(180deg, rgba(255,249,242,.94), rgba(255,253,249,.98))}

    .step-track{
      position:relative;
    }
    .step-track::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:26px;
      height:1px;
      background:linear-gradient(90deg, rgba(75,54,95,.14), rgba(127,183,166,.18), rgba(233,166,180,.16));
      display:none;
    }
    .step-card{
      padding:24px;
      height:100%;
      position:relative;
    }
    .step-index{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:rgba(75,54,95,.09);
      color:var(--primary);
      font-weight:800;
      box-shadow:inset 0 0 0 1px rgba(75,54,95,.08);
      flex:0 0 auto;
    }
    .step-card .step-top{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .step-card .step-top strong{
      font-size:1.05rem;
      color:var(--primary);
      font-weight:800;
      letter-spacing:.01em;
    }
    .step-card .step-top span{
      display:block;
      color:var(--muted);
      font-size:.83rem;
      margin-top:2px;
    }
    .step-card ul{
      margin:14px 0 0;
      padding-left:1.1rem;
      color:var(--muted);
      line-height:1.8;
    }

    .mosaic-grid .cell{
      display:flex;
    }

    .index-card{
      padding:22px;
      width:100%;
      min-height:100%;
      position:relative;
    }
    .index-card--lead{
      min-height:100%;
      background:
        linear-gradient(160deg, rgba(241,232,243,.88), rgba(255,253,249,.96) 40%, rgba(238,246,243,.82));
    }
    .index-card--soft{
      background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(251,237,240,.28));
    }
    .index-card--mint{
      background:linear-gradient(180deg, rgba(238,246,243,.96), rgba(255,255,255,.96));
    }
    .index-card--rose{
      background:linear-gradient(180deg, rgba(251,237,240,.96), rgba(255,255,255,.96));
    }
    .index-card--lilac{
      background:linear-gradient(180deg, rgba(241,232,243,.96), rgba(255,255,255,.96));
    }

    .card-topline{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
    }
    .card-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:32px;
      padding:6px 12px;
      border-radius:999px;
      font-size:.8rem;
      font-weight:800;
      background:rgba(75,54,95,.08);
      color:var(--primary);
    }
    .card-badge.accent{
      background:rgba(127,183,166,.12);
      color:#46786d;
    }
    .card-badge.rose{
      background:rgba(233,166,180,.14);
      color:#8c5464;
    }
    .card-badge.lilac{
      background:rgba(241,232,243,.95);
      color:#655272;
    }
    .index-card h3{
      margin-top:10px;
    }

    .route-list{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:grid;
      gap:10px;
    }
    .route-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--muted);
      line-height:1.7;
      font-size:.96rem;
    }
    .route-list li::before{
      content:"";
      width:9px;
      height:9px;
      margin-top:.55rem;
      border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(127,183,166,.12);
      flex:0 0 auto;
    }

    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }

    .quality-card{
      padding:24px;
      position:relative;
      isolation:isolate;
    }
    .quality-card::before{
      content:"";
      position:absolute;
      inset:auto -10% -18% auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(127,183,166,.16), transparent 68%);
      z-index:-1;
      pointer-events:none;
    }
    .quality-layout{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:start;
      margin-top:6px;
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:16px 0 0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      position:relative;
      padding-left:30px;
      color:var(--muted);
      line-height:1.8;
    }
    .check-list li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:.05rem;
      width:18px;
      height:18px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:rgba(127,183,166,.14);
      color:#4d7c6f;
      font-size:.8rem;
      font-weight:800;
    }

    .quality-box{
      border-radius:24px;
      background:linear-gradient(180deg, rgba(241,232,243,.76), rgba(255,253,249,.98));
      border:1px solid rgba(75,54,95,.1);
      padding:20px;
      min-height:100%;
    }
    .quality-box .mini-note{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:14px;
      color:var(--primary);
      font-weight:800;
    }
    .quality-box .mini-note span{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:rgba(75,54,95,.08);
    }
    .quality-box p{
      margin:0;
      color:var(--muted);
      line-height:1.85;
    }

    .faq-wrap{
      max-width:980px;
    }
    .faq-accordion{
      margin:0;
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid rgba(75,54,95,.12);
      border-radius:22px;
      overflow:hidden;
      background:rgba(255,255,255,.94);
      box-shadow:0 10px 24px rgba(46,35,55,.05);
    }
    .accordion-title{
      position:relative;
      padding:18px 56px 18px 20px;
      color:var(--text);
      font-weight:800;
      font-size:1rem;
      line-height:1.45;
      transition:var(--transition);
      background:transparent;
      border:0;
    }
    .accordion-title::before{
      content:"+";
      position:absolute;
      right:20px;
      top:50%;
      transform:translateY(-50%);
      width:28px;
      height:28px;
      border-radius:999px;
      display:grid;
      place-items:center;
      color:var(--primary);
      background:rgba(75,54,95,.08);
      font-size:1rem;
      font-weight:800;
      transition:var(--transition);
    }
    .accordion-item.is-active > .accordion-title{
      background:linear-gradient(180deg, rgba(241,232,243,.5), rgba(255,255,255,.96));
      color:var(--primary);
    }
    .accordion-item.is-active > .accordion-title::before{
      content:"−";
      background:rgba(127,183,166,.12);
      color:#4d7c6f;
    }
    .accordion-title:hover,
    .accordion-title:focus-visible{
      background:rgba(75,54,95,.05);
      color:var(--primary);
    }
    .accordion-content{
      padding:0 20px 20px;
      border:0;
      color:var(--muted);
      line-height:1.85;
      background:transparent;
    }
    .accordion-content p{
      margin:0;
    }

    .contact-section{
      padding-top:1rem;
    }
    .contact-copy,
    .form-card{
      padding:26px;
      height:100%;
    }
    .contact-copy{
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,232,243,.32));
    }
    .contact-copy .contact-lead{
      max-width:34rem;
      margin-top:12px;
    }
    .process-list{
      display:grid;
      gap:12px;
      margin-top:20px;
    }
    .process-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 15px;
      border-radius:18px;
      background:rgba(255,255,255,.8);
      border:1px solid rgba(75,54,95,.1);
    }
    .process-num{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:rgba(75,54,95,.08);
      color:var(--primary);
      font-weight:800;
      flex:0 0 auto;
    }
    .process-item strong{
      display:block;
      color:var(--text);
      font-weight:800;
      margin-bottom:4px;
    }
    .process-item p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:.95rem;
    }

    .form-grid .cell{
      margin-bottom:14px;
    }
    .field label{
      display:block;
      margin-bottom:8px;
      font-size:.92rem;
      color:var(--text);
      font-weight:800;
      line-height:1.35;
    }
    .field input,
    .field select,
    .field textarea{
      width:100%;
      min-height:52px;
      padding:14px 16px;
      border-radius:14px;
      border:1px solid #e3d8e5;
      background:#fff;
      color:var(--text);
      transition:var(--transition);
      box-shadow:0 1px 0 rgba(255,255,255,.9);
      outline:none;
    }
    .field textarea{
      min-height:132px;
      resize:vertical;
    }
    .field input::placeholder,
    .field textarea::placeholder,
    .field select{
      color:#9a8fa0;
    }
    .field input:hover,
    .field select:hover,
    .field textarea:hover{
      border-color:#d7c8dc;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(75,54,95,.09);
    }
    .form-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:6px;
    }
    .form-hint{
      color:var(--muted);
      font-size:.88rem;
      line-height:1.7;
      margin-top:12px;
    }

    .footer{
      margin-top:1rem;
      padding:3rem 0 1.2rem;
      background:
        linear-gradient(180deg, rgba(45,33,56,.98), rgba(34,25,43,.99));
      color:#f8f3ec;
    }
    .footer a{
      color:rgba(248,243,236,.88);
    }
    .footer a:hover,
    .footer a:focus-visible{
      color:#f3c6d1;
    }
    .footer-inner{
      display:grid;
      gap:28px;
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:14px;
    }
    .footer-brand .brand-mark{
      background:linear-gradient(135deg, #6d547f, #4b365f);
      box-shadow:0 12px 24px rgba(0,0,0,.18);
    }
    .footer-brand h3{
      margin:0;
      font-size:1.2rem;
      color:#fff;
      font-weight:800;
    }
    .footer-brand p{
      color:rgba(248,243,236,.75);
      line-height:1.85;
      font-size:.96rem;
    }
    .footer-cols{
      display:grid;
      grid-template-columns:1.15fr .95fr 1fr;
      gap:24px;
    }
    .footer-col h4{
      margin:0 0 12px;
      font-size:1rem;
      font-weight:800;
      color:#fff;
    }
    .footer-col p{
      margin:0;
      color:rgba(248,243,236,.75);
      line-height:1.9;
    }
    .footer-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-list a{
      display:inline-flex;
      align-items:center;
      min-height:30px;
    }
    .footer-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .footer-tags .tag{
      background:rgba(255,255,255,.08);
      color:rgba(248,243,236,.9);
      border-color:rgba(255,255,255,.08);
    }
    .footer-bottom{
      margin-top:10px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      flex-wrap:wrap;
      gap:10px 16px;
      justify-content:space-between;
      color:rgba(248,243,236,.7);
      font-size:.9rem;
    }

    @media (max-width: 1023px){
      .desktop-nav{display:none}
      .nav-toggle{display:inline-flex}
      .nav-actions .nav-cta{display:none}
      .nav-row{
        justify-content:space-between;
      }
      .page-hero{
        padding:4.2rem 0 3.4rem;
      }
      .hero-title{
        max-width:13ch;
      }
      .quality-layout,
      .footer-cols,
      .hero-map{
        grid-template-columns:1fr;
      }
      .panel-metrics{
        grid-template-columns:repeat(3, minmax(0,1fr));
      }
      .footer-brand{
        align-items:center;
      }
    }

    @media (max-width: 767px){
      .site-container{
        width:min(var(--container), calc(100% - 22px));
      }
      .site-header{
        top:10px;
        padding-bottom:6px;
      }
      .nav-shell{
        border-radius:28px;
        padding:12px;
      }
      .brand-copy strong{
        font-size:.97rem;
      }
      .brand-copy small{
        font-size:.75rem;
      }
      .brand-mark{
        width:40px;
        height:40px;
        border-radius:14px;
      }
      .hero-title{
        font-size:clamp(2rem, 10vw, 2.65rem);
        max-width:100%;
      }
      .hero-lead{
        font-size:1rem;
      }
      .btn{
        width:auto;
      }
      .hero-actions .btn{
        width:100%;
      }
      .panel-hero{
        padding:18px;
      }
      .panel-metrics{
        grid-template-columns:1fr;
      }
      .content-section{
        padding:4.3rem 0;
      }
      .section-heading h2{
        font-size:clamp(1.7rem, 8vw, 2.25rem);
      }
      .principle-card,
      .step-card,
      .index-card,
      .quality-card,
      .contact-copy,
      .form-card{
        padding:20px;
      }
      .accordion-title{
        padding:16px 52px 16px 18px;
      }
      .accordion-content{
        padding:0 18px 18px;
      }
      .footer{
        padding:2.6rem 0 1rem;
      }
      .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
      }
    }

    @media (max-width: 520px){
      .hero-actions{
        gap:10px;
      }
      .hero-actions .btn,
      .form-actions .btn{
        width:100%;
      }
      .hero-map{
        gap:12px;
      }
      .mini-card{
        min-height:122px;
      }
      .principle-card,
      .step-card,
      .index-card,
      .contact-copy,
      .form-card{
        border-radius:20px;
      }
      .search-shell{
        padding:11px 12px;
      }
      .search-shell .search-icon{
        width:30px;
        height:30px;
        border-radius:10px;
      }
      .tag,
      .chip,
      .trust-pill{
        font-size:.78rem;
      }
      .footer-brand{
        gap:12px;
      }
      .footer-brand .brand-mark{
        width:40px;
        height:40px;
      }
    }

    @media (prefers-reduced-motion: reduce){
      *{
        scroll-behavior:auto !important;
        animation:none !important;
        transition:none !important;
      }
    }
