/* roulang page: index */
:root{
      --promo-red:#F23B2E;
      --promo-red-dark:#D82F24;
      --promo-orange:#FF8A1F;
      --ink:#1F1A17;
      --muted:#74645B;
      --soft:#FFF7EF;
      --soft-2:#FFF3E6;
      --soft-3:#FAFAF8;
      --card:#FFFFFF;
      --card-warm:#FFF9F2;
      --border:#F0D8C5;
      --border-strong:#F4B785;
      --dark:#241A16;
      --deep:#17110F;
      --success:#1F9D68;
      --shadow:0 18px 45px rgba(180,70,20,.10);
      --shadow-strong:0 24px 60px rgba(180,70,20,.18);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:30px;
      --container:1180px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--ink);
      background:linear-gradient(180deg,#fffaf5 0%,#fff7ef 38%,#fafaf8 100%);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--promo-red)}
    img,svg{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(242,59,46,.18);color:var(--ink)}
    .site-container{
      width:min(calc(100% - 32px),var(--container));
      margin:0 auto;
    }
    .top-strip{
      background:linear-gradient(90deg,#fff,#fff4e7 45%,#ffe9d4);
      border-bottom:1px solid rgba(240,216,197,.75);
      font-size:14px;
      color:#49352E;
    }
    .strip-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:24px;
      flex-wrap:wrap;
      padding:6px 0;
    }
    .strip-item{
      display:inline-flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .strip-item i{color:var(--promo-red)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,250,245,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(240,216,197,.85);
      box-shadow:0 8px 22px rgba(61,35,20,.04);
    }
    .nav-wrap{
      height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      position:relative;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:900;
      color:var(--ink);
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      display:grid;
      place-items:center;
      box-shadow:0 12px 28px rgba(242,59,46,.24);
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      inset:auto 8px;
      height:3px;
      border-radius:99px;
      background:rgba(255,255,255,.9);
      box-shadow:0 8px 0 rgba(255,255,255,.7),0 -8px 0 rgba(255,255,255,.7);
    }
    .brand-text{
      font-size:18px;
      line-height:1.2;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:290px;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
      margin-left:auto;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:44px;
      padding:10px 16px;
      border-radius:999px;
      font-weight:700;
      color:#3E2E27;
    }
    .nav-link:hover,.nav-link:focus,.nav-link.active{
      background:#fff2e5;
      color:var(--promo-red);
      outline:none;
    }
    .mega-holder{
      position:relative;
    }
    .mega-trigger{
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 8px 22px rgba(180,70,20,.07);
    }
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:620px;
      padding:18px;
      background:rgba(255,255,255,.98);
      border:1px solid var(--border);
      border-radius:24px;
      box-shadow:var(--shadow-strong);
      opacity:0;
      transform:translateY(10px);
      pointer-events:none;
      transition:var(--ease);
    }
    .mega-holder:hover .mega-panel,
    .mega-holder:focus-within .mega-panel{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mega-card{
      background:linear-gradient(180deg,#fff9f2,#fff);
      border:1px solid var(--border);
      border-radius:18px;
      padding:16px;
      min-height:128px;
      transition:var(--ease);
    }
    .mega-card:hover{
      transform:translateY(-3px);
      border-color:var(--promo-red);
      box-shadow:0 12px 28px rgba(242,59,46,.10);
    }
    .mega-icon{
      width:36px;height:36px;border-radius:12px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(242,59,46,.12),rgba(255,138,31,.18));
      color:var(--promo-red);
      margin-bottom:10px;
    }
    .mega-card strong{display:block;font-size:15px;margin-bottom:5px;color:var(--ink)}
    .mega-card span{display:block;font-size:13px;color:var(--muted);line-height:1.55}
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:10px 18px;
      border-radius:999px;
      font-weight:800;
      color:#fff;
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      box-shadow:0 12px 26px rgba(242,59,46,.20);
    }
    .nav-cta:hover,.nav-cta:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(242,59,46,.28);
    }
    .mobile-toggle{
      display:none;
      border:1px solid var(--border);
      border-radius:14px;
      background:#fff;
      width:46px;height:46px;
      color:var(--promo-red);
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 18px rgba(180,70,20,.08);
    }
    .mobile-menu{
      display:none;
      padding:0 0 18px;
    }
    .mobile-menu-inner{
      background:#fff;
      border:1px solid var(--border);
      border-radius:20px;
      padding:12px;
      box-shadow:var(--shadow);
    }
    .mobile-menu a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:13px 14px;
      border-radius:14px;
      font-weight:800;
    }
    .mobile-menu a.active,.mobile-menu a:hover{
      background:#fff2e5;color:var(--promo-red);
    }
    .section{
      padding:74px 0;
      position:relative;
    }
    .section-tight{padding:48px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      font-weight:800;
      color:var(--promo-red);
      background:linear-gradient(90deg,rgba(242,59,46,.10),rgba(255,138,31,.13));
      border:1px solid rgba(242,59,46,.15);
      margin-bottom:14px;
      font-size:14px;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      gap:28px;
      align-items:flex-end;
      margin-bottom:28px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,3.4vw,40px);
      line-height:1.18;
      font-weight:900;
      color:var(--ink);
      letter-spacing:-.03em;
    }
    .section-desc{
      margin:10px 0 0;
      max-width:680px;
      color:var(--muted);
      font-size:17px;
    }
    .btn-row{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:13px 20px;
      border-radius:999px;
      font-weight:900;
      border:1px solid transparent;
      transition:var(--ease);
      line-height:1.2;
      text-align:center;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      box-shadow:0 16px 30px rgba(242,59,46,.22);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 22px 42px rgba(242,59,46,.30);
    }
    .btn-secondary{
      color:var(--promo-red);
      background:#fff;
      border-color:var(--border-strong);
      box-shadow:0 10px 22px rgba(180,70,20,.08);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:var(--promo-red-dark);
      background:#fff0e2;
      transform:translateY(-2px);
    }
    .btn:focus,.nav-link:focus,.mobile-toggle:focus,input:focus{
      outline:3px solid rgba(242,59,46,.20);
      outline-offset:2px;
    }
    .hero{
      padding:54px 0 34px;
      background:
        radial-gradient(circle at 20% 10%,rgba(255,138,31,.20),transparent 30%),
        radial-gradient(circle at 80% 30%,rgba(242,59,46,.13),transparent 28%),
        linear-gradient(180deg,#fff7ef,#fffaf7 72%,transparent);
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      left:0;right:0;top:118px;
      height:120px;
      background:
        repeating-linear-gradient(90deg,transparent 0 18px,rgba(242,59,46,.10) 18px 20px,transparent 20px 35px);
      mask-image:linear-gradient(90deg,transparent,black 20%,black 80%,transparent);
      opacity:.55;
      pointer-events:none;
    }
    .hero-panel{
      position:relative;
      z-index:1;
      border:1px solid var(--border);
      border-radius:34px;
      background:rgba(255,255,255,.78);
      box-shadow:var(--shadow);
      padding:38px;
      overflow:hidden;
    }
    .hero-panel:after{
      content:"会员价";
      position:absolute;
      right:26px;
      top:24px;
      width:92px;
      height:92px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      transform:rotate(12deg);
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      box-shadow:0 18px 34px rgba(242,59,46,.22);
    }
    .hero-center{
      max-width:900px;
      margin:0 auto;
      text-align:center;
      padding:34px 0 18px;
    }
    .hero h1{
      margin:0 auto 18px;
      max-width:860px;
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      font-weight:950;
      letter-spacing:-.045em;
      color:var(--ink);
    }
    .hero h1 .grad{
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .hero-intro{
      max-width:780px;
      margin:0 auto 24px;
      color:#5F4B42;
      font-size:18px;
      line-height:1.85;
    }
    .search-stage{
      max-width:760px;
      margin:26px auto 20px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:999px;
      padding:8px;
      display:flex;
      align-items:center;
      gap:10px;
      box-shadow:0 18px 42px rgba(180,70,20,.12);
    }
    .search-stage i{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      flex:0 0 auto;
    }
    .search-stage input{
      flex:1;
      border:0;
      box-shadow:none;
      margin:0;
      height:46px;
      min-width:0;
      color:var(--ink);
      background:transparent;
      padding:0 8px;
      font-weight:700;
    }
    .search-stage input::placeholder{color:#9B8275}
    .search-stage .btn{
      min-height:46px;
      padding:12px 18px;
      flex:0 0 auto;
    }
    .quick-pills{
      display:flex;
      justify-content:center;
      gap:10px;
      flex-wrap:wrap;
      margin:18px auto 0;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 13px;
      border-radius:999px;
      color:#5C4338;
      background:#fff9f2;
      border:1px solid var(--border);
      font-weight:800;
      font-size:14px;
    }
    .pill:hover{border-color:var(--promo-red);background:#fff1e2;color:var(--promo-red)}
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      max-width:760px;
      margin:26px auto 0;
    }
    .stat-card{
      background:linear-gradient(180deg,#fff,#fff8f0);
      border:1px solid var(--border);
      border-radius:22px;
      padding:16px;
      text-align:left;
    }
    .stat-num{
      display:block;
      font-size:26px;
      font-weight:950;
      line-height:1;
      color:var(--promo-red);
    }
    .stat-card span:last-child{
      display:block;
      margin-top:7px;
      color:var(--muted);
      font-weight:700;
      font-size:14px;
    }
    .trust-bar{
      padding:22px 0 54px;
    }
    .trust-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .trust-item{
      background:#fff;
      border:1px solid var(--border);
      border-radius:20px;
      padding:18px;
      display:flex;
      align-items:center;
      gap:13px;
      box-shadow:0 10px 24px rgba(180,70,20,.07);
    }
    .trust-item i{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      color:var(--promo-red);
      background:#fff0e4;
      flex:0 0 auto;
      font-size:18px;
    }
    .trust-item strong{display:block;line-height:1.25}
    .trust-item small{display:block;color:var(--muted);margin-top:3px}
    .latest-wrap{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .coupon-card{
      background:linear-gradient(135deg,#2A1712,#4A2118 55%,#7A2A19);
      border-radius:30px;
      color:#fff;
      padding:30px;
      position:relative;
      overflow:hidden;
      min-height:340px;
      box-shadow:var(--shadow-strong);
    }
    .coupon-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 15% 20%,rgba(255,138,31,.34),transparent 28%),
        repeating-linear-gradient(90deg,transparent 0 20px,rgba(255,255,255,.08) 20px 22px,transparent 22px 36px);
      opacity:.8;
    }
    .coupon-inner{position:relative;z-index:1}
    .coupon-tag{
      display:inline-flex;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      font-weight:900;
      margin-bottom:16px;
    }
    .coupon-card h2{
      font-size:clamp(28px,3.4vw,42px);
      line-height:1.15;
      margin:0 0 12px;
      font-weight:950;
    }
    .coupon-card p{color:rgba(255,255,255,.82);margin:0 0 22px;max-width:590px}
    .price-line{
      display:flex;
      align-items:flex-end;
      gap:10px;
      margin:12px 0 20px;
    }
    .price-line b{
      font-size:54px;
      line-height:.9;
      color:#fff;
      letter-spacing:-.04em;
    }
    .price-line span{color:#FFD8B7;font-weight:800}
    .news-list-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:30px;
      padding:24px;
      box-shadow:var(--shadow);
    }
    .news-list-card h3{margin:0 0 16px;font-size:23px;font-weight:900}
    .link-list{
      margin:0;
      padding:0;
      list-style:none;
    }
    .link-list li{
      border-top:1px dashed var(--border);
    }
    .link-list li:first-child{border-top:0}
    .link-list a{
      display:grid;
      grid-template-columns:auto 1fr auto;
      align-items:center;
      gap:12px;
      padding:14px 0;
    }
    .date-badge{
      display:inline-flex;
      min-width:58px;
      justify-content:center;
      padding:5px 9px;
      border-radius:999px;
      background:#fff0e4;
      color:var(--promo-red);
      font-weight:900;
      font-size:12px;
    }
    .link-title{
      color:#3F302A;
      font-weight:800;
      line-height:1.45;
    }
    .link-list a:hover .link-title{color:var(--promo-red)}
    .answer-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:start;
    }
    .answer-panel{
      background:linear-gradient(180deg,#fff,#fff8f1);
      border:1px solid var(--border);
      border-radius:30px;
      padding:28px;
      box-shadow:var(--shadow);
      position:sticky;
      top:102px;
    }
    .answer-panel ul{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .answer-panel li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#5C4A41;
      font-weight:700;
    }
    .answer-panel li i{color:var(--promo-red);margin-top:5px}
    .accordion{
      background:transparent;
      border:0;
      margin:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--border);
      border-radius:20px;
      background:#fff;
      overflow:hidden;
      box-shadow:0 10px 24px rgba(180,70,20,.06);
      transition:var(--ease);
    }
    .accordion-item.is-active{
      border-color:var(--promo-red);
      box-shadow:0 18px 38px rgba(242,59,46,.10);
    }
    .accordion-title{
      border:0;
      padding:20px 54px 20px 22px;
      color:var(--ink);
      font-weight:900;
      font-size:17px;
      line-height:1.45;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{background:#fff7ef;color:var(--promo-red)}
    .accordion-title:before{right:22px;color:var(--promo-red);font-size:22px}
    .accordion-content{
      border:0;
      padding:0 22px 20px;
      color:var(--muted);
      line-height:1.8;
      background:#fff;
    }
    .benefit-table-wrap{
      background:#fff;
      border:1px solid var(--border);
      border-radius:30px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .benefit-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      margin:0;
    }
    .benefit-table th,.benefit-table td{
      border-bottom:1px solid var(--border);
      border-right:1px solid var(--border);
      padding:18px;
      text-align:center;
      vertical-align:middle;
    }
    .benefit-table th:first-child,.benefit-table td:first-child{text-align:left}
    .benefit-table th:last-child,.benefit-table td:last-child{border-right:0}
    .benefit-table tr:last-child td{border-bottom:0}
    .benefit-table thead th{
      background:#fff6ec;
      color:var(--ink);
      font-weight:950;
    }
    .plan-name{
      display:block;
      font-size:20px;
      margin-bottom:8px;
    }
    .plan-price{
      display:inline-flex;
      align-items:flex-end;
      gap:3px;
      color:var(--promo-red);
      font-weight:950;
    }
    .plan-price b{font-size:36px;line-height:1}
    .recommend{
      display:inline-flex;
      padding:4px 9px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      color:#fff;
      font-size:12px;
      font-weight:900;
      margin-left:6px;
    }
    .check{color:var(--success);font-weight:950}
    .dash{color:#B69A8A}
    .mobile-plans{display:none}
    .level-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
      align-items:end;
    }
    .level-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:30px;
      padding:26px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
      transition:var(--ease);
    }
    .level-card:before{
      content:"";
      position:absolute;
      left:24px;right:24px;top:18px;
      height:34px;
      background:repeating-linear-gradient(90deg,rgba(242,59,46,.18) 0 4px,transparent 4px 12px);
      opacity:.5;
      border-radius:999px;
    }
    .level-card:hover{
      transform:translateY(-5px);
      border-color:var(--promo-red);
      box-shadow:var(--shadow-strong);
    }
    .level-card.featured{
      min-height:420px;
      background:linear-gradient(180deg,#fff,#fff3e6);
      border-color:rgba(242,59,46,.55);
    }
    .corner{
      position:absolute;
      right:18px;
      top:18px;
      padding:6px 10px;
      border-radius:999px;
      color:#fff;
      background:linear-gradient(135deg,var(--promo-red),var(--promo-orange));
      font-weight:900;
      font-size:12px;
    }
    .level-content{position:relative;z-index:1;padding-top:42px}
    .level-card h3{font-size:24px;margin:0 0 8px;font-weight:950}
    .level-card p{color:var(--muted);margin:0 0 18px}
    .big-price{
      font-size:48px;
      font-weight:950;
      line-height:1;
      color:var(--promo-red);
      margin:4px 0 18px;
    }
    .level-list{
      list-style:none;
      padding:0;margin:0 0 22px;
      display:grid;
      gap:10px;
    }
    .level-list li{
      display:flex;
      gap:10px;
      color:#4D3E37;
      font-weight:700;
    }
    .level-list i{color:var(--promo-red);margin-top:5px}
    .content-wall{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:20px;
      align-items:stretch;
    }
    .feature-entry{
      border-radius:30px;
      background:linear-gradient(135deg,#fff,#fff1e2);
      border:1px solid var(--border);
      padding:30px;
      box-shadow:var(--shadow);
      min-height:390px;
      position:relative;
      overflow:hidden;
    }
    .feature-entry:after{
      content:"";
      position:absolute;
      right:-60px;
      bottom:-60px;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(242,59,46,.18),transparent 66%);
    }
    .entry-tag,.small-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 10px;
      border-radius:999px;
      font-weight:900;
      font-size:13px;
      background:var(--promo-red);
      color:#fff;
    }
    .feature-entry h3{
      font-size:34px;
      line-height:1.18;
      margin:18px 0 12px;
      font-weight:950;
    }
    .feature-entry p{color:var(--muted);font-size:17px;margin:0 0 22px}
    .entry-meta{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin:0 0 26px;
    }
    .entry-meta span{
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:#5D4B42;
      font-weight:800;
      font-size:14px;
    }
    .mini-entry-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .mini-entry{
      background:#fff;
      border:1px solid var(--border);
      border-radius:24px;
      padding:20px;
      min-height:188px;
      box-shadow:0 10px 24px rgba(180,70,20,.07);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .mini-entry:after{
      content:"";
      position:absolute;
      left:20px;
      right:20px;
      bottom:16px;
      height:12px;
      background:repeating-linear-gradient(90deg,rgba(242,59,46,.22) 0 3px,transparent 3px 10px);
      border-radius:999px;
    }
    .mini-entry:hover{
      transform:translateY(-4px);
      border-color:var(--promo-red);
      box-shadow:var(--shadow);
    }
    .mini-entry h4{margin:12px 0 7px;font-size:19px;font-weight:950}
    .mini-entry p{margin:0;color:var(--muted);line-height:1.65}
    .info-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
    }
    .article-list,.side-reco,.safety-card,.app-card,.final-cta{
      background:#fff;
      border:1px solid var(--border);
      border-radius:30px;
      box-shadow:var(--shadow);
    }
    .article-list{padding:10px 24px}
    .article-row{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px 0;
      border-top:1px dashed var(--border);
    }
    .article-row:first-child{border-top:0}
    .article-row h3{
      margin:0 0 4px;
      font-size:18px;
      font-weight:950;
    }
    .article-row p{margin:0;color:var(--muted);line-height:1.6}
    .article-index{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:#fff0e4;
      color:var(--promo-red);
      font-weight:950;
    }
    .side-reco{
      padding:24px;
      background:linear-gradient(180deg,#fff,#fff8f0);
    }
    .side-reco h3{margin:0 0 14px;font-size:23px;font-weight:950}
    .timeline{
      margin:0;
      padding:0;
      list-style:none;
      position:relative;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:12px;
      top:8px;
      bottom:8px;
      width:2px;
      background:linear-gradient(var(--promo-red),var(--promo-orange));
      opacity:.45;
    }
    .timeline li{
      position:relative;
      padding-left:36px;
      margin-bottom:18px;
    }
    .timeline li:last-child{margin-bottom:0}
    .timeline li:before{
      content:"";
      position:absolute;
      left:4px;top:7px;
      width:18px;height:18px;border-radius:50%;
      background:#fff;
      border:5px solid var(--promo-red);
      box-shadow:0 0 0 5px rgba(242,59,46,.10);
    }
    .timeline time{
      display:block;
      color:var(--promo-red);
      font-weight:950;
      margin-bottom:4px;
    }
    .timeline strong{display:block;font-weight:950;color:var(--ink)}
    .timeline span{display:block;color:var(--muted);line-height:1.6}
    .safety-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .safety-card{
      padding:22px;
      transition:var(--ease);
    }
    .safety-card:hover{
      transform:translateY(-4px);
      border-color:var(--promo-red);
      box-shadow:var(--shadow-strong);
    }
    .safety-card i{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      color:var(--promo-red);
      background:#fff0e4;
      font-size:20px;
      margin-bottom:14px;
    }
    .safety-card h3{font-size:20px;margin:0 0 8px;font-weight:950}
    .safety-card p{margin:0;color:var(--muted);line-height:1.7}
    .app-section{
      padding-bottom:84px;
    }
    .app-card{
      padding:30px;
      background:
        radial-gradient(circle at 85% 20%,rgba(255,138,31,.18),transparent 26%),
        linear-gradient(135deg,#fff,#fff4e8);
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      overflow:hidden;
    }
    .app-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .app-points span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:#5B463C;
      font-weight:800;
    }
    .final-cta{
      padding:28px;
      border-radius:34px;
      background:linear-gradient(135deg,#2B1813,#612517 55%,#F23B2E);
      color:#fff;
      display:grid;
      grid-template-columns:1fr auto auto;
      gap:24px;
      align-items:center;
      position:relative;
      overflow:hidden;
    }
    .final-cta:before{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(90deg,transparent 0 18px,rgba(255,255,255,.08) 18px 20px,transparent 20px 34px);
      opacity:.65;
    }
    .final-cta > *{position:relative;z-index:1}
    .final-cta h2{margin:0 0 8px;font-size:30px;font-weight:950;line-height:1.2}
    .final-cta p{margin:0;color:rgba(255,255,255,.82)}
    .final-price{
      text-align:center;
      padding:12px 22px;
      border-radius:24px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.22);
      white-space:nowrap;
    }
    .final-price b{font-size:44px;line-height:1;color:#fff}
    .final-price span{display:block;color:#FFD6B5;font-weight:900}
    .site-footer{
      background:var(--deep);
      color:#F8EDE4;
      padding:56px 0 22px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      left:0;right:0;top:0;
      height:36px;
      background:repeating-linear-gradient(90deg,rgba(255,138,31,.35) 0 4px,transparent 4px 14px);
      opacity:.35;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      padding-top:18px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
      font-weight:950;
      font-size:20px;
    }
    .footer-brand .brand-mark{width:40px;height:40px}
    .footer-desc{color:#CFB8AA;max-width:520px;margin:0}
    .footer-title{font-weight:950;margin:0 0 12px;color:#fff}
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{color:#DCC8BA}
    .footer-links a:hover{color:#FFB16D}
    .footer-bottom{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      color:#BFA79A;
      font-size:14px;
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      .desktop-nav{display:none}
      .mobile-toggle{display:flex}
      .mobile-menu.is-open{display:block}
      .brand-text{max-width:520px}
      .hero-panel{padding:28px}
      .hero-panel:after{width:76px;height:76px;font-size:14px;right:18px;top:18px}
      .latest-wrap,.answer-grid,.content-wall,.info-layout{grid-template-columns:1fr}
      .answer-panel{position:relative;top:auto}
      .trust-grid,.safety-grid{grid-template-columns:repeat(2,1fr)}
      .level-grid{grid-template-columns:1fr}
      .level-card.featured{min-height:auto;order:-1}
      .app-card,.final-cta{grid-template-columns:1fr}
      .final-price{text-align:left;width:max-content;max-width:100%}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:760px){
      body{font-size:15px}
      .top-strip{display:none}
      .nav-wrap{height:68px}
      .brand-mark{width:40px;height:40px}
      .brand-text{max-width:calc(100vw - 120px);font-size:16px}
      .section{padding:54px 0}
      .section-head{display:block}
      .hero{padding-top:30px}
      .hero-panel{border-radius:24px;padding:22px}
      .hero-panel:after{display:none}
      .hero-center{padding:10px 0}
      .hero-intro{font-size:16px}
      .search-stage{border-radius:24px;align-items:stretch;flex-direction:column;padding:12px}
      .search-stage i{display:none}
      .search-stage input{
        width:100%;
        background:#fff8f1;
        border:1px solid var(--border);
        border-radius:16px;
        padding:0 14px;
      }
      .search-stage .btn{width:100%}
      .btn-row{width:100%;justify-content:center}
      .btn{width:100%}
      .hero-stats{grid-template-columns:1fr;gap:10px}
      .trust-grid,.safety-grid,.mini-entry-grid{grid-template-columns:1fr}
      .trust-item{align-items:flex-start}
      .benefit-table-wrap{display:none}
      .mobile-plans{
        display:grid;
        gap:14px;
      }
      .mobile-plan{
        background:#fff;
        border:1px solid var(--border);
        border-radius:24px;
        padding:20px;
        box-shadow:var(--shadow);
      }
      .mobile-plan.reco{border-color:var(--promo-red);background:#fff7ef}
      .mobile-plan h3{margin:0 0 8px;font-weight:950}
      .mobile-plan ul{margin:14px 0 18px;padding:0;list-style:none;display:grid;gap:8px}
      .mobile-plan li{display:flex;gap:9px;color:#59463D;font-weight:700}
      .mobile-plan li i{color:var(--promo-red);margin-top:5px}
      .coupon-card,.news-list-card,.feature-entry,.article-list,.side-reco,.safety-card,.app-card,.final-cta{border-radius:22px}
      .article-row{grid-template-columns:auto 1fr}
      .article-row .btn{grid-column:1 / -1}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .site-container{width:min(calc(100% - 24px),var(--container))}
      .hero h1{font-size:32px}
      .section-title{font-size:27px}
      .coupon-card,.feature-entry,.app-card,.final-cta{padding:22px}
      .price-line b{font-size:44px}
      .big-price{font-size:40px}
      .accordion-title{font-size:16px;padding:18px 46px 18px 18px}
      .accordion-content{padding:0 18px 18px}
      .strip-inner{gap:10px}
    }

/* roulang page: category1 */
:root{
      --color-primary:#F23B2E;
      --color-primary-dark:#C9281F;
      --color-orange:#FF8A1F;
      --color-ink:#1F1A17;
      --color-muted:#76675F;
      --color-soft:#FFF7EF;
      --color-soft-2:#FFF3E6;
      --color-card:#FFFFFF;
      --color-line:#F0D8C5;
      --color-line-2:#F4E4D5;
      --color-dark:#241A16;
      --color-deep:#171210;
      --radius-sm:14px;
      --radius-md:20px;
      --radius-lg:28px;
      --radius-xl:34px;
      --shadow-card:0 16px 45px rgba(180,70,20,.10);
      --shadow-hover:0 22px 58px rgba(180,70,20,.18);
      --shadow-red:0 14px 34px rgba(242,59,46,.24);
      --container:1180px;
      --transition:.22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 8% 8%, rgba(255,138,31,.14), transparent 28%),
        linear-gradient(180deg,#FFF8F1 0%,#FAFAF8 48%,#FFF3E6 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color var(--transition),background var(--transition),border var(--transition),transform var(--transition),box-shadow var(--transition)}
    a:hover,a:focus{color:var(--color-primary)}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    img{max-width:100%;height:auto;display:block}
    .site-container{
      width:min(var(--container), calc(100% - 36px));
      margin-inline:auto;
    }
    .section{
      padding:76px 0;
      position:relative;
    }
    .section.compact{padding:54px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      color:var(--color-primary-dark);
      background:linear-gradient(90deg,rgba(242,59,46,.12),rgba(255,138,31,.12));
      border:1px solid rgba(242,59,46,.14);
      font-weight:800;
      font-size:14px;
      letter-spacing:.02em;
    }
    .section-title{
      margin:14px 0 12px;
      font-size:clamp(28px,4vw,40px);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.02em;
      color:var(--color-ink);
    }
    .section-desc{
      max-width:760px;
      color:var(--color-muted);
      font-size:17px;
      margin:0;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,250,245,.92);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(240,216,197,.82);
      box-shadow:0 10px 30px rgba(80,40,20,.05);
    }
    .nav-wrap{
      height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      font-weight:900;
      color:var(--color-ink);
      letter-spacing:-.03em;
    }
    .brand-text{font-size:20px;white-space:nowrap}
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:50%;
      display:inline-block;
      position:relative;
      flex:0 0 auto;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.78) 0 3px, transparent 3px 7px),
        linear-gradient(135deg,var(--color-primary),var(--color-orange));
      box-shadow:0 10px 24px rgba(242,59,46,.24);
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:10px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,.85);
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .nav-link,.nav-cta{
      min-height:44px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:11px 14px;
      border-radius:999px;
      font-weight:800;
      font-size:15px;
      color:var(--color-ink);
      outline:none;
    }
    .nav-link:hover,.nav-link:focus,.nav-link.active{
      color:var(--color-primary);
      background:rgba(242,59,46,.08);
    }
    .nav-cta{
      margin-left:6px;
      color:#fff;
      padding:12px 18px;
      background:linear-gradient(135deg,var(--color-primary),var(--color-orange));
      box-shadow:var(--shadow-red);
    }
    .nav-cta:hover,.nav-cta:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(242,59,46,.30);
    }
    .mega-holder{position:relative}
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 14px);
      width:620px;
      max-width:calc(100vw - 44px);
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:all var(--transition);
      padding:14px;
      border-radius:24px;
      background:rgba(255,255,255,.97);
      border:1px solid var(--color-line);
      box-shadow:0 24px 70px rgba(80,35,15,.16);
    }
    .mega-holder:hover .mega-panel,.mega-holder:focus-within .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
    }
    .mega-card{
      padding:16px;
      border-radius:18px;
      background:linear-gradient(180deg,#FFF9F2,#fff);
      border:1px solid var(--color-line-2);
      min-height:148px;
    }
    .mega-card:hover,.mega-card:focus{
      transform:translateY(-3px);
      border-color:rgba(242,59,46,.42);
      box-shadow:var(--shadow-card);
    }
    .mega-icon{
      width:38px;
      height:38px;
      border-radius:13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-orange));
      margin-bottom:10px;
    }
    .mega-card strong{display:block;font-size:16px;color:var(--color-ink);margin-bottom:5px}
    .mega-card span:last-child{display:block;color:var(--color-muted);font-size:13px;line-height:1.55}
    .mobile-toggle{
      display:none;
      width:46px;
      height:46px;
      border:1px solid var(--color-line);
      border-radius:16px;
      background:#fff;
      color:var(--color-primary);
      box-shadow:0 10px 22px rgba(180,70,20,.08);
    }
    .mobile-menu{display:none}
    .mobile-menu-inner{
      padding:0 0 16px;
      display:grid;
      gap:10px;
    }
    .mobile-menu-inner a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 16px;
      border:1px solid var(--color-line);
      border-radius:16px;
      background:#fff;
      font-weight:800;
    }
    .mobile-menu-inner a.active{
      color:var(--color-primary);
      background:rgba(242,59,46,.08);
    }

    .category-hero{
      padding:54px 0 36px;
      overflow:hidden;
    }
    .hero-shell{
      position:relative;
      border-radius:var(--radius-xl);
      border:1px solid rgba(240,216,197,.9);
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,243,230,.9)),
        radial-gradient(circle at 85% 15%, rgba(255,138,31,.25), transparent 34%);
      box-shadow:var(--shadow-card);
      padding:34px;
      overflow:hidden;
    }
    .hero-shell:before{
      content:"";
      position:absolute;
      inset:auto -80px -90px auto;
      width:420px;
      height:220px;
      opacity:.16;
      background:repeating-linear-gradient(90deg,var(--color-primary) 0 6px,transparent 6px 16px);
      border-radius:50%;
      transform:rotate(-8deg);
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:30px;
      align-items:center;
      z-index:1;
    }
    .breadcrumb-mini{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:16px;
      color:var(--color-muted);
      font-size:14px;
      font-weight:700;
    }
    .breadcrumb-mini a{color:var(--color-primary-dark)}
    h1{
      margin:0 0 18px;
      font-size:clamp(32px,5vw,54px);
      line-height:1.12;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .hero-copy{
      color:var(--color-muted);
      font-size:18px;
      max-width:690px;
      margin:0 0 22px;
    }
    .hero-actions,.cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }
    .btn{
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      padding:13px 20px;
      font-weight:900;
      border:1px solid transparent;
      outline:none;
      line-height:1.1;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-orange));
      box-shadow:var(--shadow-red);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(242,59,46,.32);
    }
    .btn-secondary{
      color:var(--color-primary-dark);
      background:#fff;
      border-color:var(--color-line);
      box-shadow:0 8px 20px rgba(180,70,20,.07);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:#FFF3E6;
      border-color:rgba(242,59,46,.42);
      transform:translateY(-2px);
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--color-line);
      color:var(--color-muted);
      font-weight:800;
      font-size:14px;
    }
    .mini-tag i{color:var(--color-primary)}
    .preview-cover{
      position:relative;
      border-radius:30px;
      padding:20px;
      color:#fff;
      background:
        radial-gradient(circle at 20% 20%,rgba(255,255,255,.30),transparent 30%),
        linear-gradient(145deg,#2B1A15,#541E18 48%,#F23B2E 100%);
      min-height:390px;
      box-shadow:0 26px 66px rgba(66,20,10,.22);
      overflow:hidden;
    }
    .preview-cover:before{
      content:"";
      position:absolute;
      inset:22px;
      border:1px solid rgba(255,255,255,.18);
      border-radius:24px;
      pointer-events:none;
    }
    .cover-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:14px;
      position:relative;
      z-index:1;
    }
    .cover-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.22);
      font-weight:900;
      backdrop-filter:blur(8px);
    }
    .discount-sticker{
      width:92px;
      height:92px;
      border-radius:50%;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#FFE1B8,#FF8A1F);
      color:#5C1B10;
      font-weight:950;
      box-shadow:0 16px 36px rgba(0,0,0,.18);
      transform:rotate(8deg);
    }
    .discount-sticker strong{font-size:25px;line-height:1}
    .cover-title{
      position:relative;
      z-index:1;
      margin:62px 0 12px;
      font-size:30px;
      line-height:1.22;
      font-weight:950;
    }
    .cover-sub{
      position:relative;
      z-index:1;
      color:rgba(255,255,255,.82);
      max-width:420px;
      margin-bottom:22px;
    }
    .wave-bars{
      position:relative;
      z-index:1;
      height:62px;
      display:flex;
      align-items:center;
      gap:7px;
      margin:16px 0 22px;
    }
    .wave-bars span{
      width:8px;
      border-radius:999px;
      background:linear-gradient(180deg,#fff,rgba(255,255,255,.35));
      opacity:.92;
    }
    .wave-bars span:nth-child(1){height:18px}
    .wave-bars span:nth-child(2){height:38px}
    .wave-bars span:nth-child(3){height:28px}
    .wave-bars span:nth-child(4){height:54px}
    .wave-bars span:nth-child(5){height:34px}
    .wave-bars span:nth-child(6){height:46px}
    .wave-bars span:nth-child(7){height:22px}
    .wave-bars span:nth-child(8){height:58px}
    .wave-bars span:nth-child(9){height:30px}
    .countdown{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:14px;
    }
    .count-item{
      border-radius:18px;
      padding:12px;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.18);
      text-align:center;
    }
    .count-item strong{
      display:block;
      font-size:28px;
      line-height:1;
      color:#fff;
    }
    .count-item span{
      display:block;
      font-size:12px;
      color:rgba(255,255,255,.72);
      margin-top:5px;
    }

    .assurance-strip{
      margin-top:24px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .assurance-item{
      padding:15px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--color-line);
      display:flex;
      align-items:center;
      gap:12px;
      box-shadow:0 10px 24px rgba(180,70,20,.06);
    }
    .assurance-icon{
      width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;
      border-radius:15px;color:var(--color-primary);background:rgba(242,59,46,.09);
      flex:0 0 auto;
    }
    .assurance-item strong{display:block;line-height:1.25}
    .assurance-item span{display:block;color:var(--color-muted);font-size:13px;line-height:1.4;margin-top:3px}

    .filter-bar{
      position:sticky;
      top:78px;
      z-index:20;
      padding:12px 0;
      background:rgba(255,247,239,.86);
      backdrop-filter:blur(12px);
      border-block:1px solid rgba(240,216,197,.75);
    }
    .pill-scroll{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
      padding:2px 0;
    }
    .pill-scroll::-webkit-scrollbar{display:none}
    .pill{
      flex:0 0 auto;
      border:none;
      padding:10px 16px;
      border-radius:999px;
      background:#fff;
      color:var(--color-muted);
      font-weight:900;
      border:1px solid var(--color-line);
      transition:all var(--transition);
    }
    .pill.active,.pill:hover,.pill:focus{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-orange));
      border-color:transparent;
      box-shadow:0 12px 26px rgba(242,59,46,.18);
    }

    .content-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
      align-items:stretch;
      margin-top:30px;
    }
    .feature-card,.entry-card,.plan-card,.info-card{
      position:relative;
      background:var(--color-card);
      border:1px solid var(--color-line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-card);
      overflow:hidden;
      transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition);
    }
    .feature-card:hover,.entry-card:hover,.plan-card:hover,.info-card:hover{
      transform:translateY(-4px);
      border-color:rgba(242,59,46,.45);
      box-shadow:var(--shadow-hover);
    }
    .feature-card{
      padding:28px;
      min-height:100%;
      background:
        linear-gradient(180deg,#fff,#FFF9F2),
        radial-gradient(circle at 90% 0%,rgba(255,138,31,.15),transparent 32%);
    }
    .card-label,.badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border-radius:999px;
      font-weight:900;
      font-size:13px;
    }
    .card-label{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-orange));
      box-shadow:0 10px 20px rgba(242,59,46,.18);
    }
    .badge{
      color:var(--color-primary-dark);
      background:rgba(242,59,46,.09);
      border:1px solid rgba(242,59,46,.14);
    }
    .feature-card h2{
      margin:20px 0 12px;
      font-size:34px;
      line-height:1.18;
      font-weight:950;
    }
    .feature-card p{color:var(--color-muted);font-size:17px;margin:0 0 18px}
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:18px 0 22px;
    }
    .meta{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--color-muted);
      font-weight:800;
      font-size:14px;
    }
    .meta i{color:var(--color-orange)}
    .wave-line{
      height:20px;
      margin:22px 0;
      background:repeating-linear-gradient(90deg,rgba(242,59,46,.36) 0 9px, transparent 9px 18px);
      mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent);
      opacity:.5;
      border-radius:999px;
    }
    .small-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }
    .entry-card{
      padding:20px;
      min-height:224px;
      display:flex;
      flex-direction:column;
    }
    .entry-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .entry-card h3{
      font-size:21px;
      line-height:1.25;
      margin:0 0 10px;
      font-weight:900;
    }
    .entry-card p{
      color:var(--color-muted);
      margin:0 0 16px;
      font-size:15px;
      line-height:1.65;
      flex:1;
    }
    .entry-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-top:14px;
      border-top:1px dashed var(--color-line);
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--color-primary-dark);
      font-weight:950;
    }
    .text-link:hover{gap:10px}

    .coupon-banner{
      margin-top:28px;
      border-radius:30px;
      padding:24px;
      background:
        linear-gradient(135deg,#2A1813,#4A1D18 48%,#F23B2E),
        radial-gradient(circle at 75% 15%,rgba(255,255,255,.2),transparent 28%);
      color:#fff;
      display:grid;
      grid-template-columns:1fr auto auto;
      gap:24px;
      align-items:center;
      overflow:hidden;
      position:relative;
      box-shadow:0 28px 70px rgba(70,20,10,.22);
    }
    .coupon-banner:before,.coupon-banner:after{
      content:"";
      position:absolute;
      top:50%;
      width:34px;
      height:34px;
      border-radius:50%;
      background:#FFF7EF;
      transform:translateY(-50%);
    }
    .coupon-banner:before{left:-17px}
    .coupon-banner:after{right:-17px}
    .coupon-banner h2{font-size:28px;line-height:1.22;margin:0 0 7px;font-weight:950}
    .coupon-banner p{margin:0;color:rgba(255,255,255,.78)}
    .price-highlight{
      text-align:center;
      padding:10px 20px;
      border-left:1px dashed rgba(255,255,255,.25);
      border-right:1px dashed rgba(255,255,255,.25);
    }
    .price-highlight span{display:block;font-size:13px;color:rgba(255,255,255,.72);font-weight:800}
    .price-highlight strong{
      display:block;
      font-size:46px;
      line-height:1;
      font-weight:950;
      background:linear-gradient(180deg,#fff,#FFD2A1);
      -webkit-background-clip:text;
      color:transparent;
      margin-top:5px;
    }

    .plans-grid{
      margin-top:30px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      align-items:stretch;
    }
    .plan-card{
      padding:24px;
      background:linear-gradient(180deg,#fff,#FFF9F2);
    }
    .plan-card.recommended{
      border-color:rgba(242,59,46,.48);
      transform:translateY(-8px);
    }
    .plan-card.recommended:hover{transform:translateY(-12px)}
    .plan-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
      margin-bottom:18px;
    }
    .plan-card h3{margin:0;font-size:23px;font-weight:950}
    .plan-price{
      margin:12px 0 16px;
      color:var(--color-primary);
      font-size:42px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.03em;
    }
    .plan-price small{
      color:var(--color-muted);
      font-size:14px;
      font-weight:800;
      letter-spacing:0;
    }
    .check-list{
      margin:0 0 20px;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      gap:9px;
      color:var(--color-muted);
      line-height:1.55;
    }
    .check-list i{color:var(--color-primary);margin-top:5px}

    .steps-wrap{
      margin-top:30px;
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:start;
    }
    .info-card{padding:24px;background:#fff}
    .stat-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:18px;
    }
    .stat{
      padding:16px;
      border-radius:20px;
      background:#FFF9F2;
      border:1px solid var(--color-line-2);
    }
    .stat strong{display:block;font-size:26px;line-height:1;color:var(--color-primary);font-weight:950}
    .stat span{display:block;color:var(--color-muted);font-size:13px;margin-top:6px;font-weight:800}
    .timeline{
      display:grid;
      gap:14px;
    }
    .step{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      padding:18px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-line);
      box-shadow:0 12px 30px rgba(180,70,20,.07);
    }
    .step-no{
      width:54px;height:54px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      color:#fff;font-weight:950;font-size:18px;
      background:linear-gradient(135deg,var(--color-primary),var(--color-orange));
      box-shadow:0 12px 26px rgba(242,59,46,.2);
    }
    .step h3{font-size:20px;margin:0 0 5px;font-weight:950}
    .step p{margin:0;color:var(--color-muted);line-height:1.65}

    .accordion{
      margin-top:30px;
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--color-line);
      border-radius:20px;
      background:#fff;
      overflow:hidden;
      box-shadow:0 10px 24px rgba(180,70,20,.06);
    }
    .accordion-title{
      border:none;
      color:var(--color-ink);
      font-weight:950;
      font-size:17px;
      padding:20px 50px 20px 22px;
      background:#fff;
    }
    .accordion-title:before{
      color:var(--color-primary);
      font-size:22px;
      margin-top:-13px;
    }
    .accordion-title:hover,.accordion-title:focus{
      color:var(--color-primary);
      background:#FFF9F2;
    }
    .is-active>.accordion-title{
      color:var(--color-primary);
      background:#FFF9F2;
    }
    .accordion-content{
      border:none;
      border-top:1px dashed var(--color-line);
      color:var(--color-muted);
      padding:18px 22px 22px;
      line-height:1.75;
    }

    .final-cta{
      border-radius:34px;
      padding:30px;
      background:
        linear-gradient(135deg,#FFF,#FFF0DF),
        radial-gradient(circle at 90% 15%,rgba(255,138,31,.18),transparent 30%);
      border:1px solid var(--color-line);
      box-shadow:var(--shadow-card);
      display:grid;
      grid-template-columns:1fr auto;
      gap:28px;
      align-items:center;
      overflow:hidden;
      position:relative;
    }
    .final-cta:after{
      content:"";
      position:absolute;
      right:-50px;
      bottom:-70px;
      width:260px;
      height:160px;
      opacity:.12;
      background:repeating-linear-gradient(90deg,var(--color-primary) 0 7px,transparent 7px 16px);
      border-radius:50%;
      transform:rotate(-10deg);
    }
    .final-cta h2{font-size:34px;line-height:1.18;margin:0 0 10px;font-weight:950}
    .final-cta p{margin:0;color:var(--color-muted);max-width:720px}
    .cta-side{
      position:relative;
      z-index:1;
      min-width:250px;
      padding:18px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-line);
      text-align:center;
    }
    .cta-side strong{
      display:block;
      font-size:38px;
      line-height:1;
      color:var(--color-primary);
      font-weight:950;
      margin:8px 0;
    }

    .site-footer{
      background:linear-gradient(180deg,var(--color-dark),var(--color-deep));
      color:rgba(255,255,255,.88);
      padding:58px 0 22px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      left:0;right:0;top:0;height:22px;
      background:repeating-linear-gradient(90deg,rgba(242,59,46,.65) 0 10px,transparent 10px 20px);
      opacity:.28;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr;
      gap:34px;
      padding-top:14px;
    }
    .footer-brand{font-size:20px;color:#fff;margin-bottom:14px}
    .footer-desc{color:rgba(255,255,255,.68);max-width:520px;margin:0;line-height:1.75}
    .footer-title{
      color:#fff;
      font-size:17px;
      font-weight:950;
      margin:0 0 14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{color:rgba(255,255,255,.66)}
    .footer-links a:hover,.footer-links a:focus{color:#fff}
    .footer-bottom{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.56);
      font-size:14px;
    }

    @media (max-width:1024px){
      .desktop-nav{display:none}
      .mobile-toggle{display:inline-flex;align-items:center;justify-content:center}
      .mobile-menu.is-open{display:block}
      .nav-wrap{height:72px}
      .hero-grid,.content-layout,.steps-wrap,.final-cta{grid-template-columns:1fr}
      .preview-cover{min-height:340px}
      .assurance-strip,.plans-grid{grid-template-columns:repeat(2,1fr)}
      .coupon-banner{grid-template-columns:1fr;gap:18px}
      .price-highlight{
        border-left:none;
        border-right:none;
        border-top:1px dashed rgba(255,255,255,.25);
        border-bottom:1px dashed rgba(255,255,255,.25);
      }
      .plan-card.recommended{transform:none}
      .plan-card.recommended:hover{transform:translateY(-4px)}
      .filter-bar{top:72px}
    }
    @media (max-width:720px){
      .site-container{width:min(100% - 24px,var(--container))}
      .section{padding:56px 0}
      .category-hero{padding:28px 0 24px}
      .hero-shell{padding:22px;border-radius:26px}
      .hero-copy{font-size:16px}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .assurance-strip,.small-grid,.plans-grid,.stat-grid{grid-template-columns:1fr}
      .assurance-item{align-items:flex-start}
      .feature-card h2,.final-cta h2{font-size:28px}
      .cover-title{margin-top:42px;font-size:26px}
      .countdown{grid-template-columns:repeat(3,1fr)}
      .count-item strong{font-size:23px}
      .coupon-banner{padding:22px;border-radius:26px}
      .step{grid-template-columns:46px 1fr;padding:15px}
      .step-no{width:46px;height:46px;border-radius:16px}
      .footer-grid{grid-template-columns:1fr;gap:24px}
      .footer-bottom{display:grid}
      .brand-text{font-size:17px}
      .brand-mark{width:38px;height:38px}
    }
    @media (max-width:520px){
      h1{font-size:34px}
      .preview-cover{padding:17px;min-height:320px;border-radius:24px}
      .discount-sticker{width:78px;height:78px}
      .discount-sticker strong{font-size:21px}
      .countdown{gap:7px}
      .count-item{padding:10px 6px}
      .entry-foot{align-items:flex-start;flex-direction:column}
      .final-cta{padding:22px;border-radius:26px}
      .cta-side{min-width:0;width:100%}
    }
