/* roulang page: index */
:root{
      --bg: #fbf6ef;
      --bg-soft: #fffaf3;
      --card: rgba(255,255,255,.84);
      --card-strong: #ffffff;
      --line: rgba(92, 70, 51, .12);
      --text: #2d2722;
      --muted: #6f6258;
      --muted-2: #8d7f73;
      --primary: #ef8455;
      --primary-2: #d96c43;
      --accent: #b65d42;
      --warm: #f7d7c1;
      --warm-2: #ffd9b8;
      --shadow: 0 18px 55px rgba(113, 71, 49, .12);
      --shadow-soft: 0 10px 30px rgba(113, 71, 49, .08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1180px;
      --ease: all .28s cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(239,132,85,.12), transparent 28%),
        radial-gradient(circle at top right, rgba(214,171,132,.16), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg) 50%, #fffaf4 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.28;
      background-image:
        radial-gradient(rgba(84,61,44,.05) 1px, transparent 1px);
      background-size: 20px 20px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.04) 60%, transparent 100%);
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(239,132,85,.18);color:var(--text)}
    .site-shell{
      position:relative;
      z-index:1;
    }
    .container-narrow{
      width:min(var(--container), calc(100% - 2rem));
      margin-inline:auto;
    }
    .site-header{
      position:sticky;
      top:14px;
      z-index:1030;
      padding:10px 0 0;
    }
    .nav-pillbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:14px 18px;
      background:rgba(255,255,255,.8);
      backdrop-filter: blur(18px);
      border:1px solid rgba(122, 87, 61, .12);
      border-radius:9999px;
      box-shadow:0 12px 34px rgba(108, 73, 53, .10);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:800;
      letter-spacing:.2px;
      color:var(--text);
    }
    .brand-mark{
      width:42px;height:42px;border-radius:50%;
      display:grid;place-items:center;
      background: radial-gradient(circle at 30% 25%, #ffd9b8, #ef8455 70%, #cf6341 100%);
      color:#fff;
      box-shadow: 0 10px 20px rgba(239,132,85,.25);
      font-size:1.05rem;
    }
    .brand span{
      font-size:1rem;
      line-height:1.15;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:center;
      margin:0;
      padding:0;
      list-style:none;
    }
    .nav-links a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 15px;
      border-radius:9999px;
      font-weight:700;
      font-size:.95rem;
      color:var(--muted);
      background:transparent;
      border:1px solid transparent;
    }
    .nav-links a:hover,
    .nav-links a:focus{
      color:var(--text);
      background:rgba(255,255,255,.95);
      border-color:rgba(239,132,85,.18);
      box-shadow:0 10px 22px rgba(239,132,85,.10);
      transform:translateY(-1px);
      outline:none;
    }
    .nav-links a.active{
      color:#ffffff;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow:0 12px 24px rgba(239,132,85,.26);
    }
    .nav-links a i{font-size:.88rem}
    .hero{
      padding: 38px 0 18px;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border-radius: calc(var(--radius-xl) + 10px);
      background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,248,241,.92)),
        radial-gradient(circle at 18% 20%, rgba(239,132,85,.10), transparent 30%),
        radial-gradient(circle at 82% 20%, rgba(205,99,65,.12), transparent 26%);
      border:1px solid rgba(122, 87, 61, .10);
      box-shadow: var(--shadow);
      padding: 30px;
    }
    .hero-panel:before,
    .hero-panel:after{
      content:"";
      position:absolute;
      border-radius:50%;
      background:radial-gradient(circle, rgba(239,132,85,.18), rgba(239,132,85,0) 68%);
      pointer-events:none;
    }
    .hero-panel:before{
      width:240px;height:240px;right:-72px;top:-70px;
    }
    .hero-panel:after{
      width:180px;height:180px;left:-42px;bottom:-70px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(239,132,85,.12);
      color:#a74f31;
      font-weight:700;
      letter-spacing:.2px;
      font-size:.92rem;
      margin-bottom:16px;
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 6px rgba(239,132,85,.12);
    }
    .hero h1{
      font-size:clamp(2rem, 4.2vw, 4.2rem);
      line-height:1.08;
      letter-spacing:-.03em;
      font-weight:800;
      margin:0 0 16px;
      max-width:12ch;
    }
    .hero p.lead{
      font-size:1.06rem;
      color:var(--muted);
      max-width: 56ch;
      margin:0 0 24px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:10px;
    }
    .btn-soft,
    .btn-primary-custom{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:13px 20px;
      border-radius:9999px;
      border:1px solid transparent;
      font-weight:800;
      letter-spacing:.1px;
      transition:var(--ease);
      cursor:pointer;
      text-decoration:none;
    }
    .btn-primary-custom{
      color:#fff;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow:0 14px 26px rgba(239,132,85,.24);
    }
    .btn-primary-custom:hover,
    .btn-primary-custom:focus{
      transform:translateY(-2px);
      color:#fff;
      box-shadow:0 18px 28px rgba(239,132,85,.30);
      outline:none;
    }
    .btn-soft{
      color:var(--text);
      background:rgba(255,255,255,.82);
      border-color:rgba(122,87,61,.14);
      box-shadow:0 10px 22px rgba(113,71,49,.08);
    }
    .btn-soft:hover,
    .btn-soft:focus{
      transform:translateY(-2px);
      background:#fff;
      border-color:rgba(239,132,85,.28);
      outline:none;
    }
    .hero-meta{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:22px;
    }
    .meta-chip{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:11px 14px;
      border-radius:9999px;
      background:rgba(255,255,255,.8);
      border:1px solid rgba(122,87,61,.12);
      color:var(--muted);
      font-size:.95rem;
      box-shadow:0 8px 20px rgba(113,71,49,.06);
    }
    .meta-chip strong{
      color:var(--text);
      font-weight:800;
    }
    .hero-visual{
      position:relative;
      min-height: 100%;
      display:grid;
      place-items:center;
    }
    .visual-stage{
      position:relative;
      width:min(100%, 520px);
      min-height: 430px;
      margin-inline:auto;
      border-radius: calc(var(--radius-xl) + 6px);
      background:
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,248,241,.96));
      border:1px solid rgba(122,87,61,.12);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
      padding:20px;
    }
    .ring{
      width:168px;
      aspect-ratio:1;
      border-radius:50%;
      display:grid;
      place-items:center;
      margin:auto;
      background:
        conic-gradient(var(--primary) 0 76%, rgba(239,132,85,.12) 76% 100%);
      box-shadow:0 16px 30px rgba(239,132,85,.12);
    }
    .ring-inner{
      width:126px;
      aspect-ratio:1;
      border-radius:50%;
      background:var(--bg-soft);
      display:grid;
      place-items:center;
      text-align:center;
      padding:14px;
      box-shadow: inset 0 0 0 1px rgba(122,87,61,.08);
    }
    .ring-inner strong{
      display:block;
      font-size:1.6rem;
      font-weight:800;
      line-height:1.05;
    }
    .ring-inner span{
      color:var(--muted);
      font-size:.9rem;
    }
    .bubble-grid{
      position:absolute;
      inset:18px;
      display:grid;
      grid-template-columns:repeat(12,1fr);
      grid-template-rows:repeat(12,1fr);
      pointer-events:none;
    }
    .bubble{
      position:absolute;
      max-width: 150px;
      padding:10px 12px;
      border-radius:18px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(122,87,61,.12);
      box-shadow:0 10px 20px rgba(113,71,49,.08);
      color:var(--muted);
      font-size:.9rem;
      line-height:1.45;
    }
    .bubble:after{
      content:"";
      position:absolute;
      width:12px;height:12px;
      background:inherit;
      border-left:1px solid rgba(122,87,61,.12);
      border-bottom:1px solid rgba(122,87,61,.12);
      transform:rotate(45deg);
      bottom:-6px;
      left:22px;
    }
    .bubble.b1{left:10px; top:10px;}
    .bubble.b2{right:14px; top:32px;}
    .bubble.b3{left:16px; bottom:100px;}
    .bubble.b4{right:20px; bottom:96px;}
    .bubble.b5{left:58px; top:164px; max-width:132px;}
    .bubble.b6{right:48px; top:188px; max-width:132px;}
    .avatar-wall{
      position:absolute;
      inset:auto 22px 22px 22px;
      display:grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap:10px;
      padding:14px;
      border-radius:24px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(122,87,61,.10);
      box-shadow:0 10px 26px rgba(113,71,49,.08);
    }
    .avatar{
      aspect-ratio:1;
      border-radius:50%;
      display:grid;
      place-items:center;
      font-weight:800;
      color:#6d4432;
      background: linear-gradient(145deg, #ffe4cf, #fff7ef);
      border:1px solid rgba(239,132,85,.16);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
      font-size:.92rem;
    }
    .section{
      padding: 24px 0;
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(1.45rem, 2.5vw, 2.2rem);
      font-weight:800;
      letter-spacing:-.02em;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:62ch;
    }
    .soft-card{
      background:var(--card);
      border:1px solid rgba(122,87,61,.11);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
    }
    .feature-card{
      padding:20px;
      height:100%;
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 30px rgba(113,71,49,.11);
      border-color:rgba(239,132,85,.22);
    }
    .feature-icon{
      width:50px;height:50px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, rgba(239,132,85,.16), rgba(255,219,194,.88));
      color:var(--primary-2);
      font-size:1.15rem;
      margin-bottom:14px;
      box-shadow: inset 0 0 0 1px rgba(239,132,85,.10);
    }
    .feature-card h3{
      font-size:1.08rem;
      font-weight:800;
      margin:0 0 8px;
    }
    .feature-card p{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
      line-height:1.72;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:9999px;
      background:#fff;
      color:#7a5b49;
      border:1px solid rgba(122,87,61,.10);
      font-size:.84rem;
      font-weight:700;
    }
    .tag.soft{
      background:rgba(239,132,85,.10);
      color:#a44e2e;
      border-color:rgba(239,132,85,.15);
    }
    .pain-grid .feature-card{
      min-height: 182px;
    }
    .pain-grid .feature-card .mini-line{
      margin-top:15px;
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted-2);
      font-size:.88rem;
    }
    .mini-line i{
      color:var(--primary);
    }
    .solution-wrap{
      padding:24px;
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .step{
      position:relative;
      padding:20px 18px 18px;
      border-radius:22px;
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,244,.88));
      border:1px solid rgba(122,87,61,.10);
      box-shadow:0 10px 22px rgba(113,71,49,.07);
      min-height:180px;
    }
    .step .num{
      width:38px;height:38px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      font-weight:800;
      margin-bottom:12px;
      box-shadow:0 10px 20px rgba(239,132,85,.23);
    }
    .step h3{
      margin:0 0 8px;
      font-size:1.02rem;
      font-weight:800;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.72;
    }
    .chip-board{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .chip-board .tag{
      padding:9px 13px;
    }
    .results-box{
      padding:24px;
    }
    .kpi-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-bottom:18px;
    }
    .kpi{
      padding:18px 16px;
      border-radius:20px;
      background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,250,244,.88));
      border:1px solid rgba(122,87,61,.10);
      box-shadow:0 8px 18px rgba(113,71,49,.06);
    }
    .kpi strong{
      display:block;
      font-size:1.7rem;
      font-weight:800;
      line-height:1.1;
      color:var(--primary-2);
      margin-bottom:6px;
    }
    .kpi span{
      color:var(--muted);
      font-size:.92rem;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:22px;
      border:1px solid rgba(122,87,61,.10);
      margin: 14px 0 0;
      background:#fff;
    }
    .compare-table th,
    .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(122,87,61,.08);
      vertical-align:middle;
      font-size:.95rem;
    }
    .compare-table thead th{
      background:linear-gradient(180deg, rgba(255,248,241,.92), rgba(255,255,255,.96));
      font-weight:800;
      color:var(--text);
    }
    .compare-table tbody tr:last-child td{border-bottom:none}
    .compare-table .good{
      color:#a44e2e;
      font-weight:700;
    }
    .compare-table .muted{
      color:var(--muted);
    }
    .news-list{
      height:100%;
      padding:24px;
    }
    .news-list h3{
      font-size:1.05rem;
      font-weight:800;
      margin:0 0 12px;
    }
    .news-list a{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:13px 0;
      border-bottom:1px solid rgba(122,87,61,.08);
      color:var(--text);
    }
    .news-list a:hover{
      color:var(--primary-2);
      transform:translateX(2px);
    }
    .news-list a:last-child{border-bottom:none}
    .news-list .n-title{
      font-weight:700;
      line-height:1.45;
    }
    .news-list .n-meta{
      color:var(--muted-2);
      white-space:nowrap;
      font-size:.88rem;
    }
    .testimonial-wrap{
      padding:24px;
    }
    .review-summary{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .score-box{
      padding:22px;
      border-radius:24px;
      background:linear-gradient(135deg, rgba(239,132,85,.12), rgba(255,255,255,.86));
      border:1px solid rgba(239,132,85,.16);
    }
    .score-top{
      display:flex;
      align-items:center;
      gap:16px;
      margin-bottom:14px;
    }
    .score-ring{
      width:82px;height:82px;border-radius:50%;
      display:grid;place-items:center;
      background:conic-gradient(var(--primary) 0 88%, rgba(239,132,85,.10) 88% 100%);
      box-shadow:0 12px 24px rgba(239,132,85,.18);
    }
    .score-ring span{
      width:62px;height:62px;border-radius:50%;
      background:#fff;
      display:grid;
      place-items:center;
      font-weight:800;
      color:var(--primary-2);
      font-size:1.25rem;
    }
    .score-copy h3{
      margin:0 0 6px;
      font-size:1.2rem;
      font-weight:800;
    }
    .score-copy p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .quote-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .quote{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 15px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(122,87,61,.10);
      box-shadow:0 8px 16px rgba(113,71,49,.05);
    }
    .quote .ava{
      width:42px;height:42px;border-radius:50%;
      display:grid;place-items:center;
      font-weight:800;
      color:#7b4c38;
      background:linear-gradient(145deg, #ffe2cc, #fff6ee);
      flex:none;
      border:1px solid rgba(239,132,85,.14);
    }
    .quote p{
      margin:0;
      color:var(--text);
      line-height:1.65;
      font-size:.95rem;
    }
    .quote small{
      display:block;
      color:var(--muted-2);
      margin-top:3px;
    }
    .avatar-cloud{
      padding:18px;
      border-radius:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,241,.9));
      border:1px solid rgba(122,87,61,.10);
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      align-content:start;
    }
    .avatar-cloud .avatar{
      width:100%;
      aspect-ratio:1;
      font-size:1rem;
    }
    .faq-wrap{
      padding:24px;
    }
    .accordion{
      --bs-accordion-border-color: rgba(122,87,61,.10);
      --bs-accordion-border-radius: 18px;
      --bs-accordion-inner-border-radius: 18px;
      --bs-accordion-btn-padding-x: 1.15rem;
      --bs-accordion-btn-padding-y: 1rem;
      --bs-accordion-active-color: var(--text);
      --bs-accordion-active-bg: rgba(239,132,85,.08);
      --bs-accordion-btn-focus-border-color: rgba(239,132,85,.24);
      --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(239,132,85,.14);
      --bs-accordion-bg: #fff;
      --bs-accordion-btn-color: var(--text);
      --bs-accordion-color: var(--muted);
    }
    .accordion-item{
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 8px 18px rgba(113,71,49,.05);
      margin-bottom:12px;
      border:1px solid rgba(122,87,61,.10);
    }
    .accordion-button{
      font-weight:800;
      font-size:1rem;
      background:#fff;
    }
    .accordion-button:not(.collapsed){
      box-shadow:none;
    }
    .accordion-body{
      padding-top:0;
      color:var(--muted);
      line-height:1.78;
    }
    .cta-wrap{
      position:relative;
      padding:24px;
      overflow:hidden;
      border-radius: calc(var(--radius-xl) + 8px);
      background:
        radial-gradient(circle at top left, rgba(239,132,85,.18), transparent 30%),
        linear-gradient(135deg, #fff3e7, #ffe7d3 60%, #fff8f1 100%);
      border:1px solid rgba(239,132,85,.16);
      box-shadow: 0 18px 40px rgba(239,132,85,.12);
    }
    .cta-wrap h2{
      margin:0 0 10px;
      font-size:clamp(1.5rem, 2.7vw, 2.35rem);
      font-weight:800;
      letter-spacing:-.02em;
    }
    .cta-wrap p{
      margin:0;
      max-width:60ch;
      color:#6b5648;
      font-size:1rem;
    }
    .cta-actions{
      margin-top:18px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .footer{
      padding: 18px 0 30px;
    }
    .footer-card{
      padding:20px 22px;
      border-radius:24px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(122,87,61,.10);
      box-shadow:0 12px 28px rgba(113,71,49,.06);
    }
    .footer-top{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:14px;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px 14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .footer-links a{
      color:var(--muted);
      font-weight:700;
    }
    .footer-links a:hover{
      color:var(--primary-2);
    }
    .footer-note{
      color:var(--muted-2);
      font-size:.92rem;
      margin:0;
    }
    .footer-tech{
      margin-top:12px;
      padding-top:12px;
      border-top:1px dashed rgba(122,87,61,.14);
      color:var(--muted-2);
      font-size:.9rem;
    }
    .support-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      background:rgba(239,132,85,.10);
      border:1px solid rgba(239,132,85,.14);
      color:#a44e2e;
      font-weight:800;
      font-size:.9rem;
    }
    .section-spacer{
      height:8px;
    }
    .text-link{
      color:var(--primary-2);
      font-weight:800;
    }
    .text-link:hover{color:#b6502b}
    .hero-card-list{
      display:grid;
      gap:10px;
      margin-top:20px;
    }
    .hero-card-list .mini-card{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:13px 14px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(122,87,61,.10);
      box-shadow:0 8px 18px rgba(113,71,49,.05);
    }
    .mini-card strong{
      display:block;
      font-size:.96rem;
    }
    .mini-card span{
      color:var(--muted-2);
      font-size:.86rem;
    }
    .mini-card .status{
      padding:7px 10px;
      border-radius:999px;
      background:rgba(239,132,85,.10);
      color:#a44e2e;
      font-weight:800;
      font-size:.82rem;
      white-space:nowrap;
    }
    .anchor-title{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .anchor-title i{
      color:var(--primary);
    }
    .list-check{
      display:grid;
      gap:10px;
      margin:16px 0 0;
      padding:0;
      list-style:none;
    }
    .list-check li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      line-height:1.7;
    }
    .list-check li i{
      color:var(--primary-2);
      margin-top:4px;
      flex:none;
    }
    .info-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .info-pill{
      padding:10px 13px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(122,87,61,.10);
      color:#7b5a49;
      font-weight:700;
      font-size:.88rem;
      box-shadow:0 8px 18px rgba(113,71,49,.05);
    }
    .pill-highlight{
      background:rgba(239,132,85,.10);
      color:#a44e2e;
    }
    .mobile-only{display:none}
    @media (max-width: 1199.98px){
      .steps,.kpi-grid{grid-template-columns:repeat(2,1fr)}
      .review-summary{grid-template-columns:1fr}
      .hero-panel{padding:24px}
      .visual-stage{min-height: 400px}
    }
    @media (max-width: 991.98px){
      .nav-pillbar{
        border-radius:26px;
        flex-direction:column;
        align-items:flex-start;
      }
      .nav-links{
        justify-content:flex-start;
      }
      .hero h1{
        max-width:100%;
      }
      .hero-panel{
        padding:20px;
      }
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .steps{grid-template-columns:repeat(2,1fr)}
      .kpi-grid{grid-template-columns:repeat(2,1fr)}
      .avatar-cloud{grid-template-columns:repeat(4,1fr)}
    }
    @media (max-width: 767.98px){
      .hero{
        padding-top:22px;
      }
      .hero-panel{
        border-radius:26px;
      }
      .hero-panel .row{
        gap: 18px;
      }
      .hero h1{
        font-size:clamp(1.8rem, 8vw, 2.8rem);
      }
      .hero p.lead{
        font-size:1rem;
      }
      .visual-stage{
        min-height: 355px;
        padding:16px;
      }
      .bubble{
        font-size:.84rem;
        max-width:120px;
      }
      .avatar-wall{
        grid-template-columns:repeat(4,1fr);
      }
      .steps,.kpi-grid{grid-template-columns:1fr}
      .compare-table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
      }
      .news-list a{
        flex-direction:column;
        align-items:flex-start;
      }
      .news-list .n-meta{
        white-space:normal;
      }
      .mobile-only{display:block}
    }
    @media (max-width: 575.98px){
      .container-narrow{
        width:min(var(--container), calc(100% - 1.1rem));
      }
      .nav-pillbar{
        padding:12px;
      }
      .brand span{font-size:.94rem}
      .nav-links{
        gap:8px;
      }
      .nav-links a{
        padding:9px 12px;
        font-size:.9rem;
      }
      .hero-panel{
        padding:16px;
      }
      .hero-actions .btn-soft,
      .hero-actions .btn-primary-custom,
      .cta-actions .btn-soft,
      .cta-actions .btn-primary-custom{
        width:100%;
      }
      .hero-meta{
        gap:8px;
      }
      .meta-chip{
        width:100%;
        justify-content:space-between;
      }
      .bubble.b1,.bubble.b2,.bubble.b3,.bubble.b4,.bubble.b5,.bubble.b6{
        max-width: 112px;
      }
      .avatar-wall{
        grid-template-columns:repeat(3,1fr);
        inset:auto 14px 14px 14px;
      }
      .avatar-cloud{
        grid-template-columns:repeat(3,1fr);
      }
      .score-top{
        flex-direction:column;
        align-items:flex-start;
      }
      .footer-card{
        padding:18px;
      }
    }
    .focus-ring:focus-visible{
      outline:3px solid rgba(239,132,85,.26);
      outline-offset:3px;
    }

/* roulang page: category1 */
:root {
      --bg: #fff7ef;
      --bg-soft: #fff1e6;
      --surface: #fffdf9;
      --surface-warm: #fff8f1;
      --text: #251f1b;
      --muted: #766b62;
      --soft-text: #9a8174;
      --primary: #f26f4d;
      --primary-dark: #d95535;
      --primary-soft: #ffe1d4;
      --accent: #b96b5b;
      --rose: #f6d7d3;
      --border: rgba(74, 54, 42, .12);
      --shadow-sm: 0 10px 30px rgba(95, 58, 38, .08);
      --shadow-md: 0 18px 55px rgba(95, 58, 38, .14);
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --pill: 9999px;
      --container: 1140px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.72;
      background:
        radial-gradient(circle at 10% 0%, rgba(242, 111, 77, .13), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(185, 107, 91, .12), transparent 30%),
        linear-gradient(180deg, var(--bg), #fffaf4 45%, #fff6ee);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .25;
      background-image:
        linear-gradient(rgba(37, 31, 27, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 31, 27, .025) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: linear-gradient(to bottom, #000, transparent 70%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    .container-narrow {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .focus-ring:focus-visible,
    .btn-site:focus-visible,
    .filter-chip:focus-visible,
    .card-link:focus-visible {
      outline: 3px solid rgba(242, 111, 77, .32);
      outline-offset: 3px;
    }

    .site-header {
      position: sticky;
      top: 18px;
      z-index: 50;
      padding: 12px 0;
    }

    .nav-pillbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px;
      border: 1px solid rgba(255, 255, 255, .72);
      border-radius: var(--pill);
      background: rgba(255, 253, 249, .82);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(18px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      color: var(--text);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 28px rgba(242, 111, 77, .28);
      flex: 0 0 auto;
    }

    .nav-links,
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 14px;
      border-radius: var(--pill);
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .nav-links a:hover {
      transform: translateY(-1px);
      color: var(--text);
      background: #fff3ea;
      box-shadow: 0 10px 24px rgba(95, 58, 38, .08);
    }

    .nav-links a.active {
      color: #2b1c16;
      background: var(--primary-soft);
      box-shadow: inset 0 0 0 1px rgba(242, 111, 77, .14);
    }

    .page-hero {
      position: relative;
      padding: 58px 0 42px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
      gap: 32px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: var(--pill);
      background: rgba(255, 255, 255, .74);
      color: var(--accent);
      border: 1px solid var(--border);
      font-weight: 800;
      font-size: 13px;
      box-shadow: var(--shadow-sm);
    }

    h1 {
      margin: 18px 0 14px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 800;
      max-width: 760px;
    }

    .hero-lead {
      margin: 0;
      max-width: 640px;
      color: var(--muted);
      font-size: 19px;
      line-height: 1.75;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin: 24px 0 28px;
      padding: 0;
      list-style: none;
    }

    .hero-points li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: var(--pill);
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--border);
      color: #4b3d35;
      font-weight: 700;
      box-shadow: 0 8px 22px rgba(95, 58, 38, .06);
    }

    .hero-points i {
      color: var(--primary);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn-site {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: var(--pill);
      border: 1px solid transparent;
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn-primary-site {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      box-shadow: 0 14px 30px rgba(242, 111, 77, .28);
    }

    .btn-secondary-site {
      color: var(--text);
      background: rgba(255, 255, 255, .78);
      border-color: var(--border);
      box-shadow: 0 10px 24px rgba(95, 58, 38, .08);
    }

    .btn-site:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .trust-strip {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--soft-text);
      font-size: 14px;
      font-weight: 700;
    }

    .trust-strip span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: var(--pill);
      background: rgba(255, 255, 255, .62);
      border: 1px solid var(--border);
    }

    .hero-panel {
      position: relative;
      min-height: 440px;
      border-radius: 32px;
      padding: 22px;
      background:
        radial-gradient(circle at 18% 20%, rgba(242, 111, 77, .22), transparent 32%),
        linear-gradient(145deg, rgba(255, 253, 249, .95), rgba(255, 241, 230, .92));
      border: 1px solid rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 20px;
      border-radius: 28px;
      border: 1px dashed rgba(185, 107, 91, .2);
      pointer-events: none;
    }

    .wave-lines {
      height: 54px;
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .wave-lines span {
      width: 7px;
      border-radius: var(--pill);
      background: linear-gradient(180deg, var(--primary), #f4b092);
      opacity: .78;
    }

    .wave-lines span:nth-child(1) { height: 18px; }
    .wave-lines span:nth-child(2) { height: 34px; }
    .wave-lines span:nth-child(3) { height: 46px; }
    .wave-lines span:nth-child(4) { height: 26px; }
    .wave-lines span:nth-child(5) { height: 42px; }
    .wave-lines span:nth-child(6) { height: 22px; }
    .wave-lines span:nth-child(7) { height: 38px; }
    .wave-lines span:nth-child(8) { height: 16px; }

    .bubble-stack {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
    }

    .bubble {
      width: fit-content;
      max-width: 88%;
      padding: 13px 15px;
      border-radius: 20px 20px 20px 8px;
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--border);
      box-shadow: 0 12px 26px rgba(95, 58, 38, .08);
      font-weight: 700;
      color: #44362f;
    }

    .bubble:nth-child(even) {
      justify-self: end;
      border-radius: 20px 20px 8px 20px;
      background: #fff0e7;
    }

    .avatar-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0;
      position: relative;
      z-index: 1;
    }

    .avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: #fff;
      border: 3px solid rgba(255, 255, 255, .92);
      box-shadow: 0 10px 22px rgba(95, 58, 38, .12);
    }

    .avatar:nth-child(3n+1) { background: #f26f4d; }
    .avatar:nth-child(3n+2) { background: #b96b5b; }
    .avatar:nth-child(3n+3) { background: #4e3b34; }

    .mini-card-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .mini-card {
      padding: 16px;
      border-radius: 20px;
      background: rgba(255, 253, 249, .9);
      border: 1px solid var(--border);
      box-shadow: 0 10px 26px rgba(95, 58, 38, .07);
    }

    .mini-card strong {
      display: block;
      font-size: 22px;
      line-height: 1.2;
      color: var(--primary-dark);
    }

    .mini-card span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .section {
      padding: 58px 0;
    }

    .section-alt {
      background: rgba(255, 255, 255, .38);
      border-top: 1px solid rgba(74, 54, 42, .06);
      border-bottom: 1px solid rgba(74, 54, 42, .06);
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 26px;
    }

    .section-head h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .filter-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px;
      border-radius: 24px;
      background: rgba(255, 253, 249, .86);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }

    .filter-scroll {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 2px;
    }

    .filter-scroll::-webkit-scrollbar {
      display: none;
    }

    .filter-chip {
      border: 1px solid var(--border);
      background: #fff8f2;
      color: #5d4b42;
      border-radius: var(--pill);
      padding: 9px 13px;
      white-space: nowrap;
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .filter-chip:hover,
    .filter-chip.active {
      transform: translateY(-1px);
      color: #2b1c16;
      background: var(--primary-soft);
      box-shadow: 0 8px 20px rgba(242, 111, 77, .14);
    }

    .sort-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
      padding: 9px 13px;
      border-radius: var(--pill);
      background: #2f2925;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 24px;
      align-items: start;
    }

    .pick-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .pick-card {
      position: relative;
      overflow: hidden;
      min-height: 256px;
      padding: 20px;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .pick-card::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      right: -56px;
      top: -60px;
      background: radial-gradient(circle, rgba(242, 111, 77, .18), transparent 65%);
    }

    .pick-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(242, 111, 77, .28);
    }

    .pick-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .cover-mark {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 28px rgba(242, 111, 77, .22);
      flex: 0 0 auto;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: var(--pill);
      background: #fff1e7;
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .pick-card h3 {
      margin: 0 0 9px;
      font-size: 21px;
      line-height: 1.28;
      font-weight: 800;
      position: relative;
      z-index: 1;
    }

    .pick-card p {
      margin: 0;
      color: var(--muted);
      position: relative;
      z-index: 1;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 18px;
      position: relative;
      z-index: 1;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: var(--pill);
      background: #fff4eb;
      color: #6c5145;
      border: 1px solid rgba(74, 54, 42, .08);
      font-size: 13px;
      font-weight: 800;
    }

    .card-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-dark);
      font-weight: 900;
    }

    .card-link:hover {
      color: var(--text);
      transform: translateX(2px);
    }

    .side-panel {
      position: sticky;
      top: 112px;
      display: grid;
      gap: 16px;
    }

    .assist-card {
      padding: 20px;
      border-radius: var(--radius-lg);
      background: rgba(255, 253, 249, .88);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .assist-card h3 {
      margin: 0 0 12px;
      font-size: 20px;
      font-weight: 800;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 11px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-weight: 700;
    }

    .check-list i {
      color: var(--primary);
      margin-top: 5px;
    }

    .mini-testimonial {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 20px;
      background: #fff3eb;
      border: 1px solid rgba(242, 111, 77, .16);
    }

    .mini-testimonial .avatar {
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
    }

    .mini-testimonial p {
      margin: 0;
      color: #4b3d35;
      font-weight: 700;
      line-height: 1.6;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step-card {
      padding: 18px;
      border-radius: var(--radius-md);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .step-num {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-bottom: 12px;
      border-radius: 50%;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 900;
    }

    .step-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 800;
    }

    .step-card p {
      margin: 0;
      color: var(--muted);
    }

    .result-band {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .score-card {
      padding: 26px;
      border-radius: 28px;
      background: #302621;
      color: #fff8f2;
      box-shadow: var(--shadow-md);
      overflow: hidden;
      position: relative;
    }

    .score-card::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -90px;
      bottom: -90px;
      border-radius: 50%;
      background: rgba(242, 111, 77, .28);
    }

    .score-card strong {
      display: block;
      font-size: clamp(42px, 7vw, 72px);
      line-height: 1;
      color: #ffd6c7;
    }

    .score-card p {
      position: relative;
      z-index: 1;
      margin: 12px 0 0;
      color: rgba(255, 248, 242, .78);
      font-weight: 700;
    }

    .compare-list {
      display: grid;
      gap: 12px;
    }

    .compare-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border-radius: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .compare-row span {
      font-weight: 900;
    }

    .bar {
      height: 12px;
      border-radius: var(--pill);
      background: #f3e3d8;
      overflow: hidden;
    }

    .bar i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), #f8ad84);
    }

    .voice-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 24px;
      align-items: center;
    }

    .voice-bubbles {
      display: grid;
      gap: 14px;
    }

    .quote-card {
      display: flex;
      gap: 13px;
      padding: 16px;
      border-radius: 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .quote-card p {
      margin: 0;
      color: #493a32;
      font-weight: 700;
    }

    .quote-card small {
      display: inline-flex;
      margin-top: 8px;
      padding: 4px 9px;
      border-radius: var(--pill);
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 900;
    }

    .avatar-cloud {
      min-height: 300px;
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      padding: 28px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 50% 40%, rgba(242, 111, 77, .17), transparent 42%),
        rgba(255, 253, 249, .72);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .avatar-cloud .avatar {
      width: 58px;
      height: 58px;
      font-size: 18px;
    }

    .faq-wrap {
      max-width: 880px;
      margin: 0 auto;
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: 20px !important;
      overflow: hidden;
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .accordion-button {
      padding: 18px 20px;
      font-weight: 900;
      color: var(--text);
      background: var(--surface);
      box-shadow: none !important;
      letter-spacing: 0;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary-dark);
      background: #fff2e9;
    }

    .accordion-button:focus {
      border-color: transparent;
      box-shadow: 0 0 0 3px rgba(242, 111, 77, .22) !important;
    }

    .accordion-button::after {
      width: 16px;
      height: 16px;
      background-size: 16px;
      filter: sepia(.8) saturate(1.3) hue-rotate(330deg);
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 20px 20px;
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      padding: 34px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 78% 12%, rgba(255, 255, 255, .42), transparent 28%),
        linear-gradient(135deg, #f8b18f, #f26f4d 62%, #bd6656);
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .cta-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 255, 255, .32);
      border-radius: 26px;
      pointer-events: none;
    }

    .cta-card h2 {
      position: relative;
      z-index: 1;
      margin: 0 0 8px;
      font-weight: 800;
      font-size: clamp(26px, 4vw, 42px);
      line-height: 1.18;
    }

    .cta-card p {
      position: relative;
      z-index: 1;
      margin: 0;
      max-width: 680px;
      color: rgba(255, 255, 255, .86);
      font-weight: 700;
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cta-card .btn-secondary-site {
      background: rgba(255, 255, 255, .92);
      color: #3a2922;
    }

    .footer {
      padding: 34px 0 46px;
    }

    .footer-card {
      padding: 24px;
      border-radius: 28px;
      background: rgba(255, 253, 249, .86);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 14px;
    }

    .footer-links a {
      display: inline-flex;
      padding: 8px 10px;
      border-radius: var(--pill);
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--primary-dark);
      background: #fff2e8;
    }

    .footer-note {
      margin: 0 0 10px;
      color: var(--muted);
    }

    .footer-tech {
      color: var(--soft-text);
      font-size: 13px;
      font-weight: 700;
    }

    @media (max-width: 1199px) {
      .content-layout {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 991px) {
      .hero-grid,
      .result-band,
      .voice-grid {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        min-height: auto;
      }

      .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .nav-pillbar {
        align-items: flex-start;
        border-radius: 28px;
        flex-direction: column;
      }

      .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
      }

      .nav-links a {
        white-space: nowrap;
      }
    }

    @media (max-width: 767px) {
      .container-narrow {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        top: 8px;
      }

      .brand {
        font-size: 14px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
      }

      .page-hero {
        padding: 34px 0 28px;
      }

      .hero-points,
      .pick-grid,
      .side-panel,
      .timeline,
      .mini-card-row {
        grid-template-columns: 1fr;
      }

      .filter-bar {
        align-items: stretch;
        flex-direction: column;
      }

      .sort-pill {
        width: fit-content;
      }

      .section {
        padding: 42px 0;
      }

      .compare-row {
        grid-template-columns: 1fr;
      }

      .cta-card {
        grid-template-columns: 1fr;
        padding: 26px;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .footer-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-links {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 34px;
      }

      .hero-lead {
        font-size: 17px;
      }

      .btn-site {
        width: 100%;
      }

      .hero-actions,
      .cta-actions {
        width: 100%;
      }

      .avatar-cloud {
        min-height: auto;
        padding: 18px;
        max-height: 180px;
        overflow: hidden;
      }

      .avatar-cloud .avatar {
        width: 48px;
        height: 48px;
      }

      .pick-card,
      .assist-card,
      .footer-card {
        border-radius: 22px;
      }
    }
