/* roulang page: index */
:root {
      --color-primary: #F05A3C;
      --color-primary-dark: #D8432C;
      --color-accent: #FFB84D;
      --color-accent-soft: #FFD166;
      --color-title: #2B1D18;
      --color-text: #5F4A43;
      --color-muted: #8A6C60;
      --color-bg: #FFF7EF;
      --color-bg-2: #FFF1E4;
      --color-bg-3: #FAE7D7;
      --color-card: #FFFDF9;
      --color-border: #F2C7AA;
      --color-border-strong: #E8BFA5;
      --color-ok: #3FA37A;
      --shadow-soft: 0 18px 45px rgba(109, 56, 31, 0.10);
      --shadow-card: 0 12px 28px rgba(109, 56, 31, 0.08);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 24px;
      --radius-pill: 999px;
      --container: 1200px;
      --section-y: 86px;
      --ease: 180ms 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-text);
      background:
        radial-gradient(circle at 12% 8%, rgba(255, 184, 77, 0.18), transparent 28%),
        linear-gradient(180deg, var(--color-bg) 0%, #FFFFFF 48%, var(--color-bg-2) 100%);
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    .button {
      cursor: pointer;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: rgba(255, 247, 239, 0.96);
      border-bottom: 1px solid rgba(242, 199, 170, 0.75);
      box-shadow: 0 10px 26px rgba(109, 56, 31, 0.06);
    }

    .top-bar.custom-nav {
      min-height: 78px;
      padding: 0;
      background: transparent;
    }

    .top-bar.custom-nav,
    .top-bar.custom-nav ul {
      background: transparent;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--color-title);
      font-weight: 800;
      line-height: 1.15;
      max-width: 360px;
    }

    .logo-mark {
      position: relative;
      width: 46px;
      height: 46px;
      flex: 0 0 auto;
      border-radius: 15px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      box-shadow: 0 10px 24px rgba(240, 90, 60, 0.24);
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 10px;
      height: 18px;
      background: var(--color-bg);
      border-radius: 999px;
      transform: translateY(-50%);
    }

    .logo-mark::before {
      left: -5px;
    }

    .logo-mark::after {
      right: -5px;
    }

    .logo-dot {
      position: absolute;
      width: 7px;
      height: 7px;
      background: rgba(255,255,255,0.88);
      border-radius: 50%;
    }

    .logo-dot:nth-child(1) { left: 11px; top: 11px; }
    .logo-dot:nth-child(2) { right: 11px; top: 11px; }
    .logo-dot:nth-child(3) { left: 11px; bottom: 11px; }
    .logo-dot:nth-child(4) { right: 11px; bottom: 11px; }

    .brand-text {
      font-size: 18px;
      word-break: break-word;
    }

    .nav-menu {
      align-items: center;
      gap: 10px;
    }

    .nav-menu a:not(.nav-cta) {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      color: var(--color-title);
      font-weight: 700;
      font-size: 15px;
      border: 1px solid transparent;
    }

    .nav-menu a:not(.nav-cta):hover,
    .nav-menu a:not(.nav-cta):focus-visible {
      background: #FFE5D8;
      border-color: var(--color-border);
      color: var(--color-primary-dark);
      outline: none;
    }

    .nav-menu a.active {
      background: #FFE0D2;
      color: var(--color-primary-dark);
      border-color: var(--color-border-strong);
    }

    .nav-cta,
    .button.primary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 22px;
      border: 0;
      border-radius: var(--radius-pill);
      background: var(--color-primary);
      color: #FFFFFF;
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(240, 90, 60, 0.22);
    }

    .nav-cta:hover,
    .button.primary-btn:hover,
    .nav-cta:focus-visible,
    .button.primary-btn:focus-visible {
      background: var(--color-primary-dark);
      color: #FFFFFF;
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(240, 90, 60, 0.30);
      outline: 3px solid rgba(255, 184, 77, 0.42);
      outline-offset: 3px;
    }

    .button.secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 11px 20px;
      border-radius: var(--radius-pill);
      background: #FFFDF9;
      color: var(--color-title);
      border: 1px solid var(--color-border-strong);
      font-weight: 800;
      box-shadow: none;
    }

    .button.secondary-btn:hover,
    .button.secondary-btn:focus-visible {
      background: #FFF0E5;
      color: var(--color-primary-dark);
      border-color: var(--color-primary);
      outline: 3px solid rgba(240, 90, 60, 0.16);
      outline-offset: 3px;
    }

    .menu-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #FFF2E7;
      border: 1px solid var(--color-border);
    }

    .menu-icon::after {
      background: var(--color-title);
      box-shadow: 0 7px 0 var(--color-title), 0 14px 0 var(--color-title);
      left: 13px;
      width: 20px;
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: var(--section-y) 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 7px 13px;
      border-radius: var(--radius-pill);
      color: var(--color-primary-dark);
      background: #FFE5D8;
      border: 1px solid var(--color-border);
      font-size: 13px;
      font-weight: 800;
    }

    .section-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-accent);
      box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.22);
    }

    .section-title {
      margin: 0 0 14px;
      color: var(--color-title);
      font-weight: 800;
      line-height: 1.22;
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 760px;
      margin: 0 0 34px;
      color: var(--color-muted);
      font-size: 17px;
    }

    .hero {
      position: relative;
      padding: 34px 0 56px;
      background:
        linear-gradient(90deg, rgba(255, 241, 228, 0.98), rgba(255, 247, 239, 0.92)),
        repeating-linear-gradient(90deg, rgba(240,90,60,0.08) 0 1px, transparent 1px 46px);
      border-bottom: 1px solid var(--color-border);
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 12px;
      height: 10px;
      background-image: radial-gradient(circle, rgba(240, 90, 60, 0.33) 3px, transparent 4px);
      background-size: 28px 10px;
      pointer-events: none;
    }

    .hero-banner {
      position: relative;
      padding: 28px 0 8px;
    }

    .status-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 26px;
      padding: 12px;
      border: 1px dashed var(--color-border-strong);
      border-radius: var(--radius-md);
      background: rgba(255, 253, 249, 0.92);
      box-shadow: var(--shadow-card);
    }

    .status-label {
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      border-radius: var(--radius-pill);
      background: var(--color-title);
      color: #FFFFFF;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(4, minmax(72px, 1fr));
      gap: 10px;
      flex: 1 1 420px;
    }

    .time-box {
      min-height: 58px;
      padding: 8px 10px;
      border-radius: 13px;
      background: #FFF7EF;
      border: 1px solid var(--color-border);
      text-align: center;
    }

    .time-box strong {
      display: block;
      color: var(--color-primary);
      font-size: 24px;
      line-height: 1.05;
      font-weight: 800;
    }

    .time-box span {
      display: block;
      margin-top: 2px;
      color: var(--color-muted);
      font-size: 12px;
      font-weight: 700;
    }

    .status-note {
      flex: 1 1 220px;
      margin: 0;
      color: var(--color-text);
      font-weight: 700;
    }

    .hero h1 {
      max-width: 980px;
      margin: 0;
      color: var(--color-title);
      font-size: clamp(34px, 5.2vw, 64px);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
      word-break: break-word;
    }

    .hero-copy {
      max-width: 920px;
      margin: 18px 0 24px;
      color: var(--color-text);
      font-size: 18px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 22px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 960px;
    }

    .hero-point {
      padding: 14px 16px;
      border-radius: var(--radius-md);
      background: rgba(255, 253, 249, 0.86);
      border: 1px solid var(--color-border);
    }

    .hero-point strong {
      display: block;
      color: var(--color-title);
      font-size: 22px;
      line-height: 1.2;
    }

    .hero-point span {
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .category-strip {
      background: #FFFDF9;
      border-top: 1px solid rgba(242, 199, 170, 0.65);
      border-bottom: 1px solid rgba(242, 199, 170, 0.65);
    }

    .category-ticket {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 24px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      background:
        radial-gradient(circle at left center, transparent 0 18px, #FFFDF9 19px),
        linear-gradient(90deg, #FFFDF9, #FFF2E7);
      box-shadow: var(--shadow-card);
    }

    .category-ticket h2 {
      margin: 0 0 6px;
      color: var(--color-title);
      font-size: 26px;
      font-weight: 800;
    }

    .category-ticket p {
      margin: 0;
      color: var(--color-muted);
    }

    .ticket-badge {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 5px 10px;
      border-radius: var(--radius-pill);
      background: #FFE3D5;
      color: var(--color-primary-dark);
      font-size: 12px;
      font-weight: 800;
    }

    .benefit-section {
      background: linear-gradient(180deg, #FFFFFF, var(--color-bg));
    }

    .benefit-flow {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
      gap: 28px;
      align-items: stretch;
    }

    .timeline-list {
      display: grid;
      gap: 16px;
    }

    .timeline-card {
      position: relative;
      padding: 22px 22px 22px 72px;
      border-radius: var(--radius-md);
      background: var(--color-card);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .timeline-card:hover {
      transform: translateY(-2px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-soft);
    }

    .timeline-no {
      position: absolute;
      left: 20px;
      top: 22px;
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--color-accent);
      color: var(--color-title);
      font-weight: 800;
    }

    .timeline-card h3,
    .resource-card h3,
    .insight-card h3,
    .gallery-tile h3,
    .proof-card h3 {
      margin: 0 0 8px;
      color: var(--color-title);
      font-weight: 800;
      line-height: 1.28;
    }

    .timeline-card p,
    .resource-card p,
    .insight-card p,
    .gallery-tile p,
    .proof-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 15px;
    }

    .bubble-stack {
      display: grid;
      gap: 14px;
    }

    .bubble {
      position: relative;
      padding: 18px 18px 18px 20px;
      border-radius: 20px 20px 20px 8px;
      background: #FFF7EF;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
    }

    .bubble strong {
      display: block;
      color: var(--color-title);
      margin-bottom: 5px;
    }

    .bubble p {
      margin: 0;
      color: var(--color-text);
      font-size: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      background: #FFF0E5;
      border: 1px solid var(--color-border);
      color: var(--color-primary-dark);
      font-size: 12px;
      font-weight: 800;
    }

    .resource-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .resource-card {
      position: relative;
      min-height: 230px;
      padding: 24px;
      border-radius: var(--radius-md);
      background: var(--color-card);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .resource-card::before {
      content: "";
      position: absolute;
      left: 24px;
      right: 24px;
      top: 0;
      border-top: 2px dashed rgba(240, 90, 60, 0.28);
    }

    .resource-card:hover {
      transform: translateY(-3px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-soft);
    }

    .card-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 18px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #FFE0D2, #FFF5CF);
      color: var(--color-primary-dark);
      font-size: 24px;
      font-weight: 800;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--color-title);
      font-weight: 800;
    }

    .text-link:hover,
    .text-link:focus-visible {
      color: var(--color-primary-dark);
      outline: none;
    }

    .gallery-section {
      background: var(--color-bg-2);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.85fr 0.85fr;
      grid-auto-rows: 190px;
      gap: 18px;
    }

    .gallery-tile {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 190px;
      padding: 22px;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--color-border);
      background: #FFFFFF;
      box-shadow: var(--shadow-card);
    }

    .gallery-tile.large {
      grid-row: span 2;
    }

    .gallery-tile img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.86;
    }

    .gallery-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(43,29,24,0.02), rgba(43,29,24,0.68));
    }

    .gallery-tile .tile-content {
      position: relative;
      z-index: 1;
    }

    .gallery-tile h3 {
      color: #FFFFFF;
      font-size: 22px;
      text-shadow: 0 2px 8px rgba(43,29,24,0.28);
    }

    .gallery-tile p {
      color: rgba(255,255,255,0.90);
    }

    .corner-label {
      position: absolute;
      z-index: 2;
      top: 16px;
      left: 16px;
      padding: 6px 10px;
      border-radius: var(--radius-pill);
      background: rgba(255, 253, 249, 0.92);
      color: var(--color-primary-dark);
      font-size: 12px;
      font-weight: 800;
    }

    .insight-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
      gap: 28px;
    }

    .news-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      padding: 16px 18px;
      border-radius: var(--radius-md);
      background: var(--color-card);
      border: 1px solid var(--color-border);
      box-shadow: 0 8px 18px rgba(109, 56, 31, 0.05);
    }

    .news-list a:hover,
    .news-list a:focus-visible {
      transform: translateY(-1px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-card);
      outline: none;
    }

    .news-date {
      color: var(--color-primary-dark);
      font-size: 13px;
      font-weight: 800;
    }

    .news-title {
      color: var(--color-title);
      font-weight: 800;
      overflow-wrap: anywhere;
    }

    .news-more {
      color: var(--color-muted);
      font-weight: 800;
    }

    .insight-card {
      padding: 24px;
      border-radius: var(--radius-lg);
      background: #FFF7EF;
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-card);
    }

    .quote-mark {
      color: var(--color-primary);
      font-size: 42px;
      line-height: 1;
      font-weight: 800;
    }

    .cta-section {
      background:
        linear-gradient(135deg, rgba(240, 90, 60, 0.10), rgba(255, 184, 77, 0.18)),
        var(--color-bg-3);
    }

    .cta-ticket {
      position: relative;
      padding: 34px;
      border-radius: 28px;
      background: #FFFDF9;
      border: 1px solid var(--color-border-strong);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .cta-ticket::before,
    .cta-ticket::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--color-bg-3);
      border: 1px solid var(--color-border-strong);
      transform: translateY(-50%);
    }

    .cta-ticket::before { left: -18px; }
    .cta-ticket::after { right: -18px; }

    .cta-title {
      margin: 0 0 12px;
      color: var(--color-title);
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.24;
      font-weight: 800;
    }

    .lead-form {
      display: grid;
      gap: 14px;
      padding: 22px;
      border-radius: var(--radius-lg);
      background: #FFF7EF;
      border: 1px dashed var(--color-border-strong);
    }

    .lead-form label {
      color: var(--color-title);
      font-weight: 800;
      font-size: 14px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
      min-height: 50px;
      margin: 6px 0 0;
      border-radius: 14px;
      border: 1px solid var(--color-border-strong);
      background: #FFFFFF;
      color: var(--color-title);
      box-shadow: none;
    }

    .lead-form textarea {
      min-height: 92px;
      resize: vertical;
    }

    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 4px rgba(240, 90, 60, 0.12);
      outline: none;
    }

    .form-note {
      margin: 0;
      color: var(--color-muted);
      font-size: 13px;
    }

    .proof-section {
      background: #FFFFFF;
    }

    .proof-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 28px;
    }

    .proof-card {
      padding: 22px;
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
      background: var(--color-card);
      box-shadow: var(--shadow-card);
    }

    .proof-card strong {
      display: block;
      color: var(--color-primary);
      font-size: 28px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .avatar-wall {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      padding: 18px;
      border-radius: var(--radius-lg);
      background: #FFF7EF;
      border: 1px solid var(--color-border);
    }

    .avatars {
      display: flex;
      align-items: center;
      padding-left: 10px;
    }

    .avatars img {
      width: 42px;
      height: 42px;
      margin-left: -10px;
      border-radius: 50%;
      border: 3px solid #FFF7EF;
      object-fit: cover;
      background: #FFE0D2;
    }

    .avatar-wall p {
      margin: 0;
      color: var(--color-text);
      font-weight: 700;
    }

    .faq-section {
      background: var(--color-bg);
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--color-border);
      background: var(--color-card);
      box-shadow: 0 8px 20px rgba(109, 56, 31, 0.05);
    }

    .accordion-title {
      min-height: 56px;
      padding: 18px 54px 18px 22px;
      border: 0;
      color: var(--color-title);
      font-size: 17px;
      font-weight: 800;
      line-height: 1.45;
      background: #FFFDF9;
    }

    .accordion-title::before {
      right: 22px;
      margin-top: -12px;
      color: var(--color-primary);
      font-size: 24px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: #FFF1E4;
      color: var(--color-primary-dark);
      outline: none;
    }

    .accordion-content {
      padding: 0 22px 20px;
      border: 0;
      background: #FFF7EF;
      color: var(--color-text);
    }

    .download-guide {
      background: #FFFDF9;
    }

    .guide-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 26px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      background:
        linear-gradient(90deg, #FFFDF9, #FFF1E4);
      box-shadow: var(--shadow-card);
    }

    .guide-panel h2 {
      margin: 0 0 8px;
      color: var(--color-title);
      font-size: 28px;
      font-weight: 800;
    }

    .guide-panel p {
      margin: 0;
      color: var(--color-muted);
    }

    .site-footer {
      padding: 54px 0 28px;
      background: #2B1D18;
      color: rgba(255, 247, 239, 0.82);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.8fr 0.8fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      color: #FFFFFF;
      font-size: 18px;
      font-weight: 800;
    }

    .footer-title {
      margin: 0 0 12px;
      color: #FFFFFF;
      font-weight: 800;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: rgba(255, 247, 239, 0.78);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--color-accent);
      outline: none;
    }

    .footer-note {
      margin: 0;
      max-width: 560px;
      font-size: 14px;
    }

    .copyright {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 247, 239, 0.14);
      color: rgba(255, 247, 239, 0.62);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      :root {
        --section-y: 72px;
      }

      .site-container {
        width: min(100% - 36px, var(--container));
      }

      .benefit-flow,
      .insight-wrap {
        grid-template-columns: 1fr;
      }

      .resource-grid,
      .proof-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-tile.large {
        grid-row: span 1;
      }
    }

    @media (max-width: 768px) {
      .top-bar.custom-nav {
        min-height: 68px;
      }

      .top-bar-left,
      .top-bar-right {
        width: 100%;
      }

      .title-bar {
        background: transparent;
        color: var(--color-title);
        padding: 12px 0;
      }

      .nav-menu {
        width: 100%;
        padding: 12px 0 18px;
        gap: 8px;
      }

      .nav-menu li,
      .nav-menu a,
      .nav-cta {
        width: 100%;
      }

      .nav-menu a:not(.nav-cta),
      .nav-cta {
        justify-content: center;
      }

      .brand-text {
        font-size: 16px;
      }

      .hero {
        padding: 20px 0 44px;
      }

      .status-strip {
        align-items: stretch;
      }

      .countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-basis: 100%;
      }

      .hero-points,
      .resource-grid,
      .proof-row,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions .button,
      .category-ticket,
      .guide-panel {
        width: 100%;
      }

      .category-ticket,
      .guide-panel {
        flex-direction: column;
        align-items: stretch;
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
      }

      .gallery-tile {
        min-width: 82%;
        scroll-snap-align: start;
      }

      .news-list a {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .cta-ticket {
        padding: 24px 20px;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 32px, var(--container));
      }

      .section {
        padding: 58px 0;
      }

      .hero h1 {
        font-size: 34px;
      }

      .hero-copy,
      .section-desc {
        font-size: 16px;
      }

      .time-box strong {
        font-size: 22px;
      }

      .timeline-card {
        padding: 20px;
      }

      .timeline-no {
        position: static;
        margin-bottom: 12px;
      }

      .button.primary-btn,
      .button.secondary-btn,
      .nav-cta {
        width: 100%;
        min-height: 48px;
        white-space: normal;
        text-align: center;
      }

      .accordion-title {
        font-size: 16px;
        padding-right: 46px;
      }
    }

