/* roulang page: index */
:root {
      --promo-red: #E83A2F;
      --promo-red-dark: #C92820;
      --promo-orange: #FF7A1A;
      --gold: #C78A32;
      --ink: #1F1B18;
      --muted: #6F5B50;
      --soft: #FFF7EF;
      --soft-2: #FFF1E4;
      --paper: #FAFAF8;
      --line: #F1D7C8;
      --deep: #231816;
      --ok: #16A34A;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --shadow-sm: 0 10px 30px rgba(64, 31, 20, .08);
      --shadow-md: 0 18px 50px rgba(232, 58, 47, .16);
      --shadow-nav: 0 14px 40px rgba(57, 29, 20, .12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.7;
      color: var(--ink);
      background:
        radial-gradient(circle at 12% 10%, rgba(255, 122, 26, .12), transparent 30%),
        linear-gradient(180deg, #fff8f1 0%, #fffaf5 44%, #fafaf8 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    input,
    select {
      width: 100%;
      min-height: 50px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255, 255, 255, .92);
      padding: 0 14px;
      color: var(--ink);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    input:focus,
    select:focus {
      border-color: var(--promo-red);
      box-shadow: 0 0 0 4px rgba(232, 58, 47, .12);
      background: #fff;
    }

    .site-shell {
      min-height: 100vh;
    }

    .container-wrap {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .floating-header {
      position: sticky;
      top: 16px;
      z-index: 50;
      padding: 12px 0;
    }

    .pill-nav {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(241, 215, 200, .88);
      border-radius: 999px;
      background: rgba(255, 250, 245, .88);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow-nav);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      color: var(--ink);
      white-space: nowrap;
    }

    .brand-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--promo-red), var(--promo-orange));
      box-shadow: 0 10px 24px rgba(232, 58, 47, .24);
      flex: 0 0 auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-link {
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      background: #fff0e5;
      color: var(--promo-red);
    }

    .nav-cta,
    .btn-primary,
    .btn-secondary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      border-radius: 999px;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
      cursor: pointer;
      border: 0;
      white-space: nowrap;
    }

    .nav-cta,
    .btn-primary {
      background: linear-gradient(135deg, var(--promo-red), var(--promo-orange));
      color: #fff;
      box-shadow: 0 12px 30px rgba(232, 58, 47, .24);
    }

    .nav-cta {
      padding: 9px 18px;
      min-height: 42px;
      font-size: 14px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
      padding: 13px 22px;
    }

    .btn-primary:hover,
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(232, 58, 47, .28);
      background: linear-gradient(135deg, var(--promo-red-dark), #F05E12);
    }

    .btn-secondary {
      border: 1px solid rgba(232, 58, 47, .26);
      color: var(--promo-red);
      background: rgba(255, 255, 255, .88);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
      background: #fff4ea;
    }

    .btn-ghost {
      background: #fff0e5;
      color: var(--ink);
      border: 1px solid rgba(241, 215, 200, .92);
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      color: var(--promo-red);
      box-shadow: var(--shadow-sm);
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: var(--promo-red);
      background: #fff1e8;
      border: 1px solid var(--line);
    }

    .hero {
      padding: 42px 0 64px;
    }

    .creator-hero {
      position: relative;
      overflow: hidden;
      min-height: 560px;
      border-radius: 34px;
      padding: 34px;
      background:
        linear-gradient(120deg, rgba(35, 24, 22, .84), rgba(95, 38, 24, .62)),
        linear-gradient(135deg, #4C241B 0%, #E83A2F 50%, #FFB55C 100%);
      box-shadow: 0 34px 70px rgba(61, 24, 16, .24);
    }

    .creator-hero::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 28px;
      pointer-events: none;
    }

    .creator-pattern {
      position: absolute;
      inset: auto -70px -100px auto;
      width: 520px;
      height: 320px;
      border-radius: 42px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .2), transparent),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 1px, transparent 1px 46px);
      transform: rotate(-8deg);
      opacity: .72;
    }

    .avatar {
      width: 86px;
      height: 86px;
      border-radius: 28px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 34px;
      font-weight: 900;
      background: linear-gradient(135deg, #ffefe2, #ff7a1a 45%, #e83a2f);
      border: 4px solid rgba(255, 255, 255, .6);
      box-shadow: 0 20px 38px rgba(0, 0, 0, .18);
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      max-width: 760px;
      color: #fff;
    }

    .hero h1 {
      margin: 20px 0 18px;
      max-width: 780px;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 720px;
      color: rgba(255, 247, 239, .9);
      font-size: 17px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 24px 0 30px;
    }

    .data-badge {
      min-height: 72px;
      min-width: 150px;
      padding: 12px 16px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, .2);
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(12px);
    }

    .data-badge strong {
      display: block;
      color: #fff;
      font-size: 24px;
      line-height: 1.15;
    }

    .data-badge span {
      color: rgba(255, 247, 239, .82);
      font-size: 13px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-actions .btn-secondary {
      background: rgba(255, 255, 255, .94);
    }

    .hero-ticket {
      position: absolute;
      right: 34px;
      bottom: 34px;
      width: min(380px, calc(100% - 68px));
      padding: 22px;
      border-radius: 26px;
      color: var(--ink);
      background: rgba(255, 250, 245, .94);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
      z-index: 1;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      color: var(--promo-red);
      font-weight: 900;
    }

    .price strong {
      font-size: 42px;
      line-height: 1;
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-title {
      margin: 0 0 8px;
      font-size: clamp(26px, 3.2vw, 36px);
      line-height: 1.2;
      font-weight: 900;
      color: var(--ink);
    }

    .section-desc {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 5px 11px;
      border-radius: 999px;
      color: var(--promo-red);
      background: #fff0e5;
      border: 1px solid rgba(232, 58, 47, .14);
      font-size: 13px;
      font-weight: 800;
    }

    .coupon-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .coupon-card {
      position: relative;
      min-height: 245px;
      padding: 22px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .coupon-card:hover,
    .level-card:hover,
    .preview-card:hover,
    .recommend-card:hover {
      transform: translateY(-4px);
      border-color: rgba(232, 58, 47, .28);
      box-shadow: var(--shadow-md);
    }

    .coupon-card::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -18px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--soft);
      border: 1px solid var(--line);
    }

    .coupon-value {
      margin: 16px 0 12px;
      color: var(--promo-red);
      font-weight: 900;
      font-size: 34px;
      line-height: 1.1;
    }

    .coupon-card p,
    .level-card p,
    .preview-card p,
    .recommend-card p {
      color: var(--muted);
      margin: 0;
    }

    .rule-band {
      border-radius: 28px;
      background: var(--deep);
      color: #fff;
      padding: 30px;
      box-shadow: 0 24px 60px rgba(35, 24, 22, .22);
    }

    .rule-list {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .rule-item,
    .guard-item {
      min-height: 132px;
      border-radius: 18px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .07);
    }

    .rule-item strong,
    .guard-item strong {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
    }

    .rule-item span,
    .guard-item span {
      color: rgba(255, 247, 239, .76);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.35fr .65fr;
      gap: 22px;
    }

    .news-list {
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .76);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .news-link {
      display: grid;
      grid-template-columns: 108px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
      transition: background .2s ease;
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover {
      background: #fff5eb;
    }

    .news-link time {
      color: var(--promo-red);
      font-weight: 900;
      font-size: 14px;
    }

    .news-link strong {
      display: block;
      font-size: 17px;
      line-height: 1.45;
    }

    .news-link span {
      color: var(--muted);
      font-size: 14px;
    }

    .side-panel {
      border-radius: 24px;
      padding: 22px;
      background: linear-gradient(160deg, #fff 0%, #fff0e2 100%);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .compare-wrap {
      overflow-x: auto;
      padding-bottom: 6px;
    }

    .compare-table {
      width: 100%;
      min-width: 820px;
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .compare-table th,
    .compare-table td {
      padding: 18px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: middle;
    }

    .compare-table th {
      background: #fff1e4;
      color: var(--ink);
      font-weight: 900;
    }

    .compare-table tr:last-child td {
      border-bottom: 0;
    }

    .compare-table td:first-child,
    .compare-table th:first-child {
      position: sticky;
      left: 0;
      z-index: 1;
      background: #fffaf5;
      font-weight: 800;
    }

    .check {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      color: #fff;
      background: var(--ok);
      font-size: 14px;
      font-weight: 900;
    }

    .level-grid,
    .preview-grid,
    .recommend-track {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .level-card,
    .preview-card,
    .recommend-card,
    .faq-item {
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .82);
      box-shadow: var(--shadow-sm);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .level-card {
      min-height: 270px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .level-card.featured {
      border: 2px solid rgba(232, 58, 47, .45);
      background: linear-gradient(180deg, #fff 0%, #fff0e5 100%);
    }

    .level-name {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .level-name h3,
    .preview-card h3,
    .recommend-card h3 {
      margin: 0;
      font-size: 21px;
      font-weight: 900;
    }

    .preview-card {
      min-height: 260px;
      overflow: hidden;
    }

    .cover-block {
      min-height: 118px;
      padding: 18px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(232, 58, 47, .9), rgba(255, 122, 26, .72)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .12) 0 2px, transparent 2px 18px);
      color: #fff;
    }

    .preview-body,
    .recommend-card {
      padding: 20px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0;
    }

    .mini-tag {
      border-radius: 999px;
      padding: 5px 9px;
      color: #7D3C18;
      background: #fff0e2;
      border: 1px solid rgba(255, 122, 26, .18);
      font-size: 12px;
      font-weight: 800;
    }

    .guard-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .guard-light {
      min-height: 92px;
      border-radius: 18px;
      padding: 16px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
    }

    .guard-light i {
      display: inline-grid;
      place-items: center;
      width: 32px;
      height: 32px;
      border-radius: 10px;
      color: #fff;
      background: linear-gradient(135deg, var(--promo-red), var(--promo-orange));
      font-style: normal;
      margin-bottom: 8px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 17px 20px;
      border: 0;
      background: transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: left;
      cursor: pointer;
      color: var(--ink);
      font-weight: 900;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease, padding .28s ease;
      color: var(--muted);
      padding: 0 20px;
    }

    .faq-item.open {
      background: #fff6ec;
      border-color: rgba(232, 58, 47, .18);
    }

    .faq-item.open .faq-answer {
      max-height: 220px;
      padding: 0 20px 18px;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: center;
      border-radius: 32px;
      padding: 32px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(232, 58, 47, .95), rgba(255, 122, 26, .88)),
        linear-gradient(90deg, rgba(35, 24, 22, .18), transparent);
      box-shadow: 0 28px 70px rgba(232, 58, 47, .26);
    }

    .open-form {
      border-radius: 24px;
      padding: 22px;
      background: rgba(255, 250, 245, .95);
      color: var(--ink);
    }

    .form-grid {
      display: grid;
      gap: 12px;
    }

    .agree-line {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .agree-line input {
      width: 18px;
      min-height: 18px;
      height: 18px;
      margin-top: 3px;
      accent-color: var(--promo-red);
    }

    .footer {
      padding: 52px 0 34px;
      color: rgba(255, 247, 239, .82);
      background: var(--deep);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
    }

    .footer a {
      color: rgba(255, 247, 239, .82);
      transition: color .2s ease;
    }

    .footer a:hover {
      color: #fff;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .copyright {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      font-size: 13px;
      color: rgba(255, 247, 239, .62);
    }

    @media (max-width: 1024px) {
      .hero-ticket {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 28px;
        width: 100%;
      }

      .creator-hero {
        min-height: auto;
      }

      .coupon-grid,
      .level-grid,
      .preview-grid,
      .recommend-track,
      .rule-list,
      .guard-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .news-layout,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 64px 0;
      }
    }

    @media (max-width: 768px) {
      .container-wrap {
        width: min(100% - 28px, 1180px);
      }

      .floating-header {
        top: 10px;
      }

      .pill-nav {
        width: calc(100% - 20px);
        padding: 8px 8px 8px 12px;
        border-radius: 26px;
      }

      .brand-mark span {
        max-width: 174px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .menu-button {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 22px;
        border: 1px solid var(--line);
        background: rgba(255, 250, 245, .98);
        box-shadow: var(--shadow-nav);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
      }

      .nav-cta {
        display: none;
      }

      .hero {
        padding-top: 24px;
      }

      .creator-hero {
        padding: 24px;
        border-radius: 26px;
      }

      .hero h1 {
        font-size: clamp(30px, 9vw, 38px);
      }

      .hero-lead {
        font-size: 15px;
      }

      .data-badge {
        flex: 1 1 140px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions a,
      .hero-actions button {
        width: 100%;
      }

      .section-head {
        display: block;
      }

      .coupon-grid,
      .level-grid,
      .preview-grid,
      .recommend-track,
      .rule-list,
      .guard-strip,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .news-link {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .rule-band,
      .cta-panel {
        padding: 22px;
        border-radius: 24px;
      }
    }

    @media (max-width: 520px) {
      .brand-icon {
        width: 32px;
        height: 32px;
      }

      .brand-mark {
        font-size: 14px;
      }

      .creator-hero {
        padding: 20px;
      }

      .avatar {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        font-size: 28px;
      }

      .hero-ticket {
        width: 100%;
        padding: 18px;
      }

      .price strong {
        font-size: 36px;
      }

      .section {
        padding: 52px 0;
      }

      .coupon-value {
        font-size: 30px;
      }
    }

/* roulang page: category2 */
:root {
      --promo: #E83A2F;
      --promo-dark: #C92B22;
      --orange: #FF7A1A;
      --ink: #1F1B18;
      --muted: #6F625C;
      --soft: #FFF7EF;
      --cream: #FFF1E4;
      --paper: #FAFAF8;
      --line: #F1D7C8;
      --gold: #C78A32;
      --green: #16A34A;
      --deep: #231816;
      --shadow: 0 18px 50px rgba(120, 55, 28, .16);
      --shadow-soft: 0 12px 32px rgba(120, 55, 28, .10);
      --radius: 20px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--ink);
      line-height: 1.7;
      background:
        radial-gradient(circle at 18% 4%, rgba(255, 122, 26, .16), transparent 34%),
        linear-gradient(180deg, #FFF7EF 0%, #FAFAF8 42%, #FFF1E4 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .container-wrap {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .floating-header {
      position: sticky;
      top: 18px;
      z-index: 50;
      padding: 0 20px;
    }

    .pill-nav {
      width: min(var(--container), 100%);
      margin: 0 auto;
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 18px;
      border: 1px solid rgba(241, 215, 200, .9);
      border-radius: 999px;
      background: rgba(255, 250, 245, .88);
      box-shadow: 0 14px 36px rgba(69, 36, 22, .12);
      backdrop-filter: blur(18px);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--deep);
      white-space: nowrap;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--promo), var(--orange));
      box-shadow: 0 10px 22px rgba(232, 58, 47, .26);
      font-weight: 800;
      line-height: 1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255, 241, 228, .7);
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      color: #5B4C45;
      font-weight: 700;
      font-size: 15px;
      transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      background: #fff;
      color: var(--promo);
      transform: translateY(-1px);
      outline: none;
    }

    .nav-link.active {
      background: var(--promo);
      color: #fff;
      box-shadow: 0 10px 22px rgba(232, 58, 47, .22);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--promo), var(--orange));
      box-shadow: 0 12px 26px rgba(232, 58, 47, .26);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .nav-cta:focus-visible,
    .btn-primary:hover,
    .btn-primary:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(232, 58, 47, .32);
      filter: saturate(1.08);
      outline: none;
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: #fff;
      color: var(--promo);
      font-weight: 900;
      box-shadow: inset 0 0 0 1px var(--line);
    }

    .hero {
      padding: 88px 0 56px;
      position: relative;
    }

    .hero-shell {
      border: 1px solid rgba(241, 215, 200, .88);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 241, 228, .72)),
        radial-gradient(circle at 85% 18%, rgba(232, 58, 47, .16), transparent 30%);
      box-shadow: var(--shadow);
      padding: clamp(30px, 5vw, 58px);
      overflow: hidden;
      position: relative;
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      inset: auto -80px -130px auto;
      width: 360px;
      height: 260px;
      border-radius: 44%;
      background: linear-gradient(135deg, rgba(255, 122, 26, .24), rgba(232, 58, 47, .18));
      transform: rotate(-12deg);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(232, 58, 47, .18);
      background: rgba(255, 255, 255, .76);
      color: var(--promo);
      font-size: 14px;
      font-weight: 800;
    }

    .hero h1 {
      margin: 18px auto 14px;
      max-width: 880px;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.14;
      font-weight: 800;
      color: var(--deep);
      letter-spacing: 0;
    }

    .hero-text {
      max-width: 760px;
      margin: 0 auto;
      color: #594B43;
      font-size: 17px;
    }

    .search-panel {
      max-width: 820px;
      margin: 30px auto 0;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      box-shadow: var(--shadow-soft);
      position: relative;
      z-index: 1;
    }

    .search-input {
      width: 100%;
      min-height: 50px;
      border: 0;
      outline: none;
      padding: 0 18px;
      color: var(--ink);
      background: transparent;
      font-weight: 600;
    }

    .search-input::placeholder {
      color: #9B8377;
      font-weight: 500;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--promo), var(--orange));
      box-shadow: 0 13px 26px rgba(232, 58, 47, .24);
    }

    .btn-secondary {
      color: var(--promo);
      background: #fff;
      border-color: rgba(232, 58, 47, .24);
      box-shadow: 0 10px 20px rgba(120, 55, 28, .08);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: #FFF1E4;
      transform: translateY(-2px);
      outline: none;
    }

    .quick-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
      position: relative;
      z-index: 1;
    }

    .quick-chip,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(241, 215, 200, .9);
      background: rgba(255, 255, 255, .74);
      color: #6A554B;
      font-size: 14px;
      font-weight: 700;
    }

    main {
      padding-bottom: 0;
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(26px, 3.2vw, 36px);
      line-height: 1.22;
      font-weight: 800;
      color: var(--deep);
    }

    .section-head p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .segmented {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-soft);
      scrollbar-width: thin;
    }

    .tab-btn {
      flex: 0 0 auto;
      min-height: 44px;
      padding: 0 18px;
      border: 0;
      border-radius: 999px;
      color: #6A554B;
      background: transparent;
      font-weight: 800;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .tab-btn:hover,
    .tab-btn:focus-visible {
      background: #FFF1E4;
      outline: none;
    }

    .tab-btn.active {
      background: var(--promo);
      color: #fff;
      box-shadow: 0 10px 22px rgba(232, 58, 47, .2);
    }

    .plan-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
      margin-top: 26px;
    }

    .plan-card,
    .rule-card,
    .compare-card,
    .faq-item,
    .cta-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .82);
      box-shadow: var(--shadow-soft);
    }

    .plan-card {
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .plan-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--promo), var(--orange), var(--gold));
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 18px 0 12px;
      color: var(--promo);
    }

    .price strong {
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1;
      font-weight: 900;
      color: var(--orange);
    }

    .price span {
      color: #7A6256;
      font-weight: 700;
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li,
    .rule-line {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #4E423C;
      font-weight: 600;
    }

    .check {
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: var(--green);
      font-size: 13px;
      font-weight: 900;
      margin-top: 2px;
    }

    .notice-box {
      padding: 24px;
      border-radius: var(--radius);
      background: linear-gradient(145deg, #2A1D19, #231816);
      color: #FFF7EF;
      box-shadow: var(--shadow);
    }

    .notice-box h3 {
      margin: 0 0 12px;
      font-size: 22px;
      font-weight: 800;
    }

    .notice-box p {
      margin: 0;
      color: rgba(255, 247, 239, .78);
    }

    .guarantee-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .guarantee-item {
      min-height: 86px;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 247, 239, .08);
      border: 1px solid rgba(255, 247, 239, .12);
    }

    .guarantee-icon {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      background: rgba(255, 122, 26, .18);
      color: #FFB26F;
      font-weight: 900;
    }

    .rule-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .rule-card {
      padding: 22px;
      min-height: 226px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .rule-card:hover {
      transform: translateY(-3px);
      border-color: rgba(232, 58, 47, .28);
      box-shadow: var(--shadow);
    }

    .rule-card h3 {
      margin: 14px 0 10px;
      font-size: 20px;
      font-weight: 800;
      color: var(--deep);
    }

    .rule-card p {
      margin: 0;
      color: var(--muted);
    }

    .rule-number {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: linear-gradient(135deg, var(--promo), var(--orange));
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(232, 58, 47, .2);
    }

    .compare-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 22px;
      align-items: start;
    }

    .compare-card {
      overflow: hidden;
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1fr repeat(3, minmax(96px, .8fr));
      border-bottom: 1px solid var(--line);
      min-width: 620px;
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .compare-row > div {
      padding: 16px;
      font-weight: 700;
      color: #5E5048;
      border-right: 1px solid var(--line);
    }

    .compare-row > div:last-child {
      border-right: 0;
    }

    .compare-head > div {
      color: var(--deep);
      background: #FFF1E4;
      font-weight: 900;
    }

    .hot-cell {
      color: var(--promo) !important;
      background: rgba(232, 58, 47, .06);
    }

    .mini-summary {
      padding: 24px;
      border-radius: var(--radius);
      background: #FFF1E4;
      border: 1px solid var(--line);
    }

    .mini-summary .save {
      font-size: 42px;
      line-height: 1;
      color: var(--orange);
      font-weight: 900;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step {
      padding: 20px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--line);
      min-height: 170px;
    }

    .step strong {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      color: #fff;
      background: var(--promo);
      margin-bottom: 14px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 20px;
      border: 0;
      background: rgba(255, 255, 255, .84);
      color: var(--deep);
      text-align: left;
      font-weight: 800;
    }

    .faq-question:focus-visible {
      outline: 3px solid rgba(255, 122, 26, .26);
      outline-offset: -3px;
    }

    .faq-icon {
      flex: 0 0 28px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--promo);
      background: #FFF1E4;
      transition: transform .2s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
      background: #FFF8F1;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 20px 18px;
      color: var(--muted);
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .cta-section {
      padding: 76px 0 88px;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr .92fr;
      gap: 26px;
      padding: clamp(26px, 4vw, 42px);
      background:
        linear-gradient(135deg, rgba(255, 247, 239, .96), rgba(255, 241, 228, .9)),
        radial-gradient(circle at 90% 12%, rgba(255, 122, 26, .18), transparent 35%);
    }

    .cta-price {
      margin: 18px 0;
      display: flex;
      align-items: baseline;
      gap: 8px;
      color: var(--orange);
      font-weight: 900;
    }

    .cta-price strong {
      font-size: clamp(42px, 6vw, 64px);
      line-height: 1;
    }

    .open-form {
      display: grid;
      gap: 14px;
      padding: 22px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-field label {
      font-size: 14px;
      font-weight: 800;
      color: #5E5048;
    }

    .form-field input,
    .form-field select {
      width: 100%;
      min-height: 50px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #FFFCF8;
      padding: 0 14px;
      color: var(--ink);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .form-field input:focus,
    .form-field select:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 4px rgba(255, 122, 26, .14);
      background: #fff;
    }

    .agree {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: #6A554B;
      font-size: 13px;
      line-height: 1.6;
    }

    .agree input {
      margin-top: 4px;
      accent-color: var(--promo);
    }

    .footer {
      padding: 58px 0 34px;
      background: var(--deep);
      color: rgba(255, 247, 239, .78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .7fr .7fr;
      gap: 34px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 247, 239, .12);
    }

    .footer-title {
      margin-bottom: 12px;
      color: #fff;
      font-size: 18px;
      font-weight: 900;
    }

    .footer a {
      color: rgba(255, 247, 239, .78);
      transition: color .2s ease, transform .2s ease;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: #FFB26F;
      outline: none;
    }

    .copyright {
      padding-top: 24px;
      color: rgba(255, 247, 239, .62);
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .plan-grid,
      .compare-wrap,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .rule-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .steps,
      .guarantee-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .nav-cta {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .floating-header {
        top: 10px;
        padding: 0 12px;
      }

      .pill-nav {
        border-radius: 26px;
        min-height: 62px;
        flex-wrap: wrap;
      }

      .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav-links {
        display: none;
        width: 100%;
        order: 5;
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 8px;
      }

      .nav-links.open {
        display: flex;
      }

      .nav-link {
        width: 100%;
      }

      .hero {
        padding: 56px 0 42px;
      }

      .container-wrap {
        width: min(100% - 28px, var(--container));
      }

      .hero-shell {
        border-radius: 24px;
        padding: 28px 18px;
      }

      .search-panel {
        border-radius: 22px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-input {
        min-height: 46px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .section,
      .section-tight,
      .cta-section {
        padding: 48px 0;
      }

      .rule-grid,
      .steps,
      .footer-grid,
      .guarantee-row {
        grid-template-columns: 1fr;
      }

      .compare-card {
        overflow-x: auto;
      }

      .brand-mark span:last-child {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .cta-panel {
        border-radius: 22px;
      }
    }

    @media (max-width: 520px) {
      .hero h1 {
        font-size: 32px;
      }

      .plan-card,
      .notice-box,
      .open-form {
        padding: 20px;
      }

      .segmented {
        border-radius: 18px;
      }

      .tab-btn {
        min-width: 118px;
      }

      .quick-links {
        justify-content: flex-start;
      }

      .faq-question {
        padding: 14px 16px;
      }

      .faq-answer p {
        padding: 0 16px 16px;
      }
    }

/* roulang page: category1 */
:root {
      --promo-red: #e83a2f;
      --promo-red-dark: #c9271f;
      --promo-orange: #ff7a1a;
      --text-main: #1f1b18;
      --text-muted: #776761;
      --bg-page: #fff7ef;
      --bg-soft: #fff1e4;
      --bg-card: #fffaf5;
      --border: #f1d7c8;
      --gold: #c78a32;
      --green: #16a34a;
      --dark: #231816;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --shadow-soft: 0 18px 50px rgba(96, 45, 24, .12);
      --shadow-card: 0 14px 36px rgba(77, 38, 20, .10);
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text-main);
      background:
        radial-gradient(circle at 10% 8%, rgba(255, 122, 26, .14), transparent 28%),
        linear-gradient(180deg, #fff7ef 0%, #fffaf7 48%, #fafaf8 100%);
      line-height: 1.7;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input,
    select {
      outline: none;
    }

    .container-wrap {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .floating-header {
      position: sticky;
      top: 18px;
      z-index: 50;
      padding: 0 18px;
    }

    .pill-nav {
      width: min(var(--container), 100%);
      margin: 0 auto;
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px 10px 16px;
      border: 1px solid rgba(241, 215, 200, .9);
      border-radius: 999px;
      background: rgba(255, 250, 245, .86);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 40px rgba(64, 30, 16, .13);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      color: var(--text-main);
      white-space: nowrap;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--promo-red), var(--promo-orange));
      box-shadow: 0 10px 24px rgba(232, 58, 47, .28);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255, 241, 228, .72);
    }

    .nav-link {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 700;
      transition: .22s ease;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--promo-red);
      background: #fff;
      box-shadow: 0 8px 20px rgba(96, 45, 24, .08);
    }

    .nav-cta,
    .btn-primary {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--promo-red), var(--promo-orange));
      box-shadow: 0 14px 30px rgba(232, 58, 47, .28);
      transition: .22s ease;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .btn-primary:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--promo-red-dark), #ef6510);
      box-shadow: 0 18px 36px rgba(232, 58, 47, .34);
    }

    .btn-secondary {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      border: 1px solid rgba(232, 58, 47, .26);
      border-radius: 999px;
      color: var(--promo-red);
      font-weight: 800;
      background: #fff;
      transition: .22s ease;
      white-space: nowrap;
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(232, 58, 47, .42);
      box-shadow: 0 12px 28px rgba(96, 45, 24, .12);
    }

    .menu-button {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--promo-red);
      background: #fff8f1;
      font-size: 20px;
      line-height: 1;
    }

    .hero {
      position: relative;
      padding: 92px 0 72px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 460px) minmax(0, 1fr);
      gap: 26px;
      align-items: center;
    }

    .hero-side {
      display: grid;
      gap: 14px;
    }

    .side-point {
      min-height: 112px;
      padding: 18px;
      border: 1px solid rgba(241, 215, 200, .9);
      border-radius: var(--radius-md);
      background: rgba(255, 250, 245, .82);
      box-shadow: var(--shadow-card);
    }

    .side-point strong {
      display: block;
      margin-bottom: 6px;
      font-size: 17px;
    }

    .side-point p {
      margin: 0;
      color: var(--text-muted);
      font-size: 14px;
    }

    .hero-stage {
      position: relative;
      padding: 28px;
      border: 1px solid rgba(241, 215, 200, .95);
      border-radius: 30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,241,228,.82)),
        linear-gradient(135deg, rgba(232,58,47,.08), rgba(255,122,26,.12));
      box-shadow: 0 30px 80px rgba(82, 37, 18, .16);
      overflow: hidden;
    }

    .hero-stage:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.65), transparent 48%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .eyebrow,
    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 4px 11px;
      border-radius: 999px;
      color: var(--promo-red);
      background: #fff0e8;
      border: 1px solid rgba(232, 58, 47, .16);
      font-size: 13px;
      font-weight: 800;
    }

    h1 {
      margin: 18px auto 14px;
      max-width: 760px;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 720px;
      margin: 0 auto 24px;
      color: var(--text-muted);
      font-size: 16px;
    }

    .price-ticket {
      margin: 24px auto 22px;
      padding: 18px;
      border-radius: var(--radius-lg);
      background: var(--dark);
      color: #fff7ef;
      box-shadow: 0 18px 48px rgba(35, 24, 22, .22);
    }

    .price-ticket .price {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 6px;
      color: var(--promo-orange);
      font-weight: 900;
    }

    .price-ticket .number {
      font-size: 44px;
      line-height: 1;
    }

    .stage-list {
      display: grid;
      gap: 10px;
      margin-top: 20px;
      text-align: left;
    }

    .stage-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.72);
      color: var(--text-main);
      font-size: 14px;
      font-weight: 700;
    }

    .check {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      background: var(--green);
      font-size: 13px;
      font-weight: 900;
    }

    .section {
      padding: 76px 0;
    }

    .section.alt {
      background: linear-gradient(180deg, rgba(255, 241, 228, .55), rgba(255, 250, 245, .2));
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .section-title {
      margin: 0;
      max-width: 660px;
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.22;
      font-weight: 900;
    }

    .section-desc {
      max-width: 620px;
      margin: 10px 0 0;
      color: var(--text-muted);
      font-size: 16px;
    }

    .filter-bar {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 6px 2px 16px;
      scrollbar-width: thin;
    }

    .filter-pill {
      min-height: 40px;
      padding: 0 16px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      color: var(--text-muted);
      font-weight: 800;
      white-space: nowrap;
      transition: .22s ease;
    }

    .filter-pill.active,
    .filter-pill:hover {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, var(--promo-red), var(--promo-orange));
      box-shadow: 0 12px 24px rgba(232, 58, 47, .22);
    }

    .benefit-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 24px;
      align-items: start;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .benefit-card,
    .rule-card,
    .faq-item,
    .open-panel {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: rgba(255, 250, 245, .94);
      box-shadow: var(--shadow-card);
    }

    .benefit-card {
      min-height: 258px;
      display: flex;
      flex-direction: column;
      padding: 22px;
      transition: .22s ease;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(232, 58, 47, .24);
    }

    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .card-icon {
      width: 48px;
      height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--promo-red), var(--promo-orange));
      box-shadow: 0 12px 24px rgba(232, 58, 47, .22);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 3px 10px;
      border-radius: 999px;
      color: var(--gold);
      background: #fff5dc;
      border: 1px solid rgba(199, 138, 50, .24);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .benefit-card h3,
    .rule-card h3 {
      margin: 0 0 10px;
      font-size: 20px;
      line-height: 1.3;
      font-weight: 900;
    }

    .benefit-card p,
    .rule-card p {
      margin: 0;
      color: var(--text-muted);
      font-size: 15px;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 18px 0;
    }

    .meta-row span {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 3px 9px;
      border-radius: 999px;
      background: #fff1e4;
      color: #8a4a24;
      font-size: 12px;
      font-weight: 800;
    }

    .card-action {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px dashed var(--border);
    }

    .card-action strong {
      color: var(--promo-orange);
      font-size: 20px;
    }

    .sticky-aside {
      position: sticky;
      top: 104px;
      padding: 22px;
      border: 1px solid rgba(232, 58, 47, .18);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #231816, #2a1d19);
      color: #fff8ef;
      box-shadow: 0 22px 56px rgba(35, 24, 22, .22);
    }

    .sticky-aside h2 {
      margin: 0 0 10px;
      font-size: 24px;
      font-weight: 900;
    }

    .sticky-aside p {
      margin: 0 0 18px;
      color: rgba(255, 248, 239, .78);
      font-size: 14px;
    }

    .aside-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin: 12px 0 18px;
      color: var(--promo-orange);
      font-weight: 900;
    }

    .aside-price b {
      font-size: 38px;
      line-height: 1;
    }

    .safe-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .safe-item {
      min-height: 82px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: #fff;
    }

    .safe-icon {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      color: var(--green);
      background: rgba(22, 163, 74, .1);
      font-weight: 900;
    }

    .safe-item strong {
      display: block;
      font-size: 14px;
    }

    .safe-item span {
      display: block;
      color: var(--text-muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .rule-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
      align-items: stretch;
    }

    .rule-card {
      padding: 24px;
    }

    .rule-list {
      display: grid;
      gap: 12px;
      margin: 18px 0 0;
    }

    .rule-list li {
      display: flex;
      gap: 10px;
      padding: 12px 0;
      border-top: 1px dashed var(--border);
      color: var(--text-muted);
    }

    .rule-list li:first-child {
      border-top: 0;
    }

    .compare-mini {
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: var(--shadow-card);
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1.1fr .8fr .8fr;
      min-width: 560px;
      border-bottom: 1px solid var(--border);
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .compare-row > div {
      padding: 15px 16px;
      font-size: 14px;
    }

    .compare-head {
      background: #fff1e4;
      color: var(--text-main);
      font-weight: 900;
    }

    .compare-row b {
      color: var(--promo-red);
    }

    .preview-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .preview-card {
      position: relative;
      min-height: 220px;
      padding: 22px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      color: #fffaf5;
      background:
        linear-gradient(135deg, rgba(232,58,47,.92), rgba(255,122,26,.82)),
        linear-gradient(180deg, #2a1d19, #231816);
      box-shadow: var(--shadow-card);
    }

    .preview-card:nth-child(2) {
      background:
        linear-gradient(135deg, rgba(35,24,22,.94), rgba(232,58,47,.72)),
        linear-gradient(180deg, #2a1d19, #231816);
    }

    .preview-card:nth-child(3) {
      background:
        linear-gradient(135deg, rgba(199,138,50,.88), rgba(232,58,47,.76)),
        linear-gradient(180deg, #2a1d19, #231816);
    }

    .preview-card:after {
      content: "99";
      position: absolute;
      right: 18px;
      bottom: -14px;
      color: rgba(255,255,255,.12);
      font-size: 92px;
      font-weight: 900;
      line-height: 1;
    }

    .preview-card h3 {
      position: relative;
      z-index: 1;
      margin: 18px 0 10px;
      font-size: 21px;
      font-weight: 900;
    }

    .preview-card p,
    .preview-card a {
      position: relative;
      z-index: 1;
    }

    .preview-card p {
      margin: 0 0 20px;
      color: rgba(255,250,245,.82);
      font-size: 14px;
    }

    .preview-card a {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--promo-red);
      background: #fff;
      font-weight: 900;
      font-size: 13px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
      max-width: 920px;
      margin: 0 auto;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 17px 20px;
      border: 0;
      color: var(--text-main);
      background: transparent;
      text-align: left;
      font-weight: 900;
    }

    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: var(--promo-red);
      background: #fff1e4;
      transition: .22s ease;
    }

    .faq-item.active .faq-question span:last-child {
      transform: rotate(45deg);
      color: #fff;
      background: var(--promo-red);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 20px 18px;
      color: var(--text-muted);
      font-size: 15px;
    }

    .faq-item.active .faq-answer {
      max-height: 180px;
    }

    .open-panel {
      padding: 26px;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 24px;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(255,255,255,.93), rgba(255,241,228,.88)),
        linear-gradient(135deg, rgba(232,58,47,.08), rgba(255,122,26,.12));
    }

    .open-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin: 16px 0;
      color: var(--promo-red);
      font-weight: 900;
    }

    .open-price b {
      font-size: clamp(42px, 6vw, 68px);
      line-height: .95;
      color: var(--promo-orange);
    }

    .open-form {
      display: grid;
      gap: 12px;
      padding: 22px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--border);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .field label {
      display: block;
      margin-bottom: 6px;
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 48px;
      padding: 0 13px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fffaf5;
      color: var(--text-main);
      transition: .18s ease;
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--promo-red);
      box-shadow: 0 0 0 4px rgba(232, 58, 47, .1);
      background: #fff;
    }

    .agree {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      color: var(--text-muted);
      font-size: 13px;
    }

    .agree input {
      width: 17px;
      height: 17px;
      margin-top: 4px;
      accent-color: var(--promo-red);
    }

    .footer {
      padding: 54px 0 28px;
      color: rgba(255, 248, 239, .78);
      background: var(--dark);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr;
      gap: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-title {
      margin-bottom: 12px;
      color: #fff8ef;
      font-size: 18px;
      font-weight: 900;
    }

    .footer p {
      max-width: 520px;
      margin: 0;
      font-size: 14px;
    }

    .footer a {
      color: rgba(255, 248, 239, .78);
      font-size: 14px;
      transition: .18s ease;
    }

    .footer a:hover {
      color: var(--promo-orange);
    }

    .copyright {
      padding-top: 22px;
      color: rgba(255, 248, 239, .55);
      font-size: 13px;
    }

    :focus-visible {
      outline: 3px solid rgba(255, 122, 26, .36);
      outline-offset: 3px;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .benefit-layout,
      .rule-grid,
      .open-panel {
        grid-template-columns: 1fr;
      }

      .hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sticky-aside {
        position: relative;
        top: auto;
      }

      .safe-strip,
      .preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      .container-wrap {
        width: min(100% - 28px, var(--container));
      }

      .floating-header {
        top: 12px;
        padding: 0 12px;
      }

      .pill-nav {
        min-height: 60px;
        padding: 8px;
      }

      .brand-mark span:last-child {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(255, 250, 245, .96);
        box-shadow: var(--shadow-soft);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-link {
        justify-content: flex-start;
        width: 100%;
        padding: 0 14px;
      }

      .nav-cta {
        display: none;
      }

      .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .hero {
        padding: 64px 0 48px;
      }

      .hero-grid,
      .hero-side,
      .benefit-grid,
      .safe-strip,
      .preview-grid,
      .footer-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .hero-stage {
        padding: 22px 18px;
      }

      .side-point {
        min-height: auto;
      }

      .section {
        padding: 54px 0;
      }

      .compare-mini {
        overflow-x: auto;
      }

      .footer {
        padding-top: 44px;
      }
    }

    @media (max-width: 520px) {
      .brand-icon {
        width: 38px;
        height: 38px;
      }

      .brand-mark {
        font-size: 14px;
      }

      .hero-stage {
        border-radius: 24px;
      }

      .price-ticket .number {
        font-size: 38px;
      }

      .card-action {
        align-items: flex-start;
        flex-direction: column;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      .open-form {
        padding: 16px;
      }
    }
