/* roulang page: index */
:root{
      --color-primary:#7b2438;
      --color-primary-dark:#551727;
      --color-primary-soft:#f5e8eb;
      --color-secondary:#b27a45;
      --color-secondary-soft:#f8efe4;
      --color-ink:#21191b;
      --color-text:#4d4244;
      --color-muted:#776b6e;
      --color-line:#eadfe1;
      --color-bg:#fffaf5;
      --color-card:#ffffff;
      --color-deep:#2a171e;
      --color-deep-2:#3b1b28;
      --radius-sm:10px;
      --radius-md:16px;
      --radius-lg:24px;
      --shadow-sm:0 8px 24px rgba(63,31,38,.08);
      --shadow-md:0 18px 44px rgba(63,31,38,.14);
      --shadow-lg:0 28px 70px rgba(63,31,38,.18);
      --container:1260px;
      --ease:all .25s ease;
    }

    *{box-sizing:border-box;}
    html{scroll-behavior:smooth;}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Source Han Sans SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 12% 4%, rgba(178,122,69,.12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(123,36,56,.10), transparent 32%),
        var(--color-bg);
      line-height:1.75;
      font-size:16px;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease);}
    a:hover,a:focus{color:var(--color-primary);}
    img{max-width:100%;display:block;}
    button,input{font-family:inherit;}
    ::selection{background:var(--color-primary);color:#fff;}

    .site-shell{overflow:hidden;}
    .container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:88px 0;
      position:relative;
    }
    .section.compact{padding:64px 0;}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--color-secondary);
      box-shadow:0 0 0 4px rgba(178,122,69,.16);
    }
    .section-title{
      margin:0 0 14px;
      color:var(--color-ink);
      font-size:clamp(28px,3vw,36px);
      line-height:1.22;
      font-weight:800;
      letter-spacing:-.03em;
    }
    .section-lead{
      max-width:760px;
      margin:0;
      color:var(--color-muted);
      font-size:17px;
      line-height:1.85;
    }
    .center{text-align:center;}
    .center .section-lead{margin-left:auto;margin-right:auto;}

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,250,245,.88);
      border-bottom:1px solid rgba(234,223,225,.82);
      backdrop-filter:blur(18px);
      box-shadow:0 10px 30px rgba(63,31,38,.04);
    }
    .nav-bar{
      min-height:82px;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:22px;
    }
    .nav-group{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-group.left{justify-content:flex-end;}
    .nav-group.right{justify-content:flex-start;}
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:9px 14px;
      border-radius:999px;
      color:var(--color-text);
      font-size:15px;
      font-weight:700;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      transform:translateY(-1px);
    }
    .nav-link.active{
      color:#fff;
      background:var(--color-primary);
      box-shadow:0 10px 22px rgba(123,36,56,.20);
    }
    .brand-logo{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      min-width:238px;
      color:var(--color-ink);
      line-height:1.1;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:50%;
      margin-bottom:8px;
      background:
        linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      box-shadow:inset 0 0 0 6px rgba(255,255,255,.28),0 12px 24px rgba(123,36,56,.18);
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:13px;
      border-radius:50%;
      background:#fff8ef;
    }
    .brand-text{
      font-size:18px;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .brand-sub{
      margin-top:4px;
      color:var(--color-muted);
      font-size:12px;
      letter-spacing:.08em;
    }
    .mobile-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--color-line);
      border-radius:14px;
      background:#fff;
      color:var(--color-primary);
      cursor:pointer;
      box-shadow:var(--shadow-sm);
    }
    .mobile-menu{
      display:none;
      border-top:1px solid var(--color-line);
      padding:10px 0 18px;
      background:rgba(255,250,245,.96);
    }
    .mobile-menu .nav-link{
      width:100%;
      justify-content:flex-start;
      border-radius:12px;
      margin:4px 0;
    }

    .hero{
      padding:82px 0 72px;
      position:relative;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(115deg,rgba(255,250,245,.86),rgba(255,244,235,.58)),
        radial-gradient(circle at 80% 22%,rgba(123,36,56,.14),transparent 32%);
      z-index:-2;
    }
    .hero-grid{
      align-items:center;
      row-gap:40px;
    }
    .hero h1{
      margin:0 0 18px;
      color:var(--color-ink);
      font-size:clamp(36px,5vw,56px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.045em;
    }
    .hero-subtitle{
      max-width:690px;
      margin:0 0 28px;
      color:#5d5053;
      font-size:18px;
      line-height:1.9;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      margin:30px 0 28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:50px;
      padding:13px 22px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1.2;
      cursor:pointer;
      transition:var(--ease);
      outline:none;
    }
    .btn-primary{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 14px 28px rgba(123,36,56,.24);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      background:var(--color-primary-dark);
      transform:translateY(-2px);
      box-shadow:0 20px 40px rgba(123,36,56,.28);
    }
    .btn-secondary{
      background:#fff;
      color:var(--color-primary-dark);
      border-color:rgba(123,36,56,.22);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:var(--color-primary-soft);
      border-color:rgba(123,36,56,.38);
      transform:translateY(-2px);
    }
    .btn:active{transform:translateY(0) scale(.99);}
    .hero-note{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:15px 18px;
      max-width:650px;
      border-radius:var(--radius-md);
      background:rgba(255,255,255,.72);
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-sm);
      color:var(--color-muted);
      font-size:14px;
    }
    .hero-note strong{color:var(--color-primary-dark);}
    .visual-card{
      position:relative;
      min-height:520px;
      border-radius:32px;
      background:
        linear-gradient(145deg,rgba(42,23,30,.96),rgba(123,36,56,.92)),
        radial-gradient(circle at 20% 10%,rgba(255,255,255,.18),transparent 32%);
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      padding:28px;
      color:#fff;
    }
    .visual-card::before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:24px;
      pointer-events:none;
    }
    .visual-orbit{
      position:absolute;
      width:260px;
      height:260px;
      border-radius:50%;
      right:-80px;
      top:-70px;
      border:1px solid rgba(255,255,255,.18);
      background:radial-gradient(circle,rgba(178,122,69,.58),transparent 64%);
    }
    .cover-panel{
      position:relative;
      z-index:2;
      margin-top:50px;
      display:grid;
      gap:16px;
    }
    .cover-item{
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      border-radius:20px;
      padding:20px;
      backdrop-filter:blur(10px);
    }
    .cover-item.large{
      min-height:170px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.18),rgba(255,255,255,.08)),
        repeating-linear-gradient(45deg,rgba(255,255,255,.06) 0,rgba(255,255,255,.06) 1px,transparent 1px,transparent 12px);
    }
    .cover-label{
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(255,255,255,.16);
      color:#ffe5c8;
      font-size:12px;
      font-weight:800;
      margin-bottom:12px;
    }
    .cover-title{
      font-size:24px;
      line-height:1.3;
      font-weight:900;
      margin-bottom:10px;
    }
    .mini-meter{
      height:8px;
      background:rgba(255,255,255,.14);
      border-radius:999px;
      overflow:hidden;
      margin-top:12px;
    }
    .mini-meter span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,#d9a35f,#fff1d8);
    }

    .pain-card,.solution-card,.testimonial-card,.category-card,.data-card{
      background:var(--color-card);
      border:1px solid var(--color-line);
      border-radius:var(--radius-lg);
      padding:26px;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      height:100%;
    }
    .pain-card:hover,.solution-card:hover,.testimonial-card:hover,.category-card:hover,.data-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-md);
      border-color:rgba(123,36,56,.22);
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:var(--color-secondary-soft);
      color:#80542c;
      font-size:12px;
      font-weight:800;
      margin-bottom:14px;
    }
    .card-title{
      margin:0 0 10px;
      color:var(--color-ink);
      font-size:21px;
      line-height:1.35;
      font-weight:850;
    }
    .card-text{
      margin:0;
      color:var(--color-muted);
      font-size:15.5px;
      line-height:1.78;
    }
    .card-action{
      display:inline-flex;
      align-items:center;
      gap:7px;
      margin-top:18px;
      color:var(--color-primary);
      font-weight:850;
    }
    .card-action:hover{gap:12px;color:var(--color-primary-dark);}

    .solution-section{
      background:#fff;
      border-top:1px solid var(--color-line);
      border-bottom:1px solid var(--color-line);
    }
    .solution-card.featured{
      background:linear-gradient(145deg,#fff,#fff4ed);
      border-color:rgba(178,122,69,.28);
    }
    .icon-dot{
      width:44px;
      height:44px;
      display:grid;
      place-items:center;
      border-radius:15px;
      margin-bottom:18px;
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      box-shadow:0 14px 26px rgba(123,36,56,.20);
      font-weight:900;
    }

    .category-strip{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:22px;
      margin-top:34px;
    }
    .category-card{
      position:relative;
      overflow:hidden;
      padding:32px;
    }
    .category-card::after{
      content:"";
      position:absolute;
      width:160px;
      height:160px;
      border-radius:50%;
      right:-60px;
      bottom:-70px;
      background:rgba(123,36,56,.08);
      transition:var(--ease);
    }
    .category-card:hover::after{
      transform:scale(1.2);
      background:rgba(178,122,69,.12);
    }
    .category-card h3{
      position:relative;
      z-index:1;
      margin:0 0 12px;
      color:var(--color-ink);
      font-size:24px;
      font-weight:900;
    }
    .category-card p{
      position:relative;
      z-index:1;
      margin:0;
      color:var(--color-muted);
    }

    .results{
      color:#fff;
      background:
        linear-gradient(135deg,rgba(42,23,30,.97),rgba(85,23,39,.96)),
        radial-gradient(circle at 12% 20%,rgba(178,122,69,.28),transparent 34%);
    }
    .results .section-title,.results .section-lead{color:#fff;}
    .results .section-lead{opacity:.78;}
    .data-card{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      color:#fff;
      box-shadow:none;
    }
    .data-number{
      font-size:40px;
      line-height:1;
      font-weight:950;
      color:#ffd9ad;
      margin-bottom:10px;
      letter-spacing:-.04em;
    }
    .data-label{
      font-weight:850;
      margin-bottom:8px;
    }
    .data-card p{
      margin:0;
      color:rgba(255,255,255,.72);
      font-size:14.5px;
    }
    .compare-list{
      margin-top:34px;
      display:grid;
      gap:14px;
    }
    .compare-row{
      display:grid;
      grid-template-columns:180px 1fr;
      align-items:center;
      gap:18px;
      padding:16px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .compare-row strong{color:#ffe2bd;}
    .bar{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      overflow:hidden;
    }
    .bar span{
      display:block;
      height:100%;
      background:linear-gradient(90deg,#b27a45,#ffe5bd);
      border-radius:999px;
    }

    .editorial{
      background:linear-gradient(180deg,#fffaf5,#fff);
    }
    .editorial-box{
      border-radius:30px;
      background:#fff;
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-md);
      overflow:hidden;
    }
    .editorial-copy{
      padding:42px;
    }
    .check-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:13px;
    }
    .check-list li{
      position:relative;
      padding-left:30px;
      color:var(--color-text);
    }
    .check-list li::before{
      content:"✓";
      position:absolute;
      left:0;
      top:0;
      width:22px;
      height:22px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--color-primary-soft);
      color:var(--color-primary);
      font-size:13px;
      font-weight:900;
    }
    .editorial-art{
      min-height:100%;
      padding:34px;
      background:
        linear-gradient(145deg,rgba(123,36,56,.94),rgba(42,23,30,.96)),
        radial-gradient(circle at 70% 15%,rgba(178,122,69,.35),transparent 30%);
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:24px;
    }
    .quote-mark{
      font-size:72px;
      line-height:.8;
      color:#ffd7aa;
      font-family:Georgia,serif;
    }
    .editorial-art p{
      font-size:20px;
      line-height:1.7;
      margin:0;
      color:rgba(255,255,255,.88);
    }

    .testimonial-card{
      padding:28px;
    }
    .rating{
      display:flex;
      gap:4px;
      color:var(--color-secondary);
      margin-bottom:14px;
      letter-spacing:2px;
    }
    .testimonial-card blockquote{
      margin:0;
      padding:0;
      border:0;
      color:var(--color-text);
      font-size:16px;
      line-height:1.85;
    }
    .person{
      display:flex;
      align-items:center;
      gap:12px;
      margin-top:20px;
      padding-top:18px;
      border-top:1px solid var(--color-line);
    }
    .avatar{
      width:42px;
      height:42px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:900;
    }
    .person strong{display:block;color:var(--color-ink);}
    .person span{display:block;color:var(--color-muted);font-size:13px;}

    .faq-section{
      background:#fff;
      border-top:1px solid var(--color-line);
    }
    .accordion{
      margin-top:34px;
      background:transparent;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid var(--color-line);
      border-radius:var(--radius-md);
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .accordion-title{
      border:0 !important;
      color:var(--color-ink);
      font-weight:850;
      font-size:17px;
      padding:20px 54px 20px 22px;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
    }
    .accordion-title::before{
      right:22px;
      color:var(--color-primary);
      font-size:22px;
      margin-top:-13px;
    }
    .accordion-content{
      border:0 !important;
      border-top:1px solid var(--color-line) !important;
      color:var(--color-muted);
      line-height:1.8;
      padding:20px 22px 24px;
      background:#fffdfb;
    }

    .cta{
      padding:76px 0;
      background:
        linear-gradient(135deg,rgba(123,36,56,.96),rgba(42,23,30,.98)),
        radial-gradient(circle at 12% 20%,rgba(255,224,180,.24),transparent 34%);
      color:#fff;
    }
    .cta-box{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:34px;
      align-items:center;
    }
    .cta h2{
      margin:0 0 14px;
      color:#fff;
      font-size:clamp(28px,3vw,40px);
      line-height:1.22;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .cta p{
      margin:0;
      color:rgba(255,255,255,.76);
      font-size:17px;
      max-width:760px;
    }
    .cta-form{
      display:flex;
      gap:10px;
      padding:8px;
      border-radius:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      box-shadow:0 18px 40px rgba(0,0,0,.14);
    }
    .cta-form input{
      width:100%;
      height:52px;
      border:1px solid rgba(255,255,255,.18);
      border-radius:13px;
      background:rgba(255,255,255,.95);
      color:var(--color-ink);
      padding:0 16px;
      outline:none;
      transition:var(--ease);
    }
    .cta-form input:focus{
      border-color:#ffd9ad;
      box-shadow:0 0 0 4px rgba(255,217,173,.22);
    }
    .cta-form .btn{
      min-width:126px;
      background:#ffd9ad;
      color:#3b1b28;
      box-shadow:none;
    }
    .cta-form .btn:hover,.cta-form .btn:focus{
      background:#fff1dd;
      color:#2a171e;
      transform:translateY(-1px);
    }

    .site-footer{
      background:#1f1418;
      color:rgba(255,255,255,.74);
      padding:58px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:36px;
      padding-bottom:36px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      color:#fff;
      font-size:22px;
      font-weight:950;
      margin-bottom:12px;
      letter-spacing:-.03em;
    }
    .footer-desc{
      max-width:520px;
      margin:0;
      color:rgba(255,255,255,.66);
      line-height:1.85;
    }
    .footer-title{
      color:#ffe1bd;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,255,255,.70);
    }
    .footer-links a:hover,.footer-links a:focus{
      color:#ffd9ad;
      transform:translateX(3px);
    }
    .copyright{
      padding-top:22px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      font-size:13px;
      color:rgba(255,255,255,.54);
    }

    @media screen and (max-width:1023px){
      .nav-bar{
        grid-template-columns:auto 1fr auto;
        min-height:74px;
      }
      .brand-logo{
        align-items:flex-start;
        min-width:0;
      }
      .brand-mark{display:none;}
      .nav-group{display:none;}
      .mobile-toggle{display:inline-grid;place-items:center;}
      .mobile-menu.is-open{display:block;}
      .hero{padding:58px 0 58px;}
      .visual-card{min-height:420px;}
      .section{padding:70px 0;}
      .category-strip{grid-template-columns:1fr;}
      .cta-box{grid-template-columns:1fr;}
      .footer-grid{grid-template-columns:1fr 1fr;}
      .footer-grid>div:first-child{grid-column:1/-1;}
    }

    @media screen and (max-width:767px){
      .container{width:min(calc(100% - 32px),var(--container));}
      body{font-size:15.5px;}
      .brand-text{font-size:16px;}
      .brand-sub{display:none;}
      .hero-actions{align-items:stretch;}
      .hero-actions .btn{width:100%;}
      .hero-note{font-size:13px;}
      .visual-card{min-height:360px;padding:20px;border-radius:24px;}
      .cover-title{font-size:21px;}
      .section{padding:58px 0;}
      .section.compact{padding:48px 0;}
      .pain-card,.solution-card,.testimonial-card,.category-card,.data-card{padding:22px;border-radius:20px;}
      .editorial-copy{padding:28px;}
      .editorial-art{padding:28px;min-height:260px;}
      .compare-row{grid-template-columns:1fr;gap:10px;}
      .cta-form{flex-direction:column;}
      .cta-form .btn{width:100%;}
      .footer-grid{grid-template-columns:1fr;}
      .copyright{flex-direction:column;}
    }

    @media screen and (max-width:520px){
      .nav-bar{gap:12px;}
      .brand-text{max-width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
      .hero h1{font-size:34px;}
      .hero-subtitle{font-size:16px;}
      .section-title{font-size:27px;}
      .category-card h3{font-size:21px;}
    }

/* roulang page: category2 */
:root{
      --color-primary:#7b243b;
      --color-primary-dark:#4b1627;
      --color-primary-soft:#f4e5e8;
      --color-secondary:#b47a45;
      --color-secondary-soft:#f7eadb;
      --color-ink:#24191c;
      --color-muted:#74686b;
      --color-light:#fffaf4;
      --color-paper:#fffdf9;
      --color-ash:#f3eee8;
      --color-line:#e7dcd4;
      --color-deep:#1f1719;
      --shadow-sm:0 8px 24px rgba(53,29,35,.08);
      --shadow-md:0 18px 46px rgba(53,29,35,.14);
      --radius-sm:10px;
      --radius-md:16px;
      --radius-lg:24px;
      --radius-xl:34px;
      --container:1240px;
      --transition:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 8% 4%, rgba(180,122,69,.12), transparent 28%),
        linear-gradient(180deg,#fffaf4 0%,#fffdf9 42%,#f5efe8 100%);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Noto Sans CJK SC","Microsoft YaHei",Arial,sans-serif;
      font-size:16px;
      line-height:1.75;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover,a:focus{color:var(--color-primary)}
    img{max-width:100%;height:auto;display:block}
    button,input{font-family:inherit}
    button{cursor:pointer}
    .container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:86px 0;
      position:relative;
    }
    .section.compact{padding:62px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(123,36,59,.18);
      border-radius:999px;
      background:rgba(255,255,255,.68);
      color:var(--color-primary);
      font-size:13px;
      font-weight:700;
      letter-spacing:.03em;
    }
    .section-title{
      margin:16px 0 12px;
      font-size:clamp(28px,3vw,38px);
      line-height:1.22;
      font-weight:800;
      color:var(--color-ink);
      letter-spacing:-.03em;
    }
    .section-lead{
      max-width:760px;
      margin:0;
      color:var(--color-muted);
      font-size:17px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,250,244,.9);
      backdrop-filter:saturate(160%) blur(14px);
      border-bottom:1px solid rgba(231,220,212,.76);
    }
    .nav-bar{
      min-height:86px;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:22px;
      position:relative;
    }
    .nav-group{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-group.left{justify-content:flex-end}
    .nav-group.right{justify-content:flex-start}
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:8px 14px;
      border-radius:999px;
      color:#4f4145;
      font-size:15px;
      font-weight:700;
      border:1px solid transparent;
    }
    .nav-link:hover,.nav-link:focus{
      background:var(--color-primary-soft);
      border-color:rgba(123,36,59,.14);
      color:var(--color-primary-dark);
      outline:none;
    }
    .nav-link.active{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 8px 18px rgba(123,36,59,.18);
    }
    .brand-logo{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:2px;
      min-width:270px;
      padding:10px 18px;
      border-radius:22px;
      color:var(--color-ink);
    }
    .brand-logo:hover,.brand-logo:focus{
      color:var(--color-ink);
      background:rgba(255,255,255,.62);
      outline:2px solid rgba(123,36,59,.12);
      outline-offset:3px;
    }
    .brand-mark{
      width:38px;
      height:10px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-primary),var(--color-secondary));
      box-shadow:0 6px 18px rgba(123,36,59,.22);
    }
    .brand-text{
      font-size:19px;
      line-height:1.25;
      font-weight:900;
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .brand-sub{
      color:var(--color-muted);
      font-size:12px;
      line-height:1.2;
    }
    .mobile-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--color-line);
      border-radius:14px;
      background:#fff;
      color:var(--color-primary);
      font-size:22px;
      box-shadow:var(--shadow-sm);
    }
    .mobile-toggle:hover,.mobile-toggle:focus{
      background:var(--color-primary-soft);
      outline:2px solid rgba(123,36,59,.15);
      outline-offset:2px;
    }
    .mobile-menu{
      display:none;
      padding:0 0 18px;
    }
    .mobile-menu .nav-link{
      width:100%;
      justify-content:flex-start;
      margin-top:8px;
      border-radius:14px;
      background:rgba(255,255,255,.72);
    }
    .mobile-menu .nav-link.active{
      background:var(--color-primary);
      color:#fff;
    }

    .hero{
      padding:76px 0 68px;
      overflow:hidden;
    }
    .hero-shell{
      position:relative;
      border:1px solid rgba(231,220,212,.95);
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(255,255,255,.9),rgba(247,234,219,.68)),
        radial-gradient(circle at 82% 18%,rgba(123,36,59,.12),transparent 32%);
      box-shadow:var(--shadow-md);
      padding:46px;
      overflow:hidden;
    }
    .hero-shell:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(180,122,69,.16);
      border-radius:28px;
      pointer-events:none;
    }
    .hero h1{
      margin:18px 0 18px;
      max-width:760px;
      font-size:clamp(34px,5vw,54px);
      line-height:1.13;
      font-weight:900;
      letter-spacing:-.055em;
      color:var(--color-primary-dark);
    }
    .hero p{
      max-width:720px;
      margin:0 0 28px;
      color:#5d5053;
      font-size:18px;
      line-height:1.78;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:12px 20px;
      border-radius:14px;
      font-size:15px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--transition);
    }
    .btn-primary{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 14px 28px rgba(123,36,59,.22);
    }
    .btn-primary:hover,.btn-primary:focus{
      background:var(--color-primary-dark);
      color:#fff;
      transform:translateY(-2px);
      outline:2px solid rgba(123,36,59,.2);
      outline-offset:3px;
    }
    .btn-secondary{
      background:#fff;
      color:var(--color-primary-dark);
      border-color:rgba(123,36,59,.22);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      transform:translateY(-2px);
      outline:2px solid rgba(123,36,59,.16);
      outline-offset:3px;
    }
    .hero-panel{
      position:relative;
      z-index:1;
      border-radius:26px;
      background:var(--color-deep);
      color:#fff;
      padding:26px;
      min-height:420px;
      overflow:hidden;
      box-shadow:0 22px 58px rgba(31,23,25,.22);
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      width:280px;
      height:280px;
      right:-88px;
      top:-70px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(180,122,69,.66),rgba(123,36,59,.16) 58%,transparent 70%);
    }
    .hero-panel:after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:42%;
      background:linear-gradient(0deg,rgba(255,250,244,.12),transparent);
    }
    .panel-badge{
      position:relative;
      z-index:1;
      display:inline-flex;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      color:#f7eadb;
      font-size:13px;
      font-weight:800;
    }
    .panel-card{
      position:absolute;
      left:24px;
      right:24px;
      bottom:24px;
      z-index:1;
      border:1px solid rgba(255,255,255,.14);
      border-radius:20px;
      background:rgba(255,255,255,.1);
      padding:20px;
      backdrop-filter:blur(8px);
    }
    .panel-card strong{
      display:block;
      margin-bottom:8px;
      font-size:22px;
      line-height:1.35;
      color:#fff;
    }
    .panel-card span{
      color:#e8d9cf;
      font-size:14px;
    }
    .mini-metrics{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:118px;
    }
    .mini-metric{
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px;
      padding:16px;
      background:rgba(255,255,255,.08);
    }
    .mini-metric b{
      display:block;
      color:#f2c48a;
      font-size:26px;
      line-height:1.1;
    }
    .mini-metric small{color:#e4d8d2}

    .quick-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .quick-strip a{
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:8px 13px;
      border-radius:999px;
      border:1px solid var(--color-line);
      background:rgba(255,255,255,.75);
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
    }
    .quick-strip a:hover,.quick-strip a:focus{
      border-color:rgba(123,36,59,.28);
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      outline:none;
    }

    .narrative-wrap{
      margin-top:42px;
      position:relative;
    }
    .narrative-wrap:before{
      content:"";
      position:absolute;
      left:50%;
      top:12px;
      bottom:12px;
      width:2px;
      background:linear-gradient(180deg,transparent,var(--color-secondary),var(--color-primary),transparent);
      opacity:.36;
      transform:translateX(-50%);
    }
    .story-step{
      position:relative;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:34px;
      align-items:center;
      margin:0 0 34px;
    }
    .story-step:nth-child(even) .story-card{grid-column:2}
    .story-step:nth-child(even) .story-note{grid-column:1;grid-row:1}
    .story-dot{
      position:absolute;
      left:50%;
      top:34px;
      width:18px;
      height:18px;
      border-radius:50%;
      background:var(--color-primary);
      border:4px solid #fffaf4;
      box-shadow:0 0 0 5px rgba(123,36,59,.12);
      transform:translateX(-50%);
      z-index:2;
    }
    .story-card,.story-note,.well-card,.contrast-card,.care-panel,.quote-card{
      border:1px solid rgba(231,220,212,.95);
      background:rgba(255,255,255,.78);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
    }
    .story-card:hover,.well-card:hover,.contrast-card:hover,.care-panel:hover,.quote-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(123,36,59,.2);
    }
    .story-card{
      padding:28px;
    }
    .story-label{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:var(--color-secondary-soft);
      color:#8b5425;
      font-size:13px;
      font-weight:800;
    }
    .story-card h2,.story-card h3{
      margin:14px 0 10px;
      color:var(--color-primary-dark);
      font-size:24px;
      line-height:1.32;
      font-weight:900;
    }
    .story-card p,.story-note p{
      margin:0;
      color:var(--color-muted);
    }
    .story-note{
      padding:24px;
      background:linear-gradient(135deg,rgba(255,250,244,.9),rgba(244,229,232,.66));
    }
    .note-list{
      margin:14px 0 0;
      padding:0;
      list-style:none;
    }
    .note-list li{
      position:relative;
      margin-top:10px;
      padding-left:24px;
      color:#5f5356;
    }
    .note-list li:before{
      content:"";
      position:absolute;
      left:0;
      top:.72em;
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--color-secondary);
      box-shadow:0 0 0 4px rgba(180,122,69,.12);
    }

    .contrast-section{
      background:linear-gradient(180deg,rgba(31,23,25,.98),rgba(75,22,39,.96));
      color:#fff;
      overflow:hidden;
    }
    .contrast-section .section-title{color:#fff}
    .contrast-section .section-lead{color:#e7d9d1}
    .contrast-grid{
      margin-top:36px;
    }
    .contrast-card{
      height:100%;
      padding:26px;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      box-shadow:none;
      color:#fff;
    }
    .contrast-card:hover{
      border-color:rgba(242,196,138,.42);
      box-shadow:0 18px 48px rgba(0,0,0,.22);
    }
    .contrast-card .tag{
      background:rgba(242,196,138,.16);
      color:#ffdca9;
      border-color:rgba(242,196,138,.18);
    }
    .contrast-card h3{
      margin:16px 0 10px;
      font-size:22px;
      font-weight:900;
      color:#fff;
    }
    .contrast-card p{
      color:#eadfd9;
      margin:0;
    }

    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border:1px solid rgba(123,36,59,.16);
      border-radius:999px;
      background:var(--color-primary-soft);
      color:var(--color-primary);
      font-size:13px;
      font-weight:800;
    }
    .well-grid{
      margin-top:36px;
    }
    .well-card{
      height:100%;
      padding:24px;
    }
    .well-icon{
      width:50px;
      height:50px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      color:#fff;
      font-size:22px;
      font-weight:900;
      box-shadow:0 12px 24px rgba(123,36,59,.2);
    }
    .well-card h3{
      margin:18px 0 8px;
      font-size:21px;
      font-weight:900;
      color:var(--color-primary-dark);
    }
    .well-card p{
      margin:0 0 18px;
      color:var(--color-muted);
    }
    .score-bar{
      height:9px;
      border-radius:999px;
      background:var(--color-ash);
      overflow:hidden;
    }
    .score-bar span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-primary),var(--color-secondary));
    }

    .care-area{
      background:rgba(255,255,255,.5);
    }
    .care-panel{
      padding:32px;
      height:100%;
    }
    .care-panel.dark{
      background:var(--color-deep);
      color:#fff;
      border-color:rgba(31,23,25,.2);
    }
    .care-panel.dark h2,.care-panel.dark h3{color:#fff}
    .care-panel.dark p,.care-panel.dark li{color:#e7d9d1}
    .care-panel h2,.care-panel h3{
      margin:0 0 14px;
      font-size:26px;
      line-height:1.32;
      font-weight:900;
      color:var(--color-primary-dark);
    }
    .care-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
    }
    .care-list li{
      display:flex;
      gap:12px;
      padding:15px 0;
      border-top:1px solid rgba(231,220,212,.72);
      color:#5c4f52;
    }
    .care-panel.dark .care-list li{
      border-top-color:rgba(255,255,255,.12);
    }
    .check{
      flex:0 0 auto;
      width:24px;
      height:24px;
      border-radius:8px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--color-secondary-soft);
      color:#8b5425;
      font-weight:900;
      line-height:1;
    }
    .care-panel.dark .check{
      background:rgba(242,196,138,.16);
      color:#ffdca9;
    }

    .quote-grid{
      margin-top:36px;
    }
    .quote-card{
      padding:26px;
      height:100%;
    }
    .quote-card p{
      margin:0 0 18px;
      color:#5d5053;
      font-size:17px;
    }
    .quote-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-top:16px;
      border-top:1px solid var(--color-line);
      color:var(--color-muted);
      font-size:14px;
    }
    .quote-score{
      color:var(--color-secondary);
      letter-spacing:.08em;
      white-space:nowrap;
    }

    .faq-wrap{
      margin-top:34px;
      border:1px solid var(--color-line);
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow-sm);
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      border-bottom:1px solid var(--color-line);
    }
    .accordion-item:last-child{border-bottom:none}
    .accordion-title{
      position:relative;
      display:block;
      padding:22px 58px 22px 24px;
      border:none;
      color:var(--color-primary-dark);
      font-size:17px;
      font-weight:900;
      line-height:1.5;
      background:#fffdf9;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      outline:none;
    }
    .accordion-title:before{
      right:24px;
      margin-top:-13px;
      font-size:24px;
      color:var(--color-secondary);
    }
    .accordion-content{
      border:none;
      border-top:1px solid var(--color-line);
      padding:20px 24px 24px;
      background:#fff;
      color:var(--color-muted);
      line-height:1.78;
    }

    .cta-section{
      padding:82px 0;
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at 86% 20%,rgba(242,196,138,.28),transparent 28%),
        linear-gradient(135deg,var(--color-primary-dark),var(--color-primary));
      color:#fff;
      padding:44px;
      box-shadow:0 24px 60px rgba(75,22,39,.24);
    }
    .cta-box h2{
      margin:0 0 14px;
      max-width:760px;
      color:#fff;
      font-size:clamp(28px,3.6vw,42px);
      line-height:1.22;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .cta-box p{
      max-width:720px;
      margin:0 0 26px;
      color:#f2e5dd;
      font-size:17px;
    }
    .cta-form{
      display:flex;
      gap:12px;
      max-width:680px;
      flex-wrap:wrap;
    }
    .cta-form input{
      flex:1 1 260px;
      height:52px;
      border:1px solid rgba(255,255,255,.22);
      border-radius:14px;
      background:rgba(255,255,255,.12);
      color:#fff;
      padding:0 16px;
      box-shadow:none;
    }
    .cta-form input::placeholder{color:#eadbd4}
    .cta-form input:focus{
      border-color:#f2c48a;
      background:rgba(255,255,255,.16);
      outline:3px solid rgba(242,196,138,.18);
    }
    .cta-form .btn{
      background:#fffaf4;
      color:var(--color-primary-dark);
      border-color:#fffaf4;
    }
    .cta-form .btn:hover,.cta-form .btn:focus{
      background:#f2c48a;
      color:#3a1a22;
      transform:translateY(-2px);
      outline:2px solid rgba(255,255,255,.22);
      outline-offset:3px;
    }

    .site-footer{
      background:#1d1517;
      color:#efe5df;
      padding:58px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:36px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      margin-bottom:12px;
      font-size:22px;
      font-weight:900;
      color:#fff;
      letter-spacing:-.02em;
    }
    .footer-desc{
      max-width:520px;
      margin:0;
      color:#d8cbc5;
      line-height:1.8;
    }
    .footer-title{
      margin-bottom:12px;
      color:#f2c48a;
      font-size:15px;
      font-weight:900;
    }
    .footer-links{
      display:flex;
      flex-direction:column;
      gap:9px;
    }
    .footer-links a{
      color:#d8cbc5;
      font-size:15px;
    }
    .footer-links a:hover,.footer-links a:focus{
      color:#f2c48a;
      transform:translateX(3px);
      outline:none;
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:22px;
      color:#b8aaa4;
      font-size:13px;
    }

    @media (max-width:1023px){
      .nav-bar{
        grid-template-columns:auto 1fr auto;
        min-height:76px;
      }
      .nav-group{display:none}
      .brand-logo{
        align-items:flex-start;
        min-width:0;
        padding:8px 0;
      }
      .brand-text{
        font-size:17px;
        white-space:normal;
      }
      .mobile-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
      }
      .mobile-menu.is-open{
        display:block;
      }
      .hero-shell{
        padding:32px;
      }
      .hero-panel{
        margin-top:30px;
        min-height:360px;
      }
      .narrative-wrap:before{
        left:10px;
      }
      .story-step,.story-step:nth-child(even){
        grid-template-columns:1fr;
        padding-left:32px;
      }
      .story-step:nth-child(even) .story-card,
      .story-step:nth-child(even) .story-note{
        grid-column:auto;
        grid-row:auto;
      }
      .story-dot{
        left:10px;
        top:28px;
      }
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }
      .footer-grid > div:first-child{
        grid-column:1 / -1;
      }
    }

    @media (max-width:767px){
      .container{width:min(calc(100% - 32px),var(--container))}
      .section{padding:62px 0}
      .section.compact{padding:48px 0}
      .hero{padding:38px 0 52px}
      .hero-shell{
        padding:24px;
        border-radius:24px;
      }
      .hero-shell:before{display:none}
      .hero p{font-size:16px}
      .hero-actions,.cta-form{
        flex-direction:column;
      }
      .btn,.cta-form .btn{
        width:100%;
      }
      .hero-panel{
        min-height:330px;
        padding:20px;
      }
      .mini-metrics{
        margin-top:78px;
        grid-template-columns:1fr;
      }
      .panel-card{
        left:18px;
        right:18px;
        bottom:18px;
      }
      .story-card,.story-note,.well-card,.contrast-card,.care-panel,.quote-card{
        border-radius:18px;
        padding:22px;
      }
      .quick-strip{
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:6px;
      }
      .quick-strip a{white-space:nowrap}
      .cta-box{
        padding:28px;
        border-radius:24px;
      }
      .footer-grid{
        grid-template-columns:1fr;
        gap:26px;
      }
      .copyright{
        flex-direction:column;
      }
    }

    @media (max-width:520px){
      .brand-sub{display:none}
      .brand-mark{width:32px}
      .section-title{font-size:27px}
      .accordion-title{
        padding:18px 48px 18px 18px;
        font-size:16px;
      }
      .accordion-content{padding:18px}
      .care-list li{font-size:15px}
    }

