/* roulang page: index */
:root {
            --bg-deep: #15171A;
            --bg-warm: #1C1917;
            --bg-card: #201D1B;
            --bg-card-alt: #252220;
            --primary: #F97316;
            --primary-light: #FFB347;
            --primary-glow: rgba(249, 115, 22, 0.35);
            --accent: #2DD4BF;
            --accent-glow: rgba(45, 212, 191, 0.3);
            --muted: #6B7280;
            --text-main: #E8E4E0;
            --text-weak: #A8A29E;
            --text-dim: #78716C;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --border-mid: rgba(255, 255, 255, 0.14);
            --border-bright: rgba(255, 255, 255, 0.22);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 18px;
            --radius-xl: 22px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
            --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.45);
            --shadow-glow-primary: 0 0 24px rgba(249, 115, 22, 0.3);
            --shadow-glow-accent: 0 0 20px rgba(45, 212, 191, 0.25);
            --font-heading: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
            --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --container-max: 1200px;
            --container-px: 20px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-main);
            background-color: var(--bg-deep);
            min-height: 100vh;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all var(--transition-smooth);
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2.5px solid var(--accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        input {
            font-family: inherit;
            transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
        }

        .container {
            max-width: var(--container-max);
            margin-left: auto;
            margin-right: auto;
            padding-left: var(--container-px);
            padding-right: var(--container-px);
        }

        /* 导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(21, 23, 26, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-subtle);
            transition: background var(--transition-smooth);
        }
        .site-header.scrolled {
            background: rgba(21, 23, 26, 0.97);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 58px;
            gap: 16px;
            flex-wrap: wrap;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 17px;
            color: var(--text-main);
            white-space: nowrap;
            flex-shrink: 0;
            letter-spacing: -0.01em;
        }
        .nav-brand-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-sm);
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 800;
            color: #1C1917;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-weak);
            transition: all var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links a:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.05);
        }
        .nav-links a.active {
            color: var(--primary);
            background: rgba(249, 115, 22, 0.1);
            font-weight: 600;
        }
        .nav-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .chip {
            display: inline-flex;
            align-items: center;
            padding: 5px 13px;
            border-radius: 16px;
            font-size: 12.5px;
            font-weight: 600;
            white-space: nowrap;
            letter-spacing: 0.02em;
            transition: all var(--transition-fast);
        }
        .chip-preheat {
            border: 1.5px solid var(--primary-light);
            color: var(--primary-light);
            background: rgba(255, 179, 71, 0.08);
        }
        .chip-live {
            background: var(--accent);
            color: #0D1117;
            border: 1.5px solid var(--accent);
            animation: pulse-live 2.2s ease-in-out infinite;
        }
        @keyframes pulse-live {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.45);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(45, 212, 191, 0);
            }
        }
        .chip-replay {
            border: 1.5px solid rgba(107, 114, 128, 0.5);
            color: var(--muted);
            background: rgba(107, 114, 128, 0.06);
        }
        .chip:hover {
            transform: translateY(-1px);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-main);
            font-size: 24px;
            padding: 6px;
            cursor: pointer;
            border-radius: 6px;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        /* 按钮 */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 28px;
            background: var(--primary);
            color: #1C1917;
            font-weight: 700;
            font-size: 15px;
            border-radius: 28px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
            letter-spacing: 0.01em;
        }
        .btn-primary:hover {
            background: #FB8A2E;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 26px;
            background: transparent;
            color: var(--text-main);
            font-weight: 600;
            font-size: 15px;
            border-radius: 28px;
            border: 1.5px solid var(--border-mid);
            cursor: pointer;
            transition: all var(--transition-smooth);
            letter-spacing: 0.01em;
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--border-bright);
            transform: translateY(-1px);
        }
        .btn-outline:active {
            transform: translateY(0);
        }

        /* Hero */
        .hero-section {
            position: relative;
            min-height: 580px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #0D1117;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.72) 0%, rgba(21, 23, 26, 0.78) 40%, rgba(28, 25, 23, 0.85) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 80px 0 70px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }
        .hero-brand-block {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 22px;
        }
        .hero-avatar {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: 800;
            color: #1C1917;
            flex-shrink: 0;
            box-shadow: var(--shadow-glow-primary);
            letter-spacing: -0.02em;
        }
        .hero-brand-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 26px;
            color: #fff;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }
        .hero-brand-name span {
            display: block;
            font-size: 14px;
            font-weight: 400;
            color: var(--text-weak);
            letter-spacing: 0.02em;
            margin-top: 2px;
        }
        .hero-stats-row {
            display: flex;
            gap: 28px;
            margin-bottom: 26px;
            flex-wrap: wrap;
        }
        .hero-stat {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .hero-stat-num {
            font-family: var(--font-heading);
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
        }
        .hero-stat-label {
            font-size: 13px;
            color: var(--text-weak);
            letter-spacing: 0.03em;
        }
        .hero-divider {
            width: 1px;
            height: 40px;
            background: var(--border-mid);
            align-self: center;
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 14px;
            letter-spacing: -0.015em;
            max-width: 700px;
        }
        .hero-subtitle {
            font-size: 16px;
            color: var(--text-weak);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 560px;
        }
        .hero-cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* 通用板块 */
        .section-block {
            padding: 70px 0;
        }
        .section-block.dark-bg {
            background: var(--bg-warm);
        }
        .section-label {
            display: inline-block;
            font-size: 12.5px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .section-desc {
            font-size: 15px;
            color: var(--text-weak);
            line-height: 1.7;
            max-width: 620px;
            margin-bottom: 36px;
        }

        /* 票根卡片 */
        .ticket-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: row;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
        }
        .ticket-card:hover {
            box-shadow: var(--shadow-elevated);
            border-color: var(--border-mid);
            transform: translateY(-2px);
        }
        .ticket-card-left {
            flex-shrink: 0;
            width: 180px;
            min-height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
            border-right: 2px dashed rgba(255, 255, 255, 0.15);
        }
        .ticket-card-left::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 22px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--bg-deep);
            border: 2px solid rgba(255, 255, 255, 0.15);
            z-index: 2;
        }
        .ticket-card-left::before {
            content: '';
            position: absolute;
            right: -10px;
            bottom: 22px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--bg-deep);
            border: 2px solid rgba(255, 255, 255, 0.15);
            z-index: 2;
        }
        .ticket-card-body {
            flex: 1;
            padding: 22px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }
        .ticket-card-body h3 {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin: 0;
            letter-spacing: -0.005em;
        }
        .ticket-card-body p {
            font-size: 14px;
            color: var(--text-weak);
            margin: 0;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .ticket-card-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .tag {
            display: inline-block;
            padding: 4px 11px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.02em;
            border: 1px solid var(--border-mid);
            color: var(--text-weak);
            background: rgba(255, 255, 255, 0.03);
        }
        .tag-hot {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(249, 115, 22, 0.08);
        }
        .tag-new {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(45, 212, 191, 0.08);
        }

        /* 数据卡片 */
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .stat-card:hover {
            border-color: var(--border-mid);
            box-shadow: var(--shadow-elevated);
        }
        .stat-card .stat-num {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .stat-card .stat-label {
            font-size: 14px;
            color: var(--text-weak);
            margin-top: 6px;
        }

        /* 资讯区 */
        .info-list-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .info-list-item:hover {
            padding-left: 8px;
            color: #fff;
        }
        .info-list-item:last-child {
            border-bottom: none;
        }
        .info-list-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            flex-shrink: 0;
            margin-top: 7px;
        }
        .info-list-content h4 {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin: 0 0 4px;
            letter-spacing: -0.005em;
        }
        .info-list-content .info-meta {
            font-size: 12.5px;
            color: var(--text-dim);
        }
        .info-recommend-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .info-recommend-card:hover {
            box-shadow: var(--shadow-elevated);
            border-color: var(--border-mid);
            transform: translateY(-2px);
        }
        .info-recommend-img {
            height: 180px;
            background-size: cover;
            background-position: center;
        }
        .info-recommend-body {
            padding: 16px;
        }
        .info-recommend-body h4 {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 6px;
        }
        .info-recommend-body p {
            font-size: 13px;
            color: var(--text-weak);
            margin: 0;
            line-height: 1.5;
        }

        /* 口碑气泡 */
        .bubble-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 22px 20px;
            position: relative;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
        }
        .bubble-card:hover {
            box-shadow: var(--shadow-elevated);
            border-color: var(--border-mid);
        }
        .bubble-card::after {
            content: '';
            position: absolute;
            bottom: -14px;
            left: 28px;
            width: 0;
            height: 0;
            border-left: 14px solid transparent;
            border-right: 14px solid transparent;
            border-top: 16px solid var(--bg-card);
        }
        .bubble-user {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding-left: 8px;
        }
        .bubble-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--muted);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #fff;
            font-size: 16px;
        }
        .bubble-name {
            font-weight: 600;
            font-size: 14px;
            color: #fff;
        }
        .bubble-role {
            font-size: 12px;
            color: var(--text-dim);
        }

        /* 保障图标条 */
        .guarantee-strip {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 40px 0;
        }
        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
        }
        .guarantee-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(45, 212, 191, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent);
            flex-shrink: 0;
        }

        /* 证言卡片 */
        .testimonial-card {
            background: var(--bg-card-alt);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-elevated);
            border-left-color: var(--primary-light);
        }
        .testimonial-card .quote-icon {
            font-size: 48px;
            color: rgba(249, 115, 22, 0.2);
            line-height: 1;
            margin-bottom: 8px;
        }
        .testimonial-card .quote-text {
            font-size: 15px;
            color: var(--text-main);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .testimonial-card .quote-author {
            font-weight: 700;
            font-size: 14px;
            color: #fff;
        }
        .testimonial-card .quote-meta {
            font-size: 12px;
            color: var(--text-dim);
        }

        /* 票种对比 */
        .plan-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-smooth);
            position: relative;
        }
        .plan-card:hover {
            box-shadow: var(--shadow-elevated);
            border-color: var(--border-mid);
            transform: translateY(-3px);
        }
        .plan-card.featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-glow-primary);
            background: var(--bg-card-alt);
        }
        .plan-card.featured::before {
            content: '推荐';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #1C1917;
            padding: 4px 16px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .plan-name {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }
        .plan-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .plan-price span {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-weak);
        }
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }
        .plan-features li {
            padding: 6px 0;
            font-size: 14px;
            color: var(--text-weak);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .plan-features li i {
            color: var(--accent);
            font-size: 12px;
        }

        /* CTA区 */
        .cta-section {
            position: relative;
            overflow: hidden;
            background: #0D1117;
        }
        .cta-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/coverpic/cover-3.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
            opacity: 0.35;
        }
        .cta-overlay {
            position: absolute;
            inset: 0;
            background: rgba(13, 17, 23, 0.8);
            z-index: 1;
        }
        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 80px 20px;
        }
        .cta-content h2 {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .cta-content p {
            font-size: 16px;
            color: var(--text-weak);
            margin-bottom: 28px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-form {
            display: flex;
            gap: 10px;
            max-width: 460px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .cta-input {
            flex: 1;
            min-width: 220px;
            padding: 13px 18px;
            border-radius: 28px;
            border: 1.5px solid var(--border-mid);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 15px;
            outline: none;
            transition: all var(--transition-fast);
        }
        .cta-input::placeholder {
            color: var(--text-dim);
        }
        .cta-input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
            background: rgba(255, 255, 255, 0.1);
        }

        /* 页脚 */
        .site-footer {
            background: #0D1117;
            border-top: 1px solid var(--border-subtle);
            padding: 50px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 36px;
        }
        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer-brand-desc {
            font-size: 13px;
            color: var(--text-dim);
            line-height: 1.6;
        }
        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.02em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: var(--text-dim);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
            text-align: center;
            font-size: 12px;
            color: var(--text-dim);
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 34px;
            }
            .hero-brand-name {
                font-size: 22px;
            }
            .hero-avatar {
                width: 64px;
                height: 64px;
                font-size: 30px;
                border-radius: 16px;
            }
            .ticket-card {
                flex-direction: column;
            }
            .ticket-card-left {
                width: 100%;
                min-height: 160px;
                border-right: none;
                border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
            }
            .ticket-card-left::after,
            .ticket-card-left::before {
                display: none;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            .nav-links {
                gap: 2px;
            }
            .nav-links a {
                padding: 8px 10px;
                font-size: 13px;
            }
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 28px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-stats-row {
                gap: 18px;
            }
            .hero-stat-num {
                font-size: 24px;
            }
            .hero-avatar {
                width: 56px;
                height: 56px;
                font-size: 26px;
                border-radius: 14px;
            }
            .hero-brand-name {
                font-size: 19px;
            }
            .section-title {
                font-size: 24px;
            }
            .section-block {
                padding: 48px 0;
            }
            .nav-links {
                display: none;
            }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 58px;
                left: 0;
                right: 0;
                background: rgba(21, 23, 26, 0.98);
                padding: 16px;
                border-bottom: 1px solid var(--border-subtle);
                gap: 4px;
                z-index: 99;
            }
            .nav-links.open a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 10px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-chips {
                order: 3;
                width: 100%;
                overflow-x: auto;
                padding-bottom: 4px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .nav-chips::-webkit-scrollbar {
                display: none;
            }
            .nav-inner {
                height: auto;
                padding: 10px 0;
                gap: 8px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .cta-content h2 {
                font-size: 26px;
            }
            .guarantee-strip {
                gap: 20px;
                flex-direction: column;
                align-items: flex-start;
                padding: 24px 0;
            }
            .plan-card {
                margin-bottom: 16px;
            }
            .hero-content {
                padding: 50px 0 44px;
                align-items: center;
                text-align: center;
            }
            .hero-cta-row {
                justify-content: center;
            }
            .hero-title {
                max-width: 100%;
            }
            .hero-subtitle {
                max-width: 100%;
            }
            .hero-stats-row {
                justify-content: center;
            }
            .hero-divider {
                display: none;
            }
        }
        @media (max-width: 520px) {
            .hero-title {
                font-size: 24px;
            }
            .hero-avatar {
                width: 48px;
                height: 48px;
                font-size: 22px;
                border-radius: 12px;
            }
            .hero-brand-name {
                font-size: 16px;
            }
            .hero-stat-num {
                font-size: 20px;
            }
            .hero-stats-row {
                gap: 12px;
                flex-wrap: wrap;
            }
            .section-title {
                font-size: 21px;
            }
            .btn-primary,
            .btn-outline {
                padding: 11px 20px;
                font-size: 14px;
            }
            .cta-form {
                flex-direction: column;
                align-items: stretch;
            }
            .cta-input {
                min-width: auto;
            }
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
        }
