/* roulang page: index */
:root{
      --bg:#faf4ea;
      --bg-soft:#f3e8df;
      --bg-card:#fffaf4;
      --bg-deep:#201814;
      --bg-deep-2:#2b211d;
      --text:#2b211e;
      --text-soft:#756963;
      --line:rgba(122,46,58,.14);
      --line-strong:rgba(122,46,58,.22);
      --brand:#8e3845;
      --brand-2:#7a2e3a;
      --accent:#e0b86c;
      --accent-2:#d7a85a;
      --shadow:0 18px 40px rgba(54,35,25,.10);
      --shadow-lg:0 24px 50px rgba(54,35,25,.16);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:18px;
      --radius-sm:14px;
      --transition:all .22s ease;
      --container:1240px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(224,184,108,.10), transparent 30%),
        radial-gradient(circle at right 10% top 20%, rgba(142,56,69,.08), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, var(--bg) 30%, #f7efe4 100%);
      line-height:1.8;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover{color:var(--brand)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(142,56,69,.18);color:var(--text)}
    .container-fluid,.container{padding-left:1rem;padding-right:1rem}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(250,244,234,.80);
      backdrop-filter:saturate(1.1) blur(10px);
      border-bottom:1px solid rgba(122,46,58,.10);
      transition:var(--transition);
    }
    .site-header.is-scrolled{
      box-shadow:0 8px 24px rgba(54,35,25,.08);
      background:rgba(250,244,234,.92);
    }
    .site-shell{
      max-width:var(--container);
      margin:0 auto;
    }
    .desktop-nav{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:1rem;
    }
    .nav-group{
      display:flex;
      align-items:center;
      gap:.5rem;
      flex:1;
    }
    .nav-group.right{
      justify-content:flex-end;
    }
    .nav-link-custom{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.6rem .95rem;
      border-radius:999px;
      color:var(--text-soft);
      font-size:.96rem;
      letter-spacing:.01em;
      position:relative;
    }
    .nav-link-custom:hover,
    .nav-link-custom:focus-visible{
      color:var(--brand);
      background:rgba(142,56,69,.06);
      outline:none;
    }
    .nav-link-custom.active{
      color:var(--brand-2);
      background:rgba(142,56,69,.10);
      box-shadow:inset 0 -2px 0 rgba(224,184,108,.85);
    }
    .brand-wrap{
      flex:0 0 auto;
      text-align:center;
      padding:0 .5rem;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:.7rem;
      color:var(--text);
      font-weight:800;
      font-size:1.02rem;
      letter-spacing:.04em;
      white-space:nowrap;
    }
    .brand-mark .brand-badge{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      color:#fff8ea;
      background:linear-gradient(135deg, var(--brand) 0%, #a54c58 48%, #d2a45d 100%);
      box-shadow:0 10px 22px rgba(122,46,58,.22);
      font-size:1rem;
    }
    .brand-mark .brand-text{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      line-height:1.05;
    }
    .brand-mark .brand-text small{
      font-size:.72rem;
      color:var(--text-soft);
      font-weight:600;
      letter-spacing:.12em;
      text-transform:uppercase;
      margin-top:.2rem;
    }
    .mobile-nav{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.75rem;
    }
    .menu-toggle{
      width:46px;
      height:46px;
      border-radius:14px;
      border:1px solid rgba(122,46,58,.16);
      background:linear-gradient(180deg, #fff, #f7efe4);
      color:var(--brand);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 20px rgba(54,35,25,.06);
      transition:var(--transition);
    }
    .menu-toggle:hover,
    .menu-toggle:focus-visible{
      transform:translateY(-1px);
      border-color:rgba(142,56,69,.24);
      outline:none;
      box-shadow:0 14px 24px rgba(54,35,25,.10);
    }
    .mobile-collapse{
      padding:0 0 1rem;
    }
    .mobile-panel{
      border-top:1px solid rgba(122,46,58,.10);
      padding-top:.9rem;
    }
    .mobile-panel .nav-link-custom{
      display:flex;
      justify-content:space-between;
      width:100%;
      margin:.2rem 0;
      background:rgba(255,255,255,.66);
      border:1px solid rgba(122,46,58,.10);
    }
    .mobile-panel .nav-link-custom.active{
      box-shadow:none;
    }
    .hero{
      padding:clamp(48px, 7vw, 92px) 0 32px;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:auto -10% -35% auto;
      width:420px;
      height:420px;
      background:radial-gradient(circle, rgba(224,184,108,.18), transparent 62%);
      pointer-events:none;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:24px auto auto 0;
      width:100%;
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(122,46,58,.12), transparent);
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:1.5rem;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:.45rem .85rem;
      border-radius:999px;
      background:rgba(142,56,69,.08);
      color:var(--brand-2);
      font-size:.88rem;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:1rem;
    }
    h1,h2,h3,h4{margin:0}
    h1{
      font-size:clamp(2rem, 4vw, 3.55rem);
      line-height:1.18;
      font-weight:800;
      letter-spacing:-.02em;
      margin-bottom:1rem;
      max-width:12ch;
    }
    .hero p{
      color:var(--text-soft);
      font-size:1.05rem;
      margin:0;
      max-width:42rem;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.8rem;
      margin:1.5rem 0 1.2rem;
    }
    .btn-brand{
      border:none;
      color:#281d14;
      background:linear-gradient(135deg, var(--accent) 0%, #e5c17e 100%);
      border-radius:999px;
      padding:.86rem 1.2rem;
      font-weight:700;
      box-shadow:0 14px 30px rgba(224,184,108,.22);
      transition:var(--transition);
    }
    .btn-brand:hover,
    .btn-brand:focus-visible{
      color:#281d14;
      transform:translateY(-2px);
      box-shadow:0 18px 32px rgba(224,184,108,.28);
      outline:none;
    }
    .btn-ghost{
      border:1px solid rgba(122,46,58,.22);
      background:rgba(255,255,255,.66);
      color:var(--brand-2);
      border-radius:999px;
      padding:.84rem 1.18rem;
      font-weight:700;
      transition:var(--transition);
    }
    .btn-ghost:hover,
    .btn-ghost:focus-visible{
      background:rgba(142,56,69,.08);
      color:var(--brand-2);
      transform:translateY(-1px);
      outline:none;
    }
    .pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin-top:1rem;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:.3rem;
      padding:.45rem .75rem;
      border-radius:999px;
      background:rgba(255,255,255,.68);
      border:1px solid rgba(122,46,58,.12);
      color:var(--text-soft);
      font-size:.86rem;
      box-shadow:0 8px 18px rgba(54,35,25,.04);
    }
    .hero-panel{
      position:relative;
      background:linear-gradient(180deg, rgba(33,24,20,.98) 0%, rgba(43,33,29,.96) 100%);
      border-radius:var(--radius-xl);
      padding:1.15rem;
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      color:#f8efe1;
      border:1px solid rgba(224,184,108,.12);
      min-height:420px;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 18% 22%, rgba(224,184,108,.18), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(142,56,69,.24), transparent 20%),
        linear-gradient(135deg, transparent 0 44%, rgba(255,255,255,.03) 44% 46%, transparent 46% 100%);
      pointer-events:none;
    }
    .panel-frame{
      position:absolute;
      inset:1rem;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
        repeating-linear-gradient(90deg, transparent 0 14px, rgba(255,255,255,.02) 14px 15px),
        repeating-linear-gradient(0deg, transparent 0 28px, rgba(255,255,255,.02) 28px 29px);
      pointer-events:none;
    }
    .panel-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.75rem;
      position:relative;
      z-index:1;
    }
    .live-badge{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.38rem .72rem;
      border-radius:999px;
      background:rgba(224,184,108,.14);
      color:#f4d9a1;
      font-size:.82rem;
      font-weight:700;
      border:1px solid rgba(224,184,108,.16);
    }
    .time-box{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:.55rem;
      margin-top:1rem;
      position:relative;
      z-index:1;
    }
    .time-unit{
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      padding:.75rem .6rem;
      text-align:center;
      backdrop-filter:blur(2px);
    }
    .time-unit strong{
      display:block;
      font-size:1.35rem;
      line-height:1;
      color:#fff2d9;
      margin-bottom:.25rem;
    }
    .time-unit span{
      font-size:.8rem;
      color:rgba(249,242,232,.72);
    }
    .mock-screen{
      position:relative;
      z-index:1;
      margin-top:1rem;
      border-radius:24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
        radial-gradient(circle at 70% 20%, rgba(224,184,108,.20), transparent 18%),
        linear-gradient(135deg, rgba(122,46,58,.22), rgba(33,24,20,.14));
      border:1px solid rgba(255,255,255,.10);
      padding:1rem;
      min-height:230px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
    }
    .subtitle-lines{
      display:grid;
      gap:.65rem;
      margin-top:.2rem;
    }
    .subtitle-line{
      display:flex;
      align-items:center;
      gap:.7rem;
      color:#f9f2e8;
      font-size:.92rem;
    }
    .subtitle-line::before{
      content:"";
      width:48px;
      height:6px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(224,184,108,.95), rgba(224,184,108,.10));
      box-shadow:0 0 16px rgba(224,184,108,.18);
      flex:0 0 auto;
    }
    .screen-footer{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:.8rem;
      align-items:flex-end;
      margin-top:1rem;
    }
    .screen-note{
      font-size:.86rem;
      color:rgba(249,242,232,.74);
      max-width:17rem;
    }
    .mini-tags{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      justify-content:flex-end;
    }
    .mini-tags .pill{
      background:rgba(255,255,255,.08);
      color:#f8efe1;
      border-color:rgba(255,255,255,.10);
      box-shadow:none;
    }
    .section-block{
      padding:clamp(46px, 6vw, 86px) 0;
    }
    .section-title{
      max-width:56rem;
      margin-bottom:1.6rem;
    }
    .section-title h2{
      font-size:clamp(1.55rem, 3vw, 2.6rem);
      line-height:1.22;
      font-weight:800;
      margin-bottom:.55rem;
      letter-spacing:-.02em;
    }
    .section-title p{
      margin:0;
      color:var(--text-soft);
      max-width:46rem;
      font-size:1.02rem;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:1.2rem;
    }
    .entry-card,
    .tier-card,
    .glass-card,
    .faq-card,
    .form-card,
    .foot-card{
      background:var(--bg-card);
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      overflow:hidden;
      transition:var(--transition);
    }
    .entry-card:hover,
    .tier-card:hover,
    .glass-card:hover{
      transform:translateY(-4px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow-lg);
    }
    .entry-card{
      position:relative;
      padding:1.35rem;
      min-height:230px;
    }
    .entry-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 100% 0%, rgba(224,184,108,.10), transparent 26%),
        linear-gradient(135deg, rgba(255,255,255,.36), rgba(255,255,255,0));
      pointer-events:none;
    }
    .entry-visual{
      height:110px;
      border-radius:22px;
      background:
        linear-gradient(135deg, rgba(33,24,20,.90), rgba(122,46,58,.90)),
        radial-gradient(circle at 20% 30%, rgba(224,184,108,.32), transparent 18%);
      position:relative;
      overflow:hidden;
      margin-bottom:1rem;
      border:1px solid rgba(122,46,58,.12);
    }
    .entry-visual::before{
      content:"";
      position:absolute;
      inset:12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 4px, transparent 4px 22px),
        linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    }
    .entry-visual::after{
      content:"";
      position:absolute;
      right:14px;
      top:12px;
      width:58px;
      height:58px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(224,184,108,.18), rgba(224,184,108,0));
      box-shadow:0 0 32px rgba(224,184,108,.20);
    }
    .entry-card h3,
    .tier-card h3,
    .glass-card h3,
    .faq-card h3{
      font-size:1.28rem;
      line-height:1.28;
      margin-bottom:.45rem;
      font-weight:800;
    }
    .entry-card p,
    .tier-card p,
    .glass-card p,
    .faq-card p{
      color:var(--text-soft);
      margin:0;
      font-size:.98rem;
    }
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin-top:1rem;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:.32rem;
      padding:.4rem .68rem;
      border-radius:999px;
      background:rgba(142,56,69,.08);
      color:var(--brand-2);
      font-size:.82rem;
      font-weight:700;
      border:1px solid rgba(142,56,69,.10);
    }
    .tag.alt{
      background:rgba(224,184,108,.14);
      color:#8a5a1d;
      border-color:rgba(224,184,108,.15);
    }
    .entry-action{
      margin-top:1.15rem;
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      color:var(--brand-2);
      font-weight:700;
    }
    .entry-action i{transition:var(--transition)}
    .entry-card:hover .entry-action i{transform:translateX(3px)}
    .stats-row{
      margin-top:1.2rem;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:1rem;
    }
    .stat-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(122,46,58,.10);
      border-radius:24px;
      padding:1rem 1.1rem;
      box-shadow:0 12px 28px rgba(54,35,25,.05);
    }
    .stat-card strong{
      display:block;
      font-size:1.55rem;
      line-height:1.1;
      color:var(--brand-2);
      margin-bottom:.3rem;
    }
    .stat-card span{
      color:var(--text-soft);
      font-size:.92rem;
    }
    .offer-wrap{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:1rem;
      align-items:stretch;
    }
    .tier-card{
      position:relative;
      padding:1.25rem 1.2rem 1.2rem;
      min-height:100%;
      overflow:hidden;
    }
    .tier-card.featured{
      border-color:rgba(224,184,108,.55);
      box-shadow:0 22px 48px rgba(224,184,108,.14);
      transform:translateY(-8px);
    }
    .tier-card.featured::after{
      content:"推荐";
      position:absolute;
      top:1rem;
      right:-2rem;
      transform:rotate(35deg);
      background:linear-gradient(135deg, var(--accent), #efcc8d);
      color:#3a2a16;
      font-size:.78rem;
      font-weight:800;
      padding:.25rem 2rem;
      box-shadow:0 10px 20px rgba(224,184,108,.18);
    }
    .tier-index{
      width:44px;
      height:44px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(142,56,69,.10), rgba(224,184,108,.12));
      display:grid;
      place-items:center;
      color:var(--brand-2);
      font-weight:800;
      margin-bottom:1rem;
      border:1px solid rgba(122,46,58,.12);
    }
    .tier-price{
      display:flex;
      align-items:baseline;
      gap:.3rem;
      margin:1rem 0 .8rem;
      font-weight:800;
    }
    .tier-price strong{
      font-size:2rem;
      color:var(--brand-2);
      line-height:1;
    }
    .tier-price span{
      color:var(--text-soft);
      font-size:.9rem;
    }
    .check-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:.55rem;
    }
    .check-list li{
      display:flex;
      gap:.55rem;
      align-items:flex-start;
      color:var(--text);
      font-size:.96rem;
    }
    .check-list i{
      color:var(--accent-2);
      margin-top:.18rem;
      flex:0 0 auto;
    }
    .compare-panel{
      background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,251,246,.95));
      border:1px solid var(--line);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:1rem;
    }
    .compare-table{
      margin:0;
      color:var(--text);
      min-width:920px;
    }
    .compare-table thead th{
      background:linear-gradient(180deg, rgba(142,56,69,.08), rgba(255,255,255,.6));
      color:var(--brand-2);
      border-bottom:1px solid rgba(122,46,58,.14);
      font-weight:800;
      padding:1rem .95rem;
    }
    .compare-table td,.compare-table th{
      border-color:rgba(122,46,58,.10)!important;
      vertical-align:middle;
      padding:1rem .95rem;
    }
    .compare-table tbody tr:nth-child(odd){
      background:rgba(255,255,255,.54);
    }
    .compare-table tbody tr:hover{
      background:rgba(224,184,108,.07);
    }
    .plan-badge{
      display:inline-flex;
      align-items:center;
      padding:.3rem .65rem;
      border-radius:999px;
      background:rgba(142,56,69,.09);
      color:var(--brand-2);
      font-size:.82rem;
      font-weight:700;
      margin-bottom:.35rem;
      border:1px solid rgba(142,56,69,.10);
    }
    .plan-badge.recommend{
      background:rgba(224,184,108,.18);
      color:#7b5317;
      border-color:rgba(224,184,108,.22);
    }
    .subtle-note{
      color:var(--text-soft);
      font-size:.92rem;
    }
    .promo-band{
      position:relative;
      overflow:hidden;
      background:linear-gradient(135deg, #241a16 0%, #352722 50%, #4b2a30 100%);
      color:#f9f2e8;
      border-radius:var(--radius-xl);
      padding:1.4rem 1.35rem;
      border:1px solid rgba(224,184,108,.14);
      box-shadow:var(--shadow-lg);
    }
    .promo-band::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 90% 10%, rgba(224,184,108,.18), transparent 18%),
        radial-gradient(circle at 5% 85%, rgba(142,56,69,.22), transparent 22%);
      pointer-events:none;
    }
    .promo-band .row{
      position:relative;
      z-index:1;
    }
    .promo-timer{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:.55rem;
    }
    .promo-chip{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      text-align:center;
      padding:.8rem .55rem;
    }
    .promo-chip strong{
      display:block;
      color:#fff2d9;
      font-size:1.2rem;
      line-height:1;
      margin-bottom:.25rem;
    }
    .promo-chip span{
      font-size:.82rem;
      color:rgba(249,242,232,.72);
    }
    .promo-band p{
      color:rgba(249,242,232,.82);
      margin-bottom:0;
    }
    .form-card{
      padding:1.25rem;
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,244,.98));
    }
    .form-label{
      color:var(--text);
      font-weight:700;
      margin-bottom:.45rem;
    }
    .form-control,.form-select{
      min-height:52px;
      border-radius:16px;
      border:1px solid rgba(122,46,58,.14);
      background:#fffdf9;
      box-shadow:none;
      color:var(--text);
      padding:.8rem 1rem;
      transition:var(--transition);
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(122,46,58,.40);
      box-shadow:0 0 0 .22rem rgba(224,184,108,.22);
    }
    textarea.form-control{
      min-height:124px;
      resize:vertical;
    }
    .help-text{
      color:var(--text-soft);
      font-size:.88rem;
      margin-top:.4rem;
    }
    .form-side{
      height:100%;
      padding:1.35rem;
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg, rgba(33,24,20,.98), rgba(50,36,30,.96));
      color:#f9f2e8;
      border:1px solid rgba(224,184,108,.12);
      box-shadow:var(--shadow);
    }
    .form-side .check-list li{
      color:#f8efe1;
    }
    .form-side .check-list i{
      color:var(--accent);
    }
    .notice{
      display:none;
      margin-top:1rem;
      border-radius:16px;
      padding:.85rem 1rem;
      background:rgba(224,184,108,.16);
      color:#fff4dc;
      border:1px solid rgba(224,184,108,.18);
    }
    .notice.show{display:block}
    .accordion-wrap{
      background:transparent;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:20px !important;
      overflow:hidden;
      background:var(--bg-card);
      box-shadow:var(--shadow);
      margin-bottom:1rem;
    }
    .accordion-button{
      background:transparent;
      color:var(--text);
      font-weight:700;
      padding:1rem 1.15rem;
      box-shadow:none !important;
    }
    .accordion-button:not(.collapsed){
      background:rgba(142,56,69,.06);
      color:var(--brand-2);
    }
    .accordion-button::after{
      filter:hue-rotate(320deg) saturate(1.1);
    }
    .accordion-body{
      color:var(--text-soft);
      background:rgba(255,255,255,.7);
      padding:0 1.15rem 1rem;
    }
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:1rem;
    }
    .faq-card{
      padding:1.1rem 1.1rem 1rem;
    }
    .faq-q{
      display:flex;
      align-items:flex-start;
      gap:.75rem;
      margin-bottom:.55rem;
    }
    .faq-q i{
      color:var(--brand-2);
      font-size:1.05rem;
      margin-top:.18rem;
    }
    .faq-q h3{
      font-size:1.05rem;
      line-height:1.5;
      margin:0;
      font-weight:800;
    }
    .faq-card p{
      font-size:.95rem;
    }
    .footer{
      margin-top:clamp(36px, 6vw, 72px);
      background:linear-gradient(180deg, #1f1713 0%, #19120f 100%);
      color:#f5eadc;
      border-top:1px solid rgba(224,184,108,.14);
      position:relative;
    }
    .footer::before{
      content:"";
      position:absolute;
      left:0;right:0;top:0;
      height:2px;
      background:linear-gradient(90deg, transparent, rgba(224,184,108,.7), transparent);
    }
    .footer-inner{
      padding:3rem 0 2rem;
    }
    .foot-card{
      background:rgba(255,255,255,.03);
      border-color:rgba(255,255,255,.08);
      color:#f7efe4;
      box-shadow:none;
      padding:1.15rem;
    }
    .footer h3{
      font-size:1.05rem;
      margin-bottom:.9rem;
      font-weight:800;
    }
    .footer p,.footer li,.footer a{
      color:rgba(249,242,232,.74);
      font-size:.94rem;
    }
    .footer a:hover{color:#fff5df}
    .footer-links{
      display:grid;
      gap:.55rem;
      margin:0;
      padding:0;
      list-style:none;
    }
    .footer-badges{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin-top:1rem;
    }
    .footer-badges .pill{
      background:rgba(255,255,255,.06);
      color:#f9f2e8;
      border-color:rgba(255,255,255,.08);
      box-shadow:none;
    }
    .copyright{
      margin-top:1.4rem;
      padding-top:1rem;
      border-top:1px solid rgba(224,184,108,.12);
      color:rgba(249,242,232,.58);
      font-size:.88rem;
    }
    .section-anchor{
      scroll-margin-top:96px;
    }
    .btn:focus-visible,
    .form-control:focus-visible,
    .form-select:focus-visible,
    .accordion-button:focus-visible{
      outline:2px solid rgba(224,184,108,.48);
      outline-offset:2px;
    }
    .sticky-cta{
      position:fixed;
      right:1rem;
      bottom:1rem;
      z-index:1025;
      display:none;
    }
    .sticky-cta .btn{
      border-radius:999px;
      box-shadow:0 18px 32px rgba(54,35,25,.18);
    }
    @media (max-width: 1199.98px){
      .hero-grid{grid-template-columns:1fr .96fr}
      .entry-grid{grid-template-columns:1fr}
      .offer-wrap{grid-template-columns:1fr 1fr}
      .tier-card.featured{transform:none}
      .stats-row{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
    }
    @media (max-width: 991.98px){
      .hero{padding-top:32px}
      .hero-grid{grid-template-columns:1fr}
      .hero-panel{min-height:360px}
      .entry-grid{gap:1rem}
      .offer-wrap{grid-template-columns:1fr}
      .promo-timer{grid-template-columns:repeat(2, minmax(0,1fr))}
    }
    @media (max-width: 767.98px){
      .section-block{padding:52px 0}
      h1{max-width:100%}
      .hero-actions{flex-direction:column}
      .hero-actions .btn{width:100%}
      .hero p{font-size:1rem}
      .hero-panel{padding:1rem}
      .panel-frame{inset:.75rem}
      .time-box{grid-template-columns:repeat(2, minmax(0,1fr))}
      .entry-card{padding:1.1rem}
      .compare-table{min-width:760px}
      .promo-band{padding:1.1rem}
      .form-card,.form-side,.glass-card,.foot-card{border-radius:22px}
      .btn-brand,.btn-ghost{width:100%;justify-content:center}
      .sticky-cta{display:block}
    }
    @media (max-width: 575.98px){
      .brand-mark{font-size:.92rem}
      .brand-mark .brand-badge{width:31px;height:31px;border-radius:11px}
      .brand-mark .brand-text small{display:none}
      .hero-panel{min-height:320px}
      .mock-screen{min-height:210px}
      .subtitle-line::before{width:34px}
      .stat-card strong{font-size:1.3rem}
      .accordion-button,.accordion-body{padding-left:1rem;padding-right:1rem}
      .footer-inner{padding:2.3rem 0 1.6rem}
    }

/* roulang page: category2 */
:root{
      --ink:#17110f;
      --ink-2:#211816;
      --wine:#7a2e3a;
      --wine-2:#8e3845;
      --amber:#d7a85a;
      --amber-2:#e0b86c;
      --paper:#faf4ea;
      --paper-2:#f6efe4;
      --sand:#efe1d7;
      --rose-sand:#f3e8df;
      --text:#2b211e;
      --muted:#756963;
      --light:#f9f2e8;
      --border:rgba(122,46,58,.16);
      --border-strong:rgba(215,168,90,.34);
      --shadow:0 22px 60px rgba(54,35,25,.12);
      --shadow-soft:0 14px 34px rgba(54,35,25,.09);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:30px;
      --container:1200px;
      --ease:180ms ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(215,168,90,.13), transparent 28%),
        radial-gradient(circle at 80% 14%, rgba(122,46,58,.10), transparent 30%),
        linear-gradient(180deg,var(--paper),var(--paper-2) 50%,var(--paper));
      line-height:1.78;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.045;
      background-image:
        linear-gradient(90deg, transparent 0 22px, rgba(23,17,15,.45) 23px 25px, transparent 26px 52px),
        linear-gradient(0deg, transparent 0 36px, rgba(122,46,58,.28) 37px 38px, transparent 39px 76px);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color var(--ease),background var(--ease),border-color var(--ease),transform var(--ease),box-shadow var(--ease)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font:inherit}
    .container{max-width:var(--container)}
    .section{padding:88px 0}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.03em;
      color:var(--wine);
      background:rgba(122,46,58,.08);
      border:1px solid rgba(122,46,58,.12);
    }
    .eyebrow.dark{
      color:var(--amber-2);
      background:rgba(215,168,90,.10);
      border-color:rgba(215,168,90,.22);
    }
    .section-title{
      margin:16px 0 12px;
      font-size:clamp(30px,3.2vw,40px);
      line-height:1.25;
      font-weight:800;
      letter-spacing:-.03em;
      color:var(--ink);
    }
    .section-lead{
      max-width:780px;
      color:var(--muted);
      font-size:17px;
      margin:0;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(250,244,234,.94);
      border-bottom:1px solid rgba(122,46,58,.12);
      backdrop-filter:blur(12px);
      box-shadow:0 4px 20px rgba(54,35,25,.04);
    }
    .site-shell{
      max-width:1240px;
      margin:0 auto;
      padding:0 22px;
    }
    .desktop-nav{
      min-height:72px;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .nav-group{
      display:flex;
      align-items:center;
      gap:10px;
      flex:1;
    }
    .nav-group.right{justify-content:flex-end}
    .brand-wrap{
      flex:0 0 auto;
      display:flex;
      justify-content:center;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      padding:9px 14px;
      border-radius:999px;
      background:linear-gradient(135deg,rgba(23,17,15,.96),rgba(122,46,58,.96));
      color:var(--light);
      box-shadow:0 12px 30px rgba(54,35,25,.16);
    }
    .brand-mark:hover{color:#fff;transform:translateY(-1px)}
    .brand-badge{
      width:38px;height:38px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--ink);
      background:linear-gradient(135deg,var(--amber),var(--amber-2));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.28);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.2;white-space:nowrap}
    .brand-text span{font-weight:800;font-size:15px}
    .brand-text small{font-size:11px;color:rgba(249,242,232,.72);margin-top:2px}
    .nav-link-custom{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:7px;
      min-height:42px;
      padding:9px 14px;
      border-radius:999px;
      color:var(--text);
      font-weight:700;
      font-size:14px;
      border:1px solid transparent;
    }
    .nav-link-custom:hover{
      color:var(--wine);
      background:rgba(122,46,58,.07);
      border-color:rgba(122,46,58,.10);
      transform:translateY(-1px);
    }
    .nav-link-custom.active{
      color:var(--wine);
      background:rgba(215,168,90,.16);
      border-color:rgba(215,168,90,.30);
    }
    .nav-link-custom.active:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:4px;
      width:22px;
      height:3px;
      border-radius:999px;
      transform:translateX(-50%);
      background:var(--wine);
    }
    .mobile-nav{
      min-height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .menu-toggle{
      width:46px;height:46px;
      border:1px solid rgba(122,46,58,.16);
      border-radius:16px;
      background:rgba(255,255,255,.38);
      color:var(--ink);
      display:grid;
      place-items:center;
      transition:var(--ease);
    }
    .menu-toggle:hover,.menu-toggle:focus-visible{
      color:var(--wine);
      border-color:rgba(122,46,58,.30);
      box-shadow:0 0 0 4px rgba(215,168,90,.18);
      outline:none;
    }
    .mobile-collapse{border-top:1px solid rgba(122,46,58,.10)}
    .mobile-panel{
      padding:12px 0 16px;
      display:grid;
      gap:8px;
    }
    .mobile-panel .nav-link-custom{
      justify-content:space-between;
      border-radius:16px;
      padding:12px 14px;
      min-height:48px;
      background:rgba(255,255,255,.34);
    }
    .mobile-panel .nav-link-custom.active:after{display:none}

    .hero{
      position:relative;
      padding:72px 0 82px;
      color:var(--light);
      background:
        radial-gradient(circle at 80% 20%, rgba(215,168,90,.28), transparent 24%),
        radial-gradient(circle at 22% 80%, rgba(122,46,58,.40), transparent 32%),
        linear-gradient(135deg,#17110f 0%,#241715 54%,#411e25 100%);
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.08;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.14) 1px, transparent 1px);
      background-size:52px 52px;
    }
    .hero .container{position:relative;z-index:1}
    .hero h1{
      margin:18px 0 18px;
      max-width:760px;
      font-size:clamp(34px,4.7vw,56px);
      line-height:1.16;
      font-weight:850;
      letter-spacing:-.045em;
    }
    .hero p{
      max-width:700px;
      color:rgba(249,242,232,.78);
      font-size:18px;
      margin:0 0 26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:28px 0 0;
    }
    .btn-brand,.btn-ghost,.btn-darkline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:12px 22px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform var(--ease),box-shadow var(--ease),background var(--ease),border-color var(--ease),color var(--ease);
    }
    .btn-brand{
      color:var(--ink);
      background:linear-gradient(135deg,var(--amber),var(--amber-2));
      box-shadow:0 14px 30px rgba(215,168,90,.22);
    }
    .btn-brand:hover{
      color:var(--ink);
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(215,168,90,.32);
      filter:saturate(1.05);
    }
    .btn-ghost{
      color:var(--light);
      background:rgba(255,255,255,.08);
      border-color:rgba(249,242,232,.22);
    }
    .btn-ghost:hover{
      color:#fff;
      background:rgba(255,255,255,.14);
      border-color:rgba(215,168,90,.45);
      transform:translateY(-2px);
    }
    .btn-darkline{
      color:var(--wine);
      background:rgba(255,255,255,.34);
      border-color:rgba(122,46,58,.20);
    }
    .btn-darkline:hover{
      color:var(--ink);
      background:rgba(215,168,90,.20);
      border-color:rgba(215,168,90,.40);
      transform:translateY(-2px);
    }
    .btn-brand:focus-visible,.btn-ghost:focus-visible,.btn-darkline:focus-visible{
      outline:none;
      box-shadow:0 0 0 4px rgba(215,168,90,.32);
    }
    .path-card{
      position:relative;
      padding:24px;
      border-radius:var(--radius-lg);
      background:rgba(249,242,232,.09);
      border:1px solid rgba(249,242,232,.16);
      box-shadow:0 28px 80px rgba(0,0,0,.22);
      overflow:hidden;
    }
    .path-card:after{
      content:"";
      position:absolute;
      width:180px;height:180px;
      right:-70px;top:-70px;
      border-radius:50%;
      background:rgba(215,168,90,.22);
      filter:blur(4px);
    }
    .path-step{
      position:relative;
      display:flex;
      gap:14px;
      padding:17px 0;
      border-bottom:1px solid rgba(249,242,232,.13);
      z-index:1;
    }
    .path-step:last-child{border-bottom:0}
    .step-no{
      flex:0 0 38px;
      width:38px;height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      font-weight:900;
      color:var(--ink);
      background:var(--amber);
    }
    .path-step h3{
      color:#fff;
      font-size:18px;
      margin:0 0 3px;
      font-weight:800;
    }
    .path-step p{
      margin:0;
      font-size:14px;
      line-height:1.65;
      color:rgba(249,242,232,.68);
    }

    .collage-grid{
      display:grid;
      grid-template-columns:1.25fr .85fr .85fr;
      grid-auto-rows:minmax(190px,auto);
      gap:24px;
      margin-top:34px;
    }
    .topic-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      padding:26px;
      background:rgba(255,255,255,.46);
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
      min-height:210px;
      transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease);
    }
    .topic-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
      border-color:rgba(215,168,90,.48);
    }
    .topic-card.large{
      grid-row:span 2;
      color:var(--light);
      background:
        linear-gradient(135deg,rgba(23,17,15,.96),rgba(122,46,58,.90)),
        radial-gradient(circle at 80% 18%,rgba(215,168,90,.35),transparent 32%);
    }
    .topic-card:before{
      content:"";
      position:absolute;
      inset:auto 18px 18px auto;
      width:92px;height:54px;
      border-radius:12px;
      border:1px solid rgba(215,168,90,.22);
      background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,0));
    }
    .topic-icon{
      width:48px;height:48px;
      border-radius:17px;
      display:grid;
      place-items:center;
      margin-bottom:22px;
      color:var(--ink);
      background:linear-gradient(135deg,var(--amber),var(--amber-2));
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.28);
    }
    .topic-card h3{
      position:relative;
      font-size:24px;
      line-height:1.3;
      font-weight:850;
      margin:0 0 12px;
      z-index:1;
    }
    .topic-card p{
      position:relative;
      margin:0;
      color:var(--muted);
      z-index:1;
    }
    .topic-card.large p{color:rgba(249,242,232,.76)}
    .topic-card.large h3{font-size:31px}
    .subtitle-lines{
      display:grid;
      gap:10px;
      margin-top:28px;
      max-width:380px;
    }
    .subtitle-lines span{
      display:block;
      height:15px;
      border-radius:999px;
      background:rgba(249,242,232,.16);
    }
    .subtitle-lines span:nth-child(2){width:72%;background:rgba(215,168,90,.38)}
    .subtitle-lines span:nth-child(3){width:86%}

    .timeline-wrap{
      margin-top:36px;
      border-radius:var(--radius-lg);
      padding:18px;
      background:linear-gradient(180deg,rgba(255,255,255,.52),rgba(243,232,223,.70));
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .benefit-item{
      display:grid;
      grid-template-columns:82px 1fr;
      gap:18px;
      padding:24px;
      border-radius:24px;
      background:rgba(250,244,234,.74);
      border:1px solid rgba(122,46,58,.10);
      margin-bottom:14px;
      transition:var(--ease);
    }
    .benefit-item:last-child{margin-bottom:0}
    .benefit-item:hover{
      transform:translateX(4px);
      border-color:rgba(215,168,90,.42);
      box-shadow:0 12px 30px rgba(54,35,25,.08);
    }
    .benefit-num{
      width:64px;height:64px;
      border-radius:22px;
      display:grid;
      place-items:center;
      font-size:22px;
      font-weight:900;
      color:var(--light);
      background:linear-gradient(135deg,var(--ink),var(--wine));
    }
    .benefit-item h3{
      margin:0 0 8px;
      font-size:22px;
      font-weight:850;
      color:var(--ink);
    }
    .benefit-points{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:6px;
      color:var(--muted);
    }
    .benefit-points li{
      display:flex;
      gap:8px;
      align-items:flex-start;
    }
    .benefit-points i{color:var(--wine);margin-top:4px}

    .notice-band{
      padding:34px;
      border-radius:var(--radius-lg);
      color:var(--light);
      background:
        radial-gradient(circle at 12% 18%,rgba(215,168,90,.28),transparent 24%),
        linear-gradient(135deg,var(--ink),#372022);
      box-shadow:var(--shadow);
      border:1px solid rgba(215,168,90,.18);
    }
    .notice-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .notice-list li{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(249,242,232,.12);
      color:rgba(249,242,232,.78);
    }
    .notice-list strong{
      display:block;
      color:#fff;
      margin-bottom:4px;
    }

    .consult-section{
      background:
        linear-gradient(180deg,rgba(122,46,58,.08),rgba(122,46,58,0)),
        var(--paper-2);
    }
    .consult-shell{
      padding:28px;
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,var(--ink),#351e21);
      box-shadow:var(--shadow);
    }
    .consult-side{
      color:var(--light);
      padding:18px 10px 18px 8px;
    }
    .consult-side h2{
      margin:16px 0 12px;
      font-size:clamp(29px,3vw,38px);
      line-height:1.26;
      font-weight:850;
      letter-spacing:-.03em;
    }
    .consult-side p{color:rgba(249,242,232,.76);margin:0 0 22px}
    .mini-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .mini-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(249,242,232,.76);
    }
    .mini-list i{color:var(--amber);margin-top:5px}
    .form-card{
      padding:28px;
      border-radius:26px;
      background:var(--paper);
      border:1px solid rgba(215,168,90,.24);
      box-shadow:0 18px 46px rgba(0,0,0,.18);
    }
    .form-label{
      font-weight:800;
      color:var(--ink);
      margin-bottom:8px;
    }
    .form-control,.form-select{
      min-height:52px;
      border-radius:16px;
      color:var(--text);
      background:rgba(255,255,255,.72);
      border:1px solid rgba(122,46,58,.16);
      box-shadow:none;
    }
    textarea.form-control{min-height:122px;resize:vertical}
    .form-control:focus,.form-select:focus{
      border-color:rgba(122,46,58,.62);
      box-shadow:0 0 0 4px rgba(215,168,90,.18);
      background:#fff;
    }
    .form-text{color:var(--muted);line-height:1.6}

    .faq-card{
      border-radius:var(--radius-lg);
      overflow:hidden;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
      background:rgba(255,255,255,.42);
    }
    .accordion-item{
      background:transparent;
      border:0;
      border-bottom:1px solid rgba(122,46,58,.12);
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-button{
      padding:20px 24px;
      color:var(--ink);
      background:rgba(250,244,234,.62);
      font-weight:850;
      box-shadow:none;
    }
    .accordion-button:not(.collapsed){
      color:var(--wine);
      background:var(--rose-sand);
      box-shadow:none;
    }
    .accordion-button:focus{
      border-color:transparent;
      box-shadow:inset 0 0 0 2px rgba(215,168,90,.34);
    }
    .accordion-button::after{
      filter:sepia(1) saturate(1.3) hue-rotate(312deg);
    }
    .accordion-body{
      padding:0 24px 22px;
      color:var(--muted);
      background:var(--rose-sand);
    }

    .final-cta{
      padding:44px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 86% 24%,rgba(215,168,90,.24),transparent 28%),
        linear-gradient(135deg,rgba(122,46,58,.94),rgba(33,24,22,.98));
      color:var(--light);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .final-cta:before{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:24px;
      border:1px dashed rgba(249,242,232,.16);
      pointer-events:none;
    }
    .final-cta h2{
      position:relative;
      font-size:clamp(28px,3vw,38px);
      line-height:1.28;
      font-weight:850;
      margin:0 0 12px;
      z-index:1;
    }
    .final-cta p{
      position:relative;
      color:rgba(249,242,232,.76);
      max-width:730px;
      margin:0;
      z-index:1;
    }
    .final-cta .hero-actions{position:relative;z-index:1;margin-top:24px}

    .pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      background:rgba(215,168,90,.16);
      border:1px solid rgba(215,168,90,.26);
      color:inherit;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .tag-row .pill{
      color:var(--wine);
      background:rgba(122,46,58,.07);
      border-color:rgba(122,46,58,.14);
    }

    .footer{
      position:relative;
      padding:58px 0 34px;
      color:rgba(249,242,232,.76);
      background:linear-gradient(180deg,#211816,#17110f);
    }
    .footer:before{
      content:"";
      position:absolute;
      top:0;left:0;right:0;height:2px;
      background:linear-gradient(90deg,transparent,var(--amber),var(--wine),transparent);
      opacity:.72;
    }
    .footer-inner{position:relative;z-index:1}
    .foot-card{
      padding:24px;
      border-radius:24px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(215,168,90,.12);
    }
    .foot-card h3{
      color:#fff;
      font-size:20px;
      font-weight:850;
      margin:0 0 12px;
    }
    .footer-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(249,242,232,.72);
      display:inline-flex;
      padding:2px 0;
    }
    .footer-links a:hover{color:var(--amber);transform:translateX(3px)}
    .footer a{color:var(--amber-2)}
    .footer a:hover{color:#fff}
    .copyright{
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid rgba(215,168,90,.12);
      font-size:13px;
      color:rgba(249,242,232,.52);
    }

    @media (max-width:1199.98px){
      .site-shell{padding:0 18px}
      .nav-link-custom{padding:9px 10px;font-size:13px}
      .brand-text span{font-size:14px}
      .collage-grid{grid-template-columns:1fr 1fr}
      .topic-card.large{grid-column:span 2;grid-row:auto}
    }
    @media (max-width:991.98px){
      .section{padding:68px 0}
      .hero{padding:58px 0 70px}
      .path-card{margin-top:34px}
      .notice-list{grid-template-columns:1fr}
      .consult-side{padding:6px 0 24px}
      .consult-shell{padding:22px}
      .brand-mark{padding:8px 11px}
      .brand-badge{width:36px;height:36px}
    }
    @media (max-width:767.98px){
      .section{padding:56px 0}
      .section-tight{padding:46px 0}
      .hero-actions{flex-direction:column}
      .btn-brand,.btn-ghost,.btn-darkline{width:100%}
      .collage-grid{grid-template-columns:1fr;gap:16px}
      .topic-card.large{grid-column:auto}
      .topic-card{padding:22px;min-height:auto}
      .benefit-item{grid-template-columns:1fr;padding:20px}
      .notice-band,.final-cta{padding:26px}
      .form-card{padding:22px}
      .consult-shell{border-radius:24px}
    }
    @media (max-width:575.98px){
      .site-shell{padding:0 12px}
      .brand-text span{max-width:190px;overflow:hidden;text-overflow:ellipsis}
      .brand-text small{font-size:10px}
      .hero p,.section-lead{font-size:16px}
      .topic-card.large h3{font-size:26px}
      .accordion-button{padding:17px 18px}
      .accordion-body{padding:0 18px 18px}
      .footer{padding-top:44px}
    }

/* roulang page: category1 */
:root{
      --color-ink:#17110f;
      --color-ink-2:#211816;
      --color-text:#2b211e;
      --color-muted:#756963;
      --color-soft:#faf4ea;
      --color-soft-2:#f6efe4;
      --color-card:#fffaf2;
      --color-sand:#efe1d7;
      --color-rose:#7a2e3a;
      --color-rose-2:#8e3845;
      --color-gold:#d7a85a;
      --color-gold-2:#e0b86c;
      --border:1px solid rgba(122,46,58,.14);
      --border-strong:1px solid rgba(215,168,90,.34);
      --shadow:0 18px 48px rgba(54,35,25,.10);
      --shadow-hover:0 24px 64px rgba(54,35,25,.16);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:30px;
      --container:1200px;
      --header-h:72px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-width:320px;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 12% 8%, rgba(215,168,90,.12), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(122,46,58,.10), transparent 34%),
        linear-gradient(180deg,var(--color-soft),var(--color-soft-2));
      line-height:1.78;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.045;
      background-image:
        linear-gradient(90deg, rgba(23,17,15,.7) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23,17,15,.7) 1px, transparent 1px);
      background-size:42px 42px;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{transition:var(--ease)}
    .container{max-width:var(--container)}
    .section{padding:88px 0}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:999px;
      color:var(--color-rose);
      background:rgba(122,46,58,.08);
      border:1px solid rgba(122,46,58,.16);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
    }
    .section-title{
      font-size:clamp(30px,3.2vw,42px);
      line-height:1.25;
      font-weight:800;
      letter-spacing:-.03em;
      margin:16px 0 14px;
      color:var(--color-ink);
    }
    .section-desc{
      max-width:760px;
      color:var(--color-muted);
      font-size:17px;
      margin:0;
    }
    .text-muted-warm{color:var(--color-muted)!important}

    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      height:var(--header-h);
      background:rgba(250,244,234,.92);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(122,46,58,.10);
      transition:var(--ease);
    }
    .site-header.is-scrolled{
      box-shadow:0 14px 34px rgba(54,35,25,.10);
      background:rgba(250,244,234,.97);
    }
    .site-shell{
      max-width:1240px;
      height:100%;
      margin:0 auto;
      padding:0 24px;
    }
    .desktop-nav,.mobile-nav{
      height:100%;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .nav-group{
      display:flex;
      align-items:center;
      gap:12px;
      flex:1;
    }
    .nav-group.right{justify-content:flex-end}
    .brand-wrap{
      flex:0 0 auto;
      display:flex;
      justify-content:center;
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:12px;
      padding:8px 14px;
      border-radius:999px;
      color:var(--color-ink);
      background:linear-gradient(180deg,#fffaf2,#f3e8df);
      border:1px solid rgba(122,46,58,.14);
      box-shadow:0 10px 30px rgba(54,35,25,.08);
    }
    .brand-mark:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 36px rgba(54,35,25,.13);
      color:var(--color-ink);
    }
    .brand-badge{
      width:38px;
      height:38px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:var(--color-ink);
      background:linear-gradient(135deg,var(--color-gold),var(--color-gold-2));
      box-shadow:inset 0 -6px 12px rgba(23,17,15,.12);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.2;
    }
    .brand-text span{
      font-size:16px;
      font-weight:850;
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .brand-text small{
      color:var(--color-muted);
      font-size:12px;
      margin-top:3px;
    }
    .nav-link-custom{
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:7px;
      padding:10px 14px;
      border-radius:999px;
      color:var(--color-muted);
      font-size:15px;
      font-weight:700;
      position:relative;
      border:1px solid transparent;
    }
    .nav-link-custom:hover{
      color:var(--color-rose);
      background:rgba(122,46,58,.07);
      border-color:rgba(122,46,58,.12);
    }
    .nav-link-custom.active{
      color:var(--color-ink);
      background:#fff8ec;
      border-color:rgba(215,168,90,.38);
      box-shadow:0 8px 22px rgba(54,35,25,.08);
    }
    .nav-link-custom.active::after{
      content:"";
      position:absolute;
      left:22px;
      right:22px;
      bottom:4px;
      height:3px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-rose),var(--color-gold));
    }
    .menu-toggle{
      width:46px;
      height:46px;
      border-radius:16px;
      border:1px solid rgba(122,46,58,.18);
      background:#fff8ec;
      color:var(--color-ink);
      display:grid;
      place-items:center;
    }
    .menu-toggle:hover,.menu-toggle:focus-visible{
      border-color:rgba(215,168,90,.55);
      box-shadow:0 0 0 4px rgba(215,168,90,.18);
    }
    .mobile-collapse{
      position:absolute;
      left:0;
      right:0;
      top:var(--header-h);
      background:rgba(250,244,234,.98);
      border-bottom:1px solid rgba(122,46,58,.12);
      box-shadow:0 20px 40px rgba(54,35,25,.12);
    }
    .mobile-panel{
      max-width:1240px;
      margin:0 auto;
      padding:14px 22px 18px;
      display:grid;
      gap:10px;
    }
    .mobile-panel .nav-link-custom{
      justify-content:space-between;
      border-radius:16px;
      padding:13px 16px;
      background:rgba(255,250,242,.68);
    }

    .btn-brand,.btn-ghost,.btn-darkline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:12px 22px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      line-height:1;
      transition:var(--ease);
    }
    .btn-brand{
      background:linear-gradient(135deg,var(--color-gold),var(--color-gold-2));
      color:var(--color-ink);
      box-shadow:0 12px 28px rgba(215,168,90,.28);
    }
    .btn-brand:hover{
      transform:translateY(-2px);
      color:var(--color-ink);
      box-shadow:0 16px 34px rgba(215,168,90,.36);
      filter:saturate(1.04);
    }
    .btn-ghost{
      color:var(--color-rose);
      background:rgba(255,250,242,.72);
      border-color:rgba(122,46,58,.22);
    }
    .btn-ghost:hover{
      transform:translateY(-2px);
      color:var(--color-ink);
      border-color:rgba(215,168,90,.44);
      background:#fff7eb;
    }
    .btn-darkline{
      color:var(--color-soft);
      border-color:rgba(249,242,232,.24);
      background:rgba(249,242,232,.06);
    }
    .btn-darkline:hover{
      color:var(--color-ink);
      background:var(--color-gold);
      border-color:var(--color-gold);
      transform:translateY(-2px);
    }
    .btn-brand:focus-visible,.btn-ghost:focus-visible,.btn-darkline:focus-visible,
    .form-control:focus,.form-select:focus,.accordion-button:focus{
      outline:none;
      box-shadow:0 0 0 4px rgba(215,168,90,.22);
      border-color:rgba(215,168,90,.65);
    }

    .sub-hero{
      position:relative;
      padding:86px 0 54px;
      color:var(--color-soft);
      background:
        radial-gradient(circle at 78% 18%, rgba(215,168,90,.24), transparent 26%),
        radial-gradient(circle at 20% 12%, rgba(122,46,58,.42), transparent 34%),
        linear-gradient(135deg,#17110f 0%,#211816 52%,#3b1c20 100%);
      overflow:hidden;
    }
    .sub-hero::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.08;
      background:
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(250,244,234,.7) 18px 22px),
        linear-gradient(180deg, transparent, rgba(215,168,90,.2));
      mask-image:linear-gradient(90deg,transparent,black 20%,black 80%,transparent);
    }
    .sub-hero .container{position:relative;z-index:1}
    .hero-copy{max-width:760px}
    .sub-hero h1{
      font-size:clamp(34px,5vw,54px);
      line-height:1.16;
      font-weight:850;
      letter-spacing:-.045em;
      margin:18px 0 18px;
    }
    .hero-lead{
      color:rgba(249,242,232,.78);
      font-size:18px;
      max-width:720px;
      margin-bottom:26px;
    }
    .hero-filter{
      margin-top:34px;
      padding:16px;
      border-radius:24px;
      background:rgba(249,242,232,.08);
      border:1px solid rgba(249,242,232,.15);
      backdrop-filter:blur(6px);
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(249,242,232,.10);
      color:rgba(249,242,232,.88);
      border:1px solid rgba(249,242,232,.15);
      font-size:14px;
      font-weight:750;
    }
    .filter-chip:hover,.filter-chip.active{
      color:var(--color-ink);
      background:var(--color-gold);
      border-color:var(--color-gold);
    }
    .hero-visual{
      min-height:300px;
      border-radius:32px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(145deg,rgba(250,244,234,.10),rgba(122,46,58,.26)),
        #211816;
      border:1px solid rgba(249,242,232,.14);
      box-shadow:0 28px 70px rgba(0,0,0,.22);
    }
    .hero-visual::before{
      content:"";
      position:absolute;
      inset:22px;
      border:1px solid rgba(249,242,232,.18);
      border-radius:24px;
      background:
        linear-gradient(90deg,rgba(249,242,232,.10) 10px,transparent 10px) left/30px 100% repeat-y,
        linear-gradient(270deg,rgba(249,242,232,.10) 10px,transparent 10px) right/30px 100% repeat-y;
    }
    .subtitle-bar{
      position:absolute;
      left:34px;
      right:34px;
      bottom:38px;
      padding:14px 18px;
      border-radius:16px;
      background:rgba(23,17,15,.74);
      color:var(--color-soft);
      border:1px solid rgba(215,168,90,.24);
      box-shadow:0 12px 28px rgba(0,0,0,.22);
      font-weight:750;
    }
    .member-card{
      position:absolute;
      top:36px;
      right:34px;
      width:178px;
      padding:18px;
      border-radius:22px;
      color:var(--color-ink);
      background:linear-gradient(135deg,var(--color-gold),#f3d18b);
      box-shadow:0 18px 40px rgba(215,168,90,.22);
      transform:rotate(4deg);
    }
    .member-card b{display:block;font-size:22px;line-height:1.1}
    .member-card span{font-size:13px;color:rgba(23,17,15,.72)}

    .panel-card{
      background:rgba(255,250,242,.86);
      border:var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .panel-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(215,168,90,.34);
    }
    .layout-split{
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      gap:24px;
      align-items:start;
    }
    .filter-side{
      position:sticky;
      top:96px;
      padding:22px;
    }
    .filter-side h2{
      font-size:22px;
      font-weight:850;
      margin:0 0 14px;
      color:var(--color-ink);
    }
    .side-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .side-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 14px;
      border-radius:16px;
      background:#fff7ec;
      color:var(--color-muted);
      border:1px solid rgba(122,46,58,.09);
      font-weight:750;
    }
    .side-list a:hover,.side-list a.active{
      color:var(--color-ink);
      border-color:rgba(215,168,90,.42);
      background:linear-gradient(135deg,#fff8ec,#f1e3d5);
      transform:translateX(2px);
    }
    .result-grid{
      display:grid;
      gap:18px;
    }
    .media-card{
      display:grid;
      grid-template-columns:180px minmax(0,1fr);
      gap:20px;
      padding:18px;
      border-radius:26px;
      background:rgba(255,250,242,.88);
      border:var(--border);
      box-shadow:0 12px 34px rgba(54,35,25,.07);
      transition:var(--ease);
    }
    .media-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(215,168,90,.36);
    }
    .thumb{
      min-height:132px;
      border-radius:20px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 72% 30%,rgba(215,168,90,.35),transparent 30%),
        linear-gradient(135deg,#211816,#7a2e3a);
      border:1px solid rgba(249,242,232,.26);
    }
    .thumb::before,.thumb::after{
      content:"";
      position:absolute;
      left:14px;
      right:14px;
      border-radius:10px;
      background:rgba(249,242,232,.16);
    }
    .thumb::before{height:18px;bottom:34px}
    .thumb::after{height:10px;bottom:16px;width:58%;right:auto}
    .thumb .frames{
      position:absolute;
      inset:10px;
      border-radius:16px;
      border:1px solid rgba(249,242,232,.18);
      background:
        linear-gradient(90deg,rgba(249,242,232,.12) 8px,transparent 8px) left/24px 100% repeat-y,
        linear-gradient(270deg,rgba(249,242,232,.12) 8px,transparent 8px) right/24px 100% repeat-y;
    }
    .media-body h3{
      font-size:21px;
      line-height:1.35;
      font-weight:850;
      margin:2px 0 8px;
      color:var(--color-ink);
    }
    .media-body p{
      margin:0 0 14px;
      color:var(--color-muted);
      line-height:1.72;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:5px;
      padding:6px 10px;
      border-radius:999px;
      font-size:13px;
      font-weight:750;
      color:var(--color-rose);
      background:rgba(122,46,58,.08);
      border:1px solid rgba(122,46,58,.12);
    }
    .status-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
    }
    .mini-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:var(--color-rose);
      font-weight:850;
      white-space:nowrap;
    }
    .mini-link:hover{
      color:var(--color-ink);
      transform:translateX(2px);
    }

    .benefit-wrap{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:24px;
      align-items:stretch;
    }
    .benefit-large{
      padding:34px;
      min-height:360px;
      background:
        radial-gradient(circle at 86% 22%,rgba(215,168,90,.20),transparent 28%),
        linear-gradient(145deg,#211816,#3b1c20);
      color:var(--color-soft);
      position:relative;
      overflow:hidden;
    }
    .benefit-large::after{
      content:"字幕";
      position:absolute;
      right:-12px;
      bottom:-26px;
      font-size:118px;
      font-weight:900;
      color:rgba(249,242,232,.05);
      letter-spacing:-.08em;
    }
    .benefit-large h2{
      font-size:clamp(30px,3vw,40px);
      line-height:1.25;
      font-weight:850;
      margin:14px 0;
    }
    .benefit-large p{color:rgba(249,242,232,.76);max-width:620px}
    .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(249,242,232,.84);
    }
    .check-list i{color:var(--color-gold);margin-top:4px}
    .benefit-small-grid{
      display:grid;
      gap:18px;
    }
    .small-benefit{
      padding:24px;
      border-radius:26px;
      background:rgba(255,250,242,.88);
      border:var(--border);
      box-shadow:0 12px 32px rgba(54,35,25,.07);
    }
    .small-benefit i{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:15px;
      color:var(--color-ink);
      background:linear-gradient(135deg,var(--color-gold),#f2d18d);
      margin-bottom:14px;
    }
    .small-benefit h3{
      font-size:21px;
      font-weight:850;
      margin:0 0 8px;
    }
    .small-benefit p{margin:0;color:var(--color-muted)}

    .promo-band{
      border-radius:32px;
      padding:34px;
      color:var(--color-soft);
      background:
        radial-gradient(circle at 72% 22%,rgba(215,168,90,.28),transparent 28%),
        linear-gradient(135deg,#17110f,#2d1a18 55%,#5b2530);
      border:1px solid rgba(249,242,232,.14);
      box-shadow:0 24px 60px rgba(54,35,25,.18);
    }
    .promo-band h2{
      font-size:clamp(28px,3vw,38px);
      font-weight:850;
      line-height:1.28;
      margin:0 0 10px;
    }
    .promo-band p{color:rgba(249,242,232,.76);margin:0}
    .count-card{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      max-width:360px;
      margin-left:auto;
    }
    .count-card span{
      display:grid;
      place-items:center;
      min-height:72px;
      border-radius:20px;
      background:rgba(249,242,232,.10);
      border:1px solid rgba(249,242,232,.16);
      color:var(--color-gold);
      font-size:24px;
      font-weight:900;
      line-height:1;
    }
    .count-card small{
      display:block;
      color:rgba(249,242,232,.68);
      font-size:12px;
      margin-top:6px;
      font-weight:700;
    }

    .process-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      margin-top:34px;
    }
    .step-card{
      position:relative;
      padding:26px 22px;
      border-radius:26px;
      background:rgba(255,250,242,.88);
      border:var(--border);
      box-shadow:0 12px 34px rgba(54,35,25,.07);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-4px);
      border-color:rgba(215,168,90,.36);
      box-shadow:var(--shadow-hover);
    }
    .step-num{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:var(--color-ink);
      color:var(--color-gold);
      font-weight:900;
      margin-bottom:18px;
    }
    .step-card h3{
      font-size:20px;
      font-weight:850;
      margin:0 0 8px;
    }
    .step-card p{margin:0;color:var(--color-muted);font-size:15px}

    .consult-section{
      position:relative;
      background:linear-gradient(180deg,rgba(239,225,215,.42),rgba(250,244,234,.4));
    }
    .consult-card{
      padding:30px;
    }
    .form-label{
      font-weight:800;
      color:var(--color-ink);
      margin-bottom:8px;
    }
    .form-control,.form-select{
      min-height:52px;
      border-radius:16px;
      border:1px solid rgba(122,46,58,.16);
      background:#fffaf2;
      color:var(--color-text);
      padding:12px 14px;
      transition:var(--ease);
    }
    textarea.form-control{min-height:122px;resize:vertical}
    .form-control::placeholder{color:rgba(117,105,99,.72)}
    .notice-card{
      padding:28px;
      background:
        radial-gradient(circle at 88% 18%,rgba(215,168,90,.18),transparent 30%),
        linear-gradient(145deg,#211816,#3b1c20);
      color:var(--color-soft);
      border-radius:30px;
      border:1px solid rgba(249,242,232,.14);
      height:100%;
    }
    .notice-card h2{
      font-size:30px;
      font-weight:850;
      line-height:1.28;
      margin:14px 0 12px;
    }
    .notice-card p{color:rgba(249,242,232,.76)}
    .notice-list{
      list-style:none;
      padding:0;
      margin:22px 0 0;
      display:grid;
      gap:13px;
    }
    .notice-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(249,242,232,.84);
    }
    .notice-list i{color:var(--color-gold);margin-top:4px}

    .faq-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
      margin-top:34px;
    }
    .faq-item{
      padding:24px;
      border-radius:26px;
      background:rgba(255,250,242,.88);
      border:var(--border);
      box-shadow:0 12px 32px rgba(54,35,25,.06);
    }
    .faq-item h3{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:20px;
      font-weight:850;
      margin:0 0 8px;
      color:var(--color-ink);
    }
    .faq-item h3 i{color:var(--color-rose)}
    .faq-item p{margin:0;color:var(--color-muted)}

    .footer{
      position:relative;
      padding:58px 0 34px;
      color:rgba(249,242,232,.82);
      background:linear-gradient(180deg,#211816,#17110f);
    }
    .footer::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:2px;
      background:linear-gradient(90deg,transparent,var(--color-gold),var(--color-rose),transparent);
      opacity:.8;
    }
    .footer-inner{position:relative}
    .foot-card{
      padding:24px;
      border-radius:24px;
      background:rgba(249,242,232,.045);
      border:1px solid rgba(249,242,232,.10);
    }
    .foot-card h3{
      font-size:20px;
      font-weight:850;
      color:var(--color-soft);
      margin:0 0 12px;
    }
    .foot-card p{color:rgba(249,242,232,.68);line-height:1.78}
    .footer-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(215,168,90,.12);
      border:1px solid rgba(215,168,90,.22);
      color:var(--color-gold);
      font-size:13px;
      font-weight:800;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(249,242,232,.72);
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .footer-links a:hover{
      color:var(--color-gold);
      transform:translateX(2px);
    }
    .footer a{color:rgba(249,242,232,.86)}
    .footer a:hover{color:var(--color-gold)}
    .copyright{
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid rgba(249,242,232,.10);
      color:rgba(249,242,232,.48);
      font-size:13px;
    }

    @media (max-width:1199.98px){
      .site-shell{padding:0 18px}
      .nav-link-custom{padding:10px 11px;font-size:14px}
      .brand-text span{font-size:15px}
      .layout-split{grid-template-columns:250px minmax(0,1fr)}
      .process-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991.98px){
      .site-header{height:72px}
      .sub-hero{padding:70px 0 46px}
      .hero-visual{margin-top:30px}
      .layout-split{grid-template-columns:1fr}
      .filter-side{position:static}
      .side-list{grid-template-columns:repeat(2,1fr)}
      .benefit-wrap{grid-template-columns:1fr}
      .count-card{margin:24px 0 0;max-width:100%}
    }
    @media (max-width:767.98px){
      .section{padding:60px 0}
      .section-tight{padding:48px 0}
      .site-shell{padding:0 14px}
      .brand-mark{padding:7px 10px;gap:9px}
      .brand-badge{width:34px;height:34px}
      .brand-text span{font-size:14px;max-width:190px;overflow:hidden;text-overflow:ellipsis}
      .brand-text small{font-size:11px}
      .media-card{grid-template-columns:1fr;padding:16px}
      .thumb{min-height:180px}
      .side-list{grid-template-columns:1fr}
      .hero-filter{padding:12px}
      .filter-chip{flex:1 1 calc(50% - 8px);justify-content:center}
      .promo-band{padding:26px}
      .process-grid{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .btn-brand,.btn-ghost,.btn-darkline{width:100%}
      .status-row{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:575.98px){
      .sub-hero h1{font-size:32px}
      .hero-lead{font-size:16px}
      .hero-visual{min-height:250px;border-radius:24px}
      .member-card{width:148px;right:22px;top:28px;padding:14px}
      .subtitle-bar{left:22px;right:22px;bottom:28px;font-size:14px}
      .filter-chip{flex:1 1 100%}
      .panel-card,.promo-band,.benefit-large,.notice-card{border-radius:24px}
      .consult-card{padding:22px}
      .count-card{grid-template-columns:1fr}
    }
