/* roulang page: index */
:root{
            --bg:#F7F1E8;
            --bg-soft:#FFF9F0;
            --sand:#E7D6C4;
            --wood:#7A4E32;
            --wood-2:#8D6247;
            --terracotta:#C76B4A;
            --terracotta-2:#D98663;
            --ink:#241F1B;
            --muted:#6F6258;
            --sage:#6F7D5B;
            --sage-soft:#E7EDDE;
            --cta:#4A2F23;
            --line:rgba(122,78,50,.14);
            --line-strong:rgba(122,78,50,.24);
            --shadow:0 20px 60px rgba(74,47,35,.10), 0 8px 24px rgba(74,47,35,.06);
            --shadow-soft:0 10px 30px rgba(74,47,35,.08);
            --radius-xl:36px;
            --radius-lg:26px;
            --radius-md:18px;
            --radius-sm:14px;
            --container:1200px;
        }

        *{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(--ink);
            background:
                radial-gradient(circle at 10% 10%, rgba(199,107,74,.10), transparent 24%),
                radial-gradient(circle at 90% 0%, rgba(111,125,91,.10), transparent 20%),
                radial-gradient(circle at 70% 75%, rgba(231,214,196,.50), transparent 26%),
                linear-gradient(180deg, #FAF5EE 0%, #F7F1E8 42%, #F5EEE4 100%);
            min-height:100vh;
            letter-spacing:.01em;
        }

        body::before{
            content:"";
            position:fixed;
            inset:0;
            pointer-events:none;
            background-image:
                linear-gradient(rgba(36,31,27,.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(36,31,27,.02) 1px, transparent 1px);
            background-size:32px 32px;
            mask-image:linear-gradient(180deg, rgba(0,0,0,.18), transparent 55%);
            z-index:0;
        }

        a{
            color:inherit;
            text-decoration:none;
            transition:color .2s ease, transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
        }

        a:hover{color:var(--terracotta)}
        img{max-width:100%; display:block}
        button,input,textarea,select{font:inherit}
        ::selection{background:rgba(199,107,74,.22); color:var(--ink)}

        .site-shell{position:relative; z-index:1}
        .container-xxl{max-width:var(--container)}

        .site-header{
            position:sticky;
            top:0;
            z-index:1030;
            backdrop-filter:saturate(140%) blur(18px);
            background:rgba(247,241,232,.82);
            border-bottom:1px solid var(--line);
        }

        .navbar{
            min-height:84px;
            padding:.9rem 0;
        }

        .brand{
            display:inline-flex;
            align-items:center;
            gap:.85rem;
            font-weight:800;
            letter-spacing:.02em;
        }

        .brand-mark{
            width:42px;
            height:42px;
            border-radius:14px;
            background:
                linear-gradient(145deg, rgba(122,78,50,1), rgba(199,107,74,1));
            box-shadow:0 12px 24px rgba(122,78,50,.22);
            position:relative;
            overflow:hidden;
            flex:0 0 auto;
        }

        .brand-mark::before{
            content:"";
            position:absolute;
            inset:9px;
            border-radius:10px;
            border:1px solid rgba(255,255,255,.55);
        }

        .brand-mark::after{
            content:"";
            position:absolute;
            width:10px;
            height:10px;
            border-radius:50%;
            left:14px;
            top:14px;
            background:#FFF9F0;
            box-shadow:14px 0 0 #FFF9F0, 7px 12px 0 #FFF9F0;
        }

        .brand-text{
            display:flex;
            flex-direction:column;
            line-height:1.1;
        }

        .brand-text strong{
            font-size:1rem;
            color:var(--ink);
        }

        .brand-text span{
            font-size:.76rem;
            color:var(--muted);
            font-weight:600;
            letter-spacing:.08em;
            text-transform:uppercase;
        }

        .nav-link-custom{
            position:relative;
            padding:.75rem 1rem !important;
            color:var(--ink);
            font-weight:700;
            border-radius:999px;
            margin:0 .15rem;
        }

        .nav-link-custom:hover,
        .nav-link-custom:focus{
            background:rgba(231,214,196,.45);
            color:var(--ink);
        }

        .nav-link-custom.active{
            background:rgba(122,78,50,.08);
            color:var(--wood);
        }

        .nav-link-custom.active::after{
            content:"";
            position:absolute;
            left:1rem;
            right:1rem;
            bottom:.45rem;
            height:2px;
            border-radius:999px;
            background:linear-gradient(90deg, var(--terracotta), var(--wood));
        }

        .nav-actions{
            display:flex;
            align-items:center;
            gap:.6rem;
        }

        .status-pill{
            display:inline-flex;
            align-items:center;
            gap:.35rem;
            padding:.42rem .78rem;
            border-radius:999px;
            border:1px solid var(--line);
            background:rgba(255,249,240,.92);
            color:var(--wood);
            font-size:.82rem;
            font-weight:700;
            white-space:nowrap;
        }

        .status-pill .dot{
            width:8px;
            height:8px;
            border-radius:50%;
            background:var(--terracotta);
            box-shadow:0 0 0 4px rgba(199,107,74,.12);
        }

        .btn-custom{
            border:1px solid transparent;
            border-radius:999px;
            padding:.82rem 1.25rem;
            font-weight:800;
            letter-spacing:.01em;
            transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
        }

        .btn-custom:focus,
        .btn-custom:focus-visible,
        .nav-link:focus-visible,
        .accordion-button:focus-visible,
        .btn-check:focus-visible + .btn{
            box-shadow:0 0 0 .25rem rgba(199,107,74,.22);
            outline:none;
        }

        .btn-cta{
            background:var(--cta);
            color:#FFF9F0;
            box-shadow:0 16px 30px rgba(74,47,35,.18);
        }
        .btn-cta:hover{
            background:var(--terracotta);
            color:#FFF9F0;
            transform:translateY(-2px);
            box-shadow:0 20px 34px rgba(199,107,74,.22);
        }

        .btn-soft{
            background:rgba(255,249,240,.95);
            border-color:rgba(122,78,50,.20);
            color:var(--wood);
            box-shadow:var(--shadow-soft);
        }
        .btn-soft:hover{
            background:var(--sand);
            border-color:rgba(122,78,50,.28);
            color:var(--ink);
            transform:translateY(-2px);
        }

        .btn-link-wood{
            color:var(--wood);
            font-weight:700;
            padding:.75rem .25rem;
        }
        .btn-link-wood:hover{color:var(--terracotta)}

        .header-strip{
            border-top:1px solid rgba(122,78,50,.10);
            background:linear-gradient(180deg, rgba(255,249,240,.88), rgba(247,241,232,.88));
        }
        .strip-inner{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:1rem;
            padding:.55rem 0 .72rem;
            flex-wrap:wrap;
        }
        .strip-note{
            color:var(--muted);
            font-size:.9rem;
        }

        .chip-row{
            display:flex;
            flex-wrap:wrap;
            gap:.5rem;
        }

        .chip{
            display:inline-flex;
            align-items:center;
            gap:.35rem;
            padding:.48rem .8rem;
            border-radius:999px;
            border:1px solid rgba(122,78,50,.16);
            background:rgba(255,249,240,.94);
            color:var(--ink);
            font-size:.82rem;
            font-weight:700;
            line-height:1;
        }

        .chip i{color:var(--terracotta)}
        .chip.soft{background:rgba(231,214,196,.35)}
        .chip.sage{
            background:rgba(111,125,91,.10);
            border-color:rgba(111,125,91,.18);
        }
        .chip.active{
            background:rgba(199,107,74,.14);
            border-color:rgba(199,107,74,.28);
            color:var(--wood);
        }

        .section{
            position:relative;
            padding:88px 0;
            scroll-margin-top:110px;
        }

        .section-tight{padding:72px 0}
        .section-compact{padding:56px 0}

        .kicker{
            display:inline-flex;
            align-items:center;
            gap:.5rem;
            padding:.42rem .78rem;
            border-radius:999px;
            background:rgba(231,214,196,.50);
            border:1px solid rgba(122,78,50,.12);
            color:var(--wood);
            font-size:.8rem;
            font-weight:800;
            letter-spacing:.06em;
            text-transform:uppercase;
        }

        .kicker::before{
            content:"";
            width:7px;
            height:7px;
            border-radius:50%;
            background:var(--terracotta);
            box-shadow:0 0 0 4px rgba(199,107,74,.12);
        }

        .section-title{
            margin:.95rem 0 .85rem;
            font-size:clamp(1.7rem, 2.2vw, 2.55rem);
            line-height:1.18;
            letter-spacing:-.03em;
            font-weight:900;
        }

        .section-lead{
            max-width:820px;
            color:var(--muted);
            font-size:1.02rem;
            line-height:1.8;
            margin:0;
        }

        .hero{
            padding:76px 0 68px;
        }

        .hero-wrap{
            position:relative;
            overflow:hidden;
            border:1px solid rgba(122,78,50,.13);
            border-radius:var(--radius-xl);
            background:
                linear-gradient(135deg, rgba(255,249,240,.92), rgba(247,241,232,.86)),
                radial-gradient(circle at 15% 20%, rgba(231,214,196,.70), transparent 24%),
                radial-gradient(circle at 88% 18%, rgba(199,107,74,.12), transparent 24%);
            box-shadow:var(--shadow);
            padding:clamp(28px, 4vw, 44px);
        }

        .hero-wrap::before{
            content:"";
            position:absolute;
            inset:-18% auto auto -8%;
            width:260px;
            height:260px;
            border-radius:50%;
            background:radial-gradient(circle, rgba(199,107,74,.12), rgba(199,107,74,0) 68%);
            pointer-events:none;
        }

        .hero-wrap::after{
            content:"";
            position:absolute;
            inset:auto -6% -18% auto;
            width:280px;
            height:280px;
            border-radius:50%;
            background:radial-gradient(circle, rgba(111,125,91,.12), rgba(111,125,91,0) 68%);
            pointer-events:none;
        }

        .hero-copy{
            position:relative;
            z-index:1;
            padding-right:clamp(0px, 1vw, 24px);
        }

        h1{
            margin:1rem 0 .9rem;
            font-size:clamp(2rem, 5vw, 4.1rem);
            line-height:1.13;
            letter-spacing:-.05em;
            font-weight:900;
        }

        .hero-sub{
            max-width:620px;
            font-size:1.05rem;
            line-height:1.85;
            color:var(--muted);
            margin:0 0 1.35rem;
        }

        .hero-actions{
            display:flex;
            flex-wrap:wrap;
            gap:.75rem;
            align-items:center;
            margin-bottom:1.2rem;
        }

        .hero-badges{
            display:flex;
            flex-wrap:wrap;
            gap:.5rem;
            margin-top:.35rem;
        }

        .mini-note{
            display:flex;
            align-items:center;
            gap:.5rem;
            color:var(--muted);
            font-size:.92rem;
            margin-top:1rem;
        }
        .mini-note strong{color:var(--wood)}

        .hero-collage{
            position:relative;
            z-index:1;
            min-height:500px;
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:1rem;
            align-items:stretch;
        }

        .collage-card{
            position:relative;
            overflow:hidden;
            border-radius:30px;
            border:1px solid rgba(122,78,50,.14);
            box-shadow:var(--shadow-soft);
            background:linear-gradient(145deg, rgba(231,214,196,.86), rgba(255,249,240,.94));
        }

        .collage-card .card-inner{
            position:absolute;
            inset:0;
            padding:1rem;
            display:flex;
            flex-direction:column;
            justify-content:space-between;
            color:#fff;
        }

        .cover-shape{
            position:absolute;
            inset:0;
            background:
                linear-gradient(145deg, rgba(122,78,50,.76), rgba(199,107,74,.56)),
                radial-gradient(circle at 30% 25%, rgba(255,255,255,.25), transparent 26%),
                linear-gradient(120deg, rgba(111,125,91,.32), rgba(255,255,255,0));
            transform:scale(1);
            transition:transform .26s ease;
        }

        .collage-card:hover .cover-shape,
        .collage-card:hover .thumb-shape{
            transform:scale(1.03);
        }

        .card-tag{
            display:inline-flex;
            align-items:center;
            width:fit-content;
            gap:.35rem;
            padding:.34rem .66rem;
            border-radius:999px;
            background:rgba(255,249,240,.16);
            border:1px solid rgba(255,249,240,.34);
            color:#FFF9F0;
            font-size:.78rem;
            font-weight:800;
            letter-spacing:.04em;
            backdrop-filter:blur(8px);
        }

        .card-time{
            align-self:flex-end;
            display:inline-flex;
            align-items:center;
            gap:.35rem;
            padding:.34rem .6rem;
            border-radius:999px;
            background:rgba(36,31,27,.58);
            color:#FFF9F0;
            font-size:.76rem;
            font-weight:800;
        }

        .play-badge{
            width:54px;
            height:54px;
            border-radius:50%;
            background:rgba(255,249,240,.90);
            color:var(--wood);
            display:grid;
            place-items:center;
            font-size:1.35rem;
            box-shadow:0 16px 30px rgba(36,31,27,.18);
            transition:transform .26s ease, background-color .26s ease;
        }

        .collage-card:hover .play-badge{
            transform:scale(1.05);
            background:#fff;
        }

        .hero-stack{
            display:grid;
            grid-template-rows:1.35fr .65fr;
            gap:1rem;
        }

        .hero-card-large{
            min-height:330px;
            background:
                linear-gradient(145deg, rgba(122,78,50,.78), rgba(74,47,35,.66)),
                radial-gradient(circle at 18% 18%, rgba(255,255,255,.26), transparent 18%),
                radial-gradient(circle at 78% 28%, rgba(199,107,74,.20), transparent 20%);
        }

        .hero-card-large .card-inner{
            padding:1.1rem;
        }

        .hero-card-grid{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:1rem;
        }

        .mini-cover{
            min-height:164px;
        }

        .mini-cover:nth-child(1){
            background:
                linear-gradient(145deg, rgba(199,107,74,.74), rgba(122,78,50,.66)),
                radial-gradient(circle at 20% 24%, rgba(255,255,255,.22), transparent 18%);
        }

        .mini-cover:nth-child(2){
            background:
                linear-gradient(145deg, rgba(111,125,91,.72), rgba(122,78,50,.55)),
                radial-gradient(circle at 80% 16%, rgba(255,255,255,.18), transparent 18%);
        }

        .mini-cover .card-inner{padding:.85rem}
        .mini-title{
            margin:0;
            font-size:1rem;
            line-height:1.35;
            font-weight:900;
        }
        .mini-desc{
            margin:.45rem 0 0;
            color:rgba(255,249,240,.84);
            font-size:.84rem;
            line-height:1.55;
        }

        .hero-info-bar{
            margin-top:1.35rem;
            display:grid;
            grid-template-columns:1.15fr .85fr;
            gap:1rem;
            align-items:center;
        }

        .filter-panel,
        .info-panel,
        .news-panel,
        .faq-panel,
        .feedback-panel{
            border:1px solid rgba(122,78,50,.14);
            background:rgba(255,249,240,.90);
            box-shadow:var(--shadow-soft);
        }

        .filter-panel{
            border-radius:30px;
            padding:1rem 1.1rem;
        }

        .filter-title{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:1rem;
            margin-bottom:.85rem;
            font-size:.92rem;
            color:var(--muted);
            font-weight:700;
        }

        .filter-title strong{
            color:var(--ink);
            font-size:1.02rem;
            font-weight:900;
        }

        .filter-group{
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
        }

        .filter-chip{
            border:1px solid rgba(122,78,50,.16);
            border-radius:999px;
            background:#fff;
            color:var(--wood);
            padding:.5rem .8rem;
            font-size:.82rem;
            font-weight:800;
            display:inline-flex;
            align-items:center;
            gap:.35rem;
        }

        .filter-chip:hover{background:rgba(231,214,196,.48)}
        .filter-chip.active{
            background:rgba(199,107,74,.16);
            border-color:rgba(199,107,74,.30);
            color:var(--wood);
        }

        .outline-box{
            border-radius:26px;
            border:1px dashed rgba(122,78,50,.20);
            background:
                linear-gradient(180deg, rgba(255,255,255,.56), rgba(231,214,196,.18));
            padding:1rem;
        }

        .outline-box .small{
            color:var(--muted);
        }

        .pain-grid{
            margin-top:2rem;
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:1rem;
        }

        .pain-track{
            position:relative;
            padding-left:1.5rem;
        }

        .pain-track::before{
            content:"";
            position:absolute;
            left:.45rem;
            top:.5rem;
            bottom:.5rem;
            width:1px;
            background:linear-gradient(180deg, rgba(199,107,74,.22), rgba(122,78,50,.10));
        }

        .pain-item{
            position:relative;
            display:grid;
            grid-template-columns:auto 1fr;
            gap:1rem;
            padding:1rem 1.05rem;
            border-radius:22px;
            border:1px solid rgba(122,78,50,.10);
            background:rgba(255,249,240,.92);
            box-shadow:0 10px 24px rgba(74,47,35,.04);
            margin-bottom:1rem;
        }

        .pain-item:last-child{margin-bottom:0}
        .pain-index{
            width:52px;
            height:52px;
            border-radius:18px;
            display:grid;
            place-items:center;
            background:rgba(199,107,74,.14);
            color:var(--terracotta);
            font-weight:900;
            font-size:1rem;
            flex:0 0 auto;
        }
        .pain-item h3{
            font-size:1.08rem;
            margin:0 .15rem .35rem;
            font-weight:900;
        }
        .pain-item p{
            margin:0;
            color:var(--muted);
            line-height:1.7;
            font-size:.97rem;
        }

        .pain-side{
            border-radius:30px;
            padding:1.1rem;
            overflow:hidden;
            position:relative;
            background:
                linear-gradient(180deg, rgba(111,125,91,.10), rgba(255,249,240,.85)),
                linear-gradient(145deg, rgba(231,214,196,.55), rgba(255,249,240,.95));
        }

        .side-mood{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:.8rem;
            margin-top:1rem;
        }

        .mood-tile{
            min-height:110px;
            border-radius:24px;
            padding:.9rem;
            border:1px solid rgba(122,78,50,.12);
            background:linear-gradient(145deg, rgba(255,255,255,.80), rgba(231,214,196,.25));
            position:relative;
            overflow:hidden;
        }

        .mood-tile::after{
            content:"";
            position:absolute;
            right:-24px;
            bottom:-24px;
            width:96px;
            height:96px;
            border-radius:50%;
            background:rgba(199,107,74,.12);
        }

        .mood-label{
            color:var(--wood);
            font-size:.8rem;
            font-weight:800;
            letter-spacing:.05em;
            text-transform:uppercase;
        }

        .mood-value{
            margin-top:.6rem;
            font-size:1.18rem;
            line-height:1.35;
            font-weight:900;
        }

        .solution-wrap{
            margin-top:2rem;
        }

        .solution-grid{
            display:grid;
            grid-template-columns:1.02fr .98fr;
            gap:1rem;
            align-items:stretch;
        }

        .solution-panel,
        .flow-panel{
            border-radius:32px;
            border:1px solid rgba(122,78,50,.14);
            background:rgba(255,249,240,.92);
            box-shadow:var(--shadow-soft);
            overflow:hidden;
        }

        .solution-panel{
            padding:1.1rem;
        }

        .panel-head{
            display:flex;
            align-items:flex-start;
            justify-content:space-between;
            gap:1rem;
            margin-bottom:1rem;
        }

        .panel-head h3,
        .panel-head h4{
            margin:0;
            font-size:1.2rem;
            font-weight:900;
        }

        .panel-head p{
            margin:.3rem 0 0;
            color:var(--muted);
            line-height:1.7;
            font-size:.95rem;
        }

        .panel-badge{
            display:inline-flex;
            align-items:center;
            gap:.35rem;
            padding:.42rem .65rem;
            border-radius:999px;
            background:rgba(231,214,196,.52);
            color:var(--wood);
            font-size:.78rem;
            font-weight:800;
            white-space:nowrap;
        }

        .filter-list{
            display:grid;
            grid-template-columns:repeat(2, minmax(0,1fr));
            gap:.7rem;
            margin-top:1rem;
        }

        .filter-card{
            border-radius:22px;
            border:1px solid rgba(122,78,50,.12);
            background:
                linear-gradient(180deg, rgba(255,255,255,.92), rgba(231,214,196,.18));
            padding:.95rem;
            min-height:108px;
            transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .filter-card:hover{
            transform:translateY(-2px);
            border-color:rgba(199,107,74,.28);
            box-shadow:0 18px 32px rgba(74,47,35,.08);
        }

        .filter-card strong{
            display:block;
            font-size:1rem;
            font-weight:900;
            margin-bottom:.25rem;
        }

        .filter-card span{
            color:var(--muted);
            font-size:.88rem;
            line-height:1.6;
        }

        .feature-list{
            margin-top:1rem;
            display:flex;
            flex-direction:column;
            gap:.7rem;
        }

        .feature-row{
            display:grid;
            grid-template-columns:86px 1fr auto;
            gap:.85rem;
            align-items:center;
            padding:.86rem .92rem;
            border-radius:22px;
            border:1px solid rgba(122,78,50,.12);
            background:rgba(255,255,255,.88);
        }

        .thumb-shape{
            width:86px;
            height:60px;
            border-radius:18px;
            background:
                linear-gradient(145deg, rgba(122,78,50,.78), rgba(199,107,74,.52)),
                linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,0));
            position:relative;
            overflow:hidden;
            transition:transform .26s ease;
        }

        .thumb-shape::before{
            content:"";
            position:absolute;
            inset:10px;
            border-radius:14px;
            border:1px solid rgba(255,255,255,.28);
        }

        .thumb-shape .play-mini{
            position:absolute;
            inset:0;
            display:grid;
            place-items:center;
            color:#fff;
            font-size:1.15rem;
        }

        .feature-row:hover{
            border-color:rgba(199,107,74,.28);
            box-shadow:0 16px 28px rgba(74,47,35,.08);
        }

        .feature-meta{
            min-width:0;
        }

        .feature-meta h4{
            margin:0 0 .25rem;
            font-size:1rem;
            font-weight:900;
            line-height:1.35;
        }

        .feature-meta p{
            margin:0;
            color:var(--muted);
            font-size:.88rem;
            line-height:1.55;
        }

        .feature-side{
            display:flex;
            flex-direction:column;
            align-items:flex-end;
            gap:.4rem;
            text-align:right;
        }

        .tiny-badge{
            display:inline-flex;
            align-items:center;
            gap:.3rem;
            padding:.32rem .56rem;
            border-radius:999px;
            background:rgba(111,125,91,.12);
            color:var(--sage);
            font-size:.76rem;
            font-weight:800;
            white-space:nowrap;
        }

        .results-panel{
            border-radius:var(--radius-xl);
            padding:1.15rem;
            background:
                linear-gradient(145deg, rgba(74,47,35,1), rgba(122,78,50,.92));
            color:#FFF9F0;
            box-shadow:var(--shadow);
            overflow:hidden;
        }

        .results-panel .section-title{
            color:#FFF9F0;
            margin-top:.6rem;
        }

        .results-panel .section-lead{
            color:rgba(255,249,240,.82);
            max-width:760px;
        }

        .result-grid{
            margin-top:1.3rem;
            display:grid;
            grid-template-columns:repeat(4, minmax(0,1fr));
            gap:.9rem;
        }

        .result-card{
            border-radius:24px;
            border:1px solid rgba(255,249,240,.16);
            background:rgba(255,249,240,.08);
            padding:1rem;
            min-height:132px;
            backdrop-filter:blur(10px);
        }

        .result-card .num{
            font-size:clamp(1.75rem, 3vw, 2.7rem);
            line-height:1;
            font-weight:900;
            letter-spacing:-.04em;
            margin-bottom:.45rem;
        }

        .result-card .label{
            font-size:.9rem;
            font-weight:800;
            margin-bottom:.25rem;
        }

        .result-card .desc{
            margin:0;
            color:rgba(255,249,240,.78);
            line-height:1.65;
            font-size:.88rem;
        }

        .result-note{
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
            margin-top:1rem;
        }

        .result-note .chip{
            background:rgba(255,249,240,.10);
            border-color:rgba(255,249,240,.16);
            color:#FFF9F0;
        }

        .updates-grid{
            display:grid;
            grid-template-columns:1.05fr .95fr;
            gap:1rem;
            align-items:stretch;
            margin-top:1.8rem;
        }

        .news-panel{
            border-radius:32px;
            padding:1.1rem;
        }

        .news-list{
            list-style:none;
            padding:0;
            margin:1rem 0 0;
            display:flex;
            flex-direction:column;
            gap:.7rem;
        }

        .news-list li a{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:1rem;
            border-radius:20px;
            border:1px solid rgba(122,78,50,.12);
            background:rgba(255,255,255,.90);
            padding:.95rem 1rem;
            transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
        }

        .news-list li a:hover{
            transform:translateY(-2px);
            border-color:rgba(199,107,74,.30);
            box-shadow:0 16px 28px rgba(74,47,35,.08);
        }

        .news-list .title{
            font-weight:900;
            line-height:1.45;
        }

        .news-list .meta{
            color:var(--muted);
            font-size:.82rem;
            white-space:nowrap;
        }

        .news-feature{
            border-radius:32px;
            padding:1.1rem;
            background:
                linear-gradient(145deg, rgba(231,214,196,.74), rgba(255,249,240,.94));
            border:1px solid rgba(122,78,50,.12);
            box-shadow:var(--shadow-soft);
        }

        .news-visual{
            height:220px;
            border-radius:28px;
            overflow:hidden;
            border:1px solid rgba(122,78,50,.12);
            background:
                linear-gradient(145deg, rgba(122,78,50,.84), rgba(199,107,74,.58)),
                radial-gradient(circle at 16% 18%, rgba(255,255,255,.25), transparent 20%),
                radial-gradient(circle at 78% 72%, rgba(111,125,91,.18), transparent 18%);
            position:relative;
        }

        .news-visual::before{
            content:"";
            position:absolute;
            inset:14px;
            border-radius:22px;
            border:1px solid rgba(255,249,240,.20);
        }

        .news-visual .center{
            position:absolute;
            inset:0;
            display:grid;
            place-items:center;
            color:#FFF9F0;
            text-align:center;
            padding:1rem;
        }

        .news-visual .center .big{
            font-size:1.55rem;
            font-weight:900;
            line-height:1.25;
            margin-bottom:.35rem;
        }

        .news-visual .center .small{
            font-size:.88rem;
            line-height:1.65;
            color:rgba(255,249,240,.84);
        }

        .feedback-grid{
            display:grid;
            grid-template-columns:repeat(3, minmax(0,1fr));
            gap:1rem;
            margin-top:1.8rem;
        }

        .feedback-card{
            border-radius:28px;
            padding:1.05rem;
            border:1px solid rgba(122,78,50,.12);
            background:rgba(255,249,240,.92);
            box-shadow:var(--shadow-soft);
        }

        .feedback-head{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:1rem;
            margin-bottom:.85rem;
        }

        .avatar{
            width:52px;
            height:52px;
            border-radius:18px;
            background:linear-gradient(145deg, rgba(122,78,50,.82), rgba(199,107,74,.58));
            color:#FFF9F0;
            display:grid;
            place-items:center;
            font-weight:900;
            box-shadow:0 12px 24px rgba(74,47,35,.12);
        }

        .feedback-name{
            margin:0;
            font-size:1rem;
            font-weight:900;
        }

        .feedback-tag{
            display:inline-flex;
            align-items:center;
            gap:.3rem;
            padding:.32rem .58rem;
            border-radius:999px;
            background:rgba(111,125,91,.10);
            color:var(--sage);
            font-size:.76rem;
            font-weight:800;
        }

        .stars{
            color:#B77B46;
            letter-spacing:.08em;
            font-size:.9rem;
        }

        .feedback-card p{
            margin:.85rem 0 0;
            color:var(--muted);
            line-height:1.8;
            font-size:.96rem;
        }

        .faq-panel{
            border-radius:32px;
            padding:1.15rem;
        }

        .accordion-custom .accordion-item{
            border:1px solid rgba(122,78,50,.14);
            border-radius:22px !important;
            overflow:hidden;
            margin-bottom:.85rem;
            background:#FFFDF9;
            box-shadow:0 10px 22px rgba(74,47,35,.04);
        }

        .accordion-custom .accordion-item:last-child{margin-bottom:0}
        .accordion-custom .accordion-button{
            padding:1rem 1.1rem;
            border-radius:22px !important;
            background:#FFFDF9;
            color:var(--ink);
            font-weight:900;
            box-shadow:none;
        }

        .accordion-custom .accordion-button:not(.collapsed){
            background:rgba(231,214,196,.42);
            color:var(--ink);
            box-shadow:none;
        }

        .accordion-custom .accordion-button::after{
            background-image:none;
            content:"+";
            width:auto;
            height:auto;
            font-size:1.35rem;
            font-weight:800;
            color:var(--wood);
            transform:none;
        }

        .accordion-custom .accordion-button:not(.collapsed)::after{
            content:"−";
            color:var(--terracotta);
        }

        .accordion-custom .accordion-body{
            padding:0 1.1rem 1.05rem;
            color:var(--muted);
            line-height:1.8;
            font-size:.96rem;
            background:#FFFDF9;
        }

        .cta-panel{
            position:relative;
            border-radius:36px;
            overflow:hidden;
            background:
                linear-gradient(135deg, rgba(74,47,35,1), rgba(122,78,50,.94)),
                radial-gradient(circle at 18% 20%, rgba(199,107,74,.18), transparent 22%);
            color:#FFF9F0;
            box-shadow:var(--shadow);
            border:1px solid rgba(255,249,240,.10);
        }

        .cta-panel::before{
            content:"";
            position:absolute;
            inset:0;
            background:
                radial-gradient(circle at 82% 18%, rgba(255,249,240,.10), transparent 18%),
                radial-gradient(circle at 92% 88%, rgba(111,125,91,.14), transparent 22%);
            pointer-events:none;
        }

        .cta-inner{
            position:relative;
            z-index:1;
            padding:clamp(28px, 4vw, 40px);
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:1rem;
            align-items:center;
        }

        .cta-inner h2{
            color:#FFF9F0;
            margin:0 0 .85rem;
            font-size:clamp(1.8rem, 3vw, 2.9rem);
            line-height:1.16;
            font-weight:900;
            letter-spacing:-.04em;
        }

        .cta-inner p{
            margin:0;
            color:rgba(255,249,240,.84);
            line-height:1.8;
            max-width:620px;
        }

        .cta-actions{
            display:flex;
            flex-wrap:wrap;
            gap:.75rem;
            justify-content:flex-end;
        }

        .cta-actions .btn-soft{
            background:rgba(255,249,240,.92);
            border-color:rgba(255,249,240,.20);
            color:var(--wood);
        }

        .cta-actions .btn-soft:hover{
            background:#FFF9F0;
        }

        .cta-meta{
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
            margin-top:1rem;
        }

        .cta-meta .chip{
            background:rgba(255,249,240,.10);
            border-color:rgba(255,249,240,.18);
            color:#FFF9F0;
        }

        .site-footer{
            padding:28px 0 40px;
            margin-top:12px;
            background:linear-gradient(180deg, rgba(74,47,35,.96), rgba(36,31,27,.98));
            color:#FFF9F0;
            border-top:1px solid rgba(255,249,240,.08);
        }

        .footer-wrap{
            border-top:1px solid rgba(255,249,240,.10);
            padding-top:1rem;
        }

        .footer-top{
            display:grid;
            grid-template-columns:1.1fr .9fr;
            gap:1rem;
            align-items:start;
            margin-bottom:1rem;
        }

        .footer-brand{
            display:flex;
            align-items:center;
            gap:.85rem;
            margin-bottom:.8rem;
        }

        .footer-brand .brand-mark{
            box-shadow:none;
        }

        .footer-title{
            margin:0;
            font-size:1.15rem;
            font-weight:900;
        }

        .footer-desc{
            margin:0;
            color:rgba(255,249,240,.78);
            line-height:1.8;
            max-width:700px;
        }

        .footer-links{
            display:flex;
            flex-wrap:wrap;
            gap:.55rem;
            justify-content:flex-end;
        }

        .footer-links a{
            display:inline-flex;
            align-items:center;
            gap:.35rem;
            padding:.45rem .72rem;
            border-radius:999px;
            border:1px solid rgba(255,249,240,.14);
            background:rgba(255,249,240,.06);
            color:#FFF9F0;
            font-size:.82rem;
            font-weight:700;
        }

        .footer-links a:hover{
            background:rgba(255,249,240,.12);
            border-color:rgba(255,249,240,.22);
            color:#FFF9F0;
        }

        .footer-bottom{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:1rem;
            flex-wrap:wrap;
            padding-top:1rem;
            border-top:1px solid rgba(255,249,240,.10);
            color:rgba(255,249,240,.72);
            font-size:.9rem;
        }

        .footer-bottom .tech{
            color:rgba(255,249,240,.88);
            font-weight:700;
        }

        .offcanvas{
            background:#FFF9F0;
            border-left:1px solid rgba(122,78,50,.14);
        }

        .offcanvas .offcanvas-header{
            border-bottom:1px solid rgba(122,78,50,.10);
            padding:1rem 1rem .85rem;
        }

        .offcanvas .offcanvas-body{
            padding:1rem;
        }

        .mobile-nav-list{
            display:flex;
            flex-direction:column;
            gap:.65rem;
            margin:0;
            padding:0;
            list-style:none;
        }

        .mobile-nav-list a{
            display:flex;
            align-items:center;
            justify-content:space-between;
            border-radius:18px;
            border:1px solid rgba(122,78,50,.12);
            background:#fff;
            padding:.95rem 1rem;
            font-weight:800;
        }

        .mobile-nav-list a.active{
            background:rgba(199,107,74,.12);
            border-color:rgba(199,107,74,.28);
            color:var(--wood);
        }

        .mobile-note{
            margin-top:1rem;
            padding:1rem;
            border-radius:20px;
            background:rgba(231,214,196,.30);
            border:1px solid rgba(122,78,50,.12);
            color:var(--muted);
            line-height:1.7;
        }

        .age-overlay{
            position:fixed;
            inset:0;
            z-index:2000;
            display:none;
            align-items:center;
            justify-content:center;
            padding:1rem;
            background:rgba(36,31,27,.68);
            backdrop-filter:blur(10px);
        }

        .age-overlay.show{display:flex}
        .age-card{
            width:min(100%, 520px);
            border-radius:32px;
            background:linear-gradient(180deg, rgba(255,249,240,.98), rgba(247,241,232,.98));
            border:1px solid rgba(122,78,50,.16);
            box-shadow:0 30px 80px rgba(0,0,0,.26);
            padding:1.25rem;
        }

        .age-top{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:1rem;
            margin-bottom:1rem;
        }

        .age-top h2{
            margin:0;
            font-size:1.3rem;
            font-weight:900;
        }

        .age-top .badge{
            background:rgba(199,107,74,.14) !important;
            color:var(--terracotta) !important;
            border:1px solid rgba(199,107,74,.20);
            border-radius:999px;
            padding:.45rem .65rem;
        }

        .age-card p{
            margin:0;
            color:var(--muted);
            line-height:1.8;
        }

        .age-check{
            display:flex;
            align-items:flex-start;
            gap:.75rem;
            margin:1rem 0 1.1rem;
            padding:1rem;
            border-radius:22px;
            background:rgba(231,214,196,.24);
            border:1px solid rgba(122,78,50,.10);
        }

        .form-check-input:checked{
            background-color:var(--terracotta);
            border-color:var(--terracotta);
        }

        .form-check-input:focus{
            border-color:rgba(199,107,74,.28);
            box-shadow:0 0 0 .25rem rgba(199,107,74,.16);
        }

        .age-actions{
            display:flex;
            flex-wrap:wrap;
            gap:.75rem;
            justify-content:flex-end;
        }

        .age-mini{
            margin-top:.8rem;
            color:var(--muted);
            font-size:.88rem;
            line-height:1.7;
        }

        @media (max-width: 1199.98px){
            .hero-collage{min-height:460px}
            .result-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
            .feedback-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
            .cta-inner{grid-template-columns:1fr}
            .cta-actions{justify-content:flex-start}
            .footer-top{grid-template-columns:1fr}
            .footer-links{justify-content:flex-start}
        }

        @media (max-width: 991.98px){
            .navbar{min-height:76px}
            .hero{padding:58px 0 50px}
            .hero-wrap{padding:22px}
            .hero-collage{
                min-height:auto;
                grid-template-columns:1fr;
            }
            .hero-stack{grid-template-rows:auto}
            .hero-card-grid{grid-template-columns:1fr 1fr}
            .hero-info-bar,
            .pain-grid,
            .solution-grid,
            .updates-grid{
                grid-template-columns:1fr;
            }
            .pain-track{padding-left:0}
            .pain-track::before{display:none}
            .feature-row{
                grid-template-columns:72px 1fr;
            }
            .feature-side{
                grid-column:1 / -1;
                justify-content:flex-start;
                align-items:flex-start;
                text-align:left;
            }
            .filter-list{
                grid-template-columns:1fr;
            }
            .strip-inner{
                padding:.45rem 0 .6rem;
            }
        }

        @media (max-width: 767.98px){
            .section{padding:60px 0}
            .section-tight{padding:48px 0}
            .section-compact{padding:40px 0}
            .section-title{
                font-size:clamp(1.5rem, 7vw, 2.1rem);
            }
            h1{
                font-size:clamp(1.9rem, 9vw, 2.65rem);
            }
            .hero-actions .btn-custom{
                width:100%;
                justify-content:center;
            }
            .hero-card-grid{
                grid-template-columns:1fr;
            }
            .result-grid,
            .feedback-grid{
                grid-template-columns:1fr;
            }
            .cta-actions .btn-custom{
                width:100%;
                justify-content:center;
            }
            .news-list li a{
                align-items:flex-start;
                flex-direction:column;
            }
            .news-list .meta{white-space:normal}
            .footer-bottom{
                align-items:flex-start;
            }
        }

        @media (max-width: 575.98px){
            .container-xxl{padding-left:16px; padding-right:16px}
            .brand-text span{font-size:.7rem}
            .status-pill{padding:.34rem .62rem; font-size:.76rem}
            .hero-wrap{border-radius:30px}
            .collage-card{border-radius:24px}
            .pain-item,
            .filter-card,
            .feedback-card,
            .news-panel,
            .news-feature,
            .faq-panel,
            .solution-panel,
            .filter-panel{
                border-radius:24px;
            }
            .hero-sub,
            .section-lead,
            .pain-item p,
            .feature-meta p,
            .footer-desc{
                font-size:.95rem;
            }
            .age-card{padding:1rem}
        }

.bi{font-style:normal;display:inline-block;line-height:1}
        .bi-shield-check::before{content:"18+"}
        .bi-clock-history::before{content:"⏱"}
        .bi-phone::before{content:"▣"}
        .bi-eye::before{content:"◔"}
        .bi-arrow-right::before{content:"→"}
        .bi-play-fill::before{content:"▶"}
        .bi-chevron-right::before{content:"›"}
        .bi-check2::before{content:"✓"}
        .bi-x-lg::before{content:"×"}

/* roulang page: category1 */
:root{
      --bg:#F7F1E8;
      --bg-soft:#F3E6D7;
      --card:#FFF9F0;
      --card-soft:#FFF4E6;
      --line:rgba(122,78,50,.14);
      --line-strong:rgba(122,78,50,.24);
      --text:#241F1B;
      --muted:#6F6256;
      --muted-2:#8C7B6D;
      --wood:#7A4E32;
      --terra:#C76B4A;
      --sage:#6F7D5B;
      --coffee:#4A2F23;
      --shadow:0 20px 60px rgba(74,47,35,.10);
      --shadow-strong:0 26px 70px rgba(74,47,35,.16);
      --radius-xl:34px;
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --space-section:88px;
      --space-section-mobile:64px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      letter-spacing:0;
      background:
        linear-gradient(180deg, rgba(255,255,255,.44) 0%, rgba(255,255,255,0) 18%),
        linear-gradient(180deg, #F8F2EA 0%, #F4E7D7 100%);
      min-height:100vh;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        repeating-linear-gradient(90deg, rgba(122,78,50,.03) 0 1px, transparent 1px 72px),
        repeating-linear-gradient(0deg, rgba(122,78,50,.025) 0 1px, transparent 1px 72px);
      opacity:.35;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    a:hover{color:inherit}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(199,107,74,.18);color:var(--text)}
    .container-xxl{max-width:1240px}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(247,241,232,.88);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(122,78,50,.12);
    }
    .navbar{
      min-height:84px;
      padding:.85rem 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      background:linear-gradient(135deg, var(--coffee) 0%, var(--wood) 50%, var(--terra) 100%);
      position:relative;
      flex:none;
      box-shadow:0 10px 24px rgba(74,47,35,.18);
      border:1px solid rgba(255,249,240,.18);
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:50% auto auto 50%;
      width:0;
      height:0;
      transform:translate(-34%,-50%);
      border-top:8px solid transparent;
      border-bottom:8px solid transparent;
      border-left:12px solid #FFF9F0;
      filter:drop-shadow(0 1px 0 rgba(36,31,27,.18));
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      min-width:0;
    }
    .brand-text strong{
      font-size:1.06rem;
      line-height:1.1;
      letter-spacing:0;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-text span{
      font-size:.82rem;
      color:var(--muted);
      white-space:nowrap;
    }
    .nav-link-custom{
      color:var(--muted);
      font-weight:600;
      padding:.72rem 1rem !important;
      margin:0 .14rem;
      border-radius:999px;
      border:1px solid transparent;
    }
    .nav-link-custom:hover,
    .nav-link-custom:focus{
      color:var(--text);
      background:rgba(255,249,240,.92);
      border-color:rgba(122,78,50,.14);
    }
    .nav-link-custom.active,
    .nav-link-custom[aria-current="page"]{
      color:var(--coffee);
      background:var(--card);
      border-color:rgba(122,78,50,.16);
      box-shadow:0 10px 26px rgba(74,47,35,.07);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:.55rem;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .status-pill,
    .badge-chip,
    .chip,
    .filter-pill{
      display:inline-flex;
      align-items:center;
      gap:.42rem;
      border-radius:999px;
      font-size:.84rem;
      font-weight:700;
      line-height:1;
      letter-spacing:0;
      white-space:nowrap;
    }
    .status-pill{
      color:var(--coffee);
      background:var(--card);
      border:1px solid rgba(122,78,50,.16);
      padding:.62rem .9rem;
    }
    .status-pill .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--terra);
      box-shadow:0 0 0 4px rgba(199,107,74,.12);
      flex:none;
    }
    .status-pill .dot.sage{
      background:var(--sage);
      box-shadow:0 0 0 4px rgba(111,125,91,.12);
    }
    .btn-custom{
      border:1px solid rgba(122,78,50,.18);
      border-radius:999px;
      padding:.78rem 1.12rem;
      font-weight:700;
      line-height:1;
      transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
      box-shadow:none;
    }
    .btn-custom:focus{box-shadow:0 0 0 .2rem rgba(199,107,74,.18)}
    .btn-cta{
      color:#FFF9F0;
      background:var(--coffee);
      border-color:var(--coffee);
      box-shadow:0 14px 34px rgba(74,47,35,.14);
    }
    .btn-cta:hover,
    .btn-cta:focus{
      color:#FFF9F0;
      background:var(--terra);
      border-color:var(--terra);
      transform:translateY(-2px);
      box-shadow:0 20px 40px rgba(199,107,74,.18);
    }
    .btn-ghost{
      color:var(--coffee);
      background:rgba(255,249,240,.88);
    }
    .btn-ghost:hover,
    .btn-ghost:focus{
      color:var(--coffee);
      background:var(--bg-soft);
      border-color:rgba(122,78,50,.24);
      transform:translateY(-2px);
    }
    .btn-light-cream{
      color:var(--coffee);
      background:var(--card);
      border-color:rgba(255,249,240,.36);
    }
    .btn-light-cream:hover,
    .btn-light-cream:focus{
      color:var(--coffee);
      background:#fff1dc;
      border-color:rgba(255,249,240,.54);
      transform:translateY(-2px);
    }
    .header-strip{
      border-top:1px solid rgba(122,78,50,.08);
      border-bottom:1px solid rgba(122,78,50,.08);
      background:linear-gradient(90deg, rgba(255,249,240,.8), rgba(243,230,215,.92));
    }
    .strip-inner{
      min-height:52px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:.68rem 0;
    }
    .chip-row{
      display:flex;
      align-items:center;
      gap:.58rem;
      flex-wrap:wrap;
    }
    .chip{
      padding:.52rem .82rem;
      color:var(--coffee);
      background:rgba(255,249,240,.94);
      border:1px solid rgba(122,78,50,.14);
      box-shadow:0 10px 24px rgba(74,47,35,.05);
    }
    .chip.soft{background:rgba(231,214,196,.34)}
    .chip.sage{background:rgba(111,125,91,.10)}
    .strip-note{
      color:var(--muted);
      font-size:.95rem;
      font-weight:600;
      white-space:nowrap;
    }
    .hero-section{
      padding:var(--space-section) 0 42px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.04fr .96fr;
      gap:38px;
      align-items:center;
    }
    .hero-kicker{
      display:flex;
      align-items:center;
      gap:.55rem;
      flex-wrap:wrap;
      margin-bottom:1rem;
    }
    .badge-chip{
      color:var(--coffee);
      background:rgba(255,249,240,.96);
      border:1px solid rgba(122,78,50,.16);
      padding:.58rem .86rem;
      box-shadow:0 10px 24px rgba(74,47,35,.05);
    }
    .badge-chip.soft{
      background:rgba(231,214,196,.45);
    }
    .badge-chip.sage{
      background:rgba(111,125,91,.10);
    }
    .hero-copy h1{
      margin:0;
      font-size:56px;
      line-height:1.16;
      letter-spacing:0;
      font-weight:800;
      color:var(--text);
      max-width:9.5ch;
    }
    .hero-copy p{
      margin:1rem 0 0;
      max-width:34rem;
      font-size:1.07rem;
      line-height:1.8;
      color:var(--muted);
    }
    .hero-actions{
      display:flex;
      gap:.8rem;
      flex-wrap:wrap;
      margin-top:1.6rem;
    }
    .hero-mini{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin-top:1.4rem;
    }
    .hero-mini .mini-item{
      padding:.52rem .78rem;
      border-radius:999px;
      background:rgba(255,249,240,.88);
      color:var(--coffee);
      border:1px solid rgba(122,78,50,.12);
      font-size:.83rem;
      font-weight:700;
    }
    .hero-tools{
      margin-top:1.6rem;
      display:grid;
      gap:1rem;
    }
    .search-shell{
      display:flex;
      align-items:center;
      gap:.8rem;
      background:rgba(255,249,240,.92);
      border:1px solid rgba(122,78,50,.16);
      border-radius:999px;
      padding:.65rem .8rem .65rem 1rem;
      box-shadow:0 16px 34px rgba(74,47,35,.06);
    }
    .search-shell i{
      color:var(--muted-2);
      font-size:1.02rem;
      flex:none;
    }
    .search-shell input{
      border:0;
      outline:0;
      background:transparent;
      width:100%;
      color:var(--text);
      min-width:0;
    }
    .search-shell input::placeholder{color:#947f71}
    .search-shell .btn-custom{
      padding:.72rem 1rem;
      flex:none;
    }
    .filter-row{
      display:flex;
      align-items:center;
      gap:.55rem;
      overflow-x:auto;
      padding-bottom:.2rem;
      scrollbar-width:none;
    }
    .filter-row::-webkit-scrollbar{display:none}
    .filter-pill{
      border:1px solid rgba(122,78,50,.16);
      background:rgba(255,249,240,.92);
      color:var(--coffee);
      padding:.72rem .95rem;
      box-shadow:0 10px 22px rgba(74,47,35,.05);
      transition:transform .22s ease, background-color .22s ease, border-color .22s ease;
    }
    .filter-pill:hover{
      transform:translateY(-2px);
      border-color:rgba(199,107,74,.28);
      background:#F3E6D7;
    }
    .filter-pill.active{
      background:var(--terra);
      color:#FFF9F0;
      border-color:var(--terra);
      box-shadow:0 16px 30px rgba(199,107,74,.20);
    }
    .hero-visual{
      position:relative;
    }
    .collage{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:14px;
      align-items:stretch;
    }
    .poster{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      border:1px solid rgba(122,78,50,.12);
      box-shadow:var(--shadow);
      min-height:180px;
      background:
        linear-gradient(180deg, rgba(255,249,240,.08), rgba(255,249,240,0)),
        linear-gradient(135deg, #E3D0BE 0%, #C79D7A 32%, #7A4E32 100%);
    }
    .poster::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(255,255,255,.18) 0 12%, transparent 12% 100%),
        repeating-linear-gradient(135deg, rgba(255,249,240,.10) 0 10px, transparent 10px 22px);
      mix-blend-mode:screen;
      opacity:.7;
    }
    .poster::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(36,31,27,0) 0%, rgba(36,31,27,.20) 100%);
    }
    .poster-lg{
      min-height:420px;
      grid-row:span 2;
      background:
        linear-gradient(180deg, rgba(255,249,240,.08), rgba(255,249,240,0)),
        linear-gradient(160deg, #8E5A3B 0%, #C76B4A 34%, #E7D6C4 100%);
    }
    .poster-sm-a{background:linear-gradient(160deg, #6F7D5B 0%, #E3D0BE 100%)}
    .poster-sm-b{background:linear-gradient(160deg, #D8B397 0%, #7A4E32 100%)}
    .poster-sm-c{background:linear-gradient(160deg, #FFF1DD 0%, #C76B4A 100%)}
    .poster-content{
      position:absolute;
      inset:auto 0 0 0;
      z-index:1;
      padding:18px;
      color:#FFF9F0;
    }
    .poster-tag{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.42rem .68rem;
      border-radius:999px;
      background:rgba(255,249,240,.16);
      border:1px solid rgba(255,249,240,.18);
      font-size:.77rem;
      font-weight:700;
      margin-bottom:.7rem;
      backdrop-filter:blur(8px);
    }
    .poster-title{
      margin:0;
      font-size:1.15rem;
      line-height:1.35;
      font-weight:800;
    }
    .poster-meta{
      display:flex;
      align-items:center;
      gap:.5rem;
      margin-top:.55rem;
      font-size:.84rem;
      color:rgba(255,249,240,.86);
    }
    .poster-badge{
      position:absolute;
      top:14px;
      left:14px;
      z-index:1;
      padding:.46rem .64rem;
      border-radius:999px;
      background:rgba(36,31,27,.54);
      color:#FFF9F0;
      font-size:.76rem;
      font-weight:700;
      border:1px solid rgba(255,249,240,.14);
      backdrop-filter:blur(8px);
    }
    .poster-play{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      z-index:1;
      width:68px;
      height:68px;
      border-radius:50%;
      border:1px solid rgba(255,249,240,.26);
      background:rgba(255,249,240,.14);
      color:#FFF9F0;
      display:grid;
      place-items:center;
      font-size:1.45rem;
      box-shadow:0 18px 38px rgba(36,31,27,.18);
      backdrop-filter:blur(10px);
    }
    .poster-play.sm{
      width:52px;
      height:52px;
      font-size:1.1rem;
    }
    .hero-caption{
      margin-top:12px;
      color:var(--muted);
      font-size:.94rem;
      text-align:right;
    }
    .hero-breadcrumb{
      margin-bottom:1rem;
      color:var(--muted);
      font-size:.92rem;
    }
    .hero-breadcrumb a{color:var(--muted)}
    .hero-breadcrumb a:hover{color:var(--terra)}
    .hero-breadcrumb .current{color:var(--coffee);font-weight:700}
    .section-band{
      padding:18px 0 0;
    }
    .panel-shell{
      padding:28px;
      background:rgba(255,249,240,.82);
      border:1px solid rgba(122,78,50,.12);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:22px;
    }
    .section-head .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      color:var(--terra);
      font-weight:800;
      font-size:.82rem;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:.4rem;
    }
    .section-head h2{
      margin:0;
      font-size:34px;
      line-height:1.22;
      font-weight:800;
      color:var(--text);
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:34rem;
      font-size:1rem;
    }
    .content-area{
      padding:var(--space-section) 0;
    }
    .content-card{
      position:relative;
      overflow:hidden;
      height:100%;
      border-radius:var(--radius-lg);
      background:var(--card);
      border:1px solid rgba(122,78,50,.14);
      box-shadow:var(--shadow);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .content-card:hover{
      transform:translateY(-4px);
      border-color:rgba(199,107,74,.34);
      box-shadow:var(--shadow-strong);
    }
    .content-cover{
      position:relative;
      overflow:hidden;
      min-height:176px;
      background:
        linear-gradient(180deg, rgba(255,249,240,.06), rgba(255,249,240,0)),
        linear-gradient(135deg, #E9D8C6 0%, #C48A64 36%, #6F7D5B 100%);
    }
    .content-cover::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(135deg, rgba(255,249,240,.10) 0 12px, transparent 12px 24px),
        linear-gradient(180deg, rgba(36,31,27,0) 0%, rgba(36,31,27,.18) 100%);
      opacity:.75;
      transition:transform .22s ease;
    }
    .content-card:hover .content-cover::before{
      transform:scale(1.03);
    }
    .content-cover .cover-tag{
      position:absolute;
      top:14px;
      left:14px;
      z-index:1;
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.42rem .68rem;
      border-radius:999px;
      background:rgba(36,31,27,.56);
      color:#FFF9F0;
      font-size:.77rem;
      font-weight:700;
      border:1px solid rgba(255,249,240,.18);
    }
    .content-cover .cover-time{
      position:absolute;
      bottom:14px;
      right:14px;
      z-index:1;
      padding:.44rem .66rem;
      border-radius:999px;
      background:rgba(36,31,27,.76);
      color:#FFF9F0;
      font-size:.78rem;
      font-weight:700;
    }
    .content-cover .cover-play{
      position:absolute;
      inset:50% auto auto 50%;
      transform:translate(-50%,-50%);
      z-index:1;
      width:62px;
      height:62px;
      border-radius:50%;
      background:rgba(255,249,240,.18);
      border:1px solid rgba(255,249,240,.24);
      color:#FFF9F0;
      display:grid;
      place-items:center;
      font-size:1.35rem;
      box-shadow:0 18px 40px rgba(36,31,27,.16);
      backdrop-filter:blur(10px);
      transition:transform .22s ease, background-color .22s ease;
    }
    .content-card:hover .cover-play{
      transform:translate(-50%,-50%) scale(1.05);
      background:rgba(255,249,240,.22);
    }
    .content-body{
      padding:22px;
    }
    .tag-row{
      display:flex;
      align-items:center;
      gap:.45rem;
      flex-wrap:wrap;
      margin-bottom:.8rem;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:.3rem;
      padding:.42rem .62rem;
      border-radius:999px;
      background:rgba(231,214,196,.42);
      border:1px solid rgba(122,78,50,.12);
      color:var(--coffee);
      font-size:.79rem;
      font-weight:700;
      transition:background-color .22s ease, border-color .22s ease, transform .22s ease;
    }
    .tag:hover{
      background:rgba(111,125,91,.12);
      border-color:rgba(111,125,91,.26);
      transform:translateY(-1px);
    }
    .content-title{
      margin:0 0 .55rem;
      font-size:1.12rem;
      line-height:1.45;
      font-weight:800;
      color:var(--text);
    }
    .content-summary{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
      line-height:1.8;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
      min-height:3.35em;
    }
    .meta-line{
      margin-top:.95rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:var(--muted-2);
      font-size:.84rem;
      flex-wrap:wrap;
    }
    .meta-line .meta-item{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
    }
    .feature-card{
      display:grid;
      grid-template-columns:1.02fr .98fr;
      min-height:100%;
    }
    .feature-cover{
      position:relative;
      min-height:320px;
      background:
        linear-gradient(180deg, rgba(255,249,240,.06), rgba(255,249,240,0)),
        linear-gradient(145deg, #7A4E32 0%, #C76B4A 48%, #E7D6C4 100%);
    }
    .feature-cover::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(135deg, rgba(255,249,240,.08) 0 16px, transparent 16px 28px),
        linear-gradient(180deg, rgba(36,31,27,0) 0%, rgba(36,31,27,.24) 100%);
    }
    .feature-cover .feature-caption{
      position:absolute;
      left:20px;
      bottom:20px;
      right:20px;
      z-index:1;
      color:#FFF9F0;
    }
    .feature-cover .feature-caption h3{
      margin:0;
      font-size:1.18rem;
      line-height:1.45;
      font-weight:800;
    }
    .feature-cover .feature-caption p{
      margin:.35rem 0 0;
      color:rgba(255,249,240,.9);
      font-size:.92rem;
    }
    .feature-body{
      padding:26px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .feature-body h3{
      margin:0 0 .7rem;
      font-size:1.55rem;
      line-height:1.35;
      font-weight:800;
    }
    .feature-body p{
      margin:0;
      color:var(--muted);
      font-size:1rem;
      line-height:1.8;
    }
    .check-list{
      list-style:none;
      padding:0;
      margin:1.1rem 0 0;
      display:grid;
      gap:.72rem;
    }
    .check-list li{
      display:flex;
      align-items:flex-start;
      gap:.65rem;
      color:var(--text);
      font-weight:600;
      font-size:.95rem;
    }
    .check-list i{
      color:var(--sage);
      font-size:1.05rem;
      margin-top:.15rem;
      flex:none;
    }
    .side-panel{
      position:sticky;
      top:108px;
      padding:26px;
      border-radius:30px;
      background:linear-gradient(180deg, rgba(255,249,240,.98) 0%, rgba(243,230,215,.92) 100%);
      border:1px solid rgba(122,78,50,.14);
      box-shadow:var(--shadow);
    }
    .panel-title{
      margin:0 0 .4rem;
      font-size:1.2rem;
      font-weight:800;
      color:var(--text);
    }
    .panel-copy{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.8;
    }
    .panel-block{
      padding:18px 0;
      border-top:1px solid rgba(122,78,50,.12);
    }
    .panel-block:first-of-type{
      border-top:0;
      padding-top:0;
    }
    .panel-mini{
      display:flex;
      align-items:flex-start;
      gap:.72rem;
    }
    .panel-mini .mini-mark{
      width:38px;
      height:38px;
      border-radius:14px;
      background:rgba(199,107,74,.12);
      border:1px solid rgba(199,107,74,.18);
      color:var(--terra);
      display:grid;
      place-items:center;
      flex:none;
      font-size:1rem;
    }
    .panel-mini h4{
      margin:0 0 .2rem;
      font-size:.98rem;
      line-height:1.45;
      font-weight:800;
    }
    .panel-mini p{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.7;
    }
    .tag-cloud{
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
      margin-top:.8rem;
    }
    .tag-cloud .tag{
      background:rgba(255,249,240,.96);
    }
    .tag-cloud .tag:hover{
      background:rgba(231,214,196,.56);
    }
    .panel-cta{
      display:grid;
      gap:.7rem;
      margin-top:.9rem;
    }
    .panel-cta .btn-custom{
      width:100%;
      justify-content:center;
    }
    .results-band{
      padding:var(--space-section) 0;
    }
    .results-shell{
      background:linear-gradient(160deg, #4A2F23 0%, #6D4330 100%);
      border-radius:36px;
      padding:30px;
      color:#FFF9F0;
      box-shadow:0 28px 80px rgba(74,47,35,.18);
      border:1px solid rgba(255,249,240,.08);
    }
    .results-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:22px;
    }
    .results-head h2{
      margin:0;
      font-size:32px;
      line-height:1.24;
      font-weight:800;
    }
    .results-head p{
      margin:0;
      max-width:34rem;
      color:rgba(255,249,240,.82);
      font-size:1rem;
    }
    .result-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .result-item{
      padding:20px;
      border-radius:24px;
      background:rgba(255,249,240,.08);
      border:1px solid rgba(255,249,240,.12);
      backdrop-filter:blur(8px);
      min-height:126px;
    }
    .result-item .num{
      font-size:2rem;
      line-height:1;
      font-weight:900;
      color:#FFF9F0;
      margin-bottom:.55rem;
    }
    .result-item h3{
      margin:0 0 .3rem;
      font-size:1rem;
      line-height:1.4;
      font-weight:800;
    }
    .result-item p{
      margin:0;
      color:rgba(255,249,240,.78);
      font-size:.92rem;
      line-height:1.7;
    }
    .feedback-section{
      padding:0 0 var(--space-section);
    }
    .feedback-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:18px;
    }
    .feedback-card{
      position:relative;
      overflow:hidden;
      height:100%;
      padding:24px;
      border-radius:28px;
      background:rgba(255,249,240,.94);
      border:1px solid rgba(122,78,50,.14);
      box-shadow:var(--shadow);
    }
    .feedback-card::before{
      content:"“";
      position:absolute;
      top:14px;
      right:18px;
      font-size:4rem;
      line-height:1;
      color:rgba(122,78,50,.08);
      font-weight:900;
    }
    .feedback-top{
      display:flex;
      align-items:center;
      gap:.72rem;
      margin-bottom:.92rem;
    }
    .avatar{
      width:44px;
      height:44px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(111,125,91,.32), rgba(199,107,74,.28));
      border:1px solid rgba(122,78,50,.14);
      display:grid;
      place-items:center;
      color:var(--coffee);
      font-weight:900;
      flex:none;
    }
    .feedback-top h3{
      margin:0;
      font-size:1rem;
      line-height:1.4;
      font-weight:800;
    }
    .feedback-top p{
      margin:0;
      color:var(--muted);
      font-size:.86rem;
    }
    .stars{
      color:#B06B40;
      letter-spacing:.08em;
      font-size:.9rem;
      margin-bottom:.8rem;
    }
    .feedback-card blockquote{
      margin:0;
      color:var(--text);
      font-size:.97rem;
      line-height:1.86;
    }
    .faq-section{
      padding:0 0 var(--space-section);
    }
    .faq-shell{
      padding:28px;
      background:rgba(255,249,240,.86);
      border:1px solid rgba(122,78,50,.12);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
    }
    .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid rgba(122,78,50,.14) !important;
      border-radius:20px !important;
      overflow:hidden;
      background:var(--card);
      box-shadow:none;
    }
    .accordion-button{
      background:var(--card);
      color:var(--text);
      font-weight:800;
      padding:1.05rem 1.15rem;
      box-shadow:none !important;
    }
    .accordion-button:not(.collapsed){
      color:var(--coffee);
      background:rgba(231,214,196,.46);
    }
    .accordion-button:focus{
      box-shadow:0 0 0 .18rem rgba(199,107,74,.18);
      border-color:rgba(199,107,74,.28);
    }
    .accordion-button::after{
      background-size:1rem;
      filter:brightness(.7) sepia(.5) saturate(.9);
    }
    .accordion-body{
      color:var(--muted);
      line-height:1.8;
      font-size:.96rem;
      padding:1rem 1.15rem 1.1rem;
      background:rgba(255,249,240,.82);
    }
    .cta-section{
      padding:0 0 var(--space-section);
    }
    .cta-shell{
      position:relative;
      overflow:hidden;
      border-radius:36px;
      padding:32px;
      background:linear-gradient(160deg, #4A2F23 0%, #6F4633 100%);
      color:#FFF9F0;
      border:1px solid rgba(255,249,240,.08);
      box-shadow:0 28px 80px rgba(74,47,35,.18);
    }
    .cta-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(135deg, rgba(255,249,240,.06) 0 14px, transparent 14px 28px);
      opacity:.46;
      pointer-events:none;
    }
    .cta-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:20px;
      align-items:center;
    }
    .cta-title{
      margin:0 0 .55rem;
      font-size:32px;
      line-height:1.24;
      font-weight:900;
      color:#FFF9F0;
    }
    .cta-copy{
      margin:0;
      color:rgba(255,249,240,.84);
      font-size:1rem;
      line-height:1.8;
      max-width:34rem;
    }
    .cta-actions{
      display:flex;
      gap:.8rem;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .cta-note{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      gap:.55rem;
      margin-top:16px;
      color:rgba(255,249,240,.78);
      font-size:.9rem;
      font-weight:600;
    }
    .cta-note .badge-chip{
      background:rgba(255,249,240,.10);
      color:#FFF9F0;
      border-color:rgba(255,249,240,.16);
    }
    .site-footer{
      background:var(--coffee);
      color:#FFF9F0;
      padding:28px 0 20px;
      margin-top:0;
    }
    .footer-wrap{
      border-top:1px solid rgba(255,249,240,.12);
      padding-top:28px;
    }
    .footer-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:24px;
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:14px;
    }
    .footer-title{
      margin:0;
      font-size:1.3rem;
      line-height:1.35;
      font-weight:900;
      color:#FFF9F0;
    }
    .footer-desc{
      margin:14px 0 0;
      max-width:40rem;
      color:rgba(255,249,240,.82);
      line-height:1.8;
      font-size:.96rem;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:.7rem;
      justify-content:flex-end;
      max-width:26rem;
    }
    .footer-links a{
      color:#FFF9F0;
      padding:.55rem .82rem;
      border-radius:999px;
      border:1px solid rgba(255,249,240,.14);
      background:rgba(255,249,240,.06);
      font-size:.9rem;
      font-weight:700;
    }
    .footer-links a:hover{
      background:rgba(255,249,240,.12);
      transform:translateY(-1px);
    }
    .footer-bottom{
      margin-top:24px;
      padding-top:16px;
      border-top:1px solid rgba(255,249,240,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:rgba(255,249,240,.72);
      font-size:.88rem;
    }
    .tech{color:rgba(255,249,240,.68)}
    .offcanvas{
      background:var(--card);
      color:var(--text);
    }
    .offcanvas .offcanvas-header,
    .offcanvas .offcanvas-body{
      padding:1.2rem 1.2rem;
    }
    .offcanvas .btn-close{
      opacity:.8;
      box-shadow:none;
    }
    .mobile-menu-links{
      display:grid;
      gap:.6rem;
      margin-top:1rem;
    }
    .mobile-menu-links a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:1rem 1rem;
      border-radius:18px;
      background:rgba(255,249,240,.92);
      border:1px solid rgba(122,78,50,.14);
      font-weight:800;
      color:var(--text);
    }
    .mobile-menu-links a.active{
      background:rgba(231,214,196,.48);
      border-color:rgba(199,107,74,.28);
    }
    .mobile-status{
      display:grid;
      gap:.6rem;
      margin-top:1.2rem;
    }
    .age-box{
      padding:1rem;
      border-radius:20px;
      background:rgba(231,214,196,.42);
      border:1px solid rgba(122,78,50,.14);
      color:var(--text);
    }
    .age-box strong{
      display:block;
      font-size:1rem;
      margin-bottom:.25rem;
    }
    .page-pagination{
      display:flex;
      justify-content:center;
      margin-top:22px;
    }
    .pagination{
      gap:.45rem;
      flex-wrap:wrap;
    }
    .page-link{
      border-radius:999px !important;
      border:1px solid rgba(122,78,50,.16);
      background:var(--card);
      color:var(--coffee);
      min-width:44px;
      text-align:center;
      box-shadow:none;
    }
    .page-link:hover{
      background:#F3E6D7;
      color:var(--coffee);
      border-color:rgba(199,107,74,.28);
    }
    .page-item.active .page-link{
      background:var(--terra);
      border-color:var(--terra);
      color:#FFF9F0;
    }
    .page-item.disabled .page-link{
      background:rgba(255,249,240,.72);
      color:rgba(74,47,35,.38);
    }
    .modal-content{
      border-radius:26px;
      border:1px solid rgba(122,78,50,.14);
      background:var(--card);
      box-shadow:var(--shadow-strong);
    }
    .modal-header,.modal-footer{
      border-color:rgba(122,78,50,.12);
    }
    .modal-title{
      font-weight:900;
    }
    .notice-list{
      list-style:none;
      padding:0;
      margin:1rem 0 0;
      display:grid;
      gap:.65rem;
    }
    .notice-list li{
      display:flex;
      gap:.6rem;
      align-items:flex-start;
      color:var(--muted);
      line-height:1.75;
    }
    .notice-list i{
      color:var(--sage);
      margin-top:.15rem;
      flex:none;
    }
    .content-grid-note{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-top:18px;
      color:var(--muted);
      font-size:.94rem;
      flex-wrap:wrap;
    }
    .content-grid-note .note-chip{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.45rem .7rem;
      border-radius:999px;
      background:rgba(255,249,240,.88);
      border:1px solid rgba(122,78,50,.12);
      color:var(--coffee);
      font-weight:700;
    }
    @media (max-width: 1199.98px){
      .hero-grid{gap:28px}
      .hero-copy h1{max-width:11ch}
      .feature-card{grid-template-columns:1fr}
      .feature-cover{min-height:240px}
      .result-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .feedback-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .cta-grid{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width: 991.98px){
      .navbar{min-height:76px}
      .hero-section{padding:64px 0 36px}
      .hero-grid{grid-template-columns:1fr}
      .hero-copy h1{font-size:40px;max-width:none}
      .section-head{
        flex-direction:column;
        align-items:flex-start;
      }
      .section-head h2{font-size:28px}
      .side-panel{position:relative;top:auto}
      .footer-top{flex-direction:column}
      .footer-links{justify-content:flex-start}
      .strip-inner{flex-direction:column;align-items:flex-start}
      .strip-note{white-space:normal}
    }
    @media (max-width: 575.98px){
      .hero-section{padding:48px 0 28px}
      .hero-copy h1{font-size:34px}
      .hero-copy p{font-size:1rem}
      .panel-shell,
      .faq-shell,
      .cta-shell,
      .results-shell{
        border-radius:28px;
        padding:22px;
      }
      .content-area,
      .results-band,
      .feedback-section,
      .faq-section,
      .cta-section{
        padding-bottom:64px;
      }
      .content-body,
      .feature-body,
      .side-panel,
      .feedback-card{
        padding:20px;
      }
      .content-cover{min-height:160px}
      .feature-cover{min-height:210px}
      .result-grid,
      .feedback-grid{
        grid-template-columns:1fr;
      }
      .cta-title{font-size:26px}
      .results-head h2{font-size:24px}
      .section-head h2{font-size:24px}
      .search-shell{
        border-radius:22px;
        flex-wrap:wrap;
      }
      .search-shell input{flex:1 1 100%}
      .search-shell .btn-custom{
        width:100%;
      }
      .hero-actions .btn-custom,
      .cta-actions .btn-custom{
        width:100%;
        justify-content:center;
      }
      .hero-actions,
      .cta-actions{
        width:100%;
      }
      .hero-mini{gap:.45rem}
      .hero-breadcrumb{font-size:.88rem}
      .brand-text strong{font-size:1rem}
      .brand-text span{font-size:.76rem}
    }
    .navbar-toggler{
      border:1px solid rgba(122,78,50,.14) !important;
      color:var(--coffee);
      background:rgba(255,249,240,.86);
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      box-shadow:0 10px 22px rgba(74,47,35,.06);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 .18rem rgba(199,107,74,.18)}
    .navbar-toggler i{font-size:1.3rem;line-height:1}
    .accordion-button:not(.collapsed)::after{filter:brightness(.55) sepia(.7) saturate(1)}
    .accordion-item:first-of-type .accordion-button{border-top-left-radius:20px;border-top-right-radius:20px}
    .accordion-item:last-of-type .accordion-button.collapsed{border-bottom-left-radius:20px;border-bottom-right-radius:20px}
    .accordion-body .note-row{
      display:flex;
      gap:.5rem;
      flex-wrap:wrap;
      margin-top:.85rem;
    }
    .muted-link{
      color:var(--muted);
      text-decoration:underline;
      text-decoration-color:rgba(122,78,50,.22);
      text-underline-offset:3px;
    }
    .muted-link:hover{color:var(--terra)}
