/* roulang page: index */
:root{
      --color-primary:#ff7a59;
      --color-primary-dark:#e85d3f;
      --color-primary-soft:#fff0ea;
      --color-secondary:#7c4dff;
      --color-accent:#ffd166;
      --color-bg:#fffaf6;
      --color-surface:#ffffff;
      --color-surface-2:#fff6ef;
      --color-text:#221b18;
      --color-muted:#70645f;
      --color-light:#9b8f89;
      --color-border:rgba(86,54,39,.13);
      --color-dark:#17110f;
      --shadow-sm:0 8px 22px rgba(70,42,28,.08);
      --shadow-md:0 18px 45px rgba(70,42,28,.13);
      --shadow-lg:0 28px 70px rgba(37,18,10,.22);
      --radius-sm:12px;
      --radius-md:20px;
      --radius-lg:30px;
      --radius-pill:999px;
      --container:1180px;
      --ease:all .24s ease;
      --safe-bottom:78px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 2%, rgba(255,209,102,.28), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(255,122,89,.20), transparent 28%),
        linear-gradient(180deg,#fffaf6 0%,#fff7f0 45%,#ffffff 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(255,122,89,.25)}
    .container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(255,250,246,.82);
      border-bottom:1px solid var(--color-border);
    }
    .topbar{
      height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),#ff9f68 48%,var(--color-secondary));
      box-shadow:0 12px 28px rgba(255,122,89,.28);
      flex:0 0 auto;
    }
    .brand-text{
      font-size:18px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:340px;
    }
    .main-nav{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      border:1px solid var(--color-border);
      background:rgba(255,255,255,.72);
      border-radius:var(--radius-pill);
      box-shadow:var(--shadow-sm);
    }
    .main-nav a{
      padding:10px 18px;
      border-radius:var(--radius-pill);
      font-weight:700;
      color:var(--color-muted);
      line-height:1;
    }
    .main-nav a:hover,
    .main-nav a:focus{
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
      outline:none;
    }
    .main-nav a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),#ff9863);
      box-shadow:0 10px 24px rgba(255,122,89,.24);
    }
    .header-action{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .age-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 12px;
      border-radius:var(--radius-pill);
      color:#7b3a22;
      background:#fff0df;
      border:1px solid rgba(255,122,89,.20);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:13px 22px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      font-weight:850;
      line-height:1.1;
      transition:var(--ease);
      box-shadow:none;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),#ff9b5f);
      box-shadow:0 16px 32px rgba(255,122,89,.24);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 44px rgba(255,122,89,.32);
      outline:none;
    }
    .btn-secondary{
      color:var(--color-text);
      background:rgba(255,255,255,.82);
      border-color:var(--color-border);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:var(--color-primary-dark);
      border-color:rgba(255,122,89,.34);
      background:#fff;
      transform:translateY(-2px);
      outline:none;
    }
    .btn-dark{
      color:#fff;
      background:#201512;
      box-shadow:0 18px 40px rgba(32,21,18,.20);
    }
    .btn-dark:hover,.btn-dark:focus{color:#fff;background:#000;transform:translateY(-2px);outline:none}
    .limit-strip{
      background:linear-gradient(90deg,#201512,#482117 45%,#7d3421);
      color:#fff;
      font-size:14px;
      overflow:hidden;
    }
    .limit-strip .container{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;
      min-height:42px;
      text-align:center;
    }
    .strip-pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 10px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.13);
      color:#ffd9bd;
      font-weight:900;
      flex:0 0 auto;
    }
    main{display:block}
    section{position:relative}
    .hero{
      min-height:640px;
      display:flex;
      align-items:center;
      isolation:isolate;
      overflow:hidden;
      color:#fff;
      background:#1b1110;
    }
    .hero-media{
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        linear-gradient(120deg,rgba(15,8,7,.92),rgba(57,24,18,.72) 48%,rgba(124,77,255,.40)),
        radial-gradient(circle at 76% 36%,rgba(255,209,102,.32),transparent 26%),
        linear-gradient(135deg,#120d0c,#422018 45%,#7c4dff);
    }
    .hero-media:before{
      content:"";
      position:absolute;
      inset:-20%;
      background:
        linear-gradient(90deg,transparent 0 46%,rgba(255,255,255,.11) 47% 49%,transparent 50% 100%),
        radial-gradient(circle at 24% 50%,rgba(255,122,89,.30),transparent 22%);
      background-size:120px 100%,100% 100%;
      animation:moveGlow 14s linear infinite;
      opacity:.68;
      filter:blur(.2px);
    }
    .hero-media:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.54));
      z-index:1;
    }
    @keyframes moveGlow{
      0%{transform:translateX(-4%) rotate(0deg)}
      100%{transform:translateX(4%) rotate(1deg)}
    }
    .hero-content{
      width:min(980px,calc(100% - 40px));
      margin:0 auto;
      padding:94px 0 86px;
      text-align:center;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:9px 14px;
      border:1px solid rgba(255,255,255,.22);
      background:rgba(255,255,255,.12);
      color:#ffe5d5;
      border-radius:var(--radius-pill);
      font-weight:900;
      backdrop-filter:blur(12px);
      margin-bottom:22px;
    }
    .hero h1{
      margin:0 auto 20px;
      max-width:920px;
      font-size:clamp(38px,7vw,78px);
      line-height:1.04;
      letter-spacing:-.065em;
      font-weight:950;
      text-wrap:balance;
      color:#fff;
    }
    .hero p{
      margin:0 auto 30px;
      max-width:780px;
      color:rgba(255,255,255,.83);
      font-size:clamp(16px,2vw,20px);
      line-height:1.9;
    }
    .play-cluster{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:center;
      gap:14px;
      margin:24px 0 28px;
    }
    .play-button{
      width:74px;
      height:74px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:#fff;
      color:var(--color-primary);
      border:0;
      box-shadow:0 22px 55px rgba(0,0,0,.32),0 0 0 12px rgba(255,255,255,.12);
      transition:var(--ease);
    }
    .play-button:hover,.play-button:focus{
      transform:scale(1.05);
      box-shadow:0 26px 64px rgba(0,0,0,.38),0 0 0 16px rgba(255,255,255,.15);
      outline:none;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:14px;
      margin-top:20px;
    }
    .hero-actions .btn-secondary{
      background:rgba(255,255,255,.14);
      border-color:rgba(255,255,255,.26);
      color:#fff;
    }
    .hero-actions .btn-secondary:hover{background:rgba(255,255,255,.22);color:#fff}
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
      max-width:820px;
      margin:42px auto 0;
    }
    .stat-card{
      padding:18px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.10);
      backdrop-filter:blur(16px);
      border-radius:var(--radius-md);
      text-align:left;
    }
    .stat-card strong{
      display:block;
      font-size:28px;
      line-height:1;
      color:#fff;
      letter-spacing:-.03em;
      margin-bottom:8px;
    }
    .stat-card span{color:rgba(255,255,255,.76);font-size:14px}
    .section{
      padding:82px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:32px;
    }
    .section-title{
      max-width:720px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      color:#9b422b;
      background:#fff0e7;
      border:1px solid rgba(255,122,89,.18);
      border-radius:var(--radius-pill);
      font-weight:900;
      font-size:13px;
      margin-bottom:12px;
    }
    h2{
      margin:0 0 12px;
      font-size:clamp(28px,4.5vw,46px);
      line-height:1.16;
      letter-spacing:-.045em;
      color:var(--color-text);
      font-weight:950;
    }
    .section-title p,.section-head p{
      margin:0;
      color:var(--color-muted);
      max-width:760px;
      font-size:16px;
    }
    .highlight-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
    }
    .feature-large,.feature-card,.time-card,.info-panel,.review-card,.faq-item,.form-card,.member-card{
      background:rgba(255,255,255,.86);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
    }
    .feature-large{
      padding:34px;
      min-height:342px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .feature-large:after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-70px;
      bottom:-80px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,122,89,.22),transparent 68%);
    }
    .feature-large h3,.feature-card h3,.time-card h3,.member-card h3{
      margin:0 0 10px;
      font-size:24px;
      line-height:1.24;
      font-weight:950;
      letter-spacing:-.025em;
    }
    .feature-large p,.feature-card p,.time-card p,.member-card p,.review-card p{
      color:var(--color-muted);
      margin:0;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:var(--radius-pill);
      background:#fff7ef;
      border:1px solid rgba(255,122,89,.16);
      color:#8d432b;
      font-weight:800;
      font-size:13px;
    }
    .feature-side{
      display:grid;
      gap:18px;
    }
    .feature-card{
      padding:26px;
      transition:var(--ease);
    }
    .feature-card:hover,.time-card:hover,.member-card:hover,.review-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(255,122,89,.24);
    }
    .icon-box{
      width:48px;
      height:48px;
      display:grid;
      place-items:center;
      border-radius:16px;
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),#ffb15c);
      box-shadow:0 14px 28px rgba(255,122,89,.22);
      margin-bottom:16px;
    }
    .time-section{
      background:linear-gradient(180deg,#fff6ee,#fff);
    }
    .time-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .time-card{
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .time-card .time{
      display:inline-flex;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      background:#201512;
      color:#fff;
      font-size:13px;
      font-weight:900;
      margin-bottom:16px;
    }
    .time-card strong{
      display:block;
      color:var(--color-primary-dark);
      margin-top:16px;
      font-size:14px;
    }
    .info-layout{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:22px;
      align-items:start;
    }
    .news-list{
      background:#fff;
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      overflow:hidden;
      box-shadow:var(--shadow-sm);
    }
    .news-row{
      display:grid;
      grid-template-columns:120px 1fr 130px;
      gap:18px;
      align-items:center;
      padding:20px 24px;
      border-bottom:1px solid var(--color-border);
      transition:var(--ease);
    }
    .news-row:last-child{border-bottom:0}
    .news-row:hover{
      background:#fff8f3;
    }
    .news-row .date{
      color:#9b422b;
      font-weight:900;
      font-size:14px;
    }
    .news-row a{
      font-weight:900;
      line-height:1.45;
    }
    .news-row a:hover{color:var(--color-primary-dark)}
    .news-row .status{
      justify-self:end;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      background:#f8efe8;
      color:#7e5648;
      font-size:13px;
      font-weight:850;
    }
    .info-panel{
      padding:26px;
      background:linear-gradient(160deg,#201512,#4b241b);
      color:#fff;
      position:sticky;
      top:98px;
      overflow:hidden;
    }
    .info-panel:after{
      content:"";
      position:absolute;
      width:160px;
      height:160px;
      right:-50px;
      top:-50px;
      border-radius:50%;
      background:rgba(255,209,102,.20);
    }
    .info-panel h3{
      position:relative;
      margin:0 0 12px;
      color:#fff;
      font-size:24px;
      font-weight:950;
    }
    .info-panel p{position:relative;color:rgba(255,255,255,.76);margin:0 0 18px}
    .kpi-list{
      display:grid;
      gap:12px;
      position:relative;
    }
    .kpi{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:13px 0;
      border-bottom:1px solid rgba(255,255,255,.14);
    }
    .kpi:last-child{border-bottom:0}
    .kpi span{color:rgba(255,255,255,.68)}
    .kpi strong{color:#ffd166}
    .member-section{
      background:
        radial-gradient(circle at 10% 10%,rgba(124,77,255,.10),transparent 30%),
        linear-gradient(180deg,#fff,#fff8f1);
    }
    .member-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }
    .member-card{
      padding:28px;
    }
    .member-card ul{
      list-style:none;
      padding:0;
      margin:18px 0 0;
      display:grid;
      gap:10px;
    }
    .member-card li{
      display:flex;
      gap:10px;
      color:var(--color-muted);
    }
    .member-card li i{color:var(--color-primary);margin-top:6px}
    .bubble-wall{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:22px;
      align-items:center;
    }
    .avatar-panel{
      padding:30px;
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#fff,#fff0e7);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
    }
    .avatar-stack{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:22px 0;
    }
    .avatar{
      width:48px;
      height:48px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:950;
      background:linear-gradient(135deg,#ff7a59,#7c4dff);
      border:3px solid #fff;
      box-shadow:0 8px 18px rgba(70,42,28,.12);
    }
    .review-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
    }
    .review-card{
      padding:22px;
      border-radius:24px 24px 24px 8px;
      position:relative;
    }
    .review-card:before{
      content:"“";
      position:absolute;
      right:18px;
      top:0;
      color:rgba(255,122,89,.18);
      font-size:72px;
      line-height:1;
      font-weight:950;
    }
    .review-meta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-top:18px;
      font-weight:900;
    }
    .review-meta small{
      color:var(--color-light);
      font-weight:700;
    }
    .faq-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:24px;
      align-items:start;
    }
    .faq-intro{
      padding:30px;
      border-radius:var(--radius-lg);
      background:#201512;
      color:#fff;
      position:sticky;
      top:98px;
    }
    .faq-intro h2{color:#fff}
    .faq-intro p{color:rgba(255,255,255,.74)}
    .faq-list{
      display:grid;
      gap:14px;
    }
    .faq-item{
      padding:24px;
      transition:var(--ease);
    }
    .faq-item:hover{box-shadow:var(--shadow-md)}
    .faq-item h3{
      margin:0 0 9px;
      font-size:20px;
      font-weight:950;
      letter-spacing:-.02em;
    }
    .faq-item p{margin:0;color:var(--color-muted)}
    .form-section{
      padding-bottom:100px;
      background:linear-gradient(180deg,#fff8f1,#fff);
    }
    .form-shell{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:24px;
      align-items:stretch;
    }
    .cta-copy{
      padding:38px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 90% 20%,rgba(255,209,102,.25),transparent 28%),
        linear-gradient(135deg,#ff7a59,#7c4dff);
      color:#fff;
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      position:relative;
    }
    .cta-copy h2{color:#fff}
    .cta-copy p{color:rgba(255,255,255,.82)}
    .cta-list{
      list-style:none;
      padding:0;
      margin:28px 0 0;
      display:grid;
      gap:12px;
    }
    .cta-list li{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.18);
      color:rgba(255,255,255,.86);
      font-weight:750;
    }
    .form-card{
      padding:32px;
    }
    .form-card label{
      color:var(--color-text);
      font-weight:900;
      margin-bottom:8px;
    }
    .form-card input,.form-card select,.form-card textarea{
      border:1px solid var(--color-border);
      border-radius:16px;
      min-height:50px;
      padding:12px 14px;
      box-shadow:none;
      background:#fffdfb;
      color:var(--color-text);
      transition:var(--ease);
    }
    .form-card textarea{min-height:110px;resize:vertical}
    .form-card input:focus,.form-card select:focus,.form-card textarea:focus{
      border-color:rgba(255,122,89,.65);
      box-shadow:0 0 0 4px rgba(255,122,89,.13);
      background:#fff;
      outline:none;
    }
    .form-note{
      margin:14px 0 0;
      color:var(--color-light);
      font-size:13px;
    }
    .site-footer{
      color:#eadbd4;
      background:#17110f;
      padding:54px 0 34px;
      margin-bottom:0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:28px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      font-size:20px;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{box-shadow:none}
    .footer-text{
      max-width:620px;
      color:rgba(234,219,212,.72);
      margin:0;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
    }
    .footer-links a{
      padding:9px 13px;
      border-radius:var(--radius-pill);
      color:rgba(234,219,212,.74);
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.08);
      font-weight:800;
    }
    .footer-links a:hover{color:#fff;background:rgba(255,122,89,.22)}
    .copyright{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.10);
      color:rgba(234,219,212,.55);
      font-size:14px;
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap:12px;
    }
    .bottom-tabs{
      display:none;
      position:fixed;
      left:12px;
      right:12px;
      bottom:12px;
      z-index:60;
      padding:8px;
      border-radius:24px;
      background:rgba(255,255,255,.90);
      border:1px solid var(--color-border);
      box-shadow:0 18px 50px rgba(40,22,14,.20);
      backdrop-filter:blur(18px);
    }
    .bottom-tabs a{
      flex:1;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:4px;
      min-height:56px;
      border-radius:18px;
      color:var(--color-muted);
      font-size:12px;
      font-weight:900;
    }
    .bottom-tabs a i{font-size:17px}
    .bottom-tabs a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),#ff9b5f);
      box-shadow:0 10px 24px rgba(255,122,89,.24);
    }
    .bottom-tabs a:hover{color:var(--color-primary-dark);background:#fff2eb}
    .bottom-tabs a.active:hover{color:#fff}
    @media (max-width:1024px){
      .brand-text{max-width:260px}
      .header-action .btn{display:none}
      .hero{min-height:590px}
      .highlight-grid,.info-layout,.bubble-wall,.faq-wrap,.form-shell{
        grid-template-columns:1fr;
      }
      .info-panel,.faq-intro{position:relative;top:auto}
      .time-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .member-grid{grid-template-columns:1fr}
      .section{padding:68px 0}
    }
    @media (max-width:768px){
      body{padding-bottom:var(--safe-bottom)}
      .container{width:min(100% - 28px,var(--container))}
      .site-header{position:relative}
      .topbar{height:66px}
      .main-nav{display:none}
      .age-badge{font-size:12px;padding:8px 10px}
      .brand-text{max-width:190px;font-size:16px}
      .hero-content{width:min(100% - 28px,980px);padding:72px 0}
      .hero p{font-size:16px}
      .hero-stats{grid-template-columns:1fr;max-width:460px}
      .section-head{display:block}
      .section-head .btn{margin-top:18px}
      .news-row{
        grid-template-columns:1fr;
        gap:8px;
        padding:18px;
      }
      .news-row .status{justify-self:start}
      .review-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .copyright{display:block}
      .bottom-tabs{display:flex}
    }
    @media (max-width:520px){
      .limit-strip .container{font-size:12px;gap:8px}
      .strip-pill{display:none}
      .hero h1{font-size:36px}
      .play-button{width:64px;height:64px}
      .hero-actions .btn{width:100%}
      .section{padding:54px 0}
      .feature-large,.feature-card,.time-card,.member-card,.faq-item,.form-card,.cta-copy,.avatar-panel{
        border-radius:22px;
        padding:22px;
      }
      .time-grid{grid-template-columns:1fr}
      h2{font-size:30px}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .header-action{display:none}
    }

/* roulang page: category1 */
:root {
      --color-primary: #ff7a4d;
      --color-primary-dark: #e85d33;
      --color-secondary: #2f2440;
      --color-accent: #ffd166;
      --color-rose: #fff0ea;
      --color-cream: #fffaf3;
      --color-bg: #fff8f1;
      --color-surface: #ffffff;
      --color-surface-soft: #fff3e8;
      --color-text: #241927;
      --color-muted: #766b72;
      --color-light: #9b8d95;
      --color-border: rgba(69, 44, 58, 0.12);
      --shadow-sm: 0 8px 24px rgba(67, 42, 24, 0.08);
      --shadow-md: 0 18px 48px rgba(67, 42, 24, 0.14);
      --shadow-lg: 0 28px 80px rgba(67, 42, 24, 0.20);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-pill: 999px;
      --container: 1180px;
      --header-height: 78px;
      --transition: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      color: var(--color-text);
      line-height: 1.75;
      background:
        radial-gradient(circle at 8% 10%, rgba(255, 209, 102, 0.28), transparent 28%),
        radial-gradient(circle at 88% 5%, rgba(255, 122, 77, 0.20), transparent 26%),
        linear-gradient(180deg, #fff7ef 0%, #fffaf6 42%, #ffffff 100%);
      overflow-x: hidden;
      padding-bottom: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    a:hover,
    a:focus {
      color: var(--color-primary-dark);
    }

    button,
    input {
      font: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ::selection {
      background: rgba(255, 122, 77, 0.24);
      color: var(--color-secondary);
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 250, 246, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--color-border);
    }

    .topbar {
      min-height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--color-secondary);
    }

    .brand {
      flex: 0 0 auto;
      max-width: 360px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), #ffb35c);
      box-shadow: 0 10px 24px rgba(255, 122, 77, 0.32);
      flex: 0 0 auto;
    }

    .brand-text {
      font-size: 17px;
      line-height: 1.25;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 7px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.72);
      box-shadow: var(--shadow-sm);
    }

    .main-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 18px;
      border-radius: var(--radius-pill);
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .main-nav a:hover {
      background: var(--color-rose);
      color: var(--color-primary-dark);
    }

    .main-nav a.active {
      color: #fff;
      background: var(--color-secondary);
      box-shadow: 0 10px 22px rgba(47, 36, 64, 0.20);
    }

    .header-action {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      flex: 0 0 auto;
    }

    .age-badge,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      font-size: 13px;
      font-weight: 800;
      color: #7a452d;
      background: #fff2df;
      border: 1px solid rgba(255, 122, 77, 0.18);
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: var(--radius-pill);
      border: 1px solid transparent;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:focus,
    .main-nav a:focus,
    .bottom-tab a:focus,
    .field input:focus {
      outline: 3px solid rgba(255, 122, 77, 0.28);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), #ff9d58);
      box-shadow: 0 14px 30px rgba(255, 122, 77, 0.30);
    }

    .btn-primary:hover {
      color: #fff;
      box-shadow: 0 18px 38px rgba(255, 122, 77, 0.38);
    }

    .btn-secondary {
      color: var(--color-secondary);
      background: #fff;
      border-color: var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      color: var(--color-primary-dark);
      border-color: rgba(255, 122, 77, 0.32);
      box-shadow: var(--shadow-md);
    }

    main {
      overflow: hidden;
    }

    .page-hero {
      position: relative;
      padding: 72px 0 56px;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 22px auto auto 50%;
      width: 680px;
      height: 680px;
      transform: translateX(-4%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 122, 77, 0.18), transparent 62%);
      pointer-events: none;
      z-index: -1;
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 42px;
      align-items: center;
    }

    .hero-copy {
      max-width: 640px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px;
      border: 1px solid rgba(255, 122, 77, 0.24);
      border-radius: var(--radius-pill);
      color: #8a4a30;
      background: rgba(255, 242, 223, 0.86);
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 20px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(38px, 6vw, 68px);
      line-height: 1.05;
      letter-spacing: -0.055em;
      color: var(--color-secondary);
      margin-bottom: 20px;
    }

    .lead {
      color: var(--color-muted);
      font-size: clamp(17px, 2.2vw, 21px);
      line-height: 1.9;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 28px;
    }

    .micro-note {
      color: var(--color-light);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
    }

    .hero-panel {
      position: relative;
      min-height: 520px;
      border-radius: 38px;
      padding: 22px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.74), rgba(255,243,232,0.94)),
        url("data:image/svg+xml,%3Csvg width='680' height='520' viewBox='0 0 680 520' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23ffbd82'/%3E%3Cstop offset='1' stop-color='%23fff2dc'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='680' height='520' fill='url(/%23g)'/%3E%3Ccircle cx='540' cy='84' r='110' fill='%23fff7e9' opacity='.7'/%3E%3Ccircle cx='106' cy='392' r='140' fill='%23ff7a4d' opacity='.16'/%3E%3Cpath d='M90 148c82-62 192-72 274-29 88 47 142 41 232 8v254c-104 46-190 28-282-20-85-45-160-35-224 18z' fill='%23ffffff' opacity='.52'/%3E%3C/svg%3E");
      background-size: cover;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, 0.78);
      overflow: hidden;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(47, 36, 64, 0.16) 100%);
      pointer-events: none;
    }

    .story-card {
      position: relative;
      z-index: 1;
      max-width: 390px;
      margin-left: auto;
      padding: 24px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(255,255,255,0.86);
    }

    .story-card h2 {
      font-size: 24px;
      line-height: 1.35;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      color: var(--color-secondary);
    }

    .story-card p {
      color: var(--color-muted);
      margin-bottom: 18px;
    }

    .steps-mini {
      display: grid;
      gap: 10px;
    }

    .steps-mini span {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border-radius: 16px;
      background: rgba(255, 248, 241, 0.86);
      color: var(--color-secondary);
      font-weight: 800;
      font-size: 14px;
    }

    .float-bubble {
      position: absolute;
      z-index: 2;
      left: 22px;
      bottom: 26px;
      width: min(330px, calc(100% - 44px));
      padding: 18px;
      border-radius: 24px 24px 24px 8px;
      background: #fff;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--color-border);
    }

    .float-bubble strong {
      display: block;
      color: var(--color-secondary);
      margin-bottom: 6px;
    }

    .float-bubble p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .section {
      padding: 76px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-primary-dark);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.16;
      letter-spacing: -0.04em;
      color: var(--color-secondary);
      margin-bottom: 14px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--color-muted);
      margin-bottom: 0;
    }

    .pain-solution {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .pain-card,
    .solution-card,
    .metric-card,
    .scene-card,
    .quote-card,
    .booking-card,
    .faq-item {
      border: 1px solid var(--color-border);
      background: rgba(255, 255, 255, 0.88);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }

    .pain-card {
      padding: 30px;
      background: linear-gradient(180deg, #fff, #fff4ea);
    }

    .pain-list {
      display: grid;
      gap: 14px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .pain-list li {
      display: flex;
      gap: 12px;
      color: var(--color-muted);
      align-items: flex-start;
    }

    .pain-list i {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(255, 122, 77, 0.12);
      color: var(--color-primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      margin-top: 2px;
    }

    .solution-card {
      padding: 18px;
      display: grid;
      gap: 14px;
      background: rgba(255, 255, 255, 0.72);
    }

    .solution-row {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid rgba(255, 122, 77, 0.10);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .solution-row:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }

    .icon-box {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, var(--color-secondary), #5d456f);
      box-shadow: 0 12px 26px rgba(47, 36, 64, 0.16);
    }

    .solution-row h3,
    .scene-card h3,
    .quote-card h3,
    .booking-card h2 {
      margin-bottom: 6px;
      color: var(--color-secondary);
      letter-spacing: -0.02em;
    }

    .solution-row p,
    .scene-card p,
    .quote-card p {
      color: var(--color-muted);
      margin-bottom: 0;
    }

    .metrics-strip {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: center;
      padding: 30px;
      border-radius: 34px;
      background: var(--color-secondary);
      color: #fff;
      box-shadow: var(--shadow-lg);
    }

    .metrics-copy h2 {
      color: #fff;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.2;
      letter-spacing: -0.04em;
      margin-bottom: 14px;
    }

    .metrics-copy p {
      color: rgba(255,255,255,0.72);
      margin-bottom: 0;
      font-size: 17px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .metric-card {
      padding: 22px;
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.16);
      color: #fff;
      box-shadow: none;
    }

    .metric-card strong {
      display: block;
      font-size: 30px;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--color-accent);
      margin-bottom: 8px;
    }

    .metric-card span {
      color: rgba(255,255,255,0.72);
      font-size: 14px;
    }

    .scene-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 24px;
      align-items: start;
    }

    .avatar-wall {
      position: sticky;
      top: 104px;
      padding: 26px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #fff, #fff4ea);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
    }

    .avatar-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 18px 0;
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, #ff7a4d, #ffd166);
      box-shadow: 0 8px 18px rgba(255, 122, 77, 0.24);
      border: 3px solid #fff;
    }

    .avatar:nth-child(2n) {
      background: linear-gradient(135deg, #5d456f, #ff9d58);
    }

    .avatar:nth-child(3n) {
      background: linear-gradient(135deg, #ffb35c, #e85d33);
    }

    .avatar-wall p {
      color: var(--color-muted);
      margin-bottom: 0;
    }

    .scene-list {
      display: grid;
      gap: 16px;
    }

    .scene-card {
      padding: 24px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      align-items: start;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .scene-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .number {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background: var(--color-surface-soft);
      color: var(--color-primary-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
    }

    .process-band {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      counter-reset: process;
    }

    .process-item {
      position: relative;
      padding: 24px;
      min-height: 210px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .process-item::before {
      counter-increment: process;
      content: "0" counter(process);
      position: absolute;
      right: 20px;
      top: 14px;
      font-size: 44px;
      line-height: 1;
      font-weight: 950;
      color: rgba(255, 122, 77, 0.13);
      letter-spacing: -0.06em;
    }

    .process-item i {
      width: 48px;
      height: 48px;
      border-radius: 17px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), #ffb35c);
    }

    .process-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--color-secondary);
    }

    .process-item p {
      margin-bottom: 0;
      color: var(--color-muted);
      font-size: 15px;
    }

    .quote-area {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .quote-card {
      position: relative;
      padding: 28px;
      border-radius: 30px 30px 30px 10px;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .quote-card:nth-child(2) {
      margin-top: 34px;
      border-radius: 30px 30px 10px 30px;
      background: #fffaf4;
    }

    .quote-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .quote-mark {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--color-secondary);
      color: var(--color-accent);
      margin-bottom: 16px;
    }

    .quote-user {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--color-border);
    }

    .quote-user .avatar {
      width: 42px;
      height: 42px;
      font-size: 14px;
    }

    .quote-user strong {
      display: block;
      color: var(--color-secondary);
      line-height: 1.25;
    }

    .quote-user span {
      color: var(--color-light);
      font-size: 13px;
    }

    .booking-wrap {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .booking-card {
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,243,232,0.92));
    }

    .booking-card p {
      color: var(--color-muted);
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--color-muted);
    }

    .check-list i {
      color: var(--color-primary-dark);
      margin-top: 6px;
    }

    .booking-form {
      padding: 26px;
      border-radius: var(--radius-lg);
      background: var(--color-secondary);
      color: #fff;
      box-shadow: var(--shadow-lg);
    }

    .booking-form h3 {
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .booking-form p {
      color: rgba(255,255,255,0.72);
      margin-bottom: 20px;
    }

    .field {
      margin-bottom: 14px;
    }

    .field label {
      color: rgba(255,255,255,0.82);
      font-weight: 800;
      margin-bottom: 7px;
      display: block;
      font-size: 14px;
    }

    .field input {
      width: 100%;
      height: 52px;
      padding: 0 16px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.16);
      color: #fff;
      background: rgba(255,255,255,0.10);
      box-shadow: none;
    }

    .field input::placeholder {
      color: rgba(255,255,255,0.46);
    }

    .booking-form .btn {
      width: 100%;
      margin-top: 6px;
    }

    .form-note {
      margin: 14px 0 0;
      color: rgba(255,255,255,0.58);
      font-size: 13px;
      line-height: 1.7;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .faq-item {
      padding: 24px;
      background: #fff;
    }

    .faq-item h3 {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--color-secondary);
      font-size: 18px;
      margin-bottom: 10px;
      line-height: 1.45;
    }

    .faq-item h3 i {
      color: var(--color-primary-dark);
      margin-top: 5px;
    }

    .faq-item p {
      color: var(--color-muted);
      margin-bottom: 0;
    }

    .final-cta {
      position: relative;
      padding: 48px;
      border-radius: 38px;
      background:
        linear-gradient(135deg, rgba(255, 122, 77, 0.92), rgba(255, 179, 92, 0.92)),
        radial-gradient(circle at 78% 18%, rgba(255,255,255,0.38), transparent 26%);
      color: #fff;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .final-cta::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -110px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.22);
    }

    .final-cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .final-cta h2 {
      color: #fff;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.16;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
    }

    .final-cta p {
      color: rgba(255,255,255,0.84);
      margin-bottom: 0;
      max-width: 720px;
    }

    .final-cta .btn-secondary {
      border-color: rgba(255,255,255,0.48);
      color: var(--color-secondary);
    }

    .site-footer {
      margin-top: 36px;
      padding: 52px 0 34px;
      background: #211827;
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 36px;
      align-items: start;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .footer-brand {
      color: #fff;
      margin-bottom: 14px;
      font-size: 17px;
    }

    .footer-text {
      max-width: 650px;
      color: rgba(255,255,255,0.64);
      margin: 0;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      min-width: 180px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.70);
      font-weight: 800;
    }

    .footer-links a:hover {
      color: var(--color-accent);
    }

    .copyright {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding-top: 22px;
      color: rgba(255,255,255,0.52);
      font-size: 13px;
    }

    .bottom-tab {
      display: none;
      position: fixed;
      z-index: 80;
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 8px;
      border-radius: 24px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(18px);
      border: 1px solid var(--color-border);
      box-shadow: 0 18px 52px rgba(47, 36, 64, 0.18);
    }

    .bottom-tab a {
      flex: 1;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-height: 54px;
      border-radius: 18px;
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 900;
    }

    .bottom-tab a i {
      font-size: 17px;
    }

    .bottom-tab a.active {
      color: #fff;
      background: var(--color-secondary);
    }

    @media (max-width: 1024px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .topbar {
        gap: 14px;
      }

      .header-action .age-badge {
        display: none;
      }

      .brand {
        max-width: 290px;
      }

      .hero-wrap,
      .pain-solution,
      .metrics-strip,
      .scene-layout,
      .booking-wrap {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        min-height: 460px;
      }

      .avatar-wall {
        position: relative;
        top: auto;
      }

      .process-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 86px;
      }

      .site-header {
        position: relative;
      }

      .topbar {
        min-height: 70px;
      }

      .main-nav {
        display: none;
      }

      .header-action {
        display: none;
      }

      .brand-text {
        max-width: calc(100vw - 112px);
      }

      .page-hero {
        padding: 42px 0 34px;
      }

      .hero-wrap {
        gap: 26px;
      }

      .hero-actions {
        align-items: stretch;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-panel {
        min-height: 430px;
        border-radius: 30px;
      }

      .story-card {
        margin: 0;
        max-width: none;
      }

      .float-bubble {
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
      }

      .section {
        padding: 54px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .metric-grid,
      .quote-area,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .quote-card:nth-child(2) {
        margin-top: 0;
      }

      .process-band {
        grid-template-columns: 1fr;
      }

      .final-cta {
        padding: 32px 24px;
        border-radius: 30px;
      }

      .final-cta-inner,
      .footer-grid,
      .copyright {
        grid-template-columns: 1fr;
        display: grid;
      }

      .bottom-tab {
        display: flex;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
      }

      .brand-text {
        font-size: 15px;
      }

      h1 {
        font-size: 36px;
      }

      .lead,
      .section-desc {
        font-size: 16px;
      }

      .hero-panel {
        padding: 14px;
        min-height: 510px;
      }

      .story-card {
        padding: 20px;
        border-radius: 24px;
      }

      .float-bubble {
        padding: 16px;
      }

      .pain-card,
      .booking-card,
      .booking-form {
        padding: 22px;
        border-radius: 26px;
      }

      .solution-row,
      .scene-card {
        grid-template-columns: 1fr;
      }

      .metrics-strip {
        padding: 22px;
        border-radius: 28px;
      }

      .metric-card,
      .process-item,
      .quote-card,
      .faq-item {
        padding: 20px;
      }

      .footer-links {
        grid-template-columns: 1fr 1fr;
      }
    }
