/* roulang page: index */
:root {
            --color-brand-dark: #1a1612;
            --color-brand-deeper: #0f0d0a;
            --color-brand-gold: #c9a96a;
            --color-brand-gold-light: #e0c891;
            --color-brand-cream: #faf6f0;
            --color-brand-sand: #f0e8dc;
            --color-brand-charcoal: #2d2822;
            --color-brand-muted: #8a7f72;
            --radius-brand: 1.25rem;
            --radius-brand-lg: 2rem;
            --radius-brand-xl: 2.5rem;
            --shadow-brand-sm: 0 2px 12px rgba(26, 22, 18, 0.08);
            --shadow-brand-md: 0 8px 32px rgba(26, 22, 18, 0.12);
            --shadow-brand-lg: 0 20px 60px rgba(26, 22, 18, 0.18);
            --shadow-gold-glow: 0 6px 24px rgba(201, 169, 106, 0.35);
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.7;
            color: var(--color-brand-charcoal);
            background-color: var(--color-brand-cream);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-base);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible {
            outline: 3px solid var(--color-brand-gold);
            outline-offset: 2px;
            border-radius: 8px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container-brand {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        @media (min-width: 768px) {
            .container-brand {
                padding-left: 2.5rem;
                padding-right: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .container-brand {
                padding-left: 3rem;
                padding-right: 3rem;
            }
        }

        /* ===== Header / Nav ===== */
        .site-header {
            background: var(--color-brand-deeper);
            border-bottom: 1px solid rgba(201, 169, 106, 0.25);
            position: sticky;
            top: 0;
            z-index: 60;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            transition: var(--transition-base);
        }

        .site-header .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
            gap: 1rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .nav-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--color-brand-gold), #a8894a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-brand-deeper);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .nav-logo span.logo-text {
            font-size: 1.05rem;
            line-height: 1.3;
        }

        .nav-links-desktop {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-links-desktop a {
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            padding: 0.35rem 0;
            position: relative;
            transition: var(--transition-base);
            white-space: nowrap;
        }

        .nav-links-desktop a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-brand-gold);
            transition: var(--transition-base);
            border-radius: 2px;
        }

        .nav-links-desktop a:hover,
        .nav-links-desktop a.active {
            color: var(--color-brand-gold-light);
        }

        .nav-links-desktop a:hover::after,
        .nav-links-desktop a.active::after {
            width: 100%;
        }

        .nav-cta {
            display: none;
            background: linear-gradient(135deg, var(--color-brand-gold), #b28e4a);
            color: var(--color-brand-deeper);
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.7rem 1.5rem;
            border-radius: 9999px;
            white-space: nowrap;
            box-shadow: var(--shadow-gold-glow);
            transition: var(--transition-base);
        }

        .nav-cta:hover {
            background: linear-gradient(135deg, var(--color-brand-gold-light), var(--color-brand-gold));
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(201, 169, 106, 0.5);
        }

        .nav-hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition-base);
        }

        .nav-hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: #fff;
            border-radius: 3px;
            transition: var(--transition-base);
        }

        .nav-hamburger:hover span {
            background: var(--color-brand-gold-light);
        }

        .mobile-menu {
            display: none;
            background: var(--color-brand-deeper);
            border-top: 1px solid rgba(201, 169, 106, 0.2);
            padding: 1rem 1.5rem 1.5rem;
        }

        .mobile-menu.open {
            display: block;
        }

        .mobile-menu a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 500;
            padding: 0.9rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition-base);
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: var(--color-brand-gold-light);
            padding-left: 0.5rem;
        }

        .mobile-menu .mobile-cta {
            margin-top: 1rem;
            display: inline-block;
            background: linear-gradient(135deg, var(--color-brand-gold), #b28e4a);
            color: var(--color-brand-deeper);
            font-weight: 700;
            padding: 0.8rem 1.8rem;
            border-radius: 9999px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .nav-links-desktop {
                display: flex;
            }
            .nav-cta {
                display: inline-block;
            }
            .nav-hamburger {
                display: none;
            }
            .mobile-menu {
                display: none !important;
            }
        }

        @media (max-width: 767px) {
            .nav-logo span.logo-text {
                font-size: 0.82rem;
            }
            .nav-logo .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            background: linear-gradient(165deg, var(--color-brand-deeper) 0%, #1f1a14 40%, #2d2420 100%);
            padding: 4rem 0 5rem;
            overflow: hidden;
            min-height: 680px;
            display: flex;
            align-items: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.jpg') center / cover no-repeat;
            opacity: 0.18;
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 40%, rgba(201, 169, 106, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 75% 65%, rgba(201, 169, 106, 0.08) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1.2fr 0.8fr;
                align-items: center;
                gap: 4rem;
            }
        }

        .hero-text {
            color: #fff;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201, 169, 106, 0.15);
            border: 1px solid rgba(201, 169, 106, 0.4);
            color: var(--color-brand-gold-light);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.5rem 1.2rem;
            border-radius: 9999px;
            letter-spacing: 0.04em;
            margin-bottom: 1.5rem;
        }

        .hero-text h1 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.25;
            margin: 0 0 1.25rem;
            color: #fff;
            letter-spacing: 0.01em;
        }

        .hero-text h1 .highlight {
            background: linear-gradient(135deg, var(--color-brand-gold), var(--color-brand-gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-description {
            font-size: 1.05rem;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.78);
            margin: 0 0 2rem;
            max-width: 560px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn-brand-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, var(--color-brand-gold), #b28e4a);
            color: var(--color-brand-deeper);
            font-weight: 700;
            font-size: 1rem;
            padding: 0.95rem 2.2rem;
            border-radius: 9999px;
            box-shadow: var(--shadow-gold-glow);
            transition: var(--transition-base);
            border: none;
            cursor: pointer;
            letter-spacing: 0.02em;
        }

        .btn-brand-primary:hover {
            background: linear-gradient(135deg, var(--color-brand-gold-light), var(--color-brand-gold));
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(201, 169, 106, 0.5);
        }

        .btn-brand-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.95rem 1.8rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: var(--transition-base);
            cursor: pointer;
            letter-spacing: 0.02em;
        }

        .btn-brand-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-stat .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-brand-gold-light);
            line-height: 1.2;
        }

        .hero-stat .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* Progress ring */
        .progress-ring-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-brand-lg);
            padding: 2rem;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-brand-lg);
        }

        .progress-ring-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .progress-ring {
            position: relative;
            width: 140px;
            height: 140px;
            flex-shrink: 0;
        }

        .progress-ring svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .progress-ring .ring-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 8;
        }

        .progress-ring .ring-fill {
            fill: none;
            stroke: var(--color-brand-gold);
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 339.292;
            stroke-dashoffset: 84.823;
            transition: stroke-dashoffset 1.2s ease;
        }

        .progress-ring .ring-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .progress-ring .ring-center .ring-percent {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-brand-gold-light);
        }

        .progress-ring .ring-center .ring-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .progress-info h3 {
            color: #fff;
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 0.5rem;
        }

        .progress-info p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.9rem;
            margin: 0 0 0.75rem;
            line-height: 1.6;
        }

        .progress-info .progress-bar-track {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 9999px;
            overflow: hidden;
        }

        .progress-info .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--color-brand-gold), var(--color-brand-gold-light));
            border-radius: 9999px;
            width: 75%;
            transition: width 1.2s ease;
        }

        .tier-preview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .tier-item {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 0.9rem 1rem;
            transition: var(--transition-base);
        }

        .tier-item:hover {
            background: rgba(201, 169, 106, 0.12);
            border-color: rgba(201, 169, 106, 0.4);
            transform: translateY(-2px);
        }

        .tier-item .tier-name {
            color: var(--color-brand-gold-light);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .tier-item .tier-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
            line-height: 1.4;
        }

        .tier-item .tier-price {
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 1.6rem;
            }
            .hero-description {
                font-size: 0.95rem;
            }
            .progress-ring-card {
                padding: 1.5rem;
            }
            .progress-ring {
                width: 110px;
                height: 110px;
            }
            .tier-preview {
                grid-template-columns: 1fr;
            }
            .hero-stats {
                gap: 1.25rem;
            }
            .hero-section {
                padding: 2.5rem 0 3.5rem;
                min-height: auto;
            }
        }

        /* ===== Section general ===== */
        .section-block {
            padding: 5rem 0;
        }

        @media (max-width: 768px) {
            .section-block {
                padding: 3rem 0;
            }
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-brand-dark);
            margin-bottom: 0.75rem;
            letter-spacing: 0.01em;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--color-brand-muted);
            max-width: 680px;
            line-height: 1.8;
            margin-bottom: 2.5rem;
        }

        .section-header-lg {
            margin-bottom: 3rem;
        }

        .section-header-lg .section-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        /* ===== Screenshot Stage ===== */
        .stage-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .stage-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 2rem;
            }
        }

        .stage-card {
            border-radius: var(--radius-brand);
            overflow: hidden;
            box-shadow: var(--shadow-brand-md);
            transition: var(--transition-base);
            cursor: pointer;
            position: relative;
            background: #fff;
        }

        .stage-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-brand-lg);
        }

        .stage-card .stage-image {
            aspect-ratio: 4/3;
            overflow: hidden;
            position: relative;
        }

        .stage-card .stage-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .stage-card:hover .stage-image img {
            transform: scale(1.06);
        }

        .stage-card .stage-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(15, 13, 10, 0.85) 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.25rem;
        }

        .stage-card .stage-overlay h3 {
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            margin: 0;
        }

        .stage-card .stage-body {
            padding: 1.25rem 1.5rem 1.5rem;
        }

        .stage-card .stage-body p {
            color: var(--color-brand-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ===== Three Steps ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        .step-card {
            background: #fff;
            border-radius: var(--radius-brand);
            padding: 2.2rem 2rem;
            box-shadow: var(--shadow-brand-sm);
            border: 1px solid rgba(26, 22, 18, 0.06);
            transition: var(--transition-base);
            position: relative;
        }

        .step-card:hover {
            box-shadow: var(--shadow-brand-md);
            transform: translateY(-4px);
            border-color: rgba(201, 169, 106, 0.3);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--color-brand-gold), #b28e4a);
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            border-radius: 14px;
            margin-bottom: 1.25rem;
        }

        .step-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-brand-dark);
            margin: 0 0 0.75rem;
        }

        .step-card p {
            font-size: 0.92rem;
            color: var(--color-brand-muted);
            line-height: 1.7;
            margin: 0;
        }

        /* ===== Reviews / Testimonials ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        .review-card {
            background: #fff;
            border-radius: var(--radius-brand);
            padding: 2rem;
            box-shadow: var(--shadow-brand-sm);
            border: 1px solid rgba(26, 22, 18, 0.06);
            transition: var(--transition-base);
        }

        .review-card:hover {
            box-shadow: var(--shadow-brand-md);
            transform: translateY(-3px);
        }

        .review-stars {
            color: #f5a623;
            font-size: 0.95rem;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
        }

        .review-card blockquote {
            margin: 0 0 1.25rem;
            font-size: 0.95rem;
            color: var(--color-brand-charcoal);
            line-height: 1.8;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .review-avatar {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--color-brand-sand), #d8c9b4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--color-brand-dark);
            font-size: 1rem;
        }

        .review-author .review-name {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--color-brand-dark);
        }

        .review-author .review-location {
            font-size: 0.78rem;
            color: var(--color-brand-muted);
        }

        /* ===== News / Info ===== */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .news-layout {
                grid-template-columns: 1.4fr 0.6fr;
                gap: 3rem;
            }
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .news-list-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 1.25rem;
            border-bottom: 1px solid rgba(26, 22, 18, 0.08);
            transition: var(--transition-base);
            border-radius: 10px;
        }

        .news-list-item:hover {
            background: rgba(201, 169, 106, 0.08);
            padding-left: 1.5rem;
        }

        .news-list-item .news-title {
            font-weight: 600;
            color: var(--color-brand-dark);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .news-list-item .news-date {
            font-size: 0.8rem;
            color: var(--color-brand-muted);
            white-space: nowrap;
        }

        .news-sidebar {
            background: #fff;
            border-radius: var(--radius-brand);
            padding: 1.75rem;
            box-shadow: var(--shadow-brand-sm);
            border: 1px solid rgba(26, 22, 18, 0.06);
        }

        .news-sidebar h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-brand-dark);
            margin: 0 0 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--color-brand-gold);
            display: inline-block;
        }

        .news-sidebar .sidebar-item {
            display: flex;
            gap: 0.9rem;
            padding: 0.85rem 0;
            border-bottom: 1px solid rgba(26, 22, 18, 0.06);
            transition: var(--transition-base);
        }

        .news-sidebar .sidebar-item:last-child {
            border-bottom: none;
        }

        .news-sidebar .sidebar-item:hover {
            opacity: 0.85;
        }

        .news-sidebar .sidebar-item img {
            width: 70px;
            height: 55px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .news-sidebar .sidebar-item .sidebar-meta {
            font-size: 0.8rem;
            color: var(--color-brand-muted);
        }

        .news-sidebar .sidebar-item .sidebar-title {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-brand-dark);
            line-height: 1.4;
        }

        /* ===== FAQ ===== */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border-radius: 1rem;
            padding: 1.5rem 1.75rem;
            box-shadow: var(--shadow-brand-sm);
            border: 1px solid rgba(26, 22, 18, 0.06);
        }

        .faq-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-brand-dark);
            margin: 0 0 0.7rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .faq-item h4 .faq-q-icon {
            color: var(--color-brand-gold);
            font-weight: 800;
        }

        .faq-item p {
            font-size: 0.92rem;
            color: var(--color-brand-muted);
            line-height: 1.75;
            margin: 0;
        }

        /* ===== CTA / Download Guide ===== */
        .cta-section {
            background: linear-gradient(165deg, var(--color-brand-deeper) 0%, var(--color-brand-dark) 50%, #2d2420 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-6.jpg') center / cover no-repeat;
            opacity: 0.12;
            z-index: 1;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-inner h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
        }

        .cta-inner p {
            color: rgba(255, 255, 255, 0.72);
            max-width: 620px;
            margin: 0 auto 2rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .form-inline {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 520px;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .form-inline {
                flex-direction: row;
                align-items: center;
            }
        }

        .form-inline input {
            flex: 1;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 0.95rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.95rem;
            transition: var(--transition-base);
            min-width: 0;
        }

        .form-inline input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-inline input:focus {
            outline: none;
            border-color: var(--color-brand-gold);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(201, 169, 106, 0.2);
        }

        .privacy-note {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.8rem;
            margin-top: 1rem;
        }

        /* ===== Floating CTA bar ===== */
        .floating-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--color-brand-deeper);
            padding: 0.85rem 1.5rem;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            border-top: 1px solid rgba(201, 169, 106, 0.3);
            box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .floating-cta-bar.visible {
            transform: translateY(0);
        }

        .floating-cta-bar p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin: 0;
        }

        .floating-cta-bar .btn-float {
            background: linear-gradient(135deg, var(--color-brand-gold), #b28e4a);
            color: var(--color-brand-deeper);
            font-weight: 700;
            padding: 0.6rem 1.4rem;
            border-radius: 9999px;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--transition-base);
        }

        .floating-cta-bar .btn-float:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 640px) {
            .floating-cta-bar p {
                font-size: 0.78rem;
            }
            .floating-cta-bar .btn-float {
                padding: 0.5rem 1rem;
                font-size: 0.82rem;
            }
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--color-brand-deeper);
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(201, 169, 106, 0.2);
            margin-bottom: 70px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
                gap: 3rem;
            }
        }

        .footer-brand-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.75rem;
        }

        .footer-brand-desc {
            font-size: 0.85rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            max-width: 400px;
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-brand-gold-light);
            margin: 0 0 1rem;
            letter-spacing: 0.04em;
        }

        .footer-col a {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 0.6rem;
            transition: var(--transition-base);
        }

        .footer-col a:hover {
            color: var(--color-brand-gold-light);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.7s ease forwards;
        }

        .animate-delay-1 {
            animation-delay: 0.15s;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .animate-delay-2 {
            animation-delay: 0.3s;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        .animate-delay-3 {
            animation-delay: 0.45s;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        /* ===== Credentials / Badge Wall ===== */
        .badge-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .badge-chip {
            background: #fff;
            border: 1px solid rgba(26, 22, 18, 0.1);
            border-radius: 9999px;
            padding: 0.7rem 1.6rem;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--color-brand-charcoal);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: var(--shadow-brand-sm);
            transition: var(--transition-base);
        }

        .badge-chip:hover {
            border-color: var(--color-brand-gold);
            box-shadow: var(--shadow-brand-md);
        }

        .badge-chip i {
            color: var(--color-brand-gold);
        }

        /* ===== Scene Cards ===== */
        .scene-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 768px) {
            .scene-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }

        .scene-card {
            background: #fff;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: var(--shadow-brand-sm);
            border: 1px solid rgba(26, 22, 18, 0.06);
            transition: var(--transition-base);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .scene-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-brand-md);
        }

        .scene-card .scene-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--color-brand-sand), #e5d5c0);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--color-brand-dark);
            font-size: 1.15rem;
        }

        .scene-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-brand-dark);
            margin: 0 0 0.4rem;
        }

        .scene-card p {
            font-size: 0.85rem;
            color: var(--color-brand-muted);
            line-height: 1.6;
            margin: 0;
        }
