/* roulang page: index */
:root{
      --color-primary:#6E1F3A;
      --color-primary-dark:#55172D;
      --color-secondary:#D96B5C;
      --color-bg:#F8F2EC;
      --color-surface:#FFFDFC;
      --color-soft:#F4E5E2;
      --color-text:#2C1C1F;
      --color-muted:#8A7478;
      --color-line:rgba(110,31,58,.12);
      --color-purple:#A983A2;
      --color-gold:#C9A46A;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --shadow-card:0 18px 45px rgba(80,35,48,.08);
      --shadow-hover:0 24px 60px rgba(80,35,48,.14);
      --shadow-nav:0 12px 34px rgba(80,35,48,.12);
      --container:1220px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 6%,rgba(217,107,92,.16),transparent 30%),
        radial-gradient(circle at 92% 12%,rgba(169,131,162,.13),transparent 28%),
        var(--color-bg);
      font-size:16px;
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,background .22s ease,border .22s ease,transform .22s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(110,31,58,.18)}
    .container{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(248,242,236,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--color-line);
      transition:background .25s ease,box-shadow .25s ease;
    }
    .site-header.is-scrolled{
      background:rgba(110,31,58,.96);
      box-shadow:var(--shadow-nav);
      color:#fff;
    }
    .brand-strip{
      min-height:50px;
      border-bottom:1px solid rgba(110,31,58,.08);
      display:flex;
      align-items:center;
    }
    .site-header.is-scrolled .brand-strip{border-bottom-color:rgba(255,255,255,.12)}
    .brand-wrap{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      position:relative;
      box-shadow:0 12px 24px rgba(110,31,58,.22);
      flex:0 0 auto;
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      width:15px;
      height:22px;
      border-radius:14px 14px 18px 18px;
      background:rgba(255,253,252,.9);
      left:11px;
      top:7px;
      transform:rotate(28deg);
    }
    .brand-name{
      font-weight:800;
      letter-spacing:-.02em;
      font-size:17px;
      line-height:1.25;
      color:var(--color-primary);
    }
    .brand-sub{
      display:block;
      color:var(--color-muted);
      font-size:12px;
      font-weight:600;
      letter-spacing:.03em;
      margin-top:2px;
    }
    .site-header.is-scrolled .brand-name,.site-header.is-scrolled .brand-sub{color:#fff}
    .top-actions{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex-wrap:wrap;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border:1px solid var(--color-line);
      border-radius:999px;
      background:rgba(255,253,252,.7);
      color:var(--color-primary);
      font-weight:700;
      font-size:13px;
      white-space:nowrap;
    }
    .site-header.is-scrolled .mini-badge{
      background:rgba(255,255,255,.1);
      border-color:rgba(255,255,255,.18);
      color:#fff;
    }
    .search-pill{
      min-width:270px;
      border:1px solid var(--color-line);
      border-radius:999px;
      background:rgba(255,253,252,.86);
      padding:8px 14px;
      color:var(--color-text);
      outline:none;
      transition:border .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .search-pill::placeholder{color:#9b868a}
    .search-pill:focus{
      border-color:rgba(110,31,58,.45);
      box-shadow:0 0 0 4px rgba(110,31,58,.1);
      background:#fff;
    }
    .navbar{
      padding:12px 0;
    }
    .navbar-toggler{
      border:1px solid var(--color-line);
      border-radius:14px;
      padding:8px 11px;
      background:rgba(255,253,252,.72);
      box-shadow:none!important;
    }
    .site-header.is-scrolled .navbar-toggler{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22)}
    .nav-channel{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      width:100%;
    }
    .nav-channel .nav-link{
      position:relative;
      padding:9px 15px!important;
      border-radius:999px;
      color:var(--color-text);
      font-weight:700;
      font-size:15px;
    }
    .nav-channel .nav-link:hover{
      color:var(--color-primary);
      background:rgba(110,31,58,.07);
    }
    .nav-channel .nav-link.active{
      color:var(--color-primary);
      background:linear-gradient(135deg,rgba(110,31,58,.12),rgba(217,107,92,.12));
    }
    .site-header.is-scrolled .nav-channel .nav-link{color:rgba(255,255,255,.9)}
    .site-header.is-scrolled .nav-channel .nav-link:hover,
    .site-header.is-scrolled .nav-channel .nav-link.active{
      color:#fff;
      background:rgba(255,255,255,.14);
    }
    .nav-cta{
      margin-left:auto;
      display:flex;
      gap:10px;
      align-items:center;
    }
    .btn{
      border-radius:999px;
      padding:12px 22px;
      font-weight:800;
      letter-spacing:.01em;
      border:0;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,color .22s ease,border .22s ease;
    }
    .btn-primary{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 14px 28px rgba(110,31,58,.22);
    }
    .btn-primary:hover,.btn-primary:active{
      background:var(--color-primary-dark)!important;
      color:#fff!important;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(110,31,58,.28);
    }
    .btn-outline-primary{
      background:rgba(255,253,252,.72);
      border:1px solid rgba(110,31,58,.18);
      color:var(--color-primary);
    }
    .btn-outline-primary:hover,.btn-outline-primary:active{
      background:#F4E5E2!important;
      border-color:rgba(110,31,58,.28)!important;
      color:var(--color-primary-dark)!important;
      transform:translateY(-2px);
    }
    .btn:focus-visible,.nav-link:focus-visible,.form-control:focus,.form-select:focus{
      outline:3px solid rgba(217,107,92,.28);
      outline-offset:3px;
      box-shadow:none;
    }
    .hero{
      position:relative;
      padding:76px 0 44px;
      overflow:hidden;
    }
    .hero-shell{
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(255,253,252,.94),rgba(244,229,226,.78)),
        radial-gradient(circle at 85% 18%,rgba(217,107,92,.18),transparent 33%);
      border:1px solid rgba(110,31,58,.1);
      box-shadow:var(--shadow-card);
      padding:58px;
      position:relative;
      overflow:hidden;
    }
    .hero-shell:before{
      content:"";
      position:absolute;
      width:260px;height:260px;border-radius:50%;
      background:radial-gradient(circle,rgba(201,164,106,.24),transparent 70%);
      right:-80px;top:-80px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      background:rgba(110,31,58,.09);
      color:var(--color-primary);
      font-size:14px;
      font-weight:800;
      margin-bottom:18px;
    }
    h1,h2,h3{letter-spacing:-.03em;color:var(--color-text)}
    h1{
      font-size:clamp(34px,4.3vw,56px);
      line-height:1.18;
      font-weight:850;
      margin:0 0 20px;
      max-width:720px;
    }
    h2{
      font-size:clamp(30px,3vw,38px);
      line-height:1.25;
      font-weight:820;
      margin:0 0 16px;
    }
    h3{font-size:23px;font-weight:800;line-height:1.35}
    .lead{
      font-size:18px;
      color:var(--color-muted);
      line-height:1.85;
      max-width:680px;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:24px}
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .trust-tag,.chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,253,252,.76);
      border:1px solid rgba(110,31,58,.12);
      color:#6f4d55;
      font-size:14px;
      font-weight:700;
    }
    .visual-panel{
      min-height:420px;
      border-radius:32px;
      background:
        linear-gradient(145deg,#7B2643 0%,#D96B5C 58%,#F4D4CA 100%);
      position:relative;
      overflow:hidden;
      box-shadow:0 30px 70px rgba(110,31,58,.22);
      border:1px solid rgba(255,255,255,.42);
    }
    .visual-panel:before{
      content:"";
      position:absolute;
      inset:28px;
      border-radius:28px;
      background:
        radial-gradient(circle at 68% 18%,rgba(255,255,255,.48),transparent 18%),
        repeating-linear-gradient(120deg,rgba(255,255,255,.12) 0 2px,transparent 2px 12px);
      opacity:.72;
    }
    .package{
      position:absolute;
      border-radius:24px;
      background:linear-gradient(160deg,rgba(255,253,252,.86),rgba(248,242,236,.58));
      border:1px solid rgba(255,255,255,.48);
      box-shadow:0 22px 44px rgba(44,28,31,.16);
    }
    .package.one{width:150px;height:220px;right:46px;bottom:52px;transform:rotate(5deg)}
    .package.two{width:190px;height:118px;left:46px;bottom:78px;transform:rotate(-8deg)}
    .package.three{width:72px;height:230px;left:92px;top:54px;border-radius:999px;transform:rotate(12deg)}
    .soft-orb{
      position:absolute;border-radius:50%;
      background:radial-gradient(circle,rgba(255,253,252,.72),rgba(255,253,252,.08) 64%,transparent);
    }
    .soft-orb.a{width:135px;height:135px;right:86px;top:62px}
    .soft-orb.b{width:92px;height:92px;left:38px;top:210px}
    .section{
      padding:86px 0;
      position:relative;
    }
    .section.compact{padding:62px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:34px;
    }
    .section-head p{
      max-width:650px;
      color:var(--color-muted);
      margin:0;
    }
    .trend-strip{
      margin-top:28px;
      padding:18px;
      border-radius:22px;
      background:rgba(255,253,252,.68);
      border:1px solid var(--color-line);
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .trend-title{font-weight:850;color:var(--color-primary);margin-right:2px}
    .metric-dashboard{
      background:var(--color-surface);
      border:1px solid var(--color-line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-card);
      padding:26px;
    }
    .metric-row{
      display:grid;
      grid-template-columns:1.1fr 2fr auto;
      gap:18px;
      align-items:center;
      padding:20px;
      border-radius:22px;
      background:linear-gradient(135deg,rgba(248,242,236,.82),rgba(255,253,252,.88));
      margin-bottom:14px;
      border:1px solid rgba(110,31,58,.08);
    }
    .metric-row:last-child{margin-bottom:0}
    .metric-name{font-weight:850;color:var(--color-text)}
    .metric-desc{font-size:14px;color:var(--color-muted)}
    .progress{
      height:11px;
      border-radius:999px;
      background:#EFE0DD;
      overflow:hidden;
    }
    .progress-bar{
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-primary),var(--color-secondary),var(--color-gold));
    }
    .metric-score{
      color:var(--color-primary);
      font-weight:900;
      font-size:20px;
      min-width:62px;
      text-align:right;
    }
    .category-rail{
      display:grid;
      grid-template-columns:1.2fr .9fr .9fr;
      gap:18px;
    }
    .category-card{
      position:relative;
      min-height:230px;
      padding:30px;
      border-radius:var(--radius-lg);
      background:var(--color-surface);
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-card);
      overflow:hidden;
      transition:transform .22s ease,box-shadow .22s ease,border .22s ease;
    }
    .category-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(217,107,92,.28);
    }
    .category-card.featured{
      min-height:478px;
      background:
        linear-gradient(150deg,rgba(110,31,58,.96),rgba(217,107,92,.82)),
        var(--color-primary);
      color:#fff;
    }
    .category-card.featured h3,.category-card.featured p{color:#fff}
    .category-card p{color:var(--color-muted);margin:12px 0 20px}
    .category-card.featured p{color:rgba(255,255,255,.82)}
    .card-number{
      font-size:13px;
      font-weight:900;
      color:var(--color-secondary);
      letter-spacing:.08em;
      margin-bottom:14px;
    }
    .category-card.featured .card-number{color:#FFD8C6}
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--color-primary);
      font-weight:850;
    }
    .text-link:hover{color:var(--color-secondary)}
    .text-link span{transition:transform .22s ease}
    .text-link:hover span{transform:translateX(4px)}
    .category-card.featured .text-link{color:#fff}
    .function-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:16px;
    }
    .feature-card{
      background:var(--color-surface);
      border:1px solid var(--color-line);
      border-radius:var(--radius-lg);
      padding:24px;
      min-height:250px;
      box-shadow:var(--shadow-card);
      transition:transform .22s ease,box-shadow .22s ease;
    }
    .feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .icon-dot{
      width:48px;height:48px;border-radius:18px;
      background:linear-gradient(135deg,rgba(110,31,58,.12),rgba(217,107,92,.18));
      color:var(--color-primary);
      display:grid;
      place-items:center;
      font-weight:900;
      margin-bottom:18px;
      transition:background .22s ease,color .22s ease;
    }
    .feature-card:hover .icon-dot{background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));color:#fff}
    .feature-card p{color:var(--color-muted);font-size:15px;margin:0 0 18px}
    .chip-group{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto}
    .chip{font-size:12px;padding:6px 9px;background:#FBF6F2}
    .scenario-wrap{
      display:grid;
      grid-template-columns:1fr 430px;
      gap:26px;
      align-items:start;
    }
    .timeline{
      border-radius:var(--radius-xl);
      background:var(--color-surface);
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-card);
      padding:26px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:82px 1fr;
      gap:20px;
      padding:22px 0;
      border-bottom:1px solid rgba(110,31,58,.09);
    }
    .timeline-item:last-child{border-bottom:0}
    .time-no{
      width:58px;height:58px;border-radius:20px;
      display:grid;place-items:center;
      background:rgba(110,31,58,.09);
      color:var(--color-primary);
      font-weight:900;
    }
    .timeline-item h3{margin-bottom:6px}
    .timeline-item p{color:var(--color-muted);margin:0}
    .recommend-panel{
      border-radius:var(--radius-xl);
      padding:32px;
      background:
        radial-gradient(circle at 80% 10%,rgba(201,164,106,.24),transparent 30%),
        linear-gradient(150deg,#3B2028,#6E1F3A);
      color:#fff;
      position:sticky;
      top:142px;
      box-shadow:var(--shadow-card);
    }
    .recommend-panel h3{color:#fff}
    .recommend-panel p{color:rgba(255,255,255,.78)}
    .check-list{
      list-style:none;
      padding:0;margin:22px 0 0;
      display:grid;gap:12px;
    }
    .check-list li{
      display:flex;gap:10px;align-items:flex-start;
      color:rgba(255,255,255,.9);
    }
    .check-list li:before{
      content:"✓";
      width:22px;height:22px;border-radius:50%;
      display:grid;place-items:center;
      background:rgba(255,255,255,.14);
      color:#FFD7C9;
      flex:0 0 auto;
      font-weight:900;
      margin-top:3px;
    }
    .testimonial-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .quote-card{
      background:var(--color-surface);
      border:1px solid var(--color-line);
      border-radius:var(--radius-lg);
      padding:28px;
      box-shadow:var(--shadow-card);
      transition:transform .22s ease,box-shadow .22s ease;
    }
    .quote-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .avatar-line{display:flex;align-items:center;gap:12px;margin-bottom:16px}
    .avatar{
      width:44px;height:44px;border-radius:50%;
      background:linear-gradient(135deg,var(--color-primary),var(--color-purple));
      color:#fff;
      display:grid;place-items:center;
      font-weight:900;
    }
    .quote-card p{color:var(--color-muted);margin:0}
    .plan-ladder{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      align-items:end;
    }
    .plan-card{
      padding:30px;
      border-radius:var(--radius-lg);
      background:var(--color-surface);
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-card);
      position:relative;
      transition:transform .22s ease,box-shadow .22s ease;
    }
    .plan-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover)}
    .plan-card.popular{
      padding-top:44px;
      border-color:rgba(217,107,92,.35);
      background:linear-gradient(180deg,#FFFDFC,#FFF3EF);
      transform:translateY(-16px);
    }
    .popular-badge{
      position:absolute;
      top:16px;right:20px;
      background:var(--color-secondary);
      color:#fff;
      border-radius:999px;
      padding:5px 10px;
      font-weight:850;
      font-size:12px;
    }
    .plan-price{
      color:var(--color-primary);
      font-size:28px;
      font-weight:900;
      margin:14px 0;
    }
    .plan-card ul{
      padding:0;margin:18px 0 24px;
      list-style:none;
      display:grid;gap:10px;
      color:var(--color-muted);
    }
    .plan-card li:before{content:"•";color:var(--color-secondary);font-weight:900;margin-right:8px}
    .faq-shell{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{display:grid;gap:14px}
    .accordion-item{
      background:var(--color-surface);
      border:1px solid var(--color-line)!important;
      border-radius:18px!important;
      overflow:hidden;
      box-shadow:0 10px 28px rgba(80,35,48,.05);
    }
    .accordion-button{
      background:var(--color-surface)!important;
      color:var(--color-text)!important;
      font-weight:850;
      padding:20px 24px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){color:var(--color-primary)!important}
    .accordion-button:focus{box-shadow:none;border-color:transparent}
    .accordion-button::after{
      filter:hue-rotate(295deg) saturate(1.6);
    }
    .accordion-body{
      color:var(--color-muted);
      padding:0 24px 22px;
    }
    .contact-cta{
      border-radius:var(--radius-xl);
      padding:52px;
      background:
        radial-gradient(circle at 86% 16%,rgba(217,107,92,.32),transparent 28%),
        radial-gradient(circle at 15% 80%,rgba(201,164,106,.2),transparent 30%),
        linear-gradient(140deg,#311B22,#6E1F3A);
      color:#fff;
      overflow:hidden;
      position:relative;
    }
    .contact-cta h2{color:#fff}
    .contact-cta p{color:rgba(255,255,255,.78)}
    .advice-form{
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.16);
      border-radius:24px;
      padding:22px;
    }
    .form-control,.form-select{
      border-radius:14px;
      border:1px solid rgba(110,31,58,.14);
      padding:12px 14px;
      background:#fff;
      color:var(--color-text);
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(217,107,92,.72);
      box-shadow:0 0 0 4px rgba(217,107,92,.15);
    }
    .form-note{font-size:13px;color:rgba(255,255,255,.72);margin-top:10px}
    .site-footer{
      background:#241619;
      color:rgba(255,255,255,.78);
      padding:64px 0 24px;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
    }
    .footer-logo strong{color:#fff;font-size:18px}
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;margin:0;
      display:grid;gap:9px;
    }
    .footer-links a{color:rgba(255,255,255,.72)}
    .footer-links a:hover{color:#FFB7A8}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.12);
      margin-top:36px;
      padding-top:20px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.58);
      font-size:14px;
    }
    .muted{color:var(--color-muted)}
    .soft-panel{
      background:rgba(255,253,252,.6);
      border:1px solid var(--color-line);
      border-radius:var(--radius-xl);
      padding:36px;
    }
    @media (max-width:1199.98px){
      .function-grid{grid-template-columns:repeat(3,1fr)}
      .search-pill{min-width:220px}
      .hero-shell{padding:44px}
      .category-rail{grid-template-columns:1fr 1fr}
      .category-card.featured{grid-row:auto;min-height:300px}
    }
    @media (max-width:991.98px){
      .brand-strip{padding:10px 0}
      .top-actions{justify-content:flex-start;margin-top:10px}
      .search-pill{width:100%;min-width:0}
      .nav-channel{align-items:stretch;padding-top:12px}
      .nav-channel .nav-link{display:block}
      .nav-cta{margin-left:0;flex-direction:column;align-items:stretch;width:100%}
      .hero{padding-top:42px}
      .hero-shell{padding:34px}
      .visual-panel{min-height:330px;margin-top:28px}
      .section{padding:66px 0}
      .section-head{display:block}
      .section-head p{margin-top:10px}
      .metric-row{grid-template-columns:1fr;gap:10px}
      .metric-score{text-align:left}
      .scenario-wrap{grid-template-columns:1fr}
      .recommend-panel{position:relative;top:auto}
      .testimonial-grid,.plan-ladder{grid-template-columns:1fr}
      .plan-card.popular{transform:none}
      .contact-cta{padding:34px}
    }
    @media (max-width:767.98px){
      body{font-size:15px}
      .brand-name{font-size:15px}
      .brand-sub{font-size:11px}
      .mini-badge{font-size:12px;padding:6px 9px}
      .hero-shell{padding:28px;border-radius:24px}
      .lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .trend-strip{align-items:flex-start}
      .category-rail,.function-grid{grid-template-columns:1fr}
      .timeline-item{grid-template-columns:1fr;gap:10px}
      .time-no{width:52px;height:52px}
      .category-card{min-height:auto;padding:24px}
      .visual-panel{min-height:290px;border-radius:24px}
      .package.one{width:118px;height:174px;right:24px;bottom:42px}
      .package.two{width:148px;height:96px;left:26px;bottom:64px}
      .package.three{height:178px;left:58px;top:38px}
      .soft-panel{padding:24px}
      .contact-cta{padding:28px;border-radius:24px}
      .footer-bottom{display:block}
    }
    @media (max-width:520px){
      .container{padding-left:18px;padding-right:18px}
      h1{font-size:32px}
      h2{font-size:28px}
      .section{padding:54px 0}
      .hero-shell{padding:24px 20px}
      .trust-row,.hero-actions{gap:9px}
      .btn{padding:11px 18px}
      .metric-dashboard{padding:16px}
      .metric-row{padding:16px}
      .feature-card,.quote-card,.plan-card{padding:22px}
      .advice-form{padding:18px}
    }

/* roulang page: category2 */
:root{
      --color-primary:#6E1F3A;
      --color-primary-dark:#55172D;
      --color-secondary:#D96B5C;
      --color-bg:#F8F2EC;
      --color-surface:#FFFDFC;
      --color-surface-soft:#FDF7F2;
      --color-text:#2C1C1F;
      --color-muted:#8A7478;
      --color-border:rgba(110,31,58,.12);
      --color-gold:#C9A46A;
      --color-purple:#A983A2;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --shadow-card:0 18px 45px rgba(80,35,48,.08);
      --shadow-hover:0 24px 60px rgba(80,35,48,.14);
      --shadow-soft:0 10px 30px rgba(80,35,48,.07);
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 10%, rgba(217,107,92,.12), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(169,131,162,.14), transparent 30%),
        var(--color-bg);
      line-height:1.8;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    a:hover{color:var(--color-primary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(110,31,58,.16);color:var(--color-primary)}
    .container{max-width:var(--container)}
    .section{padding:92px 0}
    .section-tight{padding:68px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      background:rgba(110,31,58,.08);
      color:var(--color-primary);
      font-size:14px;
      font-weight:700;
      letter-spacing:.02em;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--color-secondary),var(--color-gold));
      box-shadow:0 0 0 5px rgba(217,107,92,.12);
    }
    h1,h2,h3,h4{color:var(--color-text);font-weight:800;letter-spacing:-.02em}
    h1{font-size:clamp(34px,4vw,54px);line-height:1.18;margin:0 0 20px}
    h2{font-size:clamp(30px,3vw,38px);line-height:1.25;margin:0 0 18px}
    h3{font-size:24px;line-height:1.35;margin-bottom:12px}
    p{margin-bottom:0;color:var(--color-muted)}
    .lead-text{font-size:18px;line-height:1.9;max-width:720px}
    .section-head{max-width:820px;margin-bottom:38px}
    .section-head.center{text-align:center;margin-left:auto;margin-right:auto}
    .btn{
      border-radius:999px;
      padding:12px 22px;
      font-weight:800;
      border-width:1px;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease;
    }
    .btn-sm{padding:8px 16px;font-size:14px}
    .btn-primary{
      background:var(--color-primary);
      border-color:var(--color-primary);
      color:#fff;
      box-shadow:0 12px 28px rgba(110,31,58,.18);
    }
    .btn-primary:hover,.btn-primary:active{
      background:var(--color-primary-dark)!important;
      border-color:var(--color-primary-dark)!important;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(110,31,58,.24);
    }
    .btn-outline-primary{
      background:rgba(255,253,252,.78);
      border-color:rgba(110,31,58,.22);
      color:var(--color-primary);
    }
    .btn-outline-primary:hover,.btn-outline-primary:active{
      background:#F5E7E5!important;
      border-color:rgba(110,31,58,.35)!important;
      color:var(--color-primary-dark)!important;
      transform:translateY(-2px);
    }
    .btn:focus-visible,.form-control:focus,.form-select:focus,.accordion-button:focus,.navbar-toggler:focus{
      outline:3px solid rgba(217,107,92,.22);
      outline-offset:2px;
      box-shadow:none;
      border-color:rgba(110,31,58,.45);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(248,242,236,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--color-border);
      transition:background .25s ease,box-shadow .25s ease;
    }
    .site-header:hover{box-shadow:0 14px 34px rgba(80,35,48,.08)}
    .brand-strip{
      padding:12px 0;
      border-bottom:1px solid rgba(110,31,58,.08);
    }
    .brand-wrap{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:42px;
      height:42px;
      flex:0 0 auto;
      border-radius:15px 18px 15px 22px;
      background:
        radial-gradient(circle at 65% 28%, rgba(255,255,255,.85) 0 10%, transparent 11%),
        linear-gradient(145deg,var(--color-primary),var(--color-secondary) 70%,var(--color-gold));
      box-shadow:0 14px 28px rgba(110,31,58,.20);
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      width:18px;
      height:7px;
      left:12px;
      bottom:9px;
      border-radius:999px;
      background:rgba(255,253,252,.62);
      transform:rotate(-18deg);
    }
    .brand-name{
      display:block;
      font-weight:900;
      color:var(--color-primary);
      line-height:1.28;
      font-size:17px;
      letter-spacing:-.01em;
    }
    .brand-sub{
      display:block;
      color:var(--color-muted);
      font-size:13px;
      line-height:1.4;
    }
    .top-actions{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .search-pill{
      width:min(270px,100%);
      border:1px solid rgba(110,31,58,.14);
      border-radius:999px;
      padding:9px 15px;
      color:var(--color-text);
      background:rgba(255,253,252,.82);
      transition:all .22s ease;
    }
    .search-pill:focus{
      border-color:rgba(110,31,58,.42);
      box-shadow:0 0 0 4px rgba(217,107,92,.12);
      outline:0;
      background:#fff;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,253,252,.72);
      border:1px solid rgba(110,31,58,.10);
      color:var(--color-primary);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .mini-badge:hover{
      background:rgba(217,107,92,.12);
      border-color:rgba(217,107,92,.28);
      color:var(--color-primary-dark);
    }
    .navbar{padding:10px 0;background:rgba(255,253,252,.45)}
    .navbar-toggler{
      border:1px solid rgba(110,31,58,.20);
      border-radius:14px;
      padding:8px 10px;
    }
    .navbar-toggler-icon{
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28110,31,58,.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .nav-channel{
      width:100%;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .nav-link{
      position:relative;
      color:var(--color-text);
      font-weight:800;
      padding:9px 14px!important;
      border-radius:999px;
      font-size:15px;
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:4px;
      height:2px;
      border-radius:99px;
      background:var(--color-secondary);
      transform:scaleX(0);
      transform-origin:left;
      transition:transform .22s ease;
    }
    .nav-link:hover{
      color:var(--color-primary);
      background:rgba(110,31,58,.05);
    }
    .nav-link:hover::after{transform:scaleX(1)}
    .nav-link.active{
      color:var(--color-primary);
      background:rgba(110,31,58,.10);
    }
    .nav-link.active::after{transform:scaleX(.6)}
    .nav-cta{
      margin-left:auto;
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }

    .hero-material{
      position:relative;
      padding:86px 0 76px;
      overflow:hidden;
      background:
        linear-gradient(115deg, rgba(255,253,252,.78), rgba(253,247,242,.86)),
        radial-gradient(circle at 76% 34%, rgba(201,164,106,.18), transparent 30%);
    }
    .hero-material::before{
      content:"";
      position:absolute;
      inset:auto -90px -140px auto;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(217,107,92,.18),transparent 68%);
      pointer-events:none;
    }
    .hero-panel{
      position:relative;
      min-height:430px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(145deg,rgba(255,253,252,.96),rgba(248,234,226,.96)),
        radial-gradient(circle at 35% 25%,rgba(255,255,255,.8),transparent 35%);
      border:1px solid rgba(110,31,58,.10);
      box-shadow:var(--shadow-card);
      overflow:hidden;
      padding:30px;
    }
    .material-visual{
      height:100%;
      min-height:360px;
      border-radius:28px;
      position:relative;
      background:
        radial-gradient(circle at 24% 20%, rgba(255,255,255,.9) 0 8%, transparent 9%),
        radial-gradient(circle at 82% 72%, rgba(169,131,162,.22), transparent 28%),
        linear-gradient(145deg,#F8E9E1,#FFFDFC 48%,#EFDCD2);
      overflow:hidden;
    }
    .material-visual::before{
      content:"";
      position:absolute;
      left:18%;
      top:18%;
      width:54%;
      height:68%;
      border-radius:32px;
      background:
        linear-gradient(145deg,rgba(110,31,58,.85),rgba(217,107,92,.72)),
        repeating-linear-gradient(45deg,rgba(255,255,255,.12) 0 2px,transparent 2px 10px);
      box-shadow:0 26px 70px rgba(110,31,58,.22);
      transform:rotate(-8deg);
    }
    .material-visual::after{
      content:"";
      position:absolute;
      right:9%;
      bottom:12%;
      width:42%;
      height:28%;
      border-radius:28px;
      background:linear-gradient(135deg,#FFFDFC,#F3DCD4);
      border:1px solid rgba(110,31,58,.10);
      box-shadow:0 18px 42px rgba(80,35,48,.10);
      transform:rotate(8deg);
    }
    .visual-chip{
      position:absolute;
      z-index:2;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,253,252,.88);
      border:1px solid rgba(110,31,58,.11);
      color:var(--color-primary);
      font-weight:900;
      box-shadow:var(--shadow-soft);
      font-size:14px;
    }
    .visual-chip.one{left:22px;bottom:34px}
    .visual-chip.two{right:22px;top:34px}
    .trust-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,253,252,.76);
      border:1px solid rgba(110,31,58,.11);
      color:var(--color-primary);
      font-weight:800;
      font-size:14px;
    }
    .tag::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--color-secondary);
    }

    .quick-index{
      margin-top:-28px;
      position:relative;
      z-index:3;
    }
    .index-card{
      background:rgba(255,253,252,.92);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-card);
      padding:18px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .index-card a{
      padding:10px 14px;
      border-radius:999px;
      background:rgba(110,31,58,.06);
      color:var(--color-primary);
      font-weight:800;
      font-size:14px;
    }
    .index-card a:hover{
      background:var(--color-primary);
      color:#fff;
      transform:translateY(-2px);
    }

    .material-tile,.info-card,.check-panel,.care-step,.notice-card,.advice-form{
      background:rgba(255,253,252,.88);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-card);
      transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
    }
    .material-tile:hover,.info-card:hover,.care-step:hover,.notice-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(217,107,92,.24);
    }
    .material-tile{
      height:100%;
      padding:28px;
      position:relative;
      overflow:hidden;
    }
    .material-tile::after{
      content:"";
      position:absolute;
      right:-34px;
      top:-34px;
      width:120px;
      height:120px;
      border-radius:50%;
      background:rgba(217,107,92,.09);
    }
    .tile-icon{
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      margin-bottom:18px;
      box-shadow:0 14px 28px rgba(110,31,58,.18);
    }
    .chip-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
    .chip{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background:#F8EEE9;
      color:var(--color-primary);
      border:1px solid rgba(110,31,58,.08);
      font-size:13px;
      font-weight:800;
    }

    .soft-block{
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,rgba(255,253,252,.88),rgba(248,236,230,.86));
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-soft);
      padding:44px;
    }
    .table-wrap{
      border-radius:var(--radius-lg);
      border:1px solid var(--color-border);
      background:var(--color-surface);
      box-shadow:var(--shadow-card);
      overflow:auto;
    }
    .comparison-table{
      min-width:860px;
      margin:0;
      color:var(--color-text);
      border-collapse:separate;
      border-spacing:0;
    }
    .comparison-table thead th{
      background:var(--color-primary);
      color:#fff;
      font-size:15px;
      padding:18px 20px;
      white-space:nowrap;
      border:0;
    }
    .comparison-table thead th:first-child{border-top-left-radius:22px}
    .comparison-table thead th:last-child{border-top-right-radius:22px}
    .comparison-table tbody td{
      padding:18px 20px;
      border-bottom:1px solid rgba(110,31,58,.08);
      vertical-align:middle;
      color:var(--color-muted);
    }
    .comparison-table tbody tr:hover td{background:#FFF7F3}
    .comparison-table tbody tr:last-child td{border-bottom:0}
    .table-name{
      color:var(--color-primary);
      font-weight:900;
      white-space:nowrap;
    }
    .rating{
      display:flex;
      align-items:center;
      gap:9px;
      min-width:140px;
    }
    .rating-bar{
      height:8px;
      flex:1;
      border-radius:99px;
      background:#F1DFD8;
      overflow:hidden;
    }
    .rating-bar span{
      display:block;
      height:100%;
      border-radius:99px;
      background:linear-gradient(90deg,var(--color-secondary),var(--color-gold));
    }

    .check-panel{padding:34px}
    .checklist{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:14px;
    }
    .checklist li{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:15px 16px;
      border-radius:18px;
      background:#FFF7F3;
      border:1px solid rgba(110,31,58,.08);
      color:var(--color-muted);
    }
    .checklist li::before{
      content:"✓";
      flex:0 0 auto;
      width:24px;
      height:24px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--color-primary);
      color:#fff;
      font-size:14px;
      font-weight:900;
      margin-top:2px;
    }
    .alert-soft{
      padding:22px 24px;
      border-radius:var(--radius-md);
      background:rgba(201,164,106,.12);
      border:1px solid rgba(201,164,106,.30);
      color:#6D5432;
      font-weight:700;
      line-height:1.75;
    }

    .care-flow{
      counter-reset:step;
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:18px;
    }
    .care-step{
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .care-step::before{
      counter-increment:step;
      content:"0" counter(step);
      display:block;
      font-size:30px;
      font-weight:900;
      color:rgba(110,31,58,.16);
      line-height:1;
      margin-bottom:18px;
    }
    .care-step h3{font-size:20px}
    .notice-card{
      padding:28px;
      height:100%;
    }
    .notice-card .notice-label{
      display:inline-block;
      padding:6px 11px;
      border-radius:999px;
      background:rgba(169,131,162,.14);
      color:var(--color-primary);
      font-weight:900;
      font-size:13px;
      margin-bottom:14px;
    }

    .faq-wrap .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid rgba(110,31,58,.12)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:var(--color-surface);
      box-shadow:0 10px 24px rgba(80,35,48,.05);
    }
    .accordion-button{
      color:var(--color-text);
      font-weight:900;
      background:var(--color-surface);
      padding:20px 22px;
      border-radius:18px!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--color-primary);
      background:#FFF7F3;
      box-shadow:none;
    }
    .accordion-button::after{
      filter:sepia(1) saturate(2) hue-rotate(300deg);
    }
    .accordion-body{
      color:var(--color-muted);
      padding:0 22px 22px;
      line-height:1.85;
      background:#FFF7F3;
    }

    .cta-section{
      padding:88px 0;
      background:
        radial-gradient(circle at 15% 18%, rgba(217,107,92,.25), transparent 26%),
        radial-gradient(circle at 86% 72%, rgba(201,164,106,.22), transparent 30%),
        linear-gradient(135deg,var(--color-primary-dark),var(--color-primary));
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .cta-section::after{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(120deg,rgba(255,255,255,.06) 1px,transparent 1px);
      background-size:34px 34px;
      opacity:.35;
      pointer-events:none;
    }
    .cta-section .container{position:relative;z-index:1}
    .cta-section h2{color:#fff}
    .cta-section p{color:rgba(255,255,255,.78)}
    .advice-form{
      padding:28px;
      background:rgba(255,253,252,.96);
    }
    .form-label{
      color:var(--color-text);
      font-weight:900;
      margin-bottom:8px;
      font-size:14px;
    }
    .form-control,.form-select{
      border-radius:14px;
      border:1px solid rgba(110,31,58,.14);
      padding:12px 14px;
      background:#FFFDFC;
      color:var(--color-text);
    }
    .form-control::placeholder{color:#B39EA2}
    .form-text{color:var(--color-muted);font-size:13px}

    .site-footer{
      background:#241518;
      color:rgba(255,255,255,.78);
      padding:64px 0 28px;
    }
    .site-footer p{color:rgba(255,255,255,.66)}
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      margin-bottom:16px;
    }
    .footer-logo .brand-mark{
      width:38px;
      height:38px;
      border-radius:14px 16px 14px 20px;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.66);
    }
    .footer-links a:hover{
      color:var(--color-secondary);
      padding-left:3px;
    }
    .footer-bottom{
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.58);
      font-size:14px;
    }

    @media (max-width:1199.98px){
      .care-flow{grid-template-columns:repeat(3,1fr)}
      .top-actions .mini-badge:nth-of-type(2){display:none}
    }
    @media (max-width:991.98px){
      .section{padding:72px 0}
      .hero-material{padding:64px 0}
      .top-actions{
        justify-content:flex-start;
        margin-top:14px;
      }
      .search-pill{width:100%}
      .navbar{padding:8px 0}
      .navbar-collapse{
        margin-top:12px;
        padding:16px;
        border-radius:22px;
        background:rgba(255,253,252,.94);
        border:1px solid var(--color-border);
        box-shadow:var(--shadow-card);
      }
      .nav-channel{
        align-items:stretch;
        gap:6px;
      }
      .nav-cta{
        margin-left:0;
        margin-top:10px;
      }
      .nav-cta .btn{width:100%}
      .soft-block{padding:32px}
      .care-flow{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:767.98px){
      body{font-size:15px}
      .section{padding:56px 0}
      .hero-material{padding:52px 0}
      .lead-text{font-size:16px}
      .hero-panel{min-height:340px;padding:18px;margin-top:26px}
      .material-visual{min-height:300px}
      .brand-name{font-size:15px}
      .brand-sub{font-size:12px}
      .trust-tags{gap:8px}
      .tag{font-size:13px}
      .index-card{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap}
      .index-card a{white-space:nowrap}
      .soft-block,.check-panel,.advice-form{padding:24px}
      .care-flow{grid-template-columns:1fr}
      .cta-section{padding:64px 0}
      .footer-bottom{display:grid}
    }
    @media (max-width:520px){
      .brand-wrap{align-items:flex-start}
      .brand-mark{width:38px;height:38px}
      .top-actions{gap:8px}
      .mini-badge{font-size:12px;padding:6px 10px}
      .btn{width:100%;justify-content:center}
      .hero-material .d-flex{width:100%;flex-direction:column}
      .material-tile,.notice-card{padding:22px}
      .comparison-table{min-width:760px}
      .visual-chip{font-size:12px;padding:8px 10px}
    }

/* roulang page: category1 */
:root{
      --color-primary:#6E1F3A;
      --color-primary-dark:#55172D;
      --color-secondary:#D96B5C;
      --color-bg:#F8F2EC;
      --color-surface:#FFFDFC;
      --color-text:#2C1C1F;
      --color-muted:#8A7478;
      --color-purple:#A983A2;
      --color-gold:#C9A46A;
      --color-line:rgba(110,31,58,.12);
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --shadow-card:0 18px 45px rgba(80,35,48,.08);
      --shadow-hover:0 24px 60px rgba(80,35,48,.14);
      --font-main:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font-main);
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 10%, rgba(217,107,92,.12), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(169,131,162,.16), transparent 32%),
        var(--color-bg);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font-family:inherit}
    ::selection{background:rgba(110,31,58,.18);color:var(--color-primary)}
    .container{max-width:var(--container)}
    .section{padding:92px 0}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 14px;
      border-radius:999px;
      background:rgba(110,31,58,.08);
      color:var(--color-primary);
      font-weight:700;
      font-size:14px;
      letter-spacing:.02em;
      margin-bottom:16px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--color-secondary),var(--color-primary));
      box-shadow:0 0 0 5px rgba(217,107,92,.12);
    }
    h1,h2,h3,h4{color:var(--color-text);font-weight:750;letter-spacing:-.02em}
    h1{font-size:52px;line-height:1.18;margin:0 0 22px}
    h2{font-size:36px;line-height:1.25;margin-bottom:18px}
    h3{font-size:24px;line-height:1.35}
    p{margin-bottom:0}
    .lead-copy{
      font-size:18px;
      color:var(--color-muted);
      max-width:720px;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(248,242,236,.9);
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--color-line);
      transition:background .25s ease, box-shadow .25s ease;
    }
    .site-header.is-stuck{
      background:rgba(110,31,58,.96);
      box-shadow:0 16px 38px rgba(44,28,31,.18);
    }
    .brand-strip{
      padding:10px 0;
      border-bottom:1px solid rgba(110,31,58,.09);
      transition:border-color .25s ease;
    }
    .site-header.is-stuck .brand-strip{border-color:rgba(255,255,255,.15)}
    .brand-wrap{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      width:42px;
      height:42px;
      flex:0 0 42px;
      border-radius:16px 18px 16px 999px;
      background:
        radial-gradient(circle at 34% 28%, rgba(255,255,255,.9) 0 12%, transparent 13%),
        linear-gradient(145deg,var(--color-primary),var(--color-secondary) 62%,var(--color-gold));
      box-shadow:0 14px 30px rgba(110,31,58,.22);
      transform:rotate(-8deg);
    }
    .brand-name{
      display:block;
      color:var(--color-primary);
      font-size:17px;
      line-height:1.25;
      font-weight:800;
      letter-spacing:-.02em;
    }
    .brand-sub{
      display:block;
      color:var(--color-muted);
      font-size:13px;
      margin-top:2px;
    }
    .site-header.is-stuck .brand-name,
    .site-header.is-stuck .brand-sub,
    .site-header.is-stuck .nav-link,
    .site-header.is-stuck .mini-badge{color:#fff}
    .top-actions{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .search-pill{
      width:min(280px,100%);
      border:1px solid var(--color-line);
      border-radius:999px;
      padding:10px 16px;
      color:var(--color-text);
      background:rgba(255,253,252,.82);
      outline:none;
      font-size:14px;
      transition:all .2s ease;
    }
    .search-pill:focus{
      border-color:rgba(110,31,58,.45);
      box-shadow:0 0 0 4px rgba(110,31,58,.1);
      background:#fff;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:34px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(110,31,58,.12);
      background:rgba(255,253,252,.72);
      color:var(--color-primary);
      font-weight:700;
      font-size:13px;
      white-space:nowrap;
    }
    a.mini-badge:hover{background:rgba(217,107,92,.12);transform:translateY(-1px)}
    .navbar{
      padding:10px 0;
      background:transparent;
    }
    .navbar-toggler{
      border:1px solid rgba(110,31,58,.18);
      border-radius:14px;
      padding:8px 10px;
      background:rgba(255,253,252,.72);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(110,31,58,.12)}
    .nav-channel{
      width:100%;
      display:flex;
      align-items:center;
      gap:6px;
    }
    .nav-link{
      position:relative;
      padding:9px 16px!important;
      border-radius:999px;
      color:var(--color-text);
      font-weight:700;
      font-size:15px;
    }
    .nav-link:hover{
      color:var(--color-primary);
      background:rgba(110,31,58,.06);
    }
    .nav-link.active{
      color:var(--color-primary)!important;
      background:rgba(110,31,58,.1);
    }
    .site-header.is-stuck .nav-link:hover,
    .site-header.is-stuck .nav-link.active{
      color:#fff!important;
      background:rgba(255,255,255,.14);
    }
    .nav-cta{
      margin-left:auto;
      display:flex;
      gap:10px;
      align-items:center;
    }
    .btn{
      border-radius:999px;
      padding:12px 22px;
      font-weight:800;
      letter-spacing:.01em;
      transition:all .22s ease;
      border-width:1px;
    }
    .btn-sm{padding:8px 15px;font-size:14px}
    .btn-primary{
      --bs-btn-bg:var(--color-primary);
      --bs-btn-border-color:var(--color-primary);
      --bs-btn-hover-bg:var(--color-primary-dark);
      --bs-btn-hover-border-color:var(--color-primary-dark);
      --bs-btn-active-bg:var(--color-primary-dark);
      --bs-btn-active-border-color:var(--color-primary-dark);
      color:#fff;
      box-shadow:0 12px 26px rgba(110,31,58,.18);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(110,31,58,.24)}
    .btn-outline-primary{
      --bs-btn-color:var(--color-primary);
      --bs-btn-border-color:rgba(110,31,58,.22);
      --bs-btn-hover-bg:rgba(110,31,58,.08);
      --bs-btn-hover-border-color:rgba(110,31,58,.35);
      --bs-btn-hover-color:var(--color-primary);
      --bs-btn-active-bg:rgba(110,31,58,.12);
      --bs-btn-active-border-color:rgba(110,31,58,.35);
      background:rgba(255,253,252,.76);
    }
    .btn:focus-visible,.nav-link:focus-visible,a:focus-visible{
      outline:3px solid rgba(201,164,106,.5);
      outline-offset:3px;
      box-shadow:none;
    }
    .hero{
      padding:78px 0 58px;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:24px 3% auto auto;
      width:360px;
      height:360px;
      border-radius:999px;
      background:radial-gradient(circle, rgba(217,107,92,.15), transparent 68%);
      pointer-events:none;
    }
    .hero-panel{
      position:relative;
      border-radius:var(--radius-xl);
      padding:34px;
      min-height:430px;
      background:
        linear-gradient(145deg,rgba(255,253,252,.88),rgba(248,226,222,.9)),
        radial-gradient(circle at 20% 20%, rgba(201,164,106,.22), transparent 30%);
      border:1px solid rgba(110,31,58,.12);
      box-shadow:var(--shadow-card);
      overflow:hidden;
    }
    .abstract-shelf{
      position:absolute;
      inset:28px;
      border-radius:28px;
      background:
        linear-gradient(135deg,rgba(110,31,58,.92),rgba(217,107,92,.58)),
        radial-gradient(circle at 80% 18%,rgba(255,255,255,.35),transparent 24%);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.22);
      overflow:hidden;
    }
    .abstract-shelf:before{
      content:"";
      position:absolute;
      width:220px;height:220px;
      left:34px;bottom:48px;
      border-radius:48% 52% 44% 56%;
      background:linear-gradient(145deg,rgba(255,253,252,.9),rgba(201,164,106,.52));
      filter:blur(.1px);
      opacity:.86;
    }
    .abstract-shelf:after{
      content:"";
      position:absolute;
      width:138px;height:260px;
      right:70px;top:58px;
      border-radius:70px 70px 28px 28px;
      background:linear-gradient(160deg,rgba(255,253,252,.86),rgba(169,131,162,.56));
      box-shadow:-54px 92px 0 -20px rgba(44,28,31,.24), 0 28px 58px rgba(44,28,31,.2);
    }
    .shelf-label{
      position:absolute;
      left:52px;
      right:52px;
      bottom:44px;
      z-index:2;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .visual-chip{
      display:inline-flex;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,253,252,.78);
      color:var(--color-primary);
      font-weight:800;
      font-size:13px;
      backdrop-filter:blur(12px);
    }
    .trust-list{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }
    .trust-list span,.filter-chip,.chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(255,253,252,.82);
      color:var(--color-primary);
      border:1px solid rgba(110,31,58,.11);
      font-weight:750;
      font-size:14px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
    .filter-bar{
      position:relative;
      margin-top:-10px;
      padding:22px;
      border-radius:var(--radius-lg);
      background:rgba(255,253,252,.78);
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-card);
    }
    .filter-chip{
      cursor:pointer;
      margin:4px 5px 4px 0;
      transition:all .2s ease;
    }
    .filter-chip:hover,.filter-chip.active{
      background:rgba(110,31,58,.1);
      transform:translateY(-1px);
    }
    .feature-card,.product-card,.score-card,.info-card,.faq-wrap,.advice-card{
      background:rgba(255,253,252,.88);
      border:1px solid var(--color-line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-card);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .feature-card:hover,.product-card:hover,.score-card:hover,.info-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(217,107,92,.28);
    }
    .feature-card{padding:30px;height:100%}
    .product-card{padding:28px;height:100%;position:relative;overflow:hidden}
    .product-card:before{
      content:"";
      position:absolute;
      right:-34px;top:-34px;
      width:120px;height:120px;
      border-radius:999px;
      background:rgba(217,107,92,.1);
    }
    .product-card.featured{
      min-height:100%;
      color:#fff;
      background:
        linear-gradient(145deg,rgba(110,31,58,.96),rgba(85,23,45,.92)),
        radial-gradient(circle at 86% 18%,rgba(217,107,92,.34),transparent 28%);
      border-color:rgba(255,255,255,.16);
    }
    .product-card.featured h3,.product-card.featured p{color:#fff}
    .product-card.featured .chip{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.2)}
    .card-tag{
      display:inline-flex;
      padding:6px 11px;
      border-radius:999px;
      background:rgba(217,107,92,.12);
      color:var(--color-primary);
      font-size:13px;
      font-weight:800;
      margin-bottom:18px;
    }
    .product-card.featured .card-tag{background:rgba(255,255,255,.16);color:#fff}
    .muted{color:var(--color-muted)}
    .product-meta{
      display:grid;
      gap:12px;
      margin:20px 0 18px;
    }
    .meta-line{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--color-muted);
      font-size:15px;
    }
    .meta-line strong{min-width:72px;color:var(--color-text)}
    .product-card.featured .meta-line,.product-card.featured .meta-line strong{color:#fff}
    .chip-wrap{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--color-primary);
      font-weight:850;
      margin-top:18px;
    }
    .text-link:after{content:"→";transition:transform .2s ease}
    .text-link:hover{color:var(--color-secondary)}
    .text-link:hover:after{transform:translateX(4px)}
    .dashboard{
      padding:30px;
      border-radius:var(--radius-xl);
      background:linear-gradient(145deg,rgba(255,253,252,.9),rgba(255,246,242,.82));
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-card);
    }
    .score-card{padding:24px;margin-bottom:16px}
    .score-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:12px}
    .score-num{font-size:28px;font-weight:900;color:var(--color-primary)}
    .progress{
      height:10px;
      border-radius:999px;
      background:rgba(110,31,58,.08);
      overflow:hidden;
    }
    .progress-bar{
      background:linear-gradient(90deg,var(--color-primary),var(--color-secondary),var(--color-gold));
      border-radius:999px;
    }
    .compare-box{
      border-radius:var(--radius-xl);
      background:rgba(255,253,252,.72);
      border:1px solid var(--color-line);
      overflow:hidden;
      box-shadow:var(--shadow-card);
    }
    .compare-row{
      display:grid;
      grid-template-columns:1.05fr 1fr 1fr 1fr;
      border-bottom:1px solid rgba(110,31,58,.09);
    }
    .compare-row:last-child{border-bottom:0}
    .compare-cell{
      padding:20px 22px;
      border-right:1px solid rgba(110,31,58,.09);
    }
    .compare-cell:last-child{border-right:0}
    .compare-head{
      background:rgba(110,31,58,.08);
      color:var(--color-primary);
      font-weight:850;
    }
    .process-card{
      padding:30px;
      border-radius:var(--radius-lg);
      background:var(--color-surface);
      border:1px solid var(--color-line);
      min-height:100%;
      box-shadow:var(--shadow-card);
    }
    .process-num{
      width:42px;height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(145deg,var(--color-primary),var(--color-secondary));
      color:#fff;
      font-weight:900;
      margin-bottom:18px;
    }
    .advice-section{
      background:
        radial-gradient(circle at 12% 20%,rgba(217,107,92,.18),transparent 30%),
        linear-gradient(145deg,#fff8f4,#f3e8e3);
      border-top:1px solid var(--color-line);
      border-bottom:1px solid var(--color-line);
    }
    .advice-card{padding:34px}
    .form-control,.form-select{
      border-radius:14px;
      border:1px solid rgba(110,31,58,.16);
      padding:12px 14px;
      background:#fff;
      color:var(--color-text);
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(110,31,58,.55);
      box-shadow:0 0 0 4px rgba(110,31,58,.1);
    }
    .form-label{font-weight:800;color:var(--color-text);font-size:14px}
    .accordion{display:grid;gap:14px}
    .accordion-item{
      border:1px solid var(--color-line)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:var(--color-surface);
      box-shadow:0 12px 30px rgba(80,35,48,.06);
    }
    .accordion-button{
      padding:20px 22px;
      font-weight:850;
      color:var(--color-text);
      background:var(--color-surface);
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--color-primary);
      background:rgba(110,31,58,.05);
    }
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(110,31,58,.09)!important;border-color:transparent}
    .accordion-body{padding:0 22px 22px;color:var(--color-muted)}
    .cta-band{
      position:relative;
      padding:54px;
      border-radius:var(--radius-xl);
      color:#fff;
      background:
        radial-gradient(circle at 82% 18%,rgba(217,107,92,.28),transparent 30%),
        linear-gradient(145deg,var(--color-primary),var(--color-primary-dark));
      overflow:hidden;
      box-shadow:0 30px 70px rgba(80,35,48,.18);
    }
    .cta-band h2,.cta-band p{color:#fff}
    .cta-band:after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-110px;
      width:300px;height:300px;
      border-radius:999px;
      border:44px solid rgba(255,255,255,.08);
    }
    .site-footer{
      padding:64px 0 28px;
      background:#241519;
      color:rgba(255,255,255,.78);
    }
    .footer-logo{
      display:flex;
      gap:12px;
      align-items:center;
      color:#fff;
      margin-bottom:16px;
    }
    .footer-logo .brand-mark{width:38px;height:38px;flex-basis:38px}
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
      font-size:16px;
    }
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:8px}
    .footer-links a{color:rgba(255,255,255,.74)}
    .footer-links a:hover{color:var(--color-secondary);padding-left:3px}
    .footer-bottom{
      margin-top:36px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.62);
      font-size:14px;
    }
    @media (max-width:1199px){
      h1{font-size:46px}
      .top-actions{gap:8px}
      .search-pill{width:220px}
      .compare-row{grid-template-columns:1fr 1fr}
      .compare-cell:nth-child(2n){border-right:0}
      .compare-cell{border-bottom:1px solid rgba(110,31,58,.09)}
      .compare-row:last-child .compare-cell{border-bottom:0}
    }
    @media (max-width:991px){
      .brand-strip .col-lg-7{margin-top:12px}
      .top-actions{justify-content:flex-start}
      .navbar-collapse{
        margin-top:12px;
        padding:16px;
        background:rgba(255,253,252,.92);
        border:1px solid var(--color-line);
        border-radius:22px;
        box-shadow:var(--shadow-card);
      }
      .site-header.is-stuck .navbar-collapse{background:rgba(85,23,45,.96)}
      .nav-channel{align-items:stretch}
      .nav-cta{margin-left:0;margin-top:10px;flex-wrap:wrap}
      .hero{padding-top:56px}
      .hero-panel{min-height:360px;margin-top:30px}
      .section{padding:72px 0}
      h1{font-size:40px}
      h2{font-size:31px}
    }
    @media (max-width:767px){
      .brand-name{font-size:15px}
      .brand-sub{font-size:12px}
      .top-actions .search-pill{width:100%}
      h1{font-size:34px}
      h2{font-size:28px}
      .lead-copy{font-size:16px}
      .hero-actions .btn,.cta-band .btn{width:100%}
      .hero-panel{padding:20px;min-height:300px;border-radius:24px}
      .abstract-shelf{inset:18px}
      .shelf-label{left:30px;right:30px;bottom:28px}
      .section{padding:58px 0}
      .section-tight{padding:46px 0}
      .feature-card,.product-card,.dashboard,.advice-card{padding:24px}
      .compare-box{overflow-x:auto}
      .compare-row{min-width:680px;grid-template-columns:1.05fr 1fr 1fr 1fr}
      .compare-cell{border-bottom:0}
      .compare-cell:nth-child(2n){border-right:1px solid rgba(110,31,58,.09)}
      .compare-cell:last-child{border-right:0}
      .cta-band{padding:34px 24px}
      .footer-bottom{display:grid}
    }
    @media (max-width:520px){
      .brand-wrap{align-items:flex-start}
      .brand-mark{width:36px;height:36px;flex-basis:36px;border-radius:14px 15px 14px 999px}
      .mini-badge{font-size:12px;padding:6px 10px}
      .trust-list span,.filter-chip,.chip{font-size:13px}
      .product-meta{gap:9px}
      .meta-line{display:grid;gap:2px}
      .score-top{align-items:flex-start;display:grid}
    }

