/* roulang page: index */
:root{
      --color-primary:#8E63D9;
      --color-primary-dark:#7248BD;
      --color-secondary:#72C47A;
      --color-accent:#F6C76B;
      --color-bg:#FAF8F2;
      --color-bg-soft:#F3EFE6;
      --color-card:#FFFFFF;
      --color-text:#28312B;
      --color-muted:#667268;
      --color-border:#E8E1D4;
      --color-footer:#26362D;
      --gradient-brand:linear-gradient(135deg,#8E63D9 0%,#72C47A 58%,#F6C76B 100%);
      --gradient-soft:linear-gradient(135deg,rgba(142,99,217,.13),rgba(114,196,122,.13) 58%,rgba(246,199,107,.18));
      --shadow-sm:0 10px 28px rgba(55,44,35,.07);
      --shadow-md:0 18px 45px rgba(55,44,35,.10);
      --shadow-lg:0 26px 70px rgba(55,44,35,.13);
      --radius-lg:30px;
      --radius-md:22px;
      --radius-sm:16px;
      --container:1200px;
      --transition:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 10%,rgba(142,99,217,.10),transparent 28%),
        radial-gradient(circle at 92% 12%,rgba(114,196,122,.13),transparent 30%),
        var(--color-bg);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover{color:var(--color-primary)}
    img{max-width:100%;display:block}
    button,input,textarea{font-family:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(142,99,217,.22)}
    .grid-container{max-width:var(--container)}
    .section{padding:92px 0}
    .section.compact{padding:70px 0}
    .section-soft{
      background:linear-gradient(180deg,rgba(255,255,255,.36),rgba(243,239,230,.86));
      border-top:1px solid rgba(232,225,212,.72);
      border-bottom:1px solid rgba(232,225,212,.72);
    }
    .section-head{max-width:760px;margin:0 auto 42px;text-align:center}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      background:rgba(142,99,217,.10);
      color:var(--color-primary-dark);
      font-size:14px;
      font-weight:700;
      margin-bottom:15px;
    }
    .eyebrow:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--gradient-brand);
      box-shadow:0 0 0 5px rgba(142,99,217,.08);
    }
    h1,h2,h3,h4{margin:0;color:var(--color-text);line-height:1.22;font-weight:800}
    h1{font-size:clamp(34px,5vw,56px);letter-spacing:-.03em}
    h2{font-size:clamp(28px,3.2vw,38px);letter-spacing:-.02em}
    h3{font-size:22px}
    p{margin:0;color:var(--color-muted)}
    .lead{font-size:18px;line-height:1.9}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.92);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(232,225,212,.86);
      box-shadow:0 8px 24px rgba(55,44,35,.04);
    }
    .nav-wrap{
      max-width:var(--container);
      margin:0 auto;
      padding:14px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:11px;
      min-width:max-content;
      color:var(--color-text);
    }
    .brand-mark{
      width:42px;height:42px;border-radius:15px;
      background:var(--gradient-brand);
      display:grid;place-items:center;
      box-shadow:0 12px 28px rgba(142,99,217,.24);
      position:relative;
      overflow:hidden;
    }
    .brand-mark svg{width:27px;height:27px}
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-title{font-size:18px;font-weight:850;letter-spacing:-.02em}
    .brand-sub{font-size:11px;color:var(--color-muted);font-weight:600}
    .nav-menu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      flex:1;
    }
    .nav-menu a{
      padding:10px 14px;
      border-radius:999px;
      font-weight:700;
      font-size:15px;
      color:#3d463f;
      white-space:nowrap;
    }
    .nav-menu a:hover,.nav-menu a.active{
      background:rgba(142,99,217,.10);
      color:var(--color-primary-dark);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .search-pill{
      height:42px;
      width:244px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      background:#F5F1E8;
      border:1px solid rgba(232,225,212,.9);
      border-radius:999px;
      color:var(--color-muted);
    }
    .search-pill input{
      width:100%;
      border:0;
      box-shadow:none;
      background:transparent;
      margin:0;
      height:38px;
      padding:0;
      color:var(--color-text);
      font-size:14px;
    }
    .search-pill input:focus{box-shadow:none;background:transparent}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:13px 22px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1.2;
      transition:var(--transition);
      white-space:nowrap;
    }
    .btn-primary{
      background:var(--gradient-brand);
      color:#fff;
      box-shadow:0 14px 30px rgba(142,99,217,.24);
      background-size:140% 140%;
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(142,99,217,.30);
      background-position:100% 50%;
    }
    .btn-secondary{
      background:#fff;
      color:var(--color-primary-dark);
      border-color:rgba(142,99,217,.25);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover{background:rgba(142,99,217,.08);transform:translateY(-2px)}
    .btn-text{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--color-primary-dark);
      font-weight:800;
    }
    .btn-text span{transition:transform .2s ease}
    .btn-text:hover span{transform:translateX(4px)}
    a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(142,99,217,.36);
      outline-offset:3px;
    }
    .menu-toggle{
      display:none;
      width:44px;height:44px;border:0;border-radius:14px;
      background:#F5F1E8;color:var(--color-text);
    }
    .hero{
      padding:84px 0 88px;
      position:relative;
      overflow:hidden;
    }
    .hero:after{
      content:"";
      position:absolute;
      right:-110px;top:70px;
      width:300px;height:300px;border-radius:50%;
      background:rgba(246,199,107,.22);
      filter:blur(18px);
      z-index:-1;
    }
    .hero-copy{padding-right:24px}
    .tag-row{display:flex;gap:10px;flex-wrap:wrap;margin:24px 0 30px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(232,225,212,.9);
      color:#536055;
      font-size:14px;
      font-weight:700;
      box-shadow:0 8px 20px rgba(55,44,35,.04);
    }
    .tag.green{background:rgba(114,196,122,.12);border-color:rgba(114,196,122,.22)}
    .tag.yellow{background:rgba(246,199,107,.18);border-color:rgba(246,199,107,.28)}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
    .trust-note{
      margin-top:18px;
      font-size:14px;
      color:var(--color-muted);
      display:flex;
      align-items:center;
      gap:8px;
    }
    .trust-note:before{content:"✓";color:var(--color-secondary);font-weight:900}
    .hero-visual{
      position:relative;
      min-height:520px;
      border-radius:36px;
      padding:12px;
      background:linear-gradient(135deg,rgba(142,99,217,.45),rgba(114,196,122,.36),rgba(246,199,107,.45));
      box-shadow:var(--shadow-lg);
    }
    .flower-card{
      height:100%;
      min-height:496px;
      border-radius:30px;
      overflow:hidden;
      background:
        radial-gradient(circle at 28% 25%,rgba(255,255,255,.65),transparent 22%),
        linear-gradient(160deg,rgba(142,99,217,.24),rgba(114,196,122,.18) 48%,rgba(246,199,107,.22)),
        #fff;
      position:relative;
      border:1px solid rgba(255,255,255,.65);
    }
    .flower-card svg{position:absolute;inset:0;width:100%;height:100%}
    .visual-caption{
      position:absolute;
      left:28px;bottom:28px;right:28px;
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(255,255,255,.72);
      box-shadow:var(--shadow-sm);
    }
    .visual-caption strong{display:block;font-size:20px;margin-bottom:5px}
    .floating-badge{
      position:absolute;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 15px;
      border-radius:18px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(232,225,212,.86);
      box-shadow:var(--shadow-md);
      z-index:2;
    }
    .floating-badge b{font-size:19px;color:var(--color-text);line-height:1}
    .floating-badge small{display:block;color:var(--color-muted);font-weight:700}
    .badge-dot{width:34px;height:34px;border-radius:12px;background:var(--gradient-soft);display:grid;place-items:center}
    .fb-1{top:34px;left:-18px}
    .fb-2{top:118px;right:-18px}
    .fb-3{bottom:128px;left:-28px}
    .feature-shell{
      display:grid;
      grid-template-columns:1.25fr 1fr;
      gap:26px;
      align-items:stretch;
    }
    .card{
      background:var(--color-card);
      border:1px solid rgba(232,225,212,.88);
      border-radius:var(--radius-md);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
      position:relative;
      overflow:hidden;
    }
    .card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(142,99,217,.28)}
    .main-feature{
      padding:34px;
      min-height:100%;
      background:
        radial-gradient(circle at 88% 14%,rgba(142,99,217,.13),transparent 26%),
        #fff;
    }
    .icon-box{
      width:54px;height:54px;border-radius:18px;
      display:grid;place-items:center;
      background:var(--gradient-soft);
      color:var(--color-primary-dark);
      margin-bottom:18px;
      font-size:25px;
    }
    .feature-list{
      margin:26px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:13px;
    }
    .feature-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#4b554d;
      font-weight:650;
    }
    .feature-list li:before{
      content:"";
      width:10px;height:10px;border-radius:50%;
      margin-top:10px;
      background:var(--color-secondary);
      flex:0 0 auto;
    }
    .mini-feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
    .mini-card{padding:24px}
    .mini-card .tag{margin-top:18px;box-shadow:none}
    .category-card{
      display:block;
      height:100%;
      padding:28px;
      border-radius:28px;
      background:#fff;
      border:1px solid rgba(232,225,212,.9);
      box-shadow:var(--shadow-sm);
      position:relative;
      overflow:hidden;
    }
    .category-card:before{
      content:"";
      position:absolute;inset:auto -40px -50px auto;
      width:160px;height:160px;border-radius:50%;
      background:var(--gradient-soft);
    }
    .category-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
    .category-card h3{margin:18px 0 10px}
    .scene-band{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:10px 4px 20px;
      scroll-snap-type:x mandatory;
    }
    .scene-item{
      min-width:220px;
      scroll-snap-align:start;
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(232,225,212,.9);
      box-shadow:var(--shadow-sm);
    }
    .scene-icon{
      width:46px;height:46px;border-radius:16px;
      background:rgba(246,199,107,.22);
      display:grid;place-items:center;
      margin-bottom:14px;
      font-size:22px;
    }
    .proof-layout{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:28px;
      align-items:start;
    }
    .proof-panel{
      padding:32px;
      border-radius:30px;
      background:var(--gradient-brand);
      color:#fff;
      box-shadow:var(--shadow-lg);
    }
    .proof-panel h2,.proof-panel p{color:#fff}
    .data-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:26px}
    .data-badge{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.20);
      border:1px solid rgba(255,255,255,.30);
    }
    .data-badge b{display:block;font-size:25px;line-height:1.1}
    .data-badge span{font-size:13px;font-weight:700;opacity:.92}
    .case-stack{display:grid;gap:18px}
    .case-card{padding:24px}
    .case-card p{margin-top:8px}
    .pricing-card{
      padding:30px;
      height:100%;
      border-radius:30px;
      background:#fff;
      border:1px solid rgba(232,225,212,.9);
      box-shadow:var(--shadow-sm);
    }
    .pricing-card.highlight{
      border-color:rgba(142,99,217,.34);
      box-shadow:var(--shadow-md);
      background:linear-gradient(180deg,#fff,rgba(142,99,217,.055));
    }
    .price{
      margin:18px 0;
      font-size:34px;
      font-weight:900;
      color:var(--color-primary-dark);
      line-height:1;
    }
    .check-list{list-style:none;margin:22px 0;padding:0;display:grid;gap:12px}
    .check-list li{display:flex;gap:10px;color:#4d584f;font-weight:650}
    .check-list li:before{content:"✓";color:var(--color-secondary);font-weight:900}
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:20px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(232,225,212,.9);
      box-shadow:var(--shadow-sm);
    }
    .accordion-title{
      border:0!important;
      padding:20px 24px;
      color:var(--color-text)!important;
      font-weight:850;
      font-size:17px;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{background:rgba(142,99,217,.06)}
    .accordion-content{
      border:0!important;
      padding:0 24px 22px;
      background:#fff;
      color:var(--color-muted);
      line-height:1.85;
    }
    .cta-banner{
      border-radius:36px;
      padding:48px;
      background:
        radial-gradient(circle at 12% 20%,rgba(255,255,255,.34),transparent 24%),
        var(--gradient-brand);
      color:#fff;
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      position:relative;
    }
    .cta-banner h2,.cta-banner p{color:#fff}
    .cta-banner:after{
      content:"";
      position:absolute;right:-54px;bottom:-54px;
      width:220px;height:220px;border-radius:50%;
      background:rgba(255,255,255,.18);
    }
    .consult-card{
      padding:30px;
      border-radius:30px;
      background:#fff;
      border:1px solid rgba(232,225,212,.9);
      box-shadow:var(--shadow-md);
    }
    .consult-card label{font-weight:800;color:var(--color-text);font-size:14px;margin-bottom:6px}
    .consult-card input,.consult-card textarea,.consult-card select{
      border:1px solid rgba(232,225,212,.95);
      background:#F8F4EB;
      border-radius:15px;
      box-shadow:none;
      min-height:48px;
      margin-bottom:14px;
    }
    .consult-card input:focus,.consult-card textarea:focus,.consult-card select:focus{
      border-color:rgba(142,99,217,.55);
      box-shadow:0 0 0 4px rgba(142,99,217,.12);
      background:#fff;
    }
    .site-footer{
      background:var(--color-footer);
      color:rgba(255,255,255,.86);
      padding:62px 0 26px;
    }
    .footer-brand .brand-title{color:#fff}
    .footer-brand .brand-sub{color:rgba(255,255,255,.62)}
    .footer-desc{margin-top:16px;color:rgba(255,255,255,.68);max-width:360px}
    .footer-title{color:#fff;font-size:16px;font-weight:850;margin-bottom:14px}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:10px}
    .footer-links a{color:rgba(255,255,255,.68);font-weight:650}
    .footer-links a:hover{color:#fff}
    .footer-bottom{
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.58);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      font-size:14px;
    }
    @media (max-width:1024px){
      .nav-menu,.search-pill{display:none}
      .menu-toggle{display:grid;place-items:center}
      .nav-wrap{position:relative}
      .nav-menu.is-open{
        display:flex;
        position:absolute;
        left:16px;right:16px;top:72px;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        background:#fff;
        border:1px solid rgba(232,225,212,.95);
        border-radius:24px;
        box-shadow:var(--shadow-md);
      }
      .nav-menu.is-open a{text-align:center}
      .hero-copy{padding-right:0;margin-bottom:34px}
      .hero-visual{min-height:430px}
      .flower-card{min-height:406px}
      .feature-shell,.proof-layout{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .section{padding:64px 0}
      .hero{padding:56px 0 66px}
      .nav-actions .btn-primary{display:none}
      .mini-feature-grid,.data-grid{grid-template-columns:1fr}
      .hero-actions .btn{width:100%}
      .floating-badge{position:relative;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;margin:10px 0}
      .hero-visual{padding:10px}
      .flower-card{min-height:360px}
      .visual-caption{left:18px;right:18px;bottom:18px}
      .cta-banner{padding:34px 24px;border-radius:28px}
    }
    @media (max-width:520px){
      .brand-sub{display:none}
      .brand-title{font-size:16px}
      .brand-mark{width:38px;height:38px}
      .nav-wrap{padding:12px}
      .lead{font-size:16px}
      .tag-row{gap:8px}
      .main-feature,.mini-card,.pricing-card,.consult-card{padding:22px}
      .section-head{text-align:left}
      .footer-bottom{display:block}
    }

/* roulang page: category2 */
:root{
      --color-primary:#8E63D9;
      --color-primary-dark:#7047B9;
      --color-primary-soft:#F0E9FF;
      --color-leaf:#72C47A;
      --color-leaf-dark:#4E9A58;
      --color-yellow:#F6C76B;
      --color-bg:#FAF8F2;
      --color-bg-soft:#F2EFE8;
      --color-card:#FFFFFF;
      --color-text:#28312B;
      --color-muted:#667268;
      --color-border:#E8E1D4;
      --color-deep:#2F3B35;
      --color-footer:#26322D;
      --shadow-soft:0 18px 45px rgba(55,44,35,.08);
      --shadow-hover:0 24px 60px rgba(73,54,34,.13);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --gradient-brand:linear-gradient(135deg,#8E63D9 0%,#72C47A 56%,#F6C76B 100%);
      --gradient-soft:linear-gradient(135deg,rgba(142,99,217,.14),rgba(114,196,122,.12),rgba(246,199,107,.18));
      --font-cn:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font-cn);
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 8%,rgba(142,99,217,.10),transparent 30%),
        radial-gradient(circle at 92% 20%,rgba(246,199,107,.16),transparent 28%),
        var(--color-bg);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,background .22s ease,transform .22s ease,box-shadow .22s ease}
    a:hover{color:var(--color-primary)}
    img,svg{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{
      outline:3px solid rgba(142,99,217,.35);
      outline-offset:3px;
      border-radius:12px;
    }

    .grid-container{max-width:1200px}
    .section{padding:92px 0}
    .section-sm{padding:66px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      color:var(--color-primary-dark);
      font-size:14px;
      font-weight:800;
      letter-spacing:.04em;
    }
    .section-kicker::before{
      content:"";
      width:24px;
      height:8px;
      border-radius:var(--radius-pill);
      background:var(--gradient-brand);
    }
    .section-title{
      margin:0;
      color:var(--color-text);
      font-size:38px;
      line-height:1.22;
      font-weight:800;
      letter-spacing:-.02em;
    }
    .section-lead{
      max-width:760px;
      margin:18px 0 0;
      color:var(--color-muted);
      font-size:17px;
      line-height:1.9;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.92);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(232,225,212,.86);
      box-shadow:0 10px 28px rgba(55,44,35,.05);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      background:var(--gradient-brand);
      display:grid;
      place-items:center;
      box-shadow:0 12px 28px rgba(142,99,217,.22);
      flex:0 0 auto;
    }
    .brand-mark svg{width:31px;height:31px}
    .brand-title{
      display:block;
      font-size:19px;
      font-weight:900;
      line-height:1.15;
      color:var(--color-text);
      letter-spacing:-.01em;
    }
    .brand-sub{
      display:block;
      margin-top:3px;
      color:var(--color-muted);
      font-size:12px;
      line-height:1.2;
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:18px;
      flex:1;
      min-width:0;
    }
    .nav-menu{
      display:flex;
      align-items:center;
      gap:6px;
      white-space:nowrap;
    }
    .nav-menu a{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      color:#3F4C44;
      font-size:15px;
      font-weight:700;
    }
    .nav-menu a:hover{
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
    }
    .nav-menu a.active{
      color:var(--color-primary-dark);
      background:linear-gradient(135deg,rgba(142,99,217,.15),rgba(114,196,122,.12));
      box-shadow:inset 0 0 0 1px rgba(142,99,217,.16);
    }
    .header-tools{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search-box{
      width:238px;
      height:42px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border-radius:var(--radius-pill);
      background:#F7F1E6;
      border:1px solid rgba(232,225,212,.9);
      color:var(--color-muted);
      transition:border-color .22s ease,box-shadow .22s ease,background .22s ease;
    }
    .search-box:focus-within{
      background:#fff;
      border-color:rgba(142,99,217,.48);
      box-shadow:0 0 0 4px rgba(142,99,217,.12);
    }
    .search-box svg{width:17px;height:17px;flex:0 0 auto}
    .search-box input{
      width:100%;
      min-width:0;
      border:0;
      outline:0;
      background:transparent;
      color:var(--color-text);
      font-size:14px;
      box-shadow:none;
      margin:0;
      padding:0;
      height:auto;
    }
    .search-box input::placeholder{color:#8C958E}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:13px 22px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      font-weight:800;
      line-height:1.2;
      text-align:center;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease,color .22s ease;
    }
    .btn-primary{
      color:#fff;
      background:var(--gradient-brand);
      background-size:160% 160%;
      box-shadow:0 14px 28px rgba(142,99,217,.22);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(142,99,217,.30);
      background-position:70% 45%;
    }
    .btn-secondary{
      color:var(--color-primary-dark);
      background:#fff;
      border-color:rgba(142,99,217,.26);
      box-shadow:0 10px 24px rgba(55,44,35,.06);
    }
    .btn-secondary:hover{
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
      transform:translateY(-2px);
    }
    .btn-small{
      min-height:38px;
      padding:10px 15px;
      font-size:14px;
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--color-border);
      border-radius:14px;
      background:#fff;
      color:var(--color-text);
      align-items:center;
      justify-content:center;
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after{
      content:"";
      display:block;
      width:20px;
      height:2px;
      border-radius:2px;
      background:currentColor;
      transition:transform .22s ease,opacity .22s ease;
    }
    .menu-toggle span::before{transform:translateY(-7px)}
    .menu-toggle span::after{transform:translateY(5px)}
    .site-header.is-open .menu-toggle span{background:transparent}
    .site-header.is-open .menu-toggle span::before{background:var(--color-text);transform:translateY(0) rotate(45deg)}
    .site-header.is-open .menu-toggle span::after{background:var(--color-text);transform:translateY(-2px) rotate(-45deg)}

    .page-hero{
      position:relative;
      padding:84px 0 72px;
      overflow:hidden;
      background:
        linear-gradient(180deg,rgba(255,255,255,.72),rgba(250,248,242,.76)),
        radial-gradient(circle at 20% 30%,rgba(142,99,217,.18),transparent 34%),
        radial-gradient(circle at 82% 18%,rgba(114,196,122,.16),transparent 32%);
    }
    .page-hero::before{
      content:"";
      position:absolute;
      inset:auto -100px -160px auto;
      width:420px;
      height:420px;
      border-radius:50%;
      background:rgba(246,199,107,.18);
      filter:blur(6px);
    }
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:9px;
      margin-bottom:22px;
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
    }
    .breadcrumb a{color:var(--color-primary-dark)}
    .breadcrumb span[aria-hidden="true"]{color:#9BA49C}
    .hero-labels{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:24px 0 0;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:32px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      color:#4D5A51;
      background:#fff;
      border:1px solid rgba(232,225,212,.88);
      font-size:13px;
      font-weight:800;
      box-shadow:0 10px 24px rgba(55,44,35,.05);
    }
    .tag.purple{background:#F0E9FF;color:#6F45B9;border-color:rgba(142,99,217,.16)}
    .tag.green{background:#EAF8EC;color:#397E43;border-color:rgba(114,196,122,.22)}
    .tag.yellow{background:#FFF5D9;color:#876118;border-color:rgba(246,199,107,.25)}
    .page-hero h1{
      margin:0;
      max-width:800px;
      font-size:52px;
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.035em;
      color:var(--color-text);
    }
    .page-hero p{
      max-width:760px;
      margin:22px 0 0;
      color:var(--color-muted);
      font-size:18px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:13px;
      margin-top:32px;
    }
    .hero-panel{
      position:relative;
      padding:18px;
      border-radius:34px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(232,225,212,.88);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(142,99,217,.12),transparent 45%,rgba(246,199,107,.14));
      pointer-events:none;
    }
    .hero-art{
      position:relative;
      min-height:380px;
      border-radius:28px;
      overflow:hidden;
      background:
        radial-gradient(circle at 28% 26%,rgba(255,255,255,.95) 0 4%,transparent 4.3%),
        radial-gradient(circle at 42% 44%,rgba(255,255,255,.7) 0 2.7%,transparent 3%),
        linear-gradient(135deg,#B996E8 0%,#82CA89 55%,#F7D58F 100%);
    }
    .hero-art::before{
      content:"";
      position:absolute;
      inset:22px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.58);
      background:
        radial-gradient(circle at 35% 36%,rgba(255,255,255,.36),transparent 11%),
        radial-gradient(circle at 70% 66%,rgba(255,255,255,.23),transparent 15%);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
    }
    .lens-frame{
      position:absolute;
      left:36px;
      bottom:34px;
      right:36px;
      min-height:126px;
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.90);
      box-shadow:0 20px 42px rgba(55,44,35,.18);
    }
    .lens-frame strong{
      display:block;
      font-size:19px;
      line-height:1.35;
      color:var(--color-text);
    }
    .lens-frame p{
      margin:8px 0 0;
      color:var(--color-muted);
      font-size:14px;
      line-height:1.7;
    }
    .floating-badge{
      position:absolute;
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:10px 13px;
      border-radius:16px;
      background:#fff;
      box-shadow:0 16px 32px rgba(55,44,35,.14);
      border:1px solid rgba(232,225,212,.8);
      font-size:13px;
      font-weight:900;
      color:var(--color-text);
    }
    .floating-badge em{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--color-leaf);
      box-shadow:0 0 0 5px rgba(114,196,122,.14);
      font-style:normal;
    }
    .badge-one{top:26px;right:26px}
    .badge-two{top:112px;left:24px}
    .badge-three{bottom:190px;right:34px}
    .data-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:26px;
    }
    .data-badge{
      padding:18px 16px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(232,225,212,.85);
      box-shadow:0 12px 30px rgba(55,44,35,.06);
    }
    .data-badge strong{
      display:block;
      font-size:24px;
      line-height:1.15;
      color:var(--color-primary-dark);
    }
    .data-badge span{
      display:block;
      margin-top:6px;
      color:var(--color-muted);
      font-size:13px;
      line-height:1.5;
      font-weight:700;
    }

    .gallery-showcase{
      background:linear-gradient(180deg,rgba(255,255,255,.38),rgba(242,239,232,.72));
    }
    .magazine-grid{
      display:grid;
      grid-template-columns:1.35fr .82fr;
      gap:24px;
      margin-top:38px;
    }
    .image-tile{
      position:relative;
      min-height:260px;
      overflow:hidden;
      border-radius:var(--radius-lg);
      background:var(--gradient-soft);
      border:1px solid rgba(232,225,212,.86);
      box-shadow:var(--shadow-soft);
      transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
    }
    .image-tile:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(142,99,217,.28);
    }
    .image-tile::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 22% 28%,rgba(255,255,255,.78) 0 5%,transparent 5.4%),
        radial-gradient(circle at 42% 50%,rgba(255,255,255,.42) 0 3%,transparent 3.3%),
        radial-gradient(circle at 72% 32%,rgba(255,255,255,.34) 0 4%,transparent 4.3%),
        linear-gradient(135deg,rgba(142,99,217,.76),rgba(114,196,122,.64),rgba(246,199,107,.58));
      transform:scale(1);
      transition:transform .35s ease;
    }
    .image-tile:hover::before{transform:scale(1.04)}
    .image-tile::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent 34%,rgba(33,42,37,.72));
    }
    .tile-large{min-height:540px}
    .tile-stack{
      display:grid;
      grid-template-columns:1fr;
      gap:24px;
    }
    .tile-content{
      position:absolute;
      left:24px;
      right:24px;
      bottom:22px;
      z-index:2;
      color:#fff;
    }
    .tile-content h3{
      margin:0;
      font-size:24px;
      line-height:1.25;
      font-weight:900;
    }
    .tile-content p{
      margin:8px 0 0;
      color:rgba(255,255,255,.84);
      font-size:14px;
      line-height:1.65;
    }
    .tile-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .tile-meta span{
      display:inline-flex;
      padding:5px 9px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      font-size:12px;
      font-weight:800;
    }

    .capsule-row{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:6px 2px 18px;
      margin-top:34px;
      scrollbar-width:thin;
      scrollbar-color:rgba(142,99,217,.4) transparent;
    }
    .capsule-card{
      min-width:220px;
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(232,225,212,.88);
      box-shadow:0 14px 34px rgba(55,44,35,.06);
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .capsule-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(114,196,122,.32);
    }
    .capsule-icon{
      width:48px;
      height:48px;
      border-radius:18px;
      display:grid;
      place-items:center;
      margin-bottom:14px;
      background:var(--gradient-soft);
      color:var(--color-primary-dark);
      font-size:24px;
    }
    .capsule-card h3{
      margin:0;
      font-size:19px;
      line-height:1.35;
      font-weight:900;
    }
    .capsule-card p{
      margin:8px 0 0;
      color:var(--color-muted);
      font-size:14px;
      line-height:1.65;
    }

    .notice-card{
      display:grid;
      grid-template-columns:70px 1fr;
      gap:20px;
      align-items:flex-start;
      margin-top:34px;
      padding:28px;
      border-radius:var(--radius-lg);
      background:#FFF9E9;
      border:1px solid rgba(246,199,107,.35);
      box-shadow:0 16px 38px rgba(126,90,24,.07);
    }
    .notice-icon{
      width:62px;
      height:62px;
      border-radius:22px;
      display:grid;
      place-items:center;
      background:#fff;
      color:#8B641C;
      font-size:28px;
      box-shadow:0 12px 26px rgba(126,90,24,.10);
    }
    .notice-card h2{
      margin:0 0 8px;
      font-size:25px;
      line-height:1.3;
      font-weight:900;
      color:#5A421A;
    }
    .notice-card p{
      margin:0;
      color:#6E5A31;
      font-size:16px;
      line-height:1.85;
    }

    .asset-layout{
      margin-top:38px;
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:24px;
    }
    .asset-card{
      position:relative;
      overflow:hidden;
      border-radius:26px;
      background:#fff;
      border:1px solid rgba(232,225,212,.86);
      box-shadow:var(--shadow-soft);
      transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease;
    }
    .asset-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(142,99,217,.30);
    }
    .asset-image{
      position:relative;
      height:210px;
      overflow:hidden;
      background:
        radial-gradient(circle at 28% 34%,rgba(255,255,255,.85) 0 6%,transparent 6.4%),
        radial-gradient(circle at 66% 45%,rgba(255,255,255,.48) 0 4%,transparent 4.4%),
        linear-gradient(135deg,#B79AE8,#81C889 58%,#F4CC77);
    }
    .asset-card:nth-child(2) .asset-image{
      background:
        radial-gradient(circle at 54% 28%,rgba(255,255,255,.8) 0 5%,transparent 5.3%),
        radial-gradient(circle at 34% 64%,rgba(255,255,255,.42) 0 4%,transparent 4.4%),
        linear-gradient(145deg,#8BCB9A,#F1D08C);
    }
    .asset-card:nth-child(3) .asset-image{
      background:
        radial-gradient(circle at 40% 34%,rgba(255,255,255,.82) 0 4.8%,transparent 5.2%),
        radial-gradient(circle at 70% 60%,rgba(255,255,255,.38) 0 3.5%,transparent 3.9%),
        linear-gradient(140deg,#9A74D9,#EFAFC8 50%,#F6C76B);
    }
    .asset-card:nth-child(4) .asset-image{
      background:
        radial-gradient(circle at 30% 54%,rgba(255,255,255,.75) 0 5.6%,transparent 6%),
        radial-gradient(circle at 64% 36%,rgba(255,255,255,.4) 0 3.6%,transparent 4%),
        linear-gradient(135deg,#F6C76B,#80C982 62%,#8E63D9);
    }
    .asset-card:nth-child(5) .asset-image{
      background:
        radial-gradient(circle at 52% 34%,rgba(255,255,255,.78) 0 6%,transparent 6.4%),
        radial-gradient(circle at 26% 62%,rgba(255,255,255,.36) 0 4%,transparent 4.4%),
        linear-gradient(135deg,#C8B1ED,#79C180);
    }
    .asset-card:nth-child(6) .asset-image{
      background:
        radial-gradient(circle at 36% 42%,rgba(255,255,255,.78) 0 5.2%,transparent 5.6%),
        radial-gradient(circle at 72% 28%,rgba(255,255,255,.42) 0 3.8%,transparent 4.2%),
        linear-gradient(135deg,#77BD82,#EED081 58%,#A47ADC);
    }
    .asset-image::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(47,59,53,.16));
    }
    .asset-resolution{
      position:absolute;
      top:15px;
      left:15px;
      z-index:2;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      color:#fff;
      background:rgba(47,59,53,.58);
      backdrop-filter:blur(8px);
      font-size:12px;
      font-weight:900;
    }
    .asset-body{
      padding:22px;
    }
    .asset-body h3{
      margin:0;
      font-size:21px;
      line-height:1.35;
      font-weight:900;
    }
    .asset-body p{
      margin:10px 0 16px;
      color:var(--color-muted);
      font-size:15px;
      line-height:1.75;
    }
    .asset-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
    }
    .asset-tags span{
      display:inline-flex;
      padding:5px 9px;
      border-radius:var(--radius-pill);
      background:#F7F1E6;
      color:#69746C;
      font-size:12px;
      font-weight:800;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--color-primary-dark);
      font-weight:900;
    }
    .text-link span{transition:transform .2s ease}
    .text-link:hover span{transform:translateX(4px)}

    .split-panel{
      padding:34px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid rgba(232,225,212,.86);
      box-shadow:var(--shadow-soft);
    }
    .process-list{
      margin:26px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:16px;
    }
    .process-item{
      display:grid;
      grid-template-columns:46px 1fr;
      gap:15px;
      align-items:flex-start;
      padding:18px;
      border-radius:22px;
      background:#FAF8F2;
      border:1px solid rgba(232,225,212,.82);
    }
    .process-num{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      color:#fff;
      background:var(--gradient-brand);
      font-weight:900;
      box-shadow:0 12px 24px rgba(142,99,217,.18);
    }
    .process-item h3{
      margin:0;
      font-size:18px;
      font-weight:900;
      line-height:1.35;
    }
    .process-item p{
      margin:5px 0 0;
      color:var(--color-muted);
      font-size:14px;
      line-height:1.7;
    }
    .consult-card{
      height:100%;
      padding:34px;
      border-radius:var(--radius-xl);
      color:#fff;
      background:
        radial-gradient(circle at 20% 18%,rgba(255,255,255,.18),transparent 30%),
        linear-gradient(135deg,#7E58C5,#5BAE67 62%,#DFAE4F);
      box-shadow:0 24px 58px rgba(83,70,52,.16);
      overflow:hidden;
      position:relative;
    }
    .consult-card h2{
      margin:0;
      font-size:31px;
      line-height:1.25;
      font-weight:900;
    }
    .consult-card p{
      margin:15px 0 24px;
      color:rgba(255,255,255,.86);
      line-height:1.85;
    }
    .consult-points{
      display:grid;
      gap:11px;
      margin:0 0 28px;
      padding:0;
      list-style:none;
    }
    .consult-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(255,255,255,.92);
      font-weight:700;
    }
    .consult-points li::before{
      content:"";
      width:9px;
      height:9px;
      margin-top:10px;
      border-radius:50%;
      background:#fff;
      box-shadow:0 0 0 5px rgba(255,255,255,.14);
      flex:0 0 auto;
    }

    .faq-section{background:rgba(255,255,255,.38)}
    .accordion{
      margin-top:34px;
      background:transparent;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:22px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(232,225,212,.86);
      box-shadow:0 12px 28px rgba(55,44,35,.05);
    }
    .accordion-title{
      padding:20px 58px 20px 22px;
      border:0;
      color:var(--color-text);
      font-size:17px;
      font-weight:900;
      line-height:1.55;
      background:#fff;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:#F9F5EC;
      color:var(--color-primary-dark);
    }
    .accordion-title::before{
      right:22px;
      color:var(--color-primary);
      font-size:22px;
      margin-top:-12px;
    }
    .is-active>.accordion-title{
      color:var(--color-primary-dark);
      background:linear-gradient(90deg,rgba(142,99,217,.10),rgba(114,196,122,.07));
    }
    .accordion-content{
      border:0;
      padding:0 22px 22px;
      color:var(--color-muted);
      line-height:1.85;
      background:#fff;
    }

    .cta-banner{
      position:relative;
      overflow:hidden;
      padding:44px;
      border-radius:34px;
      color:#fff;
      background:
        radial-gradient(circle at 12% 20%,rgba(255,255,255,.20),transparent 28%),
        radial-gradient(circle at 90% 18%,rgba(246,199,107,.42),transparent 28%),
        linear-gradient(135deg,#7E55C7 0%,#62B46F 62%,#F2BE61 100%);
      box-shadow:0 26px 62px rgba(72,66,44,.18);
    }
    .cta-banner::before{
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      border-radius:50%;
      right:-110px;
      bottom:-130px;
      background:rgba(255,255,255,.16);
    }
    .cta-banner h2{
      margin:0;
      font-size:36px;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .cta-banner p{
      margin:14px 0 0;
      max-width:680px;
      color:rgba(255,255,255,.86);
      font-size:17px;
      line-height:1.85;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .cta-banner .btn-secondary{
      background:rgba(255,255,255,.95);
      color:#6942AF;
      border-color:rgba(255,255,255,.6);
    }

    .site-footer{
      padding:66px 0 28px;
      color:rgba(255,255,255,.82);
      background:
        radial-gradient(circle at 20% 0%,rgba(142,99,217,.20),transparent 36%),
        var(--color-footer);
    }
    .footer-brand .brand-mark{
      box-shadow:none;
      background:linear-gradient(135deg,rgba(142,99,217,.85),rgba(114,196,122,.85));
    }
    .footer-brand .brand-title{color:#fff}
    .footer-brand .brand-sub{color:rgba(255,255,255,.66)}
    .footer-desc{
      max-width:430px;
      margin:18px 0 0;
      color:rgba(255,255,255,.72);
      line-height:1.85;
    }
    .footer-title{
      margin-bottom:15px;
      color:#fff;
      font-size:16px;
      font-weight:900;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a,
    .footer-links span{
      color:rgba(255,255,255,.72);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-top:44px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.13);
      color:rgba(255,255,255,.60);
      font-size:13px;
      line-height:1.7;
    }

    @media (max-width:1024px){
      .header-inner{min-height:72px}
      .nav-wrap{
        position:absolute;
        top:72px;
        left:16px;
        right:16px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:18px;
        border-radius:24px;
        background:rgba(255,255,255,.98);
        border:1px solid rgba(232,225,212,.9);
        box-shadow:var(--shadow-hover);
      }
      .site-header.is-open .nav-wrap{display:flex}
      .nav-menu{
        flex-direction:column;
        align-items:stretch;
        gap:8px;
      }
      .nav-menu a{
        justify-content:center;
        min-height:44px;
      }
      .header-tools{
        flex-direction:column;
        align-items:stretch;
      }
      .search-box{width:100%}
      .menu-toggle{display:flex}
      .page-hero h1{font-size:44px}
      .hero-panel{margin-top:36px}
      .magazine-grid{grid-template-columns:1fr}
      .tile-large{min-height:430px}
      .data-strip{grid-template-columns:repeat(2,1fr)}
      .asset-layout{grid-template-columns:repeat(2,1fr)}
    }

    @media (max-width:768px){
      .section{padding:66px 0}
      .section-sm{padding:52px 0}
      .section-title{font-size:31px}
      .page-hero{padding:58px 0}
      .page-hero h1{font-size:37px}
      .page-hero p{font-size:16px}
      .hero-actions .btn{width:100%}
      .hero-art{min-height:330px}
      .lens-frame{left:20px;right:20px;bottom:22px}
      .data-strip{grid-template-columns:1fr 1fr;gap:12px}
      .asset-layout{grid-template-columns:1fr}
      .notice-card{grid-template-columns:1fr;padding:24px}
      .split-panel,.consult-card{padding:26px}
      .cta-banner{padding:32px 24px;border-radius:28px}
      .cta-banner h2{font-size:29px}
      .footer-bottom{display:grid}
    }

    @media (max-width:520px){
      .brand-title{font-size:17px}
      .brand-sub{font-size:11px}
      .brand-mark{width:42px;height:42px}
      .header-inner{gap:12px}
      .page-hero h1{font-size:33px}
      .hero-labels{gap:8px}
      .tag{font-size:12px}
      .tile-content{left:18px;right:18px;bottom:18px}
      .tile-content h3{font-size:21px}
      .tile-large{min-height:380px}
      .image-tile{min-height:240px}
      .data-strip{grid-template-columns:1fr}
      .process-item{grid-template-columns:1fr}
      .capsule-card{min-width:200px}
      .btn{width:100%}
    }

/* roulang page: category1 */
:root{
      --color-primary:#8E63D9;
      --color-primary-dark:#6F46B8;
      --color-secondary:#72C47A;
      --color-secondary-dark:#4E9F5C;
      --color-accent:#F6C76B;
      --color-bg:#FAF8F2;
      --color-bg-soft:#F2EFE8;
      --color-bg-warm:#F7F1E6;
      --color-card:#FFFFFF;
      --color-text:#28312B;
      --color-muted:#667268;
      --color-light:#8B978E;
      --color-border:#E8E1D4;
      --color-footer:#283C31;
      --gradient-brand:linear-gradient(135deg,#8E63D9 0%,#72C47A 58%,#F6C76B 100%);
      --gradient-soft:linear-gradient(135deg,rgba(142,99,217,.13) 0%,rgba(114,196,122,.14) 55%,rgba(246,199,107,.18) 100%);
      --shadow-sm:0 10px 26px rgba(55,44,35,.06);
      --shadow-md:0 18px 45px rgba(55,44,35,.08);
      --shadow-lg:0 26px 68px rgba(55,44,35,.13);
      --radius-sm:14px;
      --radius-md:20px;
      --radius-lg:28px;
      --radius-xl:34px;
      --radius-pill:999px;
      --container:1200px;
      --transition:180ms ease;
    }

    *{box-sizing:border-box;}
    html{scroll-behavior:smooth;}
    body{
      margin:0;
      font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 12% 10%,rgba(142,99,217,.12),transparent 26%),
        radial-gradient(circle at 88% 8%,rgba(246,199,107,.16),transparent 22%),
        linear-gradient(180deg,#FFFCF6 0%,var(--color-bg) 42%,#FFFDF8 100%);
      line-height:1.8;
      font-size:16px;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:color var(--transition),background var(--transition),box-shadow var(--transition),transform var(--transition);}
    a:hover{color:var(--color-primary);}
    img,svg{max-width:100%;display:block;}
    button,input,textarea,select{font:inherit;}
    button{cursor:pointer;}
    ::selection{background:rgba(142,99,217,.22);}
    :focus-visible{
      outline:3px solid rgba(142,99,217,.35);
      outline-offset:3px;
      border-radius:10px;
    }

    .grid-container{
      max-width:var(--container);
      padding-left:20px;
      padding-right:20px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,253,248,.94);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(232,225,212,.88);
      box-shadow:0 8px 26px rgba(55,44,35,.04);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      color:var(--color-text);
    }
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:17px;
      background:var(--gradient-brand);
      display:grid;
      place-items:center;
      box-shadow:0 12px 28px rgba(142,99,217,.22);
      flex:0 0 auto;
      overflow:hidden;
    }
    .brand-mark svg{width:30px;height:30px;}
    .brand-text{display:flex;flex-direction:column;line-height:1.18;}
    .brand-title{
      font-weight:800;
      font-size:18px;
      letter-spacing:.01em;
    }
    .brand-sub{
      color:var(--color-muted);
      font-size:12px;
      margin-top:3px;
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      gap:18px;
      flex:1;
      justify-content:flex-end;
    }
    .nav-menu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
    }
    .nav-menu a{
      padding:10px 14px;
      border-radius:var(--radius-pill);
      color:#3C473F;
      font-size:15px;
      font-weight:650;
      white-space:nowrap;
    }
    .nav-menu a:hover{
      background:rgba(142,99,217,.09);
      color:var(--color-primary-dark);
    }
    .nav-menu a.active{
      color:var(--color-primary-dark);
      background:rgba(142,99,217,.13);
      box-shadow:inset 0 0 0 1px rgba(142,99,217,.12);
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search-box{
      width:250px;
      height:44px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 15px;
      border-radius:var(--radius-pill);
      background:#F5F0E7;
      border:1px solid rgba(232,225,212,.95);
      color:var(--color-muted);
    }
    .search-box svg{width:18px;height:18px;opacity:.72;}
    .search-box input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--color-text);
      font-size:14px;
      box-shadow:none;
      margin:0;
      padding:0;
      height:auto;
    }
    .search-box input::placeholder{color:#889188;}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:0;
      border-radius:var(--radius-pill);
      padding:13px 22px;
      min-height:46px;
      font-weight:750;
      line-height:1.2;
      text-align:center;
      transition:transform var(--transition),box-shadow var(--transition),background var(--transition),color var(--transition),border-color var(--transition);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:var(--gradient-brand);
      background-size:140% 140%;
      box-shadow:0 14px 32px rgba(142,99,217,.24);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(142,99,217,.3);
      background-position:80% 50%;
    }
    .btn-secondary{
      color:var(--color-primary-dark);
      background:#fff;
      border:1px solid rgba(142,99,217,.28);
      box-shadow:0 10px 24px rgba(55,44,35,.05);
    }
    .btn-secondary:hover{
      color:var(--color-primary-dark);
      background:rgba(142,99,217,.08);
      transform:translateY(-2px);
    }
    .btn-soft{
      color:#315B39;
      background:rgba(114,196,122,.14);
      border:1px solid rgba(114,196,122,.25);
    }
    .btn-soft:hover{background:rgba(114,196,122,.22);color:#25482D;}
    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--color-border);
      border-radius:16px;
      background:#fff;
      color:var(--color-text);
      align-items:center;
      justify-content:center;
      box-shadow:var(--shadow-sm);
    }
    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after{
      width:20px;
      height:2px;
      background:var(--color-text);
      border-radius:999px;
      display:block;
      position:relative;
      content:"";
    }
    .menu-toggle span::before{position:absolute;top:-7px;}
    .menu-toggle span::after{position:absolute;top:7px;}

    .page-hero{
      padding:72px 0 56px;
      position:relative;
      overflow:hidden;
    }
    .page-hero::before{
      content:"";
      position:absolute;
      inset:28px 0 auto auto;
      width:42vw;
      height:42vw;
      min-width:360px;
      min-height:360px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(142,99,217,.14),rgba(114,196,122,.09) 44%,transparent 70%);
      pointer-events:none;
      transform:translate(18%,-22%);
    }
    .breadcrumb{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      color:var(--color-muted);
      font-size:14px;
      margin-bottom:20px;
    }
    .breadcrumb a{
      color:var(--color-primary-dark);
      font-weight:700;
    }
    .breadcrumb span{color:#95A096;}
    .hero-card{
      position:relative;
      border-radius:var(--radius-xl);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(232,225,212,.9);
      box-shadow:var(--shadow-md);
      overflow:hidden;
    }
    .hero-copy{
      padding:42px;
      position:relative;
      z-index:2;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      background:rgba(246,199,107,.22);
      color:#72511A;
      font-size:14px;
      font-weight:750;
      margin-bottom:18px;
    }
    h1,h2,h3,h4,p{margin-top:0;}
    h1{
      max-width:760px;
      margin-bottom:18px;
      font-size:clamp(34px,5vw,54px);
      line-height:1.16;
      letter-spacing:-.035em;
      font-weight:850;
      color:var(--color-text);
    }
    h2{
      font-size:clamp(27px,3.1vw,38px);
      line-height:1.25;
      letter-spacing:-.025em;
      font-weight:820;
      margin-bottom:14px;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:780;
      margin-bottom:10px;
    }
    .hero-lead{
      max-width:710px;
      color:var(--color-muted);
      font-size:17px;
      line-height:1.9;
      margin-bottom:24px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:20px 0 30px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      font-size:13px;
      font-weight:700;
      color:#514E45;
      background:#fff;
      border:1px solid rgba(232,225,212,.95);
      box-shadow:0 6px 16px rgba(55,44,35,.04);
    }
    .tag.purple{background:rgba(142,99,217,.11);color:var(--color-primary-dark);border-color:rgba(142,99,217,.18);}
    .tag.green{background:rgba(114,196,122,.14);color:#336C3E;border-color:rgba(114,196,122,.24);}
    .tag.yellow{background:rgba(246,199,107,.2);color:#74521A;border-color:rgba(246,199,107,.28);}
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
    }
    .hero-visual{
      min-height:100%;
      padding:24px 24px 24px 0;
      position:relative;
    }
    .flower-panel{
      height:100%;
      min-height:430px;
      border-radius:30px;
      background:
        radial-gradient(circle at 18% 22%,rgba(255,255,255,.95) 0 7%,transparent 8%),
        radial-gradient(circle at 26% 40%,rgba(246,199,107,.65) 0 5%,transparent 6%),
        radial-gradient(circle at 70% 30%,rgba(142,99,217,.52) 0 10%,transparent 11%),
        radial-gradient(circle at 61% 62%,rgba(114,196,122,.5) 0 12%,transparent 13%),
        linear-gradient(135deg,#EFE8FF 0%,#E7F6E7 54%,#FFF2CE 100%);
      overflow:hidden;
      position:relative;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.7),var(--shadow-md);
    }
    .flower-panel::before{
      content:"";
      position:absolute;
      inset:auto -18% -22% -12%;
      height:210px;
      background:
        linear-gradient(135deg,rgba(114,196,122,.6),rgba(246,199,107,.35)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.2) 0 2px,transparent 2px 20px);
      border-radius:50% 50% 0 0;
      transform:rotate(-2deg);
    }
    .flower-stem{
      position:absolute;
      width:4px;
      height:170px;
      background:#559D61;
      border-radius:999px;
      left:50%;
      bottom:58px;
      transform:rotate(8deg);
    }
    .flower-bloom{
      position:absolute;
      left:44%;
      top:108px;
      width:120px;
      height:120px;
      border-radius:50%;
      background:
        radial-gradient(circle,#F6C76B 0 14%,transparent 15%),
        radial-gradient(ellipse at 50% 12%,rgba(142,99,217,.9) 0 20%,transparent 21%),
        radial-gradient(ellipse at 88% 50%,rgba(142,99,217,.82) 0 20%,transparent 21%),
        radial-gradient(ellipse at 50% 88%,rgba(142,99,217,.74) 0 20%,transparent 21%),
        radial-gradient(ellipse at 12% 50%,rgba(142,99,217,.68) 0 20%,transparent 21%);
      filter:drop-shadow(0 18px 24px rgba(111,70,184,.18));
    }
    .floating-stat{
      position:absolute;
      border-radius:20px;
      background:rgba(255,255,255,.9);
      border:1px solid rgba(255,255,255,.75);
      box-shadow:var(--shadow-md);
      padding:13px 16px;
      min-width:150px;
    }
    .floating-stat strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:var(--color-primary-dark);
    }
    .floating-stat span{
      display:block;
      color:var(--color-muted);
      font-size:13px;
      margin-top:4px;
      line-height:1.35;
    }
    .floating-stat.one{top:38px;left:26px;}
    .floating-stat.two{right:22px;bottom:34px;}
    .floating-stat.three{left:30px;bottom:104px;}

    .section{
      padding:86px 0;
      position:relative;
    }
    .section.compact{padding:58px 0;}
    .section-soft{
      background:
        radial-gradient(circle at 10% 12%,rgba(246,199,107,.16),transparent 24%),
        radial-gradient(circle at 90% 85%,rgba(142,99,217,.11),transparent 24%),
        var(--color-bg-soft);
    }
    .section-head{
      max-width:760px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      background:rgba(114,196,122,.14);
      color:#346C3D;
      font-size:13px;
      font-weight:780;
      margin-bottom:12px;
    }
    .section-head p{
      color:var(--color-muted);
      font-size:17px;
      max-width:720px;
    }

    .filter-panel{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid rgba(232,225,212,.95);
      box-shadow:var(--shadow-md);
      padding:24px;
    }
    .filter-row{
      display:grid;
      grid-template-columns:92px 1fr;
      gap:14px;
      align-items:start;
      padding:14px 0;
      border-bottom:1px dashed rgba(139,118,91,.18);
    }
    .filter-row:last-child{border-bottom:0;}
    .filter-label{
      color:var(--color-text);
      font-weight:780;
      padding-top:7px;
    }
    .chip-list{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:7px 13px;
      border-radius:var(--radius-pill);
      background:#F8F4EA;
      border:1px solid rgba(232,225,212,.95);
      color:#566258;
      font-size:14px;
      font-weight:700;
      transition:background var(--transition),color var(--transition),transform var(--transition),border-color var(--transition);
    }
    .chip:hover,
    .chip.is-active{
      background:rgba(142,99,217,.11);
      border-color:rgba(142,99,217,.28);
      color:var(--color-primary-dark);
      transform:translateY(-1px);
    }
    .filter-note{
      margin-top:18px;
      padding:14px 16px;
      border-radius:18px;
      background:var(--gradient-soft);
      color:#526056;
      font-size:14px;
    }

    .guide-layout{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:26px;
      align-items:stretch;
    }
    .card{
      background:var(--color-card);
      border:1px solid rgba(232,225,212,.95);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
      transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition);
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-lg);
      border-color:rgba(142,99,217,.26);
    }
    .plant-card-large{
      display:flex;
      flex-direction:column;
      min-height:100%;
    }
    .image-placeholder{
      position:relative;
      overflow:hidden;
      background:var(--gradient-soft);
      min-height:220px;
    }
    .plant-card-large .image-placeholder{min-height:360px;}
    .image-placeholder::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 32% 32%,rgba(255,255,255,.9) 0 5%,transparent 6%),
        radial-gradient(circle at 40% 48%,rgba(246,199,107,.74) 0 4%,transparent 5%),
        radial-gradient(ellipse at 72% 28%,rgba(142,99,217,.48) 0 14%,transparent 15%),
        radial-gradient(ellipse at 27% 68%,rgba(114,196,122,.46) 0 18%,transparent 19%),
        linear-gradient(135deg,rgba(142,99,217,.18),rgba(114,196,122,.18),rgba(246,199,107,.2));
      transition:transform 420ms ease;
    }
    .card:hover .image-placeholder::before{transform:scale(1.045);}
    .image-label{
      position:absolute;
      left:18px;
      top:18px;
      z-index:2;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.88);
      color:var(--color-primary-dark);
      font-size:13px;
      font-weight:800;
      box-shadow:0 10px 20px rgba(55,44,35,.07);
    }
    .plant-content{
      padding:24px;
    }
    .plant-title-row{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:10px;
    }
    .plant-title-row h3{margin-bottom:0;}
    .latin-name{
      color:var(--color-light);
      font-size:13px;
      line-height:1.5;
      text-align:right;
      min-width:86px;
    }
    .plant-desc{
      color:var(--color-muted);
      margin-bottom:18px;
    }
    .info-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin:18px 0;
    }
    .info-item{
      padding:13px 14px;
      border-radius:16px;
      background:#FAF6EE;
      border:1px solid rgba(232,225,212,.76);
    }
    .info-item span{
      display:block;
      color:var(--color-light);
      font-size:12px;
      font-weight:700;
      margin-bottom:2px;
    }
    .info-item strong{
      color:#3F4A42;
      font-size:15px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--color-primary-dark);
      font-weight:800;
    }
    .text-link .arrow{
      transition:transform var(--transition);
    }
    .text-link:hover .arrow{transform:translateX(4px);}
    .small-card-stack{
      display:grid;
      grid-template-columns:1fr;
      gap:20px;
    }
    .plant-mini{
      display:grid;
      grid-template-columns:170px 1fr;
      min-height:190px;
    }
    .plant-mini .image-placeholder{min-height:190px;}
    .plant-mini .plant-content{padding:20px;}
    .plant-mini h3{font-size:19px;}
    .plant-mini .plant-desc{
      font-size:15px;
      line-height:1.7;
      margin-bottom:12px;
    }

    .knowledge-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:26px;
      align-items:start;
    }
    .knowledge-panel{
      padding:32px;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid rgba(232,225,212,.95);
      box-shadow:var(--shadow-md);
    }
    .knowledge-panel p{color:var(--color-muted);}
    .check-list{
      list-style:none;
      padding:0;
      margin:22px 0 0;
      display:grid;
      gap:13px;
    }
    .check-list li{
      display:flex;
      gap:11px;
      align-items:flex-start;
      color:#4E5B52;
    }
    .check-icon{
      width:24px;
      height:24px;
      border-radius:50%;
      background:rgba(114,196,122,.18);
      color:#34723F;
      flex:0 0 auto;
      display:grid;
      place-items:center;
      font-size:14px;
      font-weight:900;
      margin-top:3px;
    }
    .timeline{
      position:relative;
      padding:8px 0 8px 24px;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:8px;
      top:16px;
      bottom:16px;
      width:2px;
      background:linear-gradient(180deg,var(--color-primary),var(--color-secondary),var(--color-accent));
      border-radius:999px;
    }
    .timeline-item{
      position:relative;
      padding:16px 0 16px 18px;
    }
    .timeline-item::before{
      content:"";
      position:absolute;
      left:-22px;
      top:25px;
      width:14px;
      height:14px;
      border-radius:50%;
      background:#fff;
      border:4px solid var(--color-primary);
      box-shadow:0 0 0 5px rgba(142,99,217,.1);
    }
    .timeline-item:nth-child(2)::before{border-color:var(--color-secondary);box-shadow:0 0 0 5px rgba(114,196,122,.12);}
    .timeline-item:nth-child(3)::before{border-color:var(--color-accent);box-shadow:0 0 0 5px rgba(246,199,107,.16);}
    .timeline-item strong{
      display:block;
      margin-bottom:4px;
      font-size:17px;
    }
    .timeline-item span{
      color:var(--color-muted);
      font-size:15px;
    }

    .scenario-strip{
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding:6px 2px 18px;
      scrollbar-color:rgba(142,99,217,.38) rgba(232,225,212,.5);
    }
    .scenario-card{
      min-width:240px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(232,225,212,.95);
      padding:22px;
      box-shadow:var(--shadow-sm);
      transition:transform var(--transition),box-shadow var(--transition);
    }
    .scenario-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
    .scenario-icon{
      width:48px;
      height:48px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:var(--gradient-soft);
      margin-bottom:14px;
      font-size:22px;
    }
    .scenario-card p{
      color:var(--color-muted);
      font-size:15px;
      margin-bottom:0;
    }

    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .step-card{
      position:relative;
      padding:24px 20px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(232,225,212,.95);
      box-shadow:var(--shadow-sm);
    }
    .step-number{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      border-radius:15px;
      background:var(--gradient-brand);
      color:#fff;
      font-weight:850;
      margin-bottom:16px;
      box-shadow:0 10px 20px rgba(142,99,217,.2);
    }
    .step-card p{color:var(--color-muted);font-size:15px;margin-bottom:0;}

    .consult-card{
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,255,255,.88)),
        var(--gradient-soft);
      border:1px solid rgba(232,225,212,.95);
      box-shadow:var(--shadow-md);
      padding:32px;
    }
    .consult-form{
      display:grid;
      gap:16px;
    }
    .form-row{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .field label{
      display:block;
      margin-bottom:7px;
      color:#4C584F;
      font-size:14px;
      font-weight:750;
    }
    .field input,
    .field textarea,
    .field select{
      width:100%;
      border:1px solid rgba(232,225,212,.95);
      background:#FAF6EE;
      color:var(--color-text);
      border-radius:16px;
      padding:13px 14px;
      min-height:48px;
      margin:0;
      box-shadow:none;
      transition:border-color var(--transition),box-shadow var(--transition),background var(--transition);
    }
    .field textarea{
      min-height:116px;
      resize:vertical;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus{
      outline:0;
      background:#fff;
      border-color:rgba(142,99,217,.55);
      box-shadow:0 0 0 4px rgba(142,99,217,.12);
    }
    .form-hint{
      color:var(--color-muted);
      font-size:13px;
      line-height:1.7;
      margin:2px 0 0;
    }

    .accordion.faq-accordion{
      background:transparent;
      margin:0;
    }
    .faq-accordion .accordion-item{
      margin-bottom:14px;
      border-radius:22px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(232,225,212,.95);
      box-shadow:var(--shadow-sm);
    }
    .faq-accordion .accordion-title{
      padding:20px 56px 20px 22px;
      border:0;
      color:var(--color-text);
      font-size:17px;
      font-weight:800;
      line-height:1.55;
      background:#fff;
    }
    .faq-accordion .accordion-title:hover,
    .faq-accordion .accordion-title:focus{
      background:#FBF7EF;
      color:var(--color-primary-dark);
    }
    .faq-accordion .is-active > .accordion-title{
      background:linear-gradient(90deg,rgba(142,99,217,.11),rgba(114,196,122,.08));
      color:var(--color-primary-dark);
    }
    .faq-accordion .accordion-content{
      border:0;
      padding:0 22px 22px;
      color:var(--color-muted);
      background:#fff;
      line-height:1.85;
    }

    .cta-banner{
      border-radius:var(--radius-xl);
      padding:40px;
      color:#fff;
      background:
        radial-gradient(circle at 18% 20%,rgba(255,255,255,.28),transparent 20%),
        radial-gradient(circle at 88% 80%,rgba(246,199,107,.34),transparent 24%),
        linear-gradient(135deg,#7751C9 0%,#5EAD69 62%,#E0A744 100%);
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      position:relative;
    }
    .cta-banner::after{
      content:"";
      position:absolute;
      width:230px;
      height:230px;
      border:38px solid rgba(255,255,255,.12);
      border-radius:50%;
      right:-80px;
      top:-82px;
    }
    .cta-banner h2{color:#fff;margin-bottom:10px;}
    .cta-banner p{
      max-width:720px;
      color:rgba(255,255,255,.88);
      margin-bottom:0;
    }
    .cta-banner .btn-secondary{
      background:rgba(255,255,255,.94);
      border-color:rgba(255,255,255,.65);
    }

    .site-footer{
      background:
        radial-gradient(circle at 8% 0%,rgba(142,99,217,.16),transparent 30%),
        linear-gradient(180deg,#31483A 0%,var(--color-footer) 100%);
      color:rgba(255,255,255,.86);
      padding:64px 0 28px;
    }
    .footer-brand .brand-mark{
      background:rgba(255,255,255,.12);
      box-shadow:none;
      border:1px solid rgba(255,255,255,.16);
    }
    .footer-brand .brand-title{color:#fff;}
    .footer-brand .brand-sub{color:rgba(255,255,255,.64);}
    .footer-desc{
      max-width:440px;
      color:rgba(255,255,255,.72);
      margin:18px 0 0;
    }
    .footer-title{
      color:#fff;
      font-weight:820;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a,
    .footer-links span{
      color:rgba(255,255,255,.72);
      font-size:15px;
    }
    .footer-links a:hover{color:#fff;}
    .footer-bottom{
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.13);
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.62);
      font-size:14px;
    }

    @media (max-width:1100px){
      .search-box{display:none;}
      .guide-layout,.knowledge-grid{grid-template-columns:1fr;}
      .hero-visual{padding:0 24px 24px;}
      .flower-panel{min-height:360px;}
      .steps-grid{grid-template-columns:repeat(2,1fr);}
    }
    @media (max-width:900px){
      .header-inner{min-height:70px;}
      .menu-toggle{display:flex;}
      .nav-wrap{
        position:absolute;
        left:16px;
        right:16px;
        top:calc(100% + 10px);
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:14px;
        padding:16px;
        border-radius:24px;
        background:rgba(255,255,255,.98);
        border:1px solid rgba(232,225,212,.95);
        box-shadow:var(--shadow-lg);
      }
      .site-header.menu-open .nav-wrap{display:flex;}
      .nav-menu{
        flex-direction:column;
        align-items:stretch;
        gap:6px;
      }
      .nav-menu a{
        display:block;
        padding:12px 14px;
      }
      .header-actions{
        width:100%;
        flex-direction:column;
        align-items:stretch;
      }
      .header-actions .btn{width:100%;}
      .search-box{
        display:flex;
        width:100%;
      }
      .page-hero{padding:46px 0 42px;}
      .hero-copy{padding:30px;}
      .section{padding:64px 0;}
      .plant-mini{grid-template-columns:145px 1fr;}
    }
    @media (max-width:640px){
      .grid-container{padding-left:16px;padding-right:16px;}
      .brand-title{font-size:16px;}
      .brand-sub{font-size:11px;}
      .brand-mark{width:42px;height:42px;border-radius:15px;}
      .hero-card{border-radius:26px;}
      .hero-copy{padding:24px;}
      .hero-actions .btn{width:100%;}
      .tag-row{gap:8px;}
      .flower-panel{min-height:300px;border-radius:24px;}
      .floating-stat{
        min-width:124px;
        padding:10px 12px;
      }
      .floating-stat strong{font-size:18px;}
      .floating-stat.one{top:18px;left:16px;}
      .floating-stat.three{left:16px;bottom:74px;}
      .floating-stat.two{right:12px;bottom:18px;}
      .filter-panel{padding:18px;border-radius:24px;}
      .filter-row{grid-template-columns:1fr;gap:8px;}
      .plant-card-large .image-placeholder{min-height:260px;}
      .plant-mini{grid-template-columns:1fr;}
      .plant-mini .image-placeholder{min-height:200px;}
      .info-list{grid-template-columns:1fr;}
      .knowledge-panel,.consult-card,.cta-banner{padding:24px;border-radius:26px;}
      .steps-grid{grid-template-columns:1fr;}
      .form-row{grid-template-columns:1fr;}
      .cta-banner .grid-x{gap:20px;}
      .footer-bottom{display:grid;}
    }
    @media (max-width:520px){
      body{font-size:15px;}
      .header-inner{gap:12px;}
      .section{padding:54px 0;}
      .section.compact{padding:44px 0;}
      .page-hero::before{min-width:260px;min-height:260px;}
      .scenario-card{min-width:218px;}
    }

/* roulang page: category3 */
:root{
      --color-primary:#8E63D9;
      --color-primary-dark:#6F49B8;
      --color-secondary:#72C47A;
      --color-accent:#F6C76B;
      --color-bg:#FAF8F2;
      --color-bg-soft:#F2EFE8;
      --color-card:#FFFFFF;
      --color-text:#28312B;
      --color-muted:#667268;
      --color-border:#E8E1D4;
      --color-footer:#29362F;
      --gradient-brand:linear-gradient(135deg,#8E63D9 0%,#72C47A 58%,#F6C76B 100%);
      --gradient-soft:linear-gradient(135deg,rgba(142,99,217,.12),rgba(114,196,122,.12),rgba(246,199,107,.16));
      --shadow-card:0 18px 45px rgba(55,44,35,.08);
      --shadow-hover:0 24px 62px rgba(55,44,35,.14);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --container:1200px;
      --transition:all .24s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",system-ui,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 6%,rgba(142,99,217,.10),transparent 28%),
        radial-gradient(circle at 88% 12%,rgba(114,196,122,.12),transparent 26%),
        var(--color-bg);
      line-height:1.8;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover{color:var(--color-primary)}
    img,svg{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(142,99,217,.22)}
    .grid-container{max-width:var(--container)}
    .section{padding:92px 0}
    .section.compact{padding:64px 0}
    .section-soft{background:rgba(242,239,232,.72)}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:var(--radius-pill);
      background:rgba(142,99,217,.10);
      color:var(--color-primary-dark);
      font-weight:800;
      font-size:14px;
      margin-bottom:16px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--gradient-brand);
      box-shadow:0 0 0 5px rgba(142,99,217,.08);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,54px);
      line-height:1.16;
      font-weight:850;
      letter-spacing:-.04em;
      margin-bottom:22px;
      color:var(--color-text);
    }
    h2{
      font-size:clamp(28px,3.8vw,38px);
      line-height:1.22;
      font-weight:820;
      letter-spacing:-.03em;
      margin-bottom:16px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    p{color:var(--color-muted);font-size:16px}
    .lead{
      font-size:18px;
      line-height:1.9;
      max-width:760px;
      color:#58655C;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:34px;
    }
    .section-head .lead{margin-bottom:0}
    .text-narrow{max-width:760px}

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(232,225,212,.82);
      box-shadow:0 10px 30px rgba(55,44,35,.04);
    }
    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:var(--gradient-brand);
      box-shadow:0 14px 34px rgba(142,99,217,.24);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark svg{width:33px;height:33px}
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-title{
      font-weight:850;
      letter-spacing:-.03em;
      font-size:18px;
      color:var(--color-text);
    }
    .brand-sub{
      margin-top:3px;
      font-size:12px;
      color:var(--color-muted);
      font-weight:650;
    }
    .nav-menu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1;
    }
    .nav-menu a{
      padding:10px 14px;
      border-radius:var(--radius-pill);
      color:#455048;
      font-size:15px;
      font-weight:750;
      white-space:nowrap;
    }
    .nav-menu a:hover{
      background:rgba(142,99,217,.09);
      color:var(--color-primary-dark);
    }
    .nav-menu a.active{
      background:linear-gradient(135deg,rgba(142,99,217,.14),rgba(114,196,122,.12));
      color:var(--color-primary-dark);
      box-shadow:inset 0 0 0 1px rgba(142,99,217,.12);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search-box{
      width:244px;
      height:44px;
      display:flex;
      align-items:center;
      gap:9px;
      padding:0 15px;
      border-radius:var(--radius-pill);
      background:#F7F1E6;
      border:1px solid rgba(232,225,212,.95);
      color:var(--color-muted);
      transition:var(--transition);
    }
    .search-box:focus-within{
      border-color:rgba(142,99,217,.48);
      box-shadow:0 0 0 4px rgba(142,99,217,.12);
      background:#fff;
    }
    .search-box svg{width:17px;height:17px;opacity:.72;flex:0 0 auto}
    .search-box input{
      border:0;
      outline:0;
      width:100%;
      background:transparent;
      color:var(--color-text);
      font-size:14px;
      box-shadow:none;
      margin:0;
      padding:0;
      height:auto;
    }
    .search-box input::placeholder{color:#8A938C}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--color-border);
      background:#fff;
      color:var(--color-text);
      align-items:center;
      justify-content:center;
    }
    .menu-toggle span,.menu-toggle span:before,.menu-toggle span:after{
      display:block;
      width:20px;
      height:2px;
      border-radius:2px;
      background:currentColor;
      position:relative;
      content:"";
    }
    .menu-toggle span:before{position:absolute;top:-7px}
    .menu-toggle span:after{position:absolute;top:7px}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:13px 22px;
      border-radius:var(--radius-pill);
      font-weight:850;
      border:1px solid transparent;
      transition:var(--transition);
      line-height:1.2;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:var(--gradient-brand);
      box-shadow:0 14px 28px rgba(142,99,217,.25);
      background-size:140% 140%;
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      color:#fff;
      box-shadow:0 18px 38px rgba(142,99,217,.34);
      background-position:80% 50%;
    }
    .btn-secondary{
      color:var(--color-primary-dark);
      background:#fff;
      border-color:rgba(142,99,217,.26);
      box-shadow:0 12px 24px rgba(55,44,35,.05);
    }
    .btn-secondary:hover{
      transform:translateY(-2px);
      background:rgba(142,99,217,.08);
      color:var(--color-primary-dark);
    }
    .btn-soft{
      background:rgba(114,196,122,.13);
      color:#357E43;
      border-color:rgba(114,196,122,.22);
    }
    .btn-soft:hover{
      background:rgba(114,196,122,.20);
      color:#2F743C;
      transform:translateY(-2px);
    }
    a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(142,99,217,.32);
      outline-offset:3px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--color-primary-dark);
      font-weight:850;
    }
    .text-link span{transition:var(--transition)}
    .text-link:hover span{transform:translateX(4px)}

    .inner-hero{
      padding:78px 0 72px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 16% 24%,rgba(142,99,217,.15),transparent 28%),
        radial-gradient(circle at 86% 12%,rgba(246,199,107,.18),transparent 30%),
        linear-gradient(180deg,#fff 0%,rgba(250,248,242,.9) 100%);
    }
    .inner-hero:after{
      content:"";
      position:absolute;
      right:-120px;
      bottom:-120px;
      width:360px;
      height:360px;
      background:var(--gradient-brand);
      opacity:.10;
      border-radius:50%;
      filter:blur(4px);
    }
    .breadcrumb{
      display:flex;
      align-items:center;
      gap:9px;
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .breadcrumb a{color:var(--color-primary-dark)}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      font-size:14px;
      font-weight:780;
      color:#4D584F;
      background:#fff;
      border:1px solid rgba(232,225,212,.94);
      box-shadow:0 8px 20px rgba(55,44,35,.04);
    }
    .tag.purple{background:rgba(142,99,217,.10);color:var(--color-primary-dark);border-color:rgba(142,99,217,.16)}
    .tag.green{background:rgba(114,196,122,.13);color:#367B42;border-color:rgba(114,196,122,.20)}
    .tag.yellow{background:rgba(246,199,107,.22);color:#805D15;border-color:rgba(246,199,107,.28)}
    .hero-panel{
      position:relative;
      z-index:1;
      background:#fff;
      border-radius:var(--radius-xl);
      padding:26px;
      border:1px solid rgba(232,225,212,.92);
      box-shadow:var(--shadow-card);
      overflow:hidden;
    }
    .guide-preview{
      min-height:410px;
      border-radius:26px;
      padding:24px;
      background:
        linear-gradient(145deg,rgba(40,49,43,.20),rgba(40,49,43,.02)),
        radial-gradient(circle at 24% 28%,#E9D8FF 0 9%,transparent 10%),
        radial-gradient(circle at 76% 24%,#FFE5A4 0 8%,transparent 9%),
        radial-gradient(circle at 64% 68%,#CFF2D4 0 12%,transparent 13%),
        linear-gradient(135deg,#F7F1E6,#FFFFFF);
      position:relative;
      overflow:hidden;
    }
    .guide-preview:before{
      content:"";
      position:absolute;
      inset:24px;
      border:1px dashed rgba(142,99,217,.32);
      border-radius:24px;
    }
    .guide-sheet{
      position:absolute;
      left:34px;
      top:42px;
      width:62%;
      min-height:286px;
      border-radius:22px;
      background:rgba(255,255,255,.92);
      box-shadow:0 18px 42px rgba(55,44,35,.12);
      padding:22px;
      border:1px solid rgba(232,225,212,.9);
    }
    .sheet-line{height:10px;border-radius:999px;background:#EDE5D8;margin:12px 0}
    .sheet-line.wide{width:88%;background:linear-gradient(90deg,rgba(142,99,217,.22),rgba(114,196,122,.22))}
    .sheet-line.mid{width:68%}
    .sheet-line.short{width:46%}
    .sheet-title{
      font-weight:900;
      font-size:20px;
      color:var(--color-text);
      margin-bottom:16px;
    }
    .flower-icon{
      position:absolute;
      right:26px;
      bottom:32px;
      width:132px;
      height:132px;
      border-radius:36px;
      background:var(--gradient-brand);
      box-shadow:0 24px 48px rgba(142,99,217,.22);
      display:grid;
      place-items:center;
    }
    .flower-icon svg{width:82px;height:82px}
    .floating-badge{
      position:absolute;
      right:24px;
      top:24px;
      display:flex;
      flex-direction:column;
      gap:2px;
      padding:13px 15px;
      border-radius:18px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(232,225,212,.9);
      box-shadow:0 16px 35px rgba(55,44,35,.10);
      font-size:13px;
      color:var(--color-muted);
      font-weight:750;
    }
    .floating-badge strong{font-size:22px;color:var(--color-primary-dark);line-height:1.1}

    .card{
      background:var(--color-card);
      border:1px solid rgba(232,225,212,.92);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-card);
      transition:var(--transition);
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(142,99,217,.28);
    }
    .resource-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:26px;
      align-items:stretch;
    }
    .resource-main{
      padding:32px;
      min-height:420px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        radial-gradient(circle at 90% 10%,rgba(246,199,107,.24),transparent 24%),
        radial-gradient(circle at 8% 16%,rgba(142,99,217,.13),transparent 28%),
        #fff;
    }
    .resource-stack{
      display:grid;
      gap:20px;
    }
    .resource-card{
      padding:24px;
      position:relative;
    }
    .resource-card .meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:14px;
    }
    .resource-title{
      font-size:24px;
      line-height:1.35;
      font-weight:850;
      margin-bottom:12px;
      color:var(--color-text);
    }
    .resource-desc{margin-bottom:22px}
    .resource-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding-top:18px;
      border-top:1px solid rgba(232,225,212,.85);
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
    }
    .resource-icon{
      width:56px;
      height:56px;
      border-radius:20px;
      display:grid;
      place-items:center;
      background:var(--gradient-soft);
      margin-bottom:18px;
    }
    .resource-icon svg{width:30px;height:30px;color:var(--color-primary-dark)}
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:var(--radius-pill);
      padding:6px 10px;
      font-size:12px;
      line-height:1.2;
      font-weight:850;
      border:1px solid transparent;
    }
    .badge.purple{background:rgba(142,99,217,.11);color:var(--color-primary-dark);border-color:rgba(142,99,217,.18)}
    .badge.green{background:rgba(114,196,122,.14);color:#327A3E;border-color:rgba(114,196,122,.20)}
    .badge.yellow{background:rgba(246,199,107,.24);color:#7A5A16;border-color:rgba(246,199,107,.30)}
    .badge.gray{background:#F7F1E6;color:#657066;border-color:#E8E1D4}

    .policy-card{
      padding:34px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(142,99,217,.10),rgba(114,196,122,.10)),
        #fff;
      border:1px solid rgba(232,225,212,.92);
      box-shadow:var(--shadow-card);
    }
    .policy-list{
      display:grid;
      gap:16px;
      margin:26px 0 0;
      padding:0;
      list-style:none;
    }
    .policy-list li{
      display:flex;
      gap:14px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(232,225,212,.8);
      color:#526058;
      font-weight:650;
    }
    .policy-list li:before{
      content:"✓";
      width:26px;
      height:26px;
      flex:0 0 26px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:rgba(114,196,122,.18);
      color:#327A3E;
      font-weight:900;
    }

    .article-layout{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:26px;
      align-items:start;
    }
    .article-feature{
      padding:0;
    }
    .article-art{
      height:250px;
      border-radius:var(--radius-lg) var(--radius-lg) 0 0;
      background:
        radial-gradient(circle at 30% 32%,rgba(255,255,255,.92) 0 9%,transparent 10%),
        radial-gradient(circle at 44% 42%,rgba(255,255,255,.86) 0 7%,transparent 8%),
        radial-gradient(circle at 62% 28%,rgba(255,255,255,.82) 0 8%,transparent 9%),
        linear-gradient(135deg,#8E63D9,#72C47A 58%,#F6C76B);
      position:relative;
      overflow:hidden;
    }
    .article-art:after{
      content:"";
      position:absolute;
      inset:auto -10% -44% -10%;
      height:72%;
      background:rgba(40,49,43,.16);
      border-radius:50% 50% 0 0;
    }
    .article-body{padding:26px}
    .article-list{
      display:grid;
      gap:16px;
    }
    .mini-article{
      padding:20px;
      display:grid;
      grid-template-columns:70px 1fr;
      gap:16px;
      align-items:center;
      box-shadow:none;
    }
    .mini-thumb{
      width:70px;
      height:70px;
      border-radius:20px;
      background:var(--gradient-soft);
      display:grid;
      place-items:center;
      font-weight:900;
      color:var(--color-primary-dark);
    }
    .mini-article h3{
      font-size:18px;
      margin-bottom:4px;
    }
    .mini-article p{
      font-size:14px;
      margin-bottom:0;
      line-height:1.6;
    }

    .workflow{
      position:relative;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .step-card{
      padding:24px;
      min-height:220px;
      position:relative;
    }
    .step-num{
      width:44px;
      height:44px;
      border-radius:16px;
      background:var(--gradient-brand);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:900;
      margin-bottom:18px;
      box-shadow:0 12px 24px rgba(142,99,217,.20);
    }

    .consult-wrap{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:28px;
      align-items:stretch;
    }
    .consult-info{
      padding:34px;
      border-radius:var(--radius-xl);
      background:var(--color-footer);
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .consult-info:before{
      content:"";
      position:absolute;
      right:-90px;
      top:-90px;
      width:250px;
      height:250px;
      border-radius:50%;
      background:var(--gradient-brand);
      opacity:.32;
    }
    .consult-info h2,.consult-info p{position:relative;z-index:1}
    .consult-info p{color:rgba(255,255,255,.76)}
    .consult-points{
      position:relative;
      z-index:1;
      display:grid;
      gap:12px;
      margin-top:24px;
    }
    .consult-point{
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.88);
      font-weight:700;
    }
    .form-card{
      padding:28px;
      border-radius:var(--radius-xl);
    }
    .form-card label{
      color:var(--color-text);
      font-weight:800;
      margin-bottom:8px;
    }
    .form-card input,.form-card textarea,.form-card select{
      border:1px solid rgba(232,225,212,.98);
      background:#FAF8F2;
      border-radius:15px;
      min-height:48px;
      padding:12px 14px;
      box-shadow:none;
      color:var(--color-text);
      margin-bottom:18px;
    }
    .form-card textarea{min-height:126px;resize:vertical}
    .form-card input:focus,.form-card textarea:focus,.form-card select:focus{
      border-color:rgba(142,99,217,.55);
      box-shadow:0 0 0 4px rgba(142,99,217,.12);
      background:#fff;
    }

    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:22px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(232,225,212,.92);
      box-shadow:0 12px 28px rgba(55,44,35,.05);
    }
    .accordion-title{
      border:0;
      padding:22px 58px 22px 24px;
      font-size:17px;
      font-weight:850;
      color:var(--color-text);
      background:#fff;
      line-height:1.5;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(142,99,217,.07);
      color:var(--color-primary-dark);
    }
    .accordion-title:before{
      right:24px;
      font-size:22px;
      color:var(--color-primary-dark);
      margin-top:-14px;
    }
    .accordion-content{
      border:0;
      padding:0 24px 24px;
      color:var(--color-muted);
      background:#fff;
      line-height:1.9;
    }
    .is-active .accordion-title{
      color:var(--color-primary-dark);
      box-shadow:inset 5px 0 0 rgba(142,99,217,.7);
    }

    .cta-banner{
      border-radius:var(--radius-xl);
      padding:42px;
      overflow:hidden;
      position:relative;
      background:
        radial-gradient(circle at 86% 20%,rgba(255,255,255,.34),transparent 24%),
        var(--gradient-brand);
      color:#fff;
      box-shadow:0 22px 58px rgba(142,99,217,.25);
    }
    .cta-banner:before{
      content:"";
      position:absolute;
      left:-80px;
      bottom:-120px;
      width:280px;
      height:280px;
      border-radius:50%;
      background:rgba(255,255,255,.18);
    }
    .cta-banner h2,.cta-banner p,.cta-actions{position:relative;z-index:1}
    .cta-banner h2{color:#fff;margin-bottom:12px}
    .cta-banner p{color:rgba(255,255,255,.86);max-width:720px}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .cta-banner .btn-secondary{
      background:rgba(255,255,255,.94);
    }
    .cta-banner .btn-soft{
      background:rgba(40,49,43,.20);
      color:#fff;
      border-color:rgba(255,255,255,.30);
    }
    .cta-banner .btn-soft:hover{background:rgba(40,49,43,.28);color:#fff}

    .site-footer{
      background:var(--color-footer);
      color:#fff;
      padding:68px 0 28px;
    }
    .footer-brand .brand-mark{
      background:linear-gradient(135deg,rgba(142,99,217,.95),rgba(114,196,122,.95));
      box-shadow:none;
    }
    .footer-brand .brand-title{color:#fff}
    .footer-brand .brand-sub{color:rgba(255,255,255,.64)}
    .footer-desc{
      margin-top:20px;
      max-width:430px;
      color:rgba(255,255,255,.70);
    }
    .footer-title{
      font-weight:850;
      font-size:16px;
      margin-bottom:16px;
      color:#fff;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .footer-links a,.footer-links span{
      color:rgba(255,255,255,.68);
      font-size:14px;
      font-weight:650;
    }
    .footer-links a:hover{color:#fff}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-top:46px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.60);
      font-size:13px;
    }

    @media (max-width:1024px){
      .header-inner{flex-wrap:wrap;padding:12px 0}
      .nav-menu{
        order:3;
        width:100%;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:6px;
      }
      .search-box{width:210px}
      .inner-hero{padding:58px 0}
      .resource-grid,.consult-wrap{grid-template-columns:1fr}
      .workflow{grid-template-columns:repeat(2,1fr)}
      .article-layout{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .site-header{position:relative}
      .header-inner{min-height:70px}
      .menu-toggle{display:flex}
      .nav-actions{margin-left:auto}
      .search-box{display:none}
      .nav-menu{
        display:none;
        width:100%;
        background:#fff;
        border:1px solid var(--color-border);
        border-radius:22px;
        padding:10px;
        box-shadow:var(--shadow-card);
        overflow:visible;
      }
      .nav-menu.is-open{display:grid;grid-template-columns:1fr}
      .nav-menu a{width:100%;padding:12px 14px}
      .nav-actions .btn{display:none}
      .section{padding:64px 0}
      .section-head{display:block}
      .section-head .lead{margin-top:10px}
      .hero-panel{margin-top:28px}
      .guide-preview{min-height:350px}
      .guide-sheet{width:72%;left:22px}
      .flower-icon{width:104px;height:104px;right:18px}
      .resource-main{min-height:auto}
      .workflow{grid-template-columns:1fr}
      .cta-banner{padding:30px}
    }
    @media (max-width:520px){
      .brand-title{font-size:16px}
      .brand-sub{font-size:11px}
      .brand-mark{width:42px;height:42px}
      .inner-hero{padding:46px 0}
      .tag-row{gap:8px}
      .tag{font-size:13px}
      .hero-panel{padding:16px;border-radius:24px}
      .guide-preview{min-height:310px;padding:16px}
      .guide-sheet{position:relative;left:auto;top:auto;width:100%;min-height:210px}
      .floating-badge,.flower-icon{display:none}
      .resource-grid{gap:18px}
      .resource-main,.resource-card,.policy-card,.consult-info,.form-card{padding:22px}
      .resource-title{font-size:21px}
      .resource-foot{display:block}
      .resource-foot .text-link{margin-top:12px}
      .mini-article{grid-template-columns:1fr}
      .mini-thumb{width:56px;height:56px}
      .cta-actions .btn,.btn{width:100%}
      .footer-bottom{display:grid}
    }