/* roulang page: category1 */
:root {
      --color-primary: #F05A3C;
      --color-primary-dark: #D9462C;
      --color-accent: #FFB84D;
      --color-accent-soft: #FFD166;
      --color-text: #2B1D18;
      --color-muted: #5F4A43;
      --color-light: #FFF7EF;
      --color-soft: #FFF1E4;
      --color-paper: #FFFCF7;
      --color-band: #FAE7D7;
      --color-border: #F2C7AA;
      --color-border-strong: #E8BFA5;
      --color-success: #3FA37A;
      --shadow-soft: 0 18px 40px rgba(109, 56, 31, 0.08);
      --shadow-card: 0 14px 28px rgba(109, 56, 31, 0.1);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 24px;
      --container: 1200px;
      --header-height: 78px;
    }

    * {
      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-text);
      background:
        radial-gradient(circle at 18% 10%, rgba(255, 184, 77, 0.18), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(240, 90, 60, 0.12), transparent 30%),
        linear-gradient(180deg, #FFF7EF 0%, #FFFCF7 48%, #FFF1E4 100%);
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    a:hover,
    a:focus {
      color: var(--color-primary);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    .button {
      cursor: pointer;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(240, 90, 60, 0.28);
      outline-offset: 3px;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 247, 239, 0.96);
      border-bottom: 1px solid rgba(242, 199, 170, 0.72);
      box-shadow: 0 10px 26px rgba(109, 56, 31, 0.06);
      backdrop-filter: blur(10px);
    }

    .title-bar {
      min-height: var(--header-height);
      padding: 0;
      background: transparent;
      color: var(--color-text);
      justify-content: space-between;
    }

    .custom-nav.top-bar {
      min-height: var(--header-height);
      padding: 0;
      background: transparent;
    }

    .custom-nav .top-bar-left,
    .custom-nav .top-bar-right {
      display: flex;
      align-items: center;
    }

    .custom-nav ul {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      background: transparent;
    }

    .custom-nav li {
      list-style: none;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: var(--color-text);
      font-weight: 800;
    }

    .brand-logo:hover {
      color: var(--color-text);
      transform: translateY(-1px);
    }

    .logo-mark {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, 8px);
      gap: 5px;
      width: 38px;
      height: 38px;
      padding: 8px;
      flex: 0 0 38px;
      border: 2px dashed var(--color-accent);
      border-radius: 12px;
      background: linear-gradient(135deg, #FFF1E4, #FFFFFF);
      box-shadow: inset 0 0 0 3px rgba(240, 90, 60, 0.08), 0 8px 18px rgba(109, 56, 31, 0.08);
    }

    .logo-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(240, 90, 60, 0.13);
    }

    .brand-text {
      font-size: 18px;
      line-height: 1.2;
      word-break: keep-all;
    }

    .custom-nav a:not(.brand-logo) {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: 999px;
      color: var(--color-muted);
      font-size: 15px;
      font-weight: 700;
    }

    .custom-nav a:not(.brand-logo):hover {
      color: var(--color-primary);
      background: rgba(255, 209, 102, 0.22);
    }

    .custom-nav a.active {
      color: var(--color-text);
      background: #FFE1D4;
      box-shadow: inset 0 -2px 0 rgba(240, 90, 60, 0.4);
    }

    .custom-nav a.nav-cta {
      margin-left: 8px;
      color: #fff;
      background: var(--color-primary);
      box-shadow: 0 10px 20px rgba(240, 90, 60, 0.22);
    }

    .custom-nav a.nav-cta:hover {
      color: #fff;
      background: var(--color-primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(240, 90, 60, 0.28);
    }

    .menu-icon::after {
      background: var(--color-text);
      box-shadow: 0 7px 0 var(--color-text), 0 14px 0 var(--color-text);
    }

    main {
      display: block;
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 52px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 6px 12px;
      border: 1px solid var(--color-border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.64);
      color: var(--color-primary-dark);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-accent);
      box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.18);
    }

    .page-hero {
      position: relative;
      padding: 42px 0 34px;
      overflow: hidden;
      border-bottom: 1px solid rgba(242, 199, 170, 0.6);
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.52;
      background-image:
        linear-gradient(90deg, rgba(240, 90, 60, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 184, 77, 0.12) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
    }

    .hero-bento {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
      gap: 22px;
      align-items: stretch;
    }

    .hero-main,
    .hero-mini,
    .hero-cta-strip {
      position: relative;
      border: 1px solid var(--color-border);
      background: rgba(255, 252, 247, 0.86);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .hero-main {
      min-height: 360px;
      padding: 42px;
      border-radius: var(--radius-lg);
    }

    .hero-main::after,
    .ticket-card::after {
      content: "";
      position: absolute;
      top: 22px;
      bottom: 22px;
      right: -1px;
      border-right: 2px dashed rgba(232, 191, 165, 0.82);
    }

    .hero-main h1 {
      max-width: 780px;
      margin: 0 0 18px;
      color: var(--color-text);
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.18;
      font-weight: 800;
      letter-spacing: 0;
    }

    .hero-main p {
      max-width: 760px;
      margin: 0;
      color: var(--color-muted);
      font-size: 18px;
      line-height: 1.82;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-side {
      display: grid;
      gap: 22px;
    }

    .hero-mini {
      min-height: 168px;
      padding: 24px;
      border-radius: var(--radius-md);
    }

    .hero-mini strong {
      display: block;
      margin-bottom: 8px;
      font-size: 22px;
      line-height: 1.25;
    }

    .hero-mini p {
      margin: 0;
      color: var(--color-muted);
      font-size: 15px;
    }

    .hero-cta-strip {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 18px 22px;
      border-radius: var(--radius-md);
      background: linear-gradient(90deg, #FFF1E4 0%, #FFFFFF 56%, #FFE0D4 100%);
    }

    .status-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .status-pill,
    .tag,
    .heat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 30px;
      padding: 6px 11px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status-pill {
      color: var(--color-primary-dark);
      background: #FFE1D4;
      border: 1px solid rgba(240, 90, 60, 0.2);
    }

    .tag {
      color: var(--color-muted);
      background: #FFF7EF;
      border: 1px solid var(--color-border);
    }

    .heat-badge {
      color: #4B2A12;
      background: #FFE8B3;
      border: 1px solid rgba(255, 184, 77, 0.58);
    }

    .button.primary-btn,
    .button.secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      margin: 0;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .button.primary-btn {
      color: #fff;
      background: var(--color-primary);
      box-shadow: 0 12px 24px rgba(240, 90, 60, 0.24);
    }

    .button.primary-btn:hover,
    .button.primary-btn:focus {
      color: #fff;
      background: var(--color-primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(240, 90, 60, 0.3);
    }

    .button.secondary-btn {
      color: var(--color-text);
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--color-border);
      box-shadow: none;
    }

    .button.secondary-btn:hover,
    .button.secondary-btn:focus {
      color: var(--color-primary-dark);
      background: #FFF1E4;
      border-color: var(--color-primary);
      transform: translateY(-1px);
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 30px;
    }

    .section-head h2 {
      margin: 0 0 12px;
      font-size: clamp(26px, 3.5vw, 40px);
      line-height: 1.24;
      font-weight: 800;
    }

    .section-head p {
      margin: 0;
      color: var(--color-muted);
      font-size: 17px;
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
      padding: 12px;
      border: 1px solid var(--color-border);
      border-radius: 999px;
      background: rgba(255, 252, 247, 0.76);
      box-shadow: var(--shadow-soft);
    }

    .filter-btn {
      min-height: 40px;
      padding: 9px 15px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
      color: var(--color-muted);
      font-weight: 800;
      transition: all 0.2s ease;
    }

    .filter-btn:hover {
      background: #FFF1E4;
      color: var(--color-primary-dark);
    }

    .filter-btn.active {
      color: #fff;
      background: var(--color-primary);
      box-shadow: 0 10px 20px rgba(240, 90, 60, 0.2);
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 28px;
      align-items: start;
    }

    .ticket-list {
      display: grid;
      gap: 18px;
    }

    .ticket-card {
      position: relative;
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 24px 28px 24px 22px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      background: rgba(255, 252, 247, 0.88);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .ticket-card:hover {
      transform: translateY(-3px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-card);
    }

    .ticket-number {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 16px;
      color: var(--color-primary-dark);
      background: #FFE1D4;
      font-weight: 900;
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
    }

    .ticket-card h3 {
      margin: 0 0 8px;
      font-size: 22px;
      line-height: 1.28;
      font-weight: 800;
    }

    .ticket-card p {
      margin: 0 0 12px;
      color: var(--color-muted);
      font-size: 15px;
    }

    .ticket-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .small-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--color-primary-dark);
      border: 1px solid rgba(240, 90, 60, 0.28);
      background: #FFF7EF;
      font-weight: 800;
      white-space: nowrap;
    }

    .small-link:hover {
      color: #fff;
      background: var(--color-primary);
      border-color: var(--color-primary);
      transform: translateY(-1px);
    }

    .sidebar-stack {
      display: grid;
      gap: 18px;
    }

    .side-card,
    .proof-card,
    .step-card,
    .lead-card {
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      background: rgba(255, 252, 247, 0.9);
      box-shadow: var(--shadow-soft);
    }

    .side-card {
      padding: 22px;
    }

    .side-card h3 {
      margin: 0 0 14px;
      font-size: 20px;
      font-weight: 800;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .avatar-wall {
      display: flex;
      align-items: center;
      margin: 4px 0 14px 10px;
    }

    .avatar {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-left: -10px;
      border: 3px solid #FFF7EF;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      font-size: 13px;
      font-weight: 900;
    }

    .quote-bubble {
      position: relative;
      margin: 0;
      padding: 14px 15px;
      border: 1px solid rgba(240, 90, 60, 0.24);
      border-radius: 16px;
      background: #FFF1E4;
      color: var(--color-muted);
      font-size: 14px;
    }

    .quote-bubble::before {
      content: "";
      position: absolute;
      top: -7px;
      left: 26px;
      width: 12px;
      height: 12px;
      border-top: 1px solid rgba(240, 90, 60, 0.24);
      border-left: 1px solid rgba(240, 90, 60, 0.24);
      background: #FFF1E4;
      transform: rotate(45deg);
    }

    .mini-list {
      display: grid;
      gap: 11px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      gap: 10px;
      color: var(--color-muted);
      font-size: 14px;
    }

    .mini-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--color-success);
      box-shadow: 0 0 0 4px rgba(63, 163, 122, 0.12);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .step-card {
      position: relative;
      padding: 22px;
      overflow: hidden;
    }

    .step-card::before {
      content: attr(data-step);
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      margin-bottom: 14px;
      border-radius: 12px;
      color: var(--color-primary-dark);
      background: #FFE1D4;
      font-weight: 900;
    }

    .step-card h3 {
      margin: 0 0 8px;
      font-size: 19px;
      font-weight: 800;
    }

    .step-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
    }

    .proof-band {
      background: linear-gradient(180deg, rgba(255, 241, 228, 0.7), rgba(255, 247, 239, 0.86));
      border-top: 1px solid rgba(242, 199, 170, 0.65);
      border-bottom: 1px solid rgba(242, 199, 170, 0.65);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .proof-card {
      padding: 26px;
    }

    .proof-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      font-weight: 800;
    }

    .proof-card p {
      margin: 0;
      color: var(--color-muted);
    }

    .proof-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .metric {
      padding: 16px;
      border: 1px dashed var(--color-border-strong);
      border-radius: 16px;
      background: #FFFCF7;
    }

    .metric strong {
      display: block;
      color: var(--color-primary-dark);
      font-size: 25px;
      line-height: 1.2;
      font-weight: 900;
    }

    .metric span {
      color: var(--color-muted);
      font-size: 13px;
    }

    .lead-zone {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background:
        linear-gradient(135deg, #2B1D18 0%, #513126 58%, #7A3828 100%);
      color: #fff;
    }

    .lead-zone::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px dashed rgba(255, 209, 102, 0.42);
      border-radius: 22px;
      pointer-events: none;
    }

    .lead-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 30px;
      align-items: center;
      padding: 42px;
    }

    .lead-inner h2 {
      margin: 0 0 12px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.22;
      font-weight: 800;
    }

    .lead-inner p {
      max-width: 680px;
      margin: 0;
      color: rgba(255, 247, 239, 0.82);
    }

    .lead-card {
      padding: 22px;
      background: #FFFCF7;
      color: var(--color-text);
    }

    .lead-card label {
      margin-bottom: 7px;
      color: var(--color-text);
      font-size: 14px;
      font-weight: 800;
    }

    .lead-card input,
    .lead-card select,
    .lead-card textarea {
      height: 48px;
      margin-bottom: 13px;
      border: 1px solid var(--color-border);
      border-radius: 14px;
      background: #FFF7EF;
      color: var(--color-text);
      box-shadow: none;
    }

    .lead-card textarea {
      height: 88px;
      resize: vertical;
    }

    .lead-card input:focus,
    .lead-card select:focus,
    .lead-card textarea:focus {
      border-color: var(--color-primary);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(240, 90, 60, 0.1);
    }

    .form-tip {
      margin: -2px 0 14px;
      color: var(--color-muted);
      font-size: 13px;
    }

    .faq-wrap {
      max-width: 920px;
      margin: 0 auto;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--color-border);
      border-radius: 16px;
      background: rgba(255, 252, 247, 0.92);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .accordion-title {
      display: flex;
      align-items: center;
      min-height: 58px;
      padding: 18px 54px 18px 22px;
      border: 0;
      color: var(--color-text);
      font-size: 17px;
      font-weight: 800;
      line-height: 1.45;
    }

    .accordion-title::before {
      right: 22px;
      color: var(--color-primary);
      font-size: 22px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--color-primary-dark);
      background: #FFF1E4;
    }

    .accordion-content {
      padding: 0 22px 20px;
      border: 0;
      background: #FFF1E4;
      color: var(--color-muted);
    }

    .site-footer {
      padding: 44px 0 26px;
      background: #2B1D18;
      color: rgba(255, 247, 239, 0.82);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) 0.7fr 0.7fr;
      gap: 34px;
      align-items: start;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 18px;
      font-weight: 900;
    }

    .footer-note {
      max-width: 560px;
      margin: 16px 0 0;
      color: rgba(255, 247, 239, 0.7);
      font-size: 14px;
    }

    .footer-title {
      margin: 0 0 12px;
      color: #fff;
      font-size: 15px;
      font-weight: 900;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255, 247, 239, 0.72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--color-accent-soft);
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 30px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 209, 102, 0.18);
      color: rgba(255, 247, 239, 0.56);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .hero-bento,
      .content-layout,
      .lead-inner {
        grid-template-columns: 1fr;
      }

      .hero-cta-strip {
        grid-template-columns: 1fr;
      }

      .steps-grid,
      .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sidebar-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 767px) {
      :root {
        --header-height: 68px;
      }

      .site-container {
        width: min(100% - 36px, var(--container));
      }

      .site-header .site-container {
        width: min(100% - 28px, var(--container));
      }

      .custom-nav.top-bar {
        min-height: auto;
        padding: 12px 0 18px;
      }

      .custom-nav .top-bar-right,
      .custom-nav ul {
        width: 100%;
      }

      .custom-nav ul {
        display: grid;
        gap: 10px;
      }

      .custom-nav a:not(.brand-logo),
      .custom-nav a.nav-cta {
        width: 100%;
        margin-left: 0;
      }

      .brand-text {
        max-width: calc(100vw - 120px);
        font-size: 16px;
        white-space: normal;
      }

      .page-hero {
        padding-top: 28px;
      }

      .hero-main {
        min-height: auto;
        padding: 28px 22px;
      }

      .hero-main h1 {
        font-size: 36px;
        word-break: break-word;
      }

      .hero-main p,
      .section-head p {
        font-size: 16px;
      }

      .hero-actions,
      .status-row {
        align-items: stretch;
      }

      .hero-actions .button,
      .hero-cta-strip .button {
        width: 100%;
      }

      .section {
        padding: 54px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        border-radius: 18px;
        scrollbar-width: thin;
      }

      .filter-btn {
        flex: 0 0 auto;
      }

      .ticket-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
      }

      .ticket-card::after {
        display: none;
      }

      .ticket-number {
        width: 48px;
        height: 48px;
      }

      .ticket-card h3 {
        font-size: 20px;
      }

      .small-link {
        width: 100%;
      }

      .steps-grid,
      .proof-grid,
      .proof-metrics,
      .sidebar-stack,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .lead-zone {
        border-radius: 22px;
      }

      .lead-inner {
        padding: 30px 22px;
      }

      .lead-zone::before {
        inset: 12px;
        border-radius: 18px;
      }

      .lead-card .button {
        width: 100%;
      }

      .accordion-title {
        min-height: 56px;
        padding-left: 18px;
        font-size: 16px;
      }

      .site-footer {
        text-align: center;
      }

      .footer-brand {
        justify-content: center;
      }

      .footer-note {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 520px) {
      .hero-main h1 {
        font-size: 32px;
      }

      .hero-mini {
        min-height: auto;
      }

      .status-pill,
      .tag,
      .heat-badge {
        white-space: normal;
      }

      .section-head h2 {
        font-size: 28px;
      }
    }