/* roulang page: category3 */
:root{
      --color-primary:#6E1F3A;
      --color-primary-dark:#55172D;
      --color-secondary:#D96B5C;
      --color-bg:#F8F2EC;
      --color-surface:#FFFDFC;
      --color-text:#2C1C1F;
      --color-muted:#8A7478;
      --color-border:rgba(110,31,58,.12);
      --color-purple:#A983A2;
      --color-gold:#C9A46A;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --shadow-card:0 18px 45px rgba(80,35,48,.08);
      --shadow-hover:0 24px 60px rgba(80,35,48,.14);
      --container:1220px;
      --transition:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 12% 8%,rgba(217,107,92,.10),transparent 28%),
        radial-gradient(circle at 86% 22%,rgba(169,131,162,.12),transparent 24%),
        var(--color-bg);
      line-height:1.8;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(110,31,58,.18)}
    .container{max-width:var(--container)}
    .section{padding:88px 0}
    .section-soft{
      background:linear-gradient(180deg,rgba(255,253,252,.64),rgba(248,242,236,.78));
      border-top:1px solid rgba(110,31,58,.08);
      border-bottom:1px solid rgba(110,31,58,.08);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      color:var(--color-primary);
      background:rgba(110,31,58,.08);
      border:1px solid rgba(110,31,58,.10);
      font-size:14px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg,var(--color-secondary),var(--color-gold));
      box-shadow:0 0 0 5px rgba(217,107,92,.12);
    }
    h1,h2,h3,h4{color:var(--color-text);font-weight:750;letter-spacing:-.02em}
    h1{font-size:clamp(34px,5vw,54px);line-height:1.16;margin:18px 0 18px}
    h2{font-size:clamp(30px,3.3vw,38px);line-height:1.25;margin:14px 0}
    h3{font-size:clamp(22px,2vw,26px);line-height:1.35}
    p{color:var(--color-muted);margin-bottom:0}
    .lead-text{font-size:18px;line-height:1.85;max-width:720px}
    .text-limit{max-width:760px}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(248,242,236,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(110,31,58,.08);
      box-shadow:0 12px 30px rgba(80,35,48,.05);
    }
    .brand-strip{
      padding:12px 0;
      border-bottom:1px solid rgba(110,31,58,.08);
    }
    .brand-wrap{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-mark{
      flex:0 0 auto;
      width:42px;height:42px;
      border-radius:16px 16px 20px 12px;
      background:
        radial-gradient(circle at 32% 24%,rgba(255,255,255,.85) 0 11%,transparent 12%),
        linear-gradient(135deg,var(--color-primary),var(--color-secondary) 58%,var(--color-gold));
      box-shadow:0 14px 32px rgba(110,31,58,.23);
      position:relative;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      width:18px;height:9px;
      border-radius:999px;
      right:7px;bottom:8px;
      background:rgba(255,253,252,.48);
      transform:rotate(-24deg);
    }
    .brand-name{
      display:block;
      color:var(--color-primary);
      font-weight:850;
      font-size:17px;
      line-height:1.25;
    }
    .brand-sub{
      display:block;
      color:var(--color-muted);
      font-size:13px;
      margin-top:2px;
    }
    .top-actions{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .search-pill{
      width:min(310px,100%);
      border:1px solid rgba(110,31,58,.14);
      border-radius:999px;
      padding:10px 16px;
      background:rgba(255,253,252,.84);
      color:var(--color-text);
      outline:none;
      transition:var(--transition);
    }
    .search-pill:focus{
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(110,31,58,.10);
      background:#fff;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,253,252,.76);
      border:1px solid rgba(110,31,58,.10);
      color:var(--color-primary);
      font-size:13px;
      font-weight:700;
      white-space:nowrap;
    }
    a.mini-badge:hover{background:rgba(217,107,92,.12);color:var(--color-primary-dark)}
    .navbar{
      padding:10px 0;
      background:rgba(255,253,252,.54);
    }
    .navbar-toggler{
      border:1px solid rgba(110,31,58,.18);
      border-radius:14px;
      padding:8px 10px;
      color:var(--color-primary);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(110,31,58,.12)}
    .navbar-toggler-icon{
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28110,31,58,.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .nav-channel{
      width:100%;
      align-items:center;
      gap:6px;
    }
    .nav-link{
      color:var(--color-text);
      font-weight:750;
      padding:9px 15px!important;
      border-radius:999px;
      position:relative;
    }
    .nav-link:hover{color:var(--color-primary);background:rgba(110,31,58,.06)}
    .nav-link.active{
      color:var(--color-primary);
      background:rgba(110,31,58,.10);
    }
    .nav-cta{
      display:flex;
      gap:10px;
      margin-left:auto;
      align-items:center;
      flex-wrap:wrap;
    }
    .btn{
      border-radius:999px;
      padding:11px 20px;
      font-weight:800;
      letter-spacing:.01em;
      transition:var(--transition);
      border-width:1px;
    }
    .btn-sm{padding:8px 15px;font-size:14px}
    .btn-primary{
      background:var(--color-primary);
      border-color:var(--color-primary);
      color:#fff;
      box-shadow:0 12px 26px rgba(110,31,58,.20);
    }
    .btn-primary:hover,.btn-primary:active{
      background:var(--color-primary-dark)!important;
      border-color:var(--color-primary-dark)!important;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(110,31,58,.28);
    }
    .btn-outline-primary{
      background:rgba(255,253,252,.78);
      border-color:rgba(110,31,58,.22);
      color:var(--color-primary);
    }
    .btn-outline-primary:hover,.btn-outline-primary:active{
      background:rgba(217,107,92,.12)!important;
      color:var(--color-primary-dark)!important;
      border-color:rgba(110,31,58,.28)!important;
      transform:translateY(-2px);
    }
    .btn:focus-visible,.nav-link:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
      outline:3px solid rgba(217,107,92,.32);
      outline-offset:3px;
      box-shadow:none;
    }
    .hero{
      padding:72px 0 58px;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:22px auto auto 55%;
      width:520px;height:520px;
      background:radial-gradient(circle,rgba(217,107,92,.17),transparent 68%);
      pointer-events:none;
      z-index:-1;
    }
    .hero-panel{
      min-height:520px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(255,253,252,.86),rgba(248,242,236,.72)),
        radial-gradient(circle at 72% 26%,rgba(217,107,92,.22),transparent 34%);
      border:1px solid rgba(110,31,58,.12);
      box-shadow:var(--shadow-card);
      padding:34px;
      position:relative;
      overflow:hidden;
    }
    .hero-visual{
      height:100%;
      min-height:430px;
      border-radius:28px;
      background:
        radial-gradient(circle at 36% 24%,rgba(255,255,255,.82) 0 8%,transparent 9%),
        radial-gradient(circle at 70% 22%,rgba(201,164,106,.26),transparent 26%),
        linear-gradient(145deg,#7a2744 0%,#d96b5c 54%,#f1d7ca 100%);
      position:relative;
      overflow:hidden;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.28);
    }
    .hero-visual::before{
      content:"";
      position:absolute;
      width:62%;height:70%;
      left:16%;bottom:-12%;
      border-radius:42% 42% 18% 18%;
      background:
        linear-gradient(90deg,rgba(255,253,252,.32),rgba(255,253,252,.05)),
        repeating-linear-gradient(105deg,rgba(255,255,255,.10) 0 2px,transparent 2px 12px);
      transform:rotate(-8deg);
      filter:blur(.1px);
    }
    .hero-visual::after{
      content:"";
      position:absolute;
      right:9%;top:16%;
      width:130px;height:230px;
      border-radius:26px;
      background:linear-gradient(180deg,rgba(255,253,252,.64),rgba(255,253,252,.18));
      box-shadow:0 24px 55px rgba(44,28,31,.18);
      transform:rotate(8deg);
    }
    .visual-note{
      position:absolute;
      left:24px;bottom:24px;right:24px;
      padding:18px;
      border-radius:22px;
      background:rgba(44,28,31,.64);
      color:#fff;
      backdrop-filter:blur(8px);
    }
    .visual-note strong{display:block;font-size:18px;margin-bottom:4px}
    .visual-note span{font-size:14px;color:rgba(255,255,255,.78)}
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }
    .trust-tag,.filter-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      background:rgba(255,253,252,.80);
      border:1px solid rgba(110,31,58,.12);
      color:var(--color-primary);
      font-weight:750;
      font-size:14px;
    }
    .trust-tag::before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--color-secondary);
    }
    .scene-banner{
      border:1px solid var(--color-border);
      background:var(--color-surface);
      border-radius:var(--radius-lg);
      padding:30px;
      box-shadow:var(--shadow-card);
      transition:var(--transition);
      position:relative;
      overflow:hidden;
    }
    .scene-banner:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
    }
    .scene-banner::after{
      content:"";
      position:absolute;
      top:-80px;right:-80px;
      width:220px;height:220px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(217,107,92,.14),transparent 68%);
      pointer-events:none;
    }
    .scene-number{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:52px;height:52px;
      border-radius:18px;
      color:#fff;
      font-weight:850;
      background:linear-gradient(135deg,var(--color-primary),var(--color-secondary));
      box-shadow:0 14px 32px rgba(110,31,58,.22);
      margin-bottom:18px;
    }
    .scene-meta{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-top:22px;
    }
    .meta-box{
      padding:16px;
      border-radius:18px;
      background:rgba(248,242,236,.72);
      border:1px solid rgba(110,31,58,.08);
    }
    .meta-box b{display:block;color:var(--color-primary);margin-bottom:4px}
    .meta-box span{display:block;color:var(--color-muted);font-size:14px;line-height:1.7}
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--color-primary);
      font-weight:850;
      margin-top:20px;
    }
    .text-link .arrow{transition:var(--transition)}
    .text-link:hover{color:var(--color-primary-dark)}
    .text-link:hover .arrow{transform:translateX(4px)}
    .process-wrap{
      border-radius:var(--radius-xl);
      background:linear-gradient(135deg,rgba(110,31,58,.96),rgba(85,23,45,.96));
      padding:38px;
      color:#fff;
      position:relative;
      overflow:hidden;
      box-shadow:0 26px 70px rgba(80,35,48,.22);
    }
    .process-wrap::before{
      content:"";
      position:absolute;
      inset:-160px -120px auto auto;
      width:420px;height:420px;border-radius:50%;
      background:radial-gradient(circle,rgba(217,107,92,.35),transparent 68%);
    }
    .process-wrap h2,.process-wrap p{color:#fff}
    .process-wrap .muted-light{color:rgba(255,255,255,.72)}
    .step-card{
      height:100%;
      border-radius:22px;
      padding:24px;
      background:rgba(255,253,252,.09);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(5px);
      transition:var(--transition);
    }
    .step-card:hover{background:rgba(255,253,252,.13);transform:translateY(-3px)}
    .step-index{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:38px;height:38px;
      border-radius:14px;
      background:rgba(255,255,255,.16);
      color:#fff;
      font-weight:850;
      margin-bottom:16px;
    }
    .step-card h3{color:#fff;font-size:20px}
    .step-card p{color:rgba(255,255,255,.76);font-size:15px;line-height:1.75}
    .case-card,.advice-card,.check-panel{
      border-radius:var(--radius-lg);
      background:var(--color-surface);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
      padding:28px;
      height:100%;
      transition:var(--transition);
    }
    .case-card:hover,.advice-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .case-head{
      display:flex;
      gap:14px;
      align-items:center;
      margin-bottom:18px;
    }
    .avatar{
      width:48px;height:48px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:850;
      background:linear-gradient(135deg,var(--color-primary),var(--color-purple));
    }
    .case-flow{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .flow-line{
      padding:14px 16px;
      border-radius:16px;
      background:rgba(248,242,236,.74);
      border:1px solid rgba(110,31,58,.08);
      color:var(--color-muted);
      font-size:15px;
    }
    .flow-line b{color:var(--color-primary)}
    .check-list{
      list-style:none;
      padding:0;
      margin:20px 0 0;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:var(--color-muted);
      padding:13px 14px;
      border-radius:16px;
      background:rgba(248,242,236,.70);
      border:1px solid rgba(110,31,58,.08);
    }
    .check-list li::before{
      content:"✓";
      flex:0 0 24px;
      width:24px;height:24px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:rgba(110,31,58,.10);
      color:var(--color-primary);
      font-weight:900;
      line-height:1;
    }
    .score-item{margin-top:18px}
    .score-title{
      display:flex;
      justify-content:space-between;
      gap:14px;
      color:var(--color-text);
      font-weight:800;
      margin-bottom:8px;
      font-size:15px;
    }
    .score-bar{
      height:10px;
      border-radius:999px;
      background:rgba(110,31,58,.08);
      overflow:hidden;
    }
    .score-bar span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-primary),var(--color-secondary),var(--color-gold));
    }
    .form-panel{
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(255,253,252,.98),rgba(248,242,236,.88));
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-card);
      padding:34px;
    }
    .form-label{
      color:var(--color-text);
      font-weight:800;
      margin-bottom:8px;
    }
    .form-control,.form-select{
      border-radius:14px;
      border:1px solid rgba(110,31,58,.16);
      padding:12px 14px;
      background:rgba(255,253,252,.88);
      color:var(--color-text);
    }
    .form-control:focus,.form-select:focus{
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(110,31,58,.10);
      background:#fff;
    }
    .notice{
      padding:16px 18px;
      border-radius:18px;
      background:rgba(201,164,106,.12);
      border:1px solid rgba(201,164,106,.22);
      color:#6f5730;
      font-size:14px;
      line-height:1.75;
    }
    .accordion{display:grid;gap:14px}
    .accordion-item{
      border:1px solid rgba(110,31,58,.12)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:var(--color-surface);
      box-shadow:0 12px 30px rgba(80,35,48,.05);
    }
    .accordion-button{
      background:var(--color-surface);
      color:var(--color-text);
      font-weight:850;
      padding:20px 22px;
      border-radius:18px!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--color-primary);
      background:rgba(110,31,58,.06);
      box-shadow:none;
    }
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(110,31,58,.10);border-color:transparent}
    .accordion-button::after{
      filter:sepia(40%) saturate(800%) hue-rotate(290deg);
    }
    .accordion-body{
      color:var(--color-muted);
      padding:0 22px 22px;
      line-height:1.85;
    }
    .cta-band{
      border-radius:var(--radius-xl);
      padding:44px;
      background:
        radial-gradient(circle at 78% 20%,rgba(217,107,92,.32),transparent 34%),
        linear-gradient(135deg,var(--color-primary),var(--color-primary-dark));
      color:#fff;
      box-shadow:0 26px 70px rgba(80,35,48,.24);
      overflow:hidden;
      position:relative;
    }
    .cta-band h2,.cta-band p{color:#fff}
    .cta-band p{color:rgba(255,255,255,.76)}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
    .cta-band .btn-outline-primary{
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.28);
      color:#fff;
    }
    .cta-band .btn-outline-primary:hover{
      background:rgba(255,255,255,.20)!important;
      color:#fff!important;
      border-color:rgba(255,255,255,.42)!important;
    }
    .site-footer{
      padding:64px 0 28px;
      background:linear-gradient(135deg,#2C1C1F,#4b1829);
      color:rgba(255,255,255,.78);
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
      color:#fff;
    }
    .footer-logo .brand-mark{width:38px;height:38px;border-radius:15px}
    .site-footer p{color:rgba(255,255,255,.68);font-size:14px;line-height:1.85}
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(255,255,255,.68);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#ffb0a5;
      padding-left:4px;
    }
    .footer-bottom{
      margin-top:38px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.58);
      font-size:13px;
    }
    @media (max-width:1199px){
      .top-actions{justify-content:flex-start;margin-top:12px}
      .hero-panel{min-height:auto}
      .hero-visual{min-height:360px}
    }
    @media (max-width:991px){
      .section{padding:68px 0}
      .navbar-collapse{
        padding:16px 0 6px;
      }
      .nav-channel{align-items:stretch}
      .nav-link{display:block}
      .nav-cta{margin-left:0;margin-top:10px}
      .nav-cta .btn{width:100%}
      .hero{padding:54px 0 42px}
      .hero-panel{padding:24px;margin-top:26px}
      .scene-meta{grid-template-columns:1fr}
      .process-wrap{padding:28px}
    }
    @media (max-width:767px){
      body{font-size:15px}
      .section{padding:54px 0}
      .brand-strip .row{gap:10px}
      .brand-name{font-size:15px}
      .brand-sub{font-size:12px}
      .brand-mark{width:38px;height:38px}
      .search-pill{width:100%}
      .top-actions{gap:8px}
      .mini-badge{font-size:12px;min-height:32px}
      .lead-text{font-size:16px}
      .hero-panel,.form-panel,.cta-band{border-radius:24px;padding:22px}
      .hero-visual{min-height:300px;border-radius:22px}
      .visual-note{left:16px;right:16px;bottom:16px}
      .scene-banner,.case-card,.advice-card,.check-panel{padding:22px;border-radius:22px}
      .cta-actions .btn{width:100%}
      .footer-bottom{display:grid}
    }
    @media (max-width:520px){
      .hero::before{display:none}
      .trust-row,.cta-actions{gap:8px}
      .trust-tag,.filter-chip{font-size:13px;padding:8px 11px}
      .scene-number{width:46px;height:46px;border-radius:16px}
      .process-wrap{padding:22px;border-radius:24px}
      .brand-wrap{align-items:flex-start}
      .footer-logo{align-items:flex-start}
    }
