/* roulang page: index */
/* ===== Design Tokens ===== */
        :root {
            --color-primary: #C75B3A;
            --color-primary-dark: #A8482B;
            --color-primary-light: #F6E4DA;
            --color-accent: #3D8273;
            --color-accent-light: #E4F0EC;
            --color-ink: #2B2622;
            --color-muted: #6E655D;
            --color-bg: #F6F1EA;
            --color-surface: #FFFFFF;
            --color-border: #E8DED2;
            --color-dark: #211D19;
            --radius-card: 16px;
            --radius-img: 12px;
            --radius-btn: 999px;
            --radius-input: 14px;
            --shadow-sm: 0 1px 2px rgba(43, 38, 34, .06), 0 8px 24px rgba(43, 38, 34, .06);
            --shadow-lg: 0 2px 4px rgba(43, 38, 34, .08), 0 16px 40px rgba(43, 38, 34, .12);
            --container-max: 1200px;
            --space-section: clamp(4rem, 8vw, 7rem);
            --font-stack: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-stack);
            font-size: 1rem;
            line-height: 1.75;
            color: var(--color-ink);
            background: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            font-display: swap;
        }
        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
            border-radius: var(--radius-img);
        }
        a {
            color: var(--color-ink);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
        }
        a:hover {
            color: var(--color-primary);
            border-color: var(--color-primary);
        }
        ul,
        ol {
            list-style: none;
        }
        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
            transition: all .2s ease;
        }
        input {
            font-family: inherit;
            font-size: 1rem;
        }
        :focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
            box-shadow: 0 0 0 4px rgba(199, 91, 58, .15);
            border-radius: 4px;
        }

        /* ===== Layout ===== */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-head {
            max-width: 720px;
            margin-bottom: clamp(2rem, 4vw, 3rem);
        }
        .section-head h2 {
            font-size: clamp(1.5rem, 2.5vw, 2.25rem);
            font-weight: 800;
            letter-spacing: -0.01em;
            color: var(--color-ink);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .section-head p {
            color: var(--color-muted);
            font-size: 1rem;
        }
        .section-subtitle {
            color: var(--color-muted);
            font-size: 1rem;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 44px;
            padding: 0 26px;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 0.95rem;
            line-height: 1;
            border: 1.5px solid transparent;
            white-space: nowrap;
            transition: all .2s ease;
        }
        .btn-lg {
            height: 50px;
            padding: 0 32px;
            font-size: 1rem;
        }
        .btn-primary {
            background: var(--color-primary);
            color: #fff;
            border-color: var(--color-primary);
        }
        .btn-primary:hover {
            background: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }
        .btn-ghost {
            background: transparent;
            color: var(--color-primary);
            border-color: var(--color-primary);
        }
        .btn-ghost:hover {
            background: rgba(199, 91, 58, .07);
            color: var(--color-primary-dark);
            border-color: var(--color-primary-dark);
        }
        .btn-white {
            background: #fff;
            color: var(--color-dark);
            border-color: #fff;
        }
        .btn-white:hover {
            background: #f0ece6;
            border-color: #f0ece6;
            color: var(--color-dark);
        }
        .btn-outline-white {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, .72);
        }
        .btn-outline-white:hover {
            background: rgba(255, 255, 255, .1);
            border-color: #fff;
            color: #fff;
        }

        /* ===== Badge ===== */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--color-primary-light);
            color: var(--color-primary-dark);
            border-radius: 999px;
            padding: 4px 14px;
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: .02em;
        }
        .badge-accent {
            background: var(--color-accent-light);
            color: var(--color-accent);
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(246, 241, 234, .88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--color-border);
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 22px;
            height: 72px;
        }
        .logo {
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.01em;
            color: var(--color-ink);
            border-bottom: none;
            white-space: nowrap;
        }
        .logo:hover {
            color: var(--color-primary);
            border-bottom: none;
        }
        .logo-icon {
            display: inline-block;
            width: 34px;
            height: 34px;
            background: var(--color-primary);
            border-radius: 10px;
            color: #fff;
            text-align: center;
            line-height: 34px;
            font-size: 1.1rem;
            margin-right: 8px;
        }
        .nav-search {
            flex: 1;
            max-width: 520px;
            display: flex;
            align-items: center;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-input);
            padding: 4px 4px 4px 14px;
            transition: border-color .2s ease, box-shadow .2s ease;
        }
        .nav-search:focus-within {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(199, 91, 58, .15);
        }
        .nav-search svg {
            flex-shrink: 0;
            color: var(--color-primary);
        }
        .nav-search input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            height: 42px;
            min-width: 0;
            font-size: .95rem;
            color: var(--color-ink);
        }
        .nav-search input::placeholder {
            color: var(--color-muted);
        }
        .nav-search .btn {
            height: 38px;
            padding: 0 18px;
            font-size: .9rem;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .nav-links a {
            font-weight: 600;
            font-size: .93rem;
            border-bottom: none;
            color: var(--color-ink);
        }
        .nav-links a:hover {
            color: var(--color-primary);
        }
        .btn-follow {
            height: 38px;
            padding: 0 20px;
            font-size: .9rem;
            flex-shrink: 0;
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            border: 1px solid var(--color-border);
            background: var(--color-surface);
            flex-shrink: 0;
        }
        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--color-ink);
            border-radius: 2px;
            transition: transform .2s ease, opacity .2s ease;
        }
        .nav-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-menu {
            display: none;
            padding: 0 20px 16px;
            flex-direction: column;
            gap: 4px;
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            padding: 12px 8px;
            border-radius: 10px;
            font-weight: 600;
            color: var(--color-ink);
            border-bottom: none;
        }
        .mobile-menu a:hover {
            background: var(--color-primary-light);
            color: var(--color-primary-dark);
        }

        /* ===== Hero ===== */
        .hero {
            border-bottom: 4px solid var(--color-primary);
            padding: clamp(3rem, 7vw, 6rem) 0 var(--space-section);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(199, 91, 58, .08), transparent 65%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-content .badge {
            margin-bottom: 18px;
        }
        .hero-content h1 {
            font-size: clamp(2.25rem, 4.5vw, 3.5rem);
            line-height: 1.2;
            letter-spacing: -0.01em;
            font-weight: 800;
            margin-bottom: 18px;
            color: var(--color-ink);
        }
        .hero-sub {
            font-size: 1.1rem;
            color: var(--color-muted);
            max-width: 480px;
            margin-bottom: 28px;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 36px;
        }
        .hero-stats {
            display: flex;
            align-items: center;
            gap: 0;
            flex-wrap: wrap;
        }
        .stat {
            padding: 0 26px;
            text-align: center;
        }
        .stat:first-child {
            padding-left: 0;
        }
        .stat:not(:last-child) {
            border-right: 1px solid var(--color-border);
        }
        .stat-num {
            display: block;
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 800;
            color: var(--color-ink);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .stat-label {
            display: block;
            font-size: .85rem;
            color: var(--color-muted);
            margin-top: 2px;
        }
        .hero-visual {
            position: relative;
            z-index: 1;
        }
        .hero-img-wrap {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3.2;
        }
        .hero-float-card {
            position: absolute;
            bottom: -22px;
            left: -22px;
            background: var(--color-surface);
            border-radius: 14px;
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--color-primary);
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 3;
        }
        .hero-float-card .float-dot {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .hero-float-card strong {
            display: block;
            font-size: .95rem;
            line-height: 1.3;
        }
        .hero-float-card p {
            font-size: .8rem;
            color: var(--color-muted);
            line-height: 1.4;
        }

        /* ===== Bento Section ===== */
        .bento-section {
            padding: var(--space-section) 0;
        }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-areas:
                "large large card2"
                "large large card3"
                "card4 card5 card6";
            gap: 20px;
        }
        .bento-large {
            grid-area: large;
        }
        .bento-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .2s ease, transform .2s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        .bento-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .bento-large {
            padding: 0;
        }
        .bento-large .bento-media {
            height: 210px;
            margin: 0;
            border-radius: 0;
            overflow: hidden;
        }
        .bento-large .bento-media img {
            width: 100%;
            height: 100%;
            border-radius: 0;
        }
        .bento-large .bento-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .bento-card h3 {
            font-size: 1.08rem;
            margin-bottom: 8px;
            font-weight: 800;
            color: var(--color-ink);
        }
        .bento-card p {
            font-size: .9rem;
            color: var(--color-muted);
            line-height: 1.6;
            flex: 1;
        }
        .bento-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 14px;
            flex-shrink: 0;
        }
        .bento-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-weight: 700;
            font-size: .88rem;
            color: var(--color-primary);
            margin-top: 14px;
            align-self: flex-start;
        }
        .bento-link:hover {
            color: var(--color-primary-dark);
        }

        /* ===== Scene Scroll ===== */
        .scenes-section {
            padding-bottom: var(--space-section);
        }
        .scene-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
        }
        .scene-head .section-head {
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
            max-width: 600px;
        }
        .scene-head .section-head .section-subtitle {
            margin: 0;
        }
        .scene-track {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 20px;
            scrollbar-width: thin;
            scrollbar-color: var(--color-border) transparent;
        }
        .scene-track::-webkit-scrollbar {
            height: 6px;
        }
        .scene-track::-webkit-scrollbar-thumb {
            background: var(--color-border);
            border-radius: 6px;
        }
        .scene-card {
            flex: 0 0 270px;
            max-width: 30%;
            scroll-snap-align: start;
            background: var(--color-primary-light);
            border-radius: var(--radius-card);
            overflow: hidden;
            padding: 0;
            transition: box-shadow .2s ease, transform .2s ease;
        }
        .scene-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .scene-card .scene-media {
            height: 130px;
            overflow: hidden;
            border-radius: 0;
        }
        .scene-card .scene-media img {
            width: 100%;
            height: 100%;
            border-radius: 0;
        }
        .scene-card .scene-body {
            padding: 18px;
        }
        .scene-tag {
            display: inline-block;
            background: var(--color-primary);
            color: #fff;
            font-size: .78rem;
            font-weight: 700;
            border-radius: 999px;
            padding: 2px 12px;
            margin-bottom: 10px;
            letter-spacing: .03em;
        }
        .scene-card p {
            font-size: .88rem;
            color: var(--color-muted);
            line-height: 1.6;
        }

        /* ===== Ranking ===== */
        .ranking-section {
            padding: var(--space-section) 0;
            background: var(--color-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }
        .ranking-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 32px;
            align-items: stretch;
        }
        .ranking-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            border-radius: 14px;
            border: 1px solid var(--color-border);
            background: var(--color-bg);
            transition: background .2s, box-shadow .2s, transform .2s;
        }
        .ranking-item:hover {
            background: var(--color-primary-light);
            border-color: transparent;
            box-shadow: var(--shadow-sm);
            transform: translateX(4px);
        }
        .rank-num {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
            width: 34px;
            text-align: center;
            flex-shrink: 0;
        }
        .ranking-item .rank-info {
            flex: 1;
            min-width: 0;
        }
        .ranking-item h4 {
            font-size: .98rem;
            font-weight: 700;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ranking-item p {
            font-size: .82rem;
            color: var(--color-muted);
        }
        .rank-tag {
            font-size: .76rem;
            color: var(--color-accent);
            background: var(--color-accent-light);
            border-radius: 999px;
            padding: 2px 10px;
            font-weight: 600;
            flex-shrink: 0;
        }
        .ranking-featured {
            background: var(--color-primary-light);
            border-radius: var(--radius-card);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
            transition: box-shadow .2s, transform .2s;
        }
        .ranking-featured:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .ranking-featured .featured-img {
            height: 160px;
            overflow: hidden;
            border-radius: 0;
        }
        .ranking-featured .featured-img img {
            width: 100%;
            height: 100%;
            border-radius: 0;
        }
        .ranking-featured .featured-body {
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
        }
        .ranking-featured h3 {
            font-size: 1.1rem;
            font-weight: 800;
            line-height: 1.4;
        }
        .ranking-featured p {
            font-size: .88rem;
            color: var(--color-muted);
        }
        .ranking-featured a {
            font-weight: 700;
            color: var(--color-primary);
            font-size: .9rem;
            margin-top: auto;
            padding-top: 10px;
        }

        /* ===== Testimonials ===== */
        .testimonials-section {
            padding: var(--space-section) 0;
        }
        .testimonials-wall {
            columns: 2;
            column-gap: 20px;
        }
        .testimonial-card {
            break-inside: avoid;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-card);
            padding: 20px 22px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .2s, transform .2s;
        }
        .testimonial-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .t-head {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .t-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            flex-shrink: 0;
        }
        .t-avatar.alt {
            background: var(--color-accent);
        }
        .t-avatar.alt2 {
            background: #C9A86C;
        }
        .t-meta {
            flex: 1;
        }
        .t-name {
            font-weight: 700;
            font-size: .92rem;
        }
        .t-city {
            font-size: .78rem;
            color: var(--color-muted);
        }
        .t-text {
            font-size: .9rem;
            line-height: 1.7;
            margin-bottom: 12px;
            color: var(--color-ink);
        }
        .t-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }
        .t-badge {
            font-size: .74rem;
            font-weight: 600;
            color: var(--color-accent);
            background: var(--color-accent-light);
            padding: 2px 10px;
            border-radius: 999px;
        }
        .t-time {
            font-size: .76rem;
            color: var(--color-muted);
        }
        .testimonials-more {
            text-align: center;
            margin-top: 28px;
        }

        /* ===== Pricing ===== */
        .pricing-section {
            padding: var(--space-section) 0;
            background: var(--color-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }
        .pricing-card {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 20px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm);
            transition: box-shadow .2s, transform .2s;
            position: relative;
        }
        .pricing-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .pricing-card.featured {
            border: 2px solid var(--color-primary);
            background: var(--color-primary-light);
            transform: scale(1.05);
            z-index: 2;
        }
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-4px);
        }
        .pricing-popular {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--color-accent);
            color: #fff;
            font-size: .76rem;
            font-weight: 700;
            padding: 3px 14px;
            border-radius: 999px;
            white-space: nowrap;
            letter-spacing: .03em;
        }
        .pricing-name {
            font-size: 1.05rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .pricing-price {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 4px;
        }
        .pricing-price span {
            font-size: .9rem;
            font-weight: 500;
            color: var(--color-muted);
            margin-left: 4px;
        }
        .pricing-desc {
            font-size: .86rem;
            color: var(--color-muted);
            margin-bottom: 20px;
        }
        .pricing-list {
            list-style: none;
            margin-bottom: 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 11px;
        }
        .pricing-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: .9rem;
            line-height: 1.5;
        }
        .pricing-list li::before {
            content: '✓';
            color: var(--color-primary);
            font-weight: 800;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .pricing-card .btn {
            width: 100%;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: var(--space-section) 0;
        }
        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .faq-item {
            border-bottom: 1px solid var(--color-border);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            font-weight: 700;
            font-size: .98rem;
            text-align: left;
            cursor: pointer;
            color: var(--color-ink);
            transition: color .2s;
        }
        .faq-question:hover {
            color: var(--color-primary);
        }
        .faq-item.active .faq-question {
            color: var(--color-primary);
        }
        .faq-icon {
            position: relative;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-primary);
            border-radius: 2px;
            transition: transform .3s, opacity .3s;
        }
        .faq-icon::after {
            transform: rotate(90deg);
        }
        .faq-item.active .faq-icon::after {
            transform: rotate(0deg);
            opacity: 0;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }
        .faq-answer-inner {
            padding: 0 24px 20px;
            color: var(--color-muted);
            font-size: .92rem;
            line-height: 1.75;
        }
        .faq-item.active .faq-answer {
            max-height: 320px;
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 0 0 var(--space-section);
        }
        .cta-block {
            background: var(--color-dark);
            border-radius: 24px;
            padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-block::after {
            content: '';
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(199, 91, 58, .28), transparent 65%);
            pointer-events: none;
        }
        .cta-block h2 {
            font-size: clamp(1.8rem, 3.4vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -0.01em;
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
            color: #fff;
        }
        .cta-block p {
            font-size: 1rem;
            color: rgba(255, 255, 255, .78);
            max-width: 520px;
            margin: 0 auto 28px;
            position: relative;
            z-index: 1;
        }
        .cta-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--color-dark);
            color: rgba(255, 255, 255, .72);
            padding: 64px 0 30px;
            border-top: 2px solid var(--color-primary);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
            gap: 40px;
            margin-bottom: 48px;
        }
        .footer-logo {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 14px;
            display: block;
            border-bottom: none;
            letter-spacing: -0.01em;
        }
        .footer-logo:hover {
            color: var(--color-primary-light);
            border-bottom: none;
        }
        .footer-col-1 p {
            font-size: .88rem;
            line-height: 1.7;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, .65);
            max-width: 260px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .85);
            font-size: .9rem;
            font-weight: 700;
            border-bottom: none;
            transition: background .2s, color .2s;
        }
        .footer-social a:hover {
            background: var(--color-primary);
            color: #fff;
        }
        .footer-title {
            font-size: .88rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: .04em;
            text-transform: uppercase;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, .68);
            font-size: .88rem;
            border-bottom: none;
            transition: color .2s;
        }
        .footer-links a:hover {
            color: #F0C8B8;
        }
        .footer-news li {
            margin-bottom: 12px;
            display: flex;
            gap: 12px;
            align-items: center;
        }
        .footer-news .thumb {
            width: 64px;
            height: 48px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .footer-news .thumb img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }
        .footer-news .news-title {
            font-size: .86rem;
            color: rgba(255, 255, 255, .7);
            line-height: 1.45;
            display: block;
            border-bottom: none;
        }
        .footer-news .news-title:hover {
            color: #F0C8B8;
        }
        .footer-news .news-date {
            font-size: .74rem;
            color: rgba(255, 255, 255, .4);
            display: block;
        }
        .footer-copyright {
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding-top: 24px;
            text-align: center;
            font-size: .82rem;
            color: rgba(255, 255, 255, .45);
        }
        .footer-copyright a {
            color: rgba(255, 255, 255, .55);
            border-bottom: none;
        }
        .footer-copyright a:hover {
            color: #F0C8B8;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .nav-wrap {
                gap: 14px;
            }
            .nav-links {
                gap: 14px;
            }
            .nav-links a {
                font-size: .88rem;
            }
            .nav-search {
                max-width: 320px;
            }
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-areas:
                    "large large"
                    "card2 card3"
                    "card4 card5"
                    "card6 card6";
            }
            .pricing-grid {
                gap: 18px;
            }
            .pricing-card {
                padding: 24px;
            }
            .ranking-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 767px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .nav-wrap {
                flex-wrap: wrap;
                height: auto;
                padding-top: 12px;
                padding-bottom: 12px;
                gap: 12px;
            }
            .nav-search {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
            }
            .nav-links {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .btn-follow {
                margin-left: auto;
            }
            .mobile-menu {
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero {
                border-bottom-width: 3px;
            }
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .hero-visual {
                order: 2;
            }
            .hero-img-wrap img {
                aspect-ratio: 4 / 3.4;
            }
            .hero-float-card {
                left: 12px;
                bottom: -18px;
                padding: 12px 16px;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 12px 0;
            }
            .stat {
                padding: 0 18px;
            }
            .stat:first-child {
                padding-left: 0;
            }
            .bento-grid {
                grid-template-columns: 1fr;
                grid-template-areas:
                    "large"
                    "card2"
                    "card3"
                    "card4"
                    "card5"
                    "card6";
            }
            .scene-head {
                flex-direction: row;
                align-items: flex-start;
            }
            .scene-track {
                margin-right: -16px;
                padding-right: 16px;
            }
            .scene-card {
                flex: 0 0 220px;
                max-width: 75%;
            }
            .testimonials-wall {
                columns: 1;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .pricing-card.featured {
                transform: none;
            }
            .pricing-card.featured:hover {
                transform: translateY(-4px);
            }
            .cta-section {
                padding-bottom: 3rem;
            }
            .cta-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .cta-actions .btn {
                width: 100%;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .section-head h2 {
                font-size: clamp(1.4rem, 3.2vw, 1.8rem);
            }
        }
        @media (max-width: 420px) {
            .logo {
                font-size: 1.1rem;
            }
            .btn-follow {
                padding: 0 16px;
                font-size: .84rem;
                height: 36px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .stat {
                padding: 0 14px;
            }
            .stat-num {
                font-size: 1.4rem;
            }
            .stat-label {
                font-size: .78rem;
            }
        }