/* roulang page: category1 */
:root{
      --bg: #f4ece2;
      --bg-soft: #fbf7f1;
      --surface: #fffaf4;
      --surface-2: #f3e8dc;
      --surface-3: #efe1d2;
      --text: #24171b;
      --muted: #6b5a60;
      --line: rgba(73, 45, 52, .14);
      --line-strong: rgba(73, 45, 52, .22);
      --primary: #7f2033;
      --primary-dark: #5d1522;
      --primary-soft: rgba(127, 32, 51, .10);
      --accent: #b78147;
      --accent-soft: rgba(183, 129, 71, .16);
      --success: #3b7d63;
      --shadow: 0 18px 48px rgba(53, 26, 32, .12);
      --shadow-soft: 0 10px 30px rgba(53, 26, 32, .08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1280px;
      --header-h: 92px;
      --space-1: 6px;
      --space-2: 10px;
      --space-3: 14px;
      --space-4: 18px;
      --space-5: 24px;
      --space-6: 32px;
      --space-7: 42px;
      --space-8: 56px;
      --space-9: 72px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(127, 32, 51, .08), transparent 26%),
        radial-gradient(circle at top right, rgba(183, 129, 71, .10), transparent 20%),
        linear-gradient(180deg, #faf5ee 0%, var(--bg) 100%);
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height:1.75;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.16)),
        radial-gradient(rgba(127, 32, 51, .06) 1px, transparent 1px);
      background-size:auto, 22px 22px;
      opacity:.18;
      mix-blend-mode:multiply;
      z-index:-1;
    }

    ::selection{
      background: rgba(127, 32, 51, .18);
      color: var(--text);
    }

    a{
      color:inherit;
      text-decoration:none;
      transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }
    img{ max-width:100%; display:block; }
    button,
    input,
    textarea,
    select{
      font: inherit;
    }
    button{
      cursor:pointer;
    }
    :focus-visible{
      outline: 3px solid rgba(127, 32, 51, .32);
      outline-offset: 2px;
    }

    .container{
      width:min(var(--container), calc(100% - 36px));
      margin:0 auto;
    }

    .site-header{
      position: sticky;
      top:0;
      z-index:60;
      background: rgba(251, 247, 241, .88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(73, 45, 52, .10);
      box-shadow: 0 8px 24px rgba(30, 18, 22, .04);
    }

    .nav-bar{
      min-height: var(--header-h);
      display:grid;
      grid-template-columns: 1fr auto 1fr;
      align-items:center;
      gap: 18px;
    }

    .nav-group{
      display:flex;
      align-items:center;
      gap: 8px;
      min-width:0;
    }
    .nav-group.left{ justify-content:flex-start; }
    .nav-group.right{ justify-content:flex-end; }

    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 44px;
      padding: 10px 14px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 600;
      border-radius: 999px;
      border: 1px solid transparent;
      white-space: nowrap;
    }
    .nav-link:hover{
      color: var(--primary);
      background: rgba(127, 32, 51, .06);
      border-color: rgba(127, 32, 51, .08);
      transform: translateY(-1px);
    }
    .nav-link.active{
      color: var(--primary-dark);
      background: rgba(127, 32, 51, .10);
      border-color: rgba(127, 32, 51, .16);
      box-shadow: inset 0 -2px 0 rgba(127, 32, 51, .28);
    }

    .brand-logo{
      display:inline-flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap: 2px;
      min-width: 190px;
      padding: 10px 14px;
      border-radius: 18px;
      text-align:center;
    }
    .brand-logo:hover{
      background: rgba(183, 129, 71, .08);
      transform: translateY(-1px);
    }
    .brand-mark{
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 35% 35%, #fff, rgba(255,255,255,.30) 26%, transparent 27%),
        linear-gradient(145deg, var(--primary), var(--accent));
      box-shadow: 0 8px 18px rgba(127, 32, 51, .22);
      position:relative;
      margin-bottom: 2px;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:-6px;
      border-radius:999px;
      border:1px solid rgba(127, 32, 51, .12);
    }
    .brand-text{
      font-size: 18px;
      font-weight: 800;
      letter-spacing:.2px;
      color: var(--text);
      line-height:1.15;
    }
    .brand-sub{
      font-size: 12px;
      color: var(--muted);
      letter-spacing:.18em;
      margin-left: .18em;
    }

    .mobile-toggle{
      display:none;
      justify-self:end;
      min-width: 46px;
      min-height: 46px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid rgba(127, 32, 51, .12);
      background: var(--surface);
      color: var(--primary);
      font-size: 22px;
      box-shadow: var(--shadow-soft);
    }
    .mobile-toggle:hover{
      transform: translateY(-1px);
      border-color: rgba(127, 32, 51, .22);
      box-shadow: var(--shadow);
    }

    .mobile-menu{
      display:none;
      overflow:hidden;
      max-height:0;
      border-top: 1px solid transparent;
      transition: max-height .28s ease, padding .28s ease, border-color .28s ease;
    }
    .mobile-menu.open{
      display:block;
      max-height: 340px;
      padding: 12px 0 18px;
      border-top-color: rgba(73, 45, 52, .10);
    }
    .mobile-menu .nav-link{
      display:flex;
      width:100%;
      justify-content:flex-start;
      margin: 4px 0;
      padding: 12px 14px;
      border-radius: 14px;
      background: var(--surface);
      border: 1px solid rgba(73, 45, 52, .08);
    }
    .mobile-menu .nav-link.active{
      background: rgba(127, 32, 51, .10);
    }

    main{
      overflow:hidden;
    }

    .hero{
      position:relative;
      padding: 34px 0 22px;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,0)),
        radial-gradient(circle at 20% 20%, rgba(127, 32, 51, .08), transparent 32%),
        radial-gradient(circle at 80% 12%, rgba(183, 129, 71, .12), transparent 28%);
      pointer-events:none;
      z-index:0;
    }
    .hero .container{
      position:relative;
      z-index:1;
    }
    .hero-shell{
      background: linear-gradient(180deg, rgba(255,250,244,.92), rgba(255,247,238,.80));
      border: 1px solid rgba(73, 45, 52, .10);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .hero-inner{
      padding: 28px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items:stretch;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(127, 32, 51, .08);
      border: 1px solid rgba(127, 32, 51, .12);
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
    }
    .hero-kicker::before{
      content:"";
      width: 8px;
      height: 8px;
      border-radius:999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(183, 129, 71, .18);
    }
    h1, h2, h3{
      margin:0;
      line-height:1.22;
      text-wrap: balance;
      color: var(--text);
    }
    h1{
      font-size: clamp(36px, 4.3vw, 48px);
      font-weight: 800;
      letter-spacing: -.02em;
      margin-bottom: 18px;
    }
    .hero-lead{
      max-width: 44rem;
      font-size: 17px;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 24px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap: 12px;
      margin-bottom: 18px;
    }
    .button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 700;
      letter-spacing:.02em;
      box-shadow: none;
      transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
    }
    .button:hover{
      transform: translateY(-1px);
    }
    .button.primary-btn{
      background: linear-gradient(145deg, var(--primary), #922743);
      color: #fff;
      border-color: rgba(255,255,255,.08);
      box-shadow: 0 16px 30px rgba(127, 32, 51, .20);
    }
    .button.primary-btn:hover{
      background: linear-gradient(145deg, #8b2440, var(--primary-dark));
      color:#fff;
      box-shadow: 0 20px 34px rgba(127, 32, 51, .26);
    }
    .button.ghost-btn{
      background: rgba(255,255,255,.64);
      color: var(--primary-dark);
      border-color: rgba(127, 32, 51, .16);
    }
    .button.ghost-btn:hover{
      background: rgba(127, 32, 51, .06);
      border-color: rgba(127, 32, 51, .22);
    }

    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
    }
    .mini-chip,
    .filter-chip,
    .meta-chip{
      display:inline-flex;
      align-items:center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(73, 45, 52, .12);
      background: rgba(255,255,255,.72);
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }
    .mini-chip{
      background: rgba(127, 32, 51, .06);
      color: var(--primary-dark);
      border-color: rgba(127, 32, 51, .10);
    }

    .hero-panel{
      position:relative;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height: 100%;
      padding: 22px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(37, 22, 28, .98), rgba(59, 32, 41, .96)),
        linear-gradient(145deg, #2f1a22, #5b2536);
      color:#f9f1e9;
      overflow:hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), var(--shadow);
    }
    .hero-panel::before,
    .hero-panel::after{
      content:"";
      position:absolute;
      border-radius: 999px;
      pointer-events:none;
    }
    .hero-panel::before{
      width: 260px;
      height: 260px;
      right: -80px;
      top: -80px;
      background: radial-gradient(circle, rgba(183, 129, 71, .24), transparent 68%);
    }
    .hero-panel::after{
      width: 190px;
      height: 190px;
      left: -70px;
      bottom: -60px;
      background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
    }
    .panel-head{
      position:relative;
      z-index:1;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 16px;
      margin-bottom: 18px;
    }
    .panel-label{
      font-size: 13px;
      letter-spacing:.18em;
      color: rgba(255,255,255,.68);
    }
    .panel-title{
      margin-top: 6px;
      font-size: 22px;
      font-weight: 800;
      line-height:1.3;
    }
    .panel-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width: 72px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      color:#fff;
      font-size: 12px;
      font-weight: 700;
    }
    .panel-list{
      position:relative;
      z-index:1;
      display:grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style:none;
    }
    .panel-list li{
      display:grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items:flex-start;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.08);
      color: rgba(255,255,255,.92);
    }
    .panel-list li::before{
      content:"";
      width: 12px;
      height: 12px;
      margin-top: 5px;
      border-radius: 50%;
      background: linear-gradient(145deg, #f4d7b3, #c98f53);
      box-shadow: 0 0 0 4px rgba(183, 129, 71, .14);
    }
    .panel-note{
      position:relative;
      z-index:1;
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.84);
      font-size: 14px;
      line-height: 1.8;
    }

    .section{
      padding: 22px 0;
    }
    .section-shell{
      background: rgba(255,250,244,.82);
      border: 1px solid rgba(73, 45, 52, .10);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
    }

    .intro-strip{
      padding: 22px 24px;
      display:grid;
      gap: 18px;
    }
    .intro-copy{
      display:grid;
      gap: 10px;
      max-width: 980px;
    }
    .section-label{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing:.16em;
      color: var(--primary-dark);
      text-transform: uppercase;
    }
    .section-label::before{
      content:"";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--accent);
    }
    .section-title{
      font-size: clamp(28px, 3vw, 32px);
      font-weight: 800;
    }
    .section-subtitle{
      color: var(--muted);
      font-size: 16px;
      line-height: 1.85;
      margin: 0;
    }
    .quick-stats{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .stat-card{
      padding: 18px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(127, 32, 51, .06), rgba(255,255,255,.86));
      border: 1px solid rgba(127, 32, 51, .10);
    }
    .stat-num{
      display:block;
      margin-bottom: 6px;
      color: var(--primary-dark);
      font-size: 22px;
      font-weight: 800;
      letter-spacing: .01em;
    }
    .stat-text{
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
      margin:0;
    }

    .catalog{
      padding: 26px 24px 10px;
    }
    .catalog-head{
      display:flex;
      flex-wrap:wrap;
      align-items:flex-end;
      justify-content:space-between;
      gap: 18px;
      margin-bottom: 18px;
    }
    .catalog-head .section-subtitle{
      max-width: 760px;
    }
    .count-pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(127, 32, 51, .08);
      border: 1px solid rgba(127, 32, 51, .12);
      color: var(--primary-dark);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .filter-bar{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin-bottom: 20px;
    }
    .filter-chip{
      background: rgba(255,255,255,.78);
      color: var(--muted);
      border-color: rgba(73, 45, 52, .12);
      cursor:pointer;
    }
    .filter-chip:hover{
      color: var(--primary-dark);
      border-color: rgba(127, 32, 51, .18);
      transform: translateY(-1px);
    }
    .filter-chip.is-active{
      background: rgba(127, 32, 51, .10);
      color: var(--primary-dark);
      border-color: rgba(127, 32, 51, .22);
      box-shadow: inset 0 -1px 0 rgba(127, 32, 51, .10);
    }

    .content-layout{
      display:grid;
      grid-template-columns: minmax(0, 1.8fr) minmax(300px, .9fr);
      gap: 22px;
      align-items:start;
    }
    .card-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      min-width:0;
    }
    .topic-card{
      position:relative;
      display:flex;
      flex-direction:column;
      gap: 14px;
      min-height: 100%;
      padding: 20px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251, 245, 238, .96));
      border: 1px solid rgba(73, 45, 52, .11);
      box-shadow: 0 14px 30px rgba(54, 31, 36, .06);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      overflow:hidden;
    }
    .topic-card::before{
      content:"";
      position:absolute;
      inset: auto -18px -18px auto;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(127, 32, 51, .08), transparent 68%);
      pointer-events:none;
    }
    .topic-card:hover{
      transform: translateY(-4px);
      border-color: rgba(127, 32, 51, .20);
      box-shadow: 0 18px 40px rgba(54, 31, 36, .10);
    }
    .card-top{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap: 8px;
    }
    .card-tag{
      display:inline-flex;
      align-items:center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(127, 32, 51, .08);
      border: 1px solid rgba(127, 32, 51, .10);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 700;
    }
    .card-title{
      font-size: 22px;
      font-weight: 800;
      line-height: 1.34;
      letter-spacing: -.01em;
    }
    .card-desc{
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      margin:0;
    }
    .card-notes{
      display:flex;
      flex-wrap:wrap;
      gap: 8px;
    }
    .meta-chip{
      background: rgba(183, 129, 71, .10);
      border-color: rgba(183, 129, 71, .18);
      color: #7a5430;
    }
    .card-foot{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      padding-top: 4px;
      border-top: 1px dashed rgba(73, 45, 52, .12);
    }
    .card-tip{
      color: var(--muted);
      font-size: 13px;
    }
    .card-action{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 12px;
      background: rgba(127, 32, 51, .08);
      border: 1px solid rgba(127, 32, 51, .12);
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }
    .card-action:hover{
      background: rgba(127, 32, 51, .12);
      border-color: rgba(127, 32, 51, .20);
      transform: translateY(-1px);
    }

    .sidebar{
      position:relative;
      display:grid;
      gap: 16px;
    }
    .sidebar-card{
      padding: 20px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(250, 244, 236, .98));
      border: 1px solid rgba(73, 45, 52, .11);
      box-shadow: 0 12px 28px rgba(54, 31, 36, .05);
    }
    .sidebar-title{
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .sidebar-desc{
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
      margin:0 0 12px;
    }
    .list-check{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap: 10px;
    }
    .list-check li{
      position:relative;
      padding-left: 22px;
      color: var(--text);
      font-size: 14px;
      line-height: 1.75;
    }
    .list-check li::before{
      content:"";
      position:absolute;
      left:0;
      top: .68em;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--primary), var(--accent));
      box-shadow: 0 0 0 4px rgba(127, 32, 51, .10);
    }
    .trust-stats{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 14px;
    }
    .trust-stat{
      padding: 12px;
      border-radius: 16px;
      background: rgba(127, 32, 51, .06);
      border: 1px solid rgba(127, 32, 51, .10);
      text-align:center;
    }
    .trust-stat strong{
      display:block;
      color: var(--primary-dark);
      font-size: 20px;
      line-height: 1.1;
    }
    .trust-stat span{
      color: var(--muted);
      font-size: 12px;
    }

    .mini-form{
      display:grid;
      gap: 10px;
      margin-top: 14px;
    }
    .mini-form label{
      font-size: 13px;
      font-weight: 700;
      color: var(--primary-dark);
    }
    .mini-form input{
      width:100%;
      height: 50px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid rgba(73, 45, 52, .16);
      background: #fff;
      color: var(--text);
      transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
    }
    .mini-form input::placeholder{
      color: #9a8b90;
    }
    .mini-form input:focus{
      border-color: rgba(127, 32, 51, .32);
      box-shadow: 0 0 0 4px rgba(127, 32, 51, .10);
      outline:none;
    }
    .mini-form .button{
      width:100%;
    }
    .mini-note{
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
      margin:0;
    }

    .evidence{
      padding-top: 18px;
    }
    .evidence-shell{
      padding: 24px;
      background: linear-gradient(180deg, rgba(37, 22, 28, .98), rgba(71, 38, 49, .96));
      color:#fbf4ed;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .evidence-head{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap: 14px;
      align-items:flex-end;
      margin-bottom: 18px;
    }
    .evidence-head .section-title,
    .evidence-head .section-subtitle{
      color:#fbf4ed;
    }
    .evidence-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }
    .evidence-item{
      padding: 18px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.08);
    }
    .evidence-item strong{
      display:block;
      color:#fff;
      font-size: 24px;
      margin-bottom: 6px;
      line-height:1.15;
    }
    .evidence-item span{
      color: rgba(255,255,255,.78);
      font-size: 14px;
      line-height:1.75;
    }

    .faq-section{
      padding-top: 18px;
    }
    .faq-shell{
      padding: 24px;
    }
    .accordion{
      margin: 0;
      border: 0;
      background: transparent;
    }
    .accordion-item{
      margin-bottom: 12px;
      border: 1px solid rgba(73, 45, 52, .10);
      border-radius: 18px;
      overflow:hidden;
      background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(251, 245, 238, .96));
      box-shadow: 0 12px 24px rgba(54, 31, 36, .05);
    }
    .accordion-title{
      position:relative;
      padding: 18px 54px 18px 18px;
      color: var(--text);
      font-size: 16px;
      font-weight: 800;
      line-height:1.5;
      background: transparent;
      border: 0;
    }
    .accordion-title:hover{
      background: rgba(127, 32, 51, .03);
      color: var(--primary-dark);
    }
    .accordion-title::before{
      right: 18px;
      color: var(--primary-dark);
      font-size: 22px;
      margin-top: -12px;
    }
    .accordion-content{
      padding: 0 18px 18px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.85;
      border: 0;
      background: transparent;
    }

    .cta-band{
      padding: 18px 0 36px;
    }
    .cta-shell{
      position:relative;
      overflow:hidden;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
      align-items:center;
      padding: 26px;
      background:
        linear-gradient(135deg, rgba(127, 32, 51, .98), rgba(79, 23, 35, .98));
      color:#fff7ef;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }
    .cta-shell::before{
      content:"";
      position:absolute;
      inset:auto -60px -100px auto;
      width: 280px;
      height: 280px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(183, 129, 71, .28), transparent 68%);
      pointer-events:none;
    }
    .cta-shell::after{
      content:"";
      position:absolute;
      inset:-70px auto auto -80px;
      width: 220px;
      height: 220px;
      border-radius:50%;
      background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
      pointer-events:none;
    }
    .cta-copy{
      position:relative;
      z-index:1;
    }
    .cta-copy .section-label{
      color: rgba(255,255,255,.84);
    }
    .cta-copy .section-label::before{
      background: #ffd9b2;
    }
    .cta-copy .section-title,
    .cta-copy .section-subtitle{
      color:#fff7ef;
    }
    .cta-copy .section-subtitle{
      max-width: 680px;
      margin-top: 10px;
    }
    .cta-form{
      position:relative;
      z-index:1;
      display:grid;
      gap: 10px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }
    .cta-form label{
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .04em;
      color: rgba(255,255,255,.84);
    }
    .cta-form-row{
      display:flex;
      gap: 10px;
    }
    .cta-form input{
      flex:1;
      min-width: 0;
      height: 50px;
      padding: 0 14px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.96);
      color: var(--text);
    }
    .cta-form input::placeholder{
      color: #98888e;
    }
    .cta-form input:focus{
      border-color: rgba(255, 255, 255, .46);
      box-shadow: 0 0 0 4px rgba(255,255,255,.12);
      outline:none;
    }
    .cta-form button{
      min-width: 140px;
      height: 50px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.18);
      background: linear-gradient(145deg, #e7b47b, #c88449);
      color: #2f191f;
      font-weight: 800;
      box-shadow: 0 12px 22px rgba(0,0,0,.14);
    }
    .cta-form button:hover{
      transform: translateY(-1px);
      background: linear-gradient(145deg, #efc08c, #d48f57);
    }
    .form-hint{
      margin:0;
      color: rgba(255,255,255,.76);
      font-size: 13px;
      line-height: 1.75;
    }

    .site-footer{
      margin-top: 10px;
      padding: 30px 0 18px;
      background: linear-gradient(180deg, rgba(37, 22, 28, .98), rgba(27, 15, 19, .99));
      color: rgba(255,255,255,.86);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 22px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      font-size: 20px;
      font-weight: 800;
      color:#fff7ef;
      margin-bottom: 10px;
    }
    .footer-desc{
      margin:0;
      max-width: 42rem;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.85;
    }
    .footer-title{
      margin-bottom: 12px;
      color:#fff7ef;
      font-size: 14px;
      font-weight: 800;
      letter-spacing:.08em;
    }
    .footer-links{
      display:grid;
      gap: 10px;
    }
    .footer-links a{
      width:fit-content;
      color: rgba(255,255,255,.72);
      font-size: 14px;
      line-height:1.7;
    }
    .footer-links a:hover{
      color: #fff7ef;
      transform: translateX(2px);
    }
    .copyright{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap: 10px;
      padding-top: 16px;
      color: rgba(255,255,255,.60);
      font-size: 13px;
      line-height:1.7;
    }

    .is-hidden{
      display:none !important;
    }

    @media (max-width: 1199px){
      .hero-grid{
        grid-template-columns: 1fr;
      }
      .content-layout{
        grid-template-columns: 1fr;
      }
      .sidebar{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .cta-shell{
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1023px){
      .nav-bar{
        grid-template-columns: auto 1fr auto;
      }
      .nav-group{
        display:none;
      }
      .mobile-toggle{
        display:inline-flex;
      }
      .brand-logo{
        justify-self:center;
        min-width:0;
      }
      .quick-stats,
      .evidence-grid,
      .footer-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .card-grid{
        grid-template-columns: 1fr;
      }
      .sidebar{
        grid-template-columns: 1fr;
      }
      .cta-form-row{
        flex-direction:column;
      }
      .cta-form button{
        width:100%;
      }
    }

    @media (max-width: 767px){
      .container{
        width:min(var(--container), calc(100% - 32px));
      }
      .hero-inner,
      .intro-strip,
      .catalog,
      .faq-shell,
      .cta-shell{
        padding: 18px;
      }
      .hero{
        padding-top: 20px;
      }
      .hero-shell,
      .section-shell,
      .evidence-shell,
      .cta-shell{
        border-radius: 22px;
      }
      h1{
        font-size: 36px;
      }
      .panel-title{
        font-size: 20px;
      }
      .quick-stats,
      .evidence-grid,
      .footer-grid{
        grid-template-columns: 1fr;
      }
      .trust-stats{
        grid-template-columns: 1fr;
      }
      .catalog-head{
        align-items:flex-start;
      }
      .hero-actions,
      .filter-bar{
        gap: 8px;
      }
      .button,
      .filter-chip{
        width:100%;
        justify-content:center;
      }
      .hero-actions .button{
        flex:1 1 100%;
      }
      .card-foot{
        flex-direction:column;
        align-items:flex-start;
      }
      .footer-links a,
      .copyright{
        font-size: 13px;
      }
      .copyright{
        flex-direction:column;
      }
    }

    @media (max-width: 520px){
      .brand-text{
        font-size: 16px;
      }
      .brand-sub{
        font-size: 11px;
      }
      .hero-lead,
      .section-subtitle,
      .card-desc,
      .accordion-content,
      .sidebar-desc,
      .mini-note,
      .form-hint,
      .footer-desc{
        font-size: 14px;
      }
      .topic-card{
        padding: 18px;
      }
      .card-title{
        font-size: 20px;
      }
      .accordion-title{
        font-size: 15px;
        padding-right: 46px;
      }
    }
