/* roulang page: index */
:root {
            --primary: #e63946;
            --primary-hover: #c62835;
            --primary-glow: rgba(230, 57, 70, 0.35);
            --accent: #f4a261;
            --accent-soft: #f7c78e;
            --dark: #0d1117;
            --dark-secondary: #111820;
            --dark-tertiary: #161e28;
            --card-bg: #1a1f2b;
            --card-bg-hover: #1f2633;
            --card-border: #252d3a;
            --text: #e8eaed;
            --text-strong: #ffffff;
            --text-muted: #8b949e;
            --text-weak: #5c6370;
            --border: #30363d;
            --border-light: #3a4250;
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.25);
            --transition-fast: 0.18s ease;
            --transition: 0.3s ease;
            --transition-slow: 0.5s ease;
            --font-stack: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'Menlo', monospace;
            --container-max: 1200px;
            --container-narrow: 900px;
            --header-height: 68px;
            --section-gap: 80px;
            --section-gap-sm: 50px;
            --card-gap: 24px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        button,
        input {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            cursor: pointer;
        }
        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: 4px;
        }
        ul,
        ol {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: var(--text-strong);
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        .container--narrow {
            max-width: var(--container-narrow);
        }

        /* ========== HEADER / NAV ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--header-height);
            background: rgba(13, 17, 23, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(48, 54, 61, 0.6);
            transition: background var(--transition), box-shadow var(--transition);
        }
        .header.scrolled {
            background: rgba(13, 17, 23, 0.96);
            box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
        }
        .header__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-strong);
            letter-spacing: 0.5px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .logo__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: 0 0 18px var(--primary-glow);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .logo:hover .logo__icon {
            transform: scale(1.08);
            box-shadow: 0 0 28px rgba(230, 57, 70, 0.5);
        }
        .logo__text {
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav__list {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav__link {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: color var(--transition-fast), background var(--transition-fast);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .nav__link:hover {
            color: var(--text-strong);
            background: rgba(255, 255, 255, 0.04);
        }
        .nav__link--cta {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            padding: 9px 20px;
            margin-left: 6px;
            border-radius: 22px;
            box-shadow: 0 2px 14px var(--primary-glow);
            transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .nav__link--cta:hover {
            background: var(--primary-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 22px rgba(230, 57, 70, 0.45);
        }
        .nav__toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-strong);
            font-size: 1.5rem;
            padding: 6px;
            cursor: pointer;
            line-height: 1;
            border-radius: 6px;
            transition: background var(--transition-fast);
        }
        .nav__toggle:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: calc(var(--header-height) + 40px) 24px 60px;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.55) 0%, rgba(13, 17, 23, 0.78) 50%, rgba(13, 17, 23, 0.94) 100%),
                url('/assets/images/backpic/back-1.webp') center center / cover no-repeat;
            background-attachment: fixed;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 55% 40%, rgba(230, 57, 70, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 65%, rgba(244, 162, 97, 0.07) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero__content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 780px;
            animation: fadeInUp 0.8s ease-out;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(32px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(230, 57, 70, 0.15);
            border: 1px solid rgba(230, 57, 70, 0.35);
            color: #f8717d;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            animation: pulse-badge 2.4s ease-in-out infinite;
        }
        @keyframes pulse-badge {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.3);
            }
            50% {
                box-shadow: 0 0 0 14px rgba(230, 57, 70, 0);
            }
        }
        .hero__badge-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: blink-dot 1.2s ease-in-out infinite;
        }
        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        .hero__title {
            font-size: 3.2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            margin-bottom: 18px;
            line-height: 1.15;
            color: #fff;
        }
        .hero__title .highlight {
            color: var(--primary);
            position: relative;
        }
        .hero__subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 26px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.4px;
            transition: all var(--transition);
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }
        .btn--primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 20px var(--primary-glow);
        }
        .btn--primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
            color: #fff;
        }
        .btn--outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        .btn--outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn--lg {
            padding: 16px 36px;
            font-size: 1.1rem;
            border-radius: 30px;
        }
        .hero__live-bar {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
            background: rgba(22, 27, 34, 0.8);
            border: 1px solid var(--border);
            padding: 10px 20px;
            border-radius: 24px;
            font-size: 0.9rem;
            color: var(--text-muted);
            backdrop-filter: blur(8px);
        }
        .hero__live-dot {
            width: 10px;
            height: 10px;
            background: #4ade80;
            border-radius: 50%;
            animation: blink-dot 1s ease-in-out infinite;
        }
        .hero__live-count {
            color: #4ade80;
            font-weight: 700;
        }

        /* ========== SECTIONS ========== */
        .section {
            padding: var(--section-gap) 24px;
        }
        .section--dark {
            background: var(--dark-secondary);
        }
        .section--darker {
            background: var(--dark);
        }
        .section--alt {
            background: var(--dark-tertiary);
        }
        .section--bg-img {
            position: relative;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.9) 0%, rgba(17, 24, 32, 0.85) 100%),
                url('/assets/images/backpic/back-2.webp') center center / cover no-repeat;
            background-attachment: fixed;
            z-index: 1;
        }
        .section__header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section__label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .section__title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }
        .section__desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.65;
        }

        /* ========== FEATURES GRID ========== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--card-gap);
        }
        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity var(--transition);
        }
        .feature-card:hover {
            background: var(--card-bg-hover);
            border-color: var(--border-light);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .feature-card:hover::after {
            opacity: 1;
        }
        .feature-card__icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(230, 57, 70, 0.1);
            border-radius: var(--radius);
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 18px;
            transition: all var(--transition);
        }
        .feature-card:hover .feature-card__icon {
            background: var(--primary);
            color: #fff;
            box-shadow: var(--shadow-glow);
        }
        .feature-card__title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .feature-card__desc {
            color: var(--text-muted);
            font-size: 0.93rem;
            line-height: 1.6;
        }

        /* ========== EVENTS / CARDS ========== */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--card-gap);
        }
        .event-card {
            display: flex;
            gap: 20px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition);
            align-items: stretch;
        }
        .event-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .event-card__img {
            width: 200px;
            flex-shrink: 0;
            object-fit: cover;
            border-radius: 0;
            min-height: 100%;
        }
        .event-card__body {
            padding: 20px 20px 20px 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 8px;
            flex: 1;
        }
        .event-card__tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            background: rgba(244, 162, 97, 0.1);
            padding: 4px 10px;
            border-radius: 12px;
            width: fit-content;
        }
        .event-card__tag--live {
            color: #4ade80;
            background: rgba(74, 222, 128, 0.1);
        }
        .event-card__title {
            font-size: 1.1rem;
            font-weight: 700;
        }
        .event-card__meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .event-card__meta i {
            color: var(--text-weak);
        }

        /* ========== STATS ========== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            backdrop-filter: blur(4px);
            transition: all var(--transition);
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }
        .stat-item__number {
            font-size: 2.6rem;
            font-weight: 900;
            color: #fff;
            letter-spacing: -1px;
            line-height: 1;
            margin-bottom: 6px;
        }
        .stat-item__number .plus {
            color: var(--primary);
        }
        .stat-item__label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* ========== HOW IT WORKS ========== */
        .steps-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            counter-reset: step;
        }
        .step-item {
            position: relative;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            text-align: center;
            transition: all var(--transition);
            counter-increment: step;
        }
        .step-item:hover {
            border-color: var(--border-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .step-item__num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 14px;
            box-shadow: 0 0 16px var(--primary-glow);
        }
        .step-item__title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 6px;
        }
        .step-item__desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ========== FAQ ========== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-light);
        }
        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 22px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-strong);
            list-style: none;
            user-select: none;
            gap: 12px;
            transition: background var(--transition-fast);
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-item summary .faq-icon {
            flex-shrink: 0;
            transition: transform var(--transition);
            color: var(--text-weak);
            font-size: 0.85rem;
        }
        .faq-item[open] summary .faq-icon {
            transform: rotate(180deg);
            color: var(--primary);
        }
        .faq-item .faq-answer {
            padding: 0 22px 20px;
            color: var(--text-muted);
            font-size: 0.93rem;
            line-height: 1.7;
        }
        .faq-item[open] {
            border-color: var(--border-light);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.06);
        }

        /* ========== CTA ========== */
        .cta-section {
            position: relative;
            background: linear-gradient(180deg, rgba(13, 17, 23, 0.82) 0%, rgba(17, 24, 32, 0.88) 100%),
                url('/assets/images/backpic/back-3.webp') center center / cover no-repeat;
            background-attachment: fixed;
            text-align: center;
            padding: 80px 24px;
            border-radius: 0;
            z-index: 1;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(230, 57, 70, 0.1) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }
        .cta-section__inner {
            position: relative;
            z-index: 2;
            max-width: 650px;
            margin: 0 auto;
        }
        .cta-section__title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 14px;
            color: #fff;
        }
        .cta-section__desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .cta-section .btn--primary {
            font-size: 1.1rem;
            padding: 16px 40px;
            border-radius: 30px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--dark-secondary);
            border-top: 1px solid var(--border);
            padding: 40px 24px 28px;
            text-align: center;
        }
        .footer__brand {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-strong);
            margin-bottom: 8px;
        }
        .footer__links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            margin-bottom: 16px;
        }
        .footer__links a {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer__links a:hover {
            color: var(--primary);
        }
        .footer__copy {
            font-size: 0.82rem;
            color: var(--text-weak);
            line-height: 1.5;
        }
        .footer__copy span {
            color: var(--text-muted);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .events-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .event-card {
                flex-direction: column;
            }
            .event-card__img {
                width: 100%;
                height: 180px;
                min-height: auto;
            }
            .event-card__body {
                padding: 16px;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .steps-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .hero__title {
                font-size: 2.5rem;
            }
            .section__title {
                font-size: 1.8rem;
            }
            .section {
                padding: 60px 20px;
            }
        }

        @media (max-width: 768px) {
            .nav__list {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                right: 0;
                background: rgba(13, 17, 23, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 16px 20px;
                gap: 2px;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-lg);
                z-index: 999;
            }
            .nav__list--open {
                display: flex;
            }
            .nav__link {
                width: 100%;
                padding: 12px 16px;
                border-radius: 8px;
                font-size: 1rem;
            }
            .nav__link--cta {
                margin-left: 0;
                text-align: center;
                justify-content: center;
                border-radius: 8px;
                margin-top: 6px;
            }
            .nav__toggle {
                display: block;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .events-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .event-card {
                flex-direction: row;
            }
            .event-card__img {
                width: 140px;
                height: auto;
                min-height: 100%;
            }
            .event-card__body {
                padding: 14px 14px 14px 4px;
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-item__number {
                font-size: 2rem;
            }
            .steps-list {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .hero__title {
                font-size: 2rem;
            }
            .hero__subtitle {
                font-size: 1rem;
            }
            .section__title {
                font-size: 1.6rem;
            }
            .section {
                padding: 48px 16px;
            }
            .section__header {
                margin-bottom: 32px;
            }
            .cta-section__title {
                font-size: 1.5rem;
            }
            .hero {
                background-attachment: scroll;
            }
            .section--bg-img {
                background-attachment: scroll;
            }
            .cta-section {
                background-attachment: scroll;
            }
        }

        @media (max-width: 520px) {
            .hero__title {
                font-size: 1.6rem;
                letter-spacing: 0;
            }
            .hero__subtitle {
                font-size: 0.9rem;
            }
            .hero__actions {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .event-card {
                flex-direction: column;
            }
            .event-card__img {
                width: 100%;
                height: 160px;
                min-height: auto;
            }
            .event-card__body {
                padding: 14px;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-item {
                padding: 18px 12px;
            }
            .stat-item__number {
                font-size: 1.7rem;
            }
            .steps-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .section__title {
                font-size: 1.4rem;
            }
            .section {
                padding: 36px 12px;
            }
            .section__header {
                margin-bottom: 24px;
            }
            .faq-item summary {
                padding: 14px 16px;
                font-size: 0.9rem;
            }
            .faq-item .faq-answer {
                padding: 0 16px 16px;
                font-size: 0.85rem;
            }
            .footer {
                padding: 28px 16px 20px;
            }
            .cta-section {
                padding: 50px 16px;
            }
            .header__inner {
                padding: 0 14px;
            }
            .logo {
                font-size: 1.15rem;
                gap: 7px;
            }
            .logo__icon {
                width: 34px;
                height: 34px;
                font-size: 0.95rem;
            }
            .container {
                padding: 0 12px;
            }
        }
