/* roulang page: index */
:root {
            --color-primary: #7B5B4C;
            --color-primary-light: #8B7E74;
            --color-bg: #FAF8F5;
            --color-white: #FFFFFF;
            --color-accent: #C49A6C;
            --color-accent-alt: #5B6E5D;
            --color-title: #2C2416;
            --color-body: #4A4238;
            --color-muted: #8C8276;
            --color-border: #E8E3DC;
            --color-footer-bg: #2C2416;
            --color-footer-text: #8C8276;
            --radius-card: 12px;
            --radius-btn: 30px;
            --radius-input: 8px;
            --radius-img: 8px;
            --shadow-card: 0 4px 12px rgba(0,0,0,0.04);
            --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.08);
            --shadow-nav: 0 1px 3px rgba(0,0,0,0.02);
            --transition-base: 0.25s ease;
            --font-stack: -apple-system, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
            --spacing-section: 80px;
            --spacing-section-mobile: 48px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--color-bg);
            color: var(--color-body);
            line-height: 1.5;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition-base);
        }
        a:hover {
            color: var(--color-accent);
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button, input, select, textarea {
            font-family: inherit;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== NAVIGATION ========== */
        .site-header {
            background: var(--color-white);
            border-bottom: 1px solid var(--color-border);
            box-shadow: var(--shadow-nav);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--color-primary);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-logo img {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            object-fit: cover;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links a {
            color: var(--color-body);
            font-size: 15px;
            font-weight: 500;
            transition: color var(--transition-base);
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--color-primary);
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-shrink: 0;
        }
        .nav-search {
            position: relative;
        }
        .nav-search input {
            border: 1px solid var(--color-border);
            border-radius: 30px;
            padding: 9px 16px 9px 36px;
            font-size: 14px;
            width: 180px;
            background: var(--color-bg);
            color: var(--color-body);
            outline: none;
            transition: border-color var(--transition-base), box-shadow var(--transition-base);
        }
        .nav-search input:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(123,91,76,0.08);
        }
        .nav-search .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--color-muted);
            font-size: 14px;
            pointer-events: none;
        }
        .btn-cta-nav {
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: background var(--transition-base), box-shadow var(--transition-base);
        }
        .btn-cta-nav:hover {
            background: #b3895e;
            box-shadow: 0 4px 14px rgba(196,154,108,0.35);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--color-primary);
            cursor: pointer;
            padding: 8px;
            line-height: 1;
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--color-white);
            z-index: 99;
            flex-direction: column;
            padding: 24px 20px;
            gap: 16px;
            overflow-y: auto;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            display: block;
            font-size: 17px;
            color: var(--color-body);
            padding: 12px 0;
            border-bottom: 1px solid var(--color-border);
            font-weight: 500;
        }
        .mobile-nav-panel .btn-cta-nav {
            display: inline-block;
            text-align: center;
            margin-top: 8px;
            width: 100%;
        }
        .mobile-nav-panel .nav-search {
            width: 100%;
        }
        .mobile-nav-panel .nav-search input {
            width: 100%;
        }

        @media (max-width: 768px) {
            .nav-links, .nav-right {
                display: none;
            }
            .mobile-menu-toggle {
                display: block;
            }
            .nav-wrapper {
                height: 56px;
            }
            .nav-logo {
                font-size: 17px;
            }
            .nav-logo img {
                width: 30px;
                height: 30px;
            }
        }
        @media (min-width: 769px) {
            .mobile-nav-panel {
                display: none !important;
            }
        }

        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            background: var(--color-bg);
            overflow: hidden;
            min-height: 560px;
            display: flex;
            align-items: center;
        }
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            opacity: 0.12;
            z-index: 0;
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            width: 100%;
        }
        .hero-left {
            flex: 0 0 42%;
            padding-right: 20px;
        }
        .hero-right {
            flex: 0 0 58%;
            position: relative;
        }
        .hero-right img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: var(--radius-card);
            clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
            box-shadow: 0 12px 40px rgba(0,0,0,0.10);
        }
        .hero-tag {
            display: inline-block;
            background: rgba(196,154,108,0.15);
            color: var(--color-accent);
            font-size: 13px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--color-title);
            line-height: 1.2;
            margin: 0 0 16px 0;
            letter-spacing: -0.5px;
        }
        .hero-subtitle {
            font-size: 17px;
            color: var(--color-body);
            line-height: 1.6;
            margin: 0 0 24px 0;
            max-width: 420px;
        }
        .hero-kpi-row {
            display: flex;
            gap: 28px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        .hero-kpi-item {
            text-align: left;
        }
        .hero-kpi-num {
            font-size: 32px;
            font-weight: 700;
            color: var(--color-accent);
            line-height: 1;
        }
        .hero-kpi-label {
            font-size: 13px;
            color: var(--color-muted);
            margin-top: 4px;
        }
        .btn-hero {
            display: inline-block;
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 14px 36px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
            text-align: center;
        }
        .btn-hero:hover {
            background: #b3895e;
            box-shadow: 0 6px 20px rgba(196,154,108,0.4);
            transform: translateY(-1px);
            color: #fff;
        }
        .btn-hero-outline {
            display: inline-block;
            background: transparent;
            color: var(--color-primary);
            border: 1.5px solid var(--color-primary);
            border-radius: var(--radius-btn);
            padding: 13px 34px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-base);
            margin-left: 12px;
            text-align: center;
        }
        .btn-hero-outline:hover {
            background: var(--color-primary);
            color: #fff;
        }

        @media (max-width: 768px) {
            .hero-inner {
                flex-direction: column;
                gap: 28px;
                padding: 40px 16px;
            }
            .hero-left {
                flex: 1 1 auto;
                padding-right: 0;
                text-align: center;
                order: 1;
            }
            .hero-right {
                flex: 1 1 auto;
                order: 0;
            }
            .hero-right img {
                height: 260px;
                clip-path: none;
                border-radius: var(--radius-card);
            }
            .hero-title {
                font-size: 30px;
            }
            .hero-subtitle {
                font-size: 15px;
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-kpi-row {
                justify-content: center;
                gap: 20px;
            }
            .hero-kpi-num {
                font-size: 26px;
            }
            .btn-hero-outline {
                margin-left: 0;
                margin-top: 10px;
            }
            .btn-hero {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            .btn-hero-outline {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 10px auto 0;
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 26px;
            }
            .hero-right img {
                height: 200px;
            }
            .hero-kpi-num {
                font-size: 22px;
            }
        }

        /* ========== SECTION COMMON ========== */
        .section-pad {
            padding: var(--spacing-section) 0;
        }
        .section-pad-sm {
            padding: 56px 0;
        }
        .section-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }
        .section-title {
            font-size: 34px;
            font-weight: 700;
            color: var(--color-title);
            margin: 0 0 12px 0;
            line-height: 1.25;
        }
        .section-desc {
            font-size: 16px;
            color: var(--color-body);
            line-height: 1.6;
            max-width: 640px;
            margin: 0 auto 40px;
        }
        .section-title-center {
            text-align: center;
        }
        .section-desc-center {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .section-pad {
                padding: var(--spacing-section-mobile) 0;
            }
            .section-pad-sm {
                padding: 36px 0;
            }
            .section-title {
                font-size: 26px;
            }
            .section-desc {
                font-size: 15px;
                margin-bottom: 28px;
            }
        }

        /* ========== BRAND STORY ========== */
        .brand-story-grid {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        .brand-story-img {
            flex: 0 0 48%;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card-hover);
        }
        .brand-story-img img {
            width: 100%;
            height: 380px;
            object-fit: cover;
        }
        .brand-story-text {
            flex: 1;
        }
        .brand-story-text .highlight-num {
            font-size: 56px;
            font-weight: 700;
            color: var(--color-accent);
            line-height: 1;
        }
        .brand-story-text .highlight-label {
            font-size: 15px;
            color: var(--color-muted);
            margin-top: 4px;
        }
        .brand-story-text p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-body);
            margin: 16px 0;
        }

        @media (max-width: 768px) {
            .brand-story-grid {
                flex-direction: column;
                gap: 28px;
            }
            .brand-story-img {
                flex: 1 1 auto;
            }
            .brand-story-img img {
                height: 240px;
            }
            .brand-story-text .highlight-num {
                font-size: 40px;
            }
        }

        /* ========== SELLING POINTS ========== */
        .selling-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .selling-card {
            background: var(--color-white);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
            text-align: center;
            border: 1px solid transparent;
        }
        .selling-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }
        .selling-card .selling-icon {
            font-size: 40px;
            color: var(--color-accent);
            margin-bottom: 16px;
            display: block;
        }
        .selling-card h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--color-title);
            margin: 0 0 8px;
        }
        .selling-card p {
            font-size: 14px;
            color: var(--color-body);
            margin: 0;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .selling-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .selling-card {
                padding: 24px 20px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .selling-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .selling-card {
                padding: 24px 16px;
            }
        }

        /* ========== DATA KPI ========== */
        .kpi-row {
            display: flex;
            justify-content: center;
            gap: 60px;
            text-align: center;
            flex-wrap: wrap;
        }
        .kpi-item .kpi-num {
            font-size: 52px;
            font-weight: 700;
            color: var(--color-accent);
            line-height: 1;
            transition: color var(--transition-base);
        }
        .kpi-item .kpi-label {
            font-size: 15px;
            color: var(--color-muted);
            margin-top: 8px;
        }
        .kpi-item .kpi-icon {
            font-size: 28px;
            color: var(--color-primary-light);
            display: block;
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .kpi-row {
                gap: 32px;
            }
            .kpi-item .kpi-num {
                font-size: 36px;
            }
        }

        /* ========== SERVICE CARDS ========== */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: var(--color-white);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
            border: 1px solid transparent;
        }
        .service-card:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-3px);
            border-color: var(--color-border);
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .service-card-body {
            padding: 20px 22px;
        }
        .service-card-body h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-title);
            margin: 0 0 6px;
        }
        .service-card-body p {
            font-size: 14px;
            color: var(--color-body);
            margin: 0 0 14px;
            line-height: 1.5;
        }
        .service-card-body .card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap var(--transition-base);
        }
        .service-card-body .card-link:hover {
            gap: 10px;
            color: var(--color-primary);
        }
        .service-card-body .card-link i {
            font-size: 12px;
            transition: transform var(--transition-base);
        }
        .service-card-body .card-link:hover i {
            transform: translateX(3px);
        }

        @media (max-width: 768px) {
            .service-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .service-card img {
                height: 180px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        /* ========== TIMELINE ========== */
        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 40px;
        }
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 18px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--color-border);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 36px;
            padding-left: 32px;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-dot {
            position: absolute;
            left: -31px;
            top: 4px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--color-accent);
            border: 3px solid var(--color-bg);
            box-shadow: 0 0 0 3px var(--color-accent);
            z-index: 1;
        }
        .timeline-item h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-title);
            margin: 0 0 4px;
        }
        .timeline-item p {
            font-size: 14px;
            color: var(--color-body);
            margin: 0;
            line-height: 1.5;
        }
        .timeline-step-num {
            font-size: 12px;
            font-weight: 700;
            color: var(--color-accent);
            letter-spacing: 1px;
            display: block;
            margin-bottom: 2px;
        }

        @media (max-width: 768px) {
            .timeline-container {
                padding-left: 28px;
            }
            .timeline-container::before {
                left: 12px;
            }
            .timeline-dot {
                left: -25px;
                width: 14px;
                height: 14px;
            }
            .timeline-item {
                padding-left: 22px;
            }
        }

        /* ========== TESTIMONIALS ========== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .testimonial-bubble {
            background: var(--color-white);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            position: relative;
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .testimonial-bubble:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .testimonial-bubble::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 28px;
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-top: 14px solid var(--color-white);
        }
        .testimonial-bubble p {
            font-size: 14px;
            color: var(--color-body);
            line-height: 1.6;
            margin: 0 0 14px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 16px;
        }
        .testimonial-author .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--color-primary);
            font-size: 16px;
            flex-shrink: 0;
        }
        .testimonial-author .author-info {
            font-size: 13px;
            color: var(--color-muted);
        }
        .testimonial-author .author-info strong {
            display: block;
            font-size: 14px;
            color: var(--color-title);
        }

        @media (max-width: 768px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        /* ========== PLATFORM GUARANTEE ========== */
        .guarantee-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .guarantee-item {
            background: var(--color-white);
            border-radius: var(--radius-card);
            padding: 28px 20px;
            box-shadow: var(--shadow-card);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }
        .guarantee-item:hover {
            box-shadow: var(--shadow-card-hover);
            transform: translateY(-2px);
        }
        .guarantee-item .g-icon {
            font-size: 36px;
            color: var(--color-accent-alt);
            display: block;
            margin-bottom: 12px;
        }
        .guarantee-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-title);
            margin: 0 0 6px;
        }
        .guarantee-item p {
            font-size: 13px;
            color: var(--color-muted);
            margin: 0;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .guarantee-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .guarantee-item {
                padding: 20px 14px;
            }
        }
        @media (max-width: 480px) {
            .guarantee-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== NEWS + SIDEBAR ========== */
        .news-layout {
            display: flex;
            gap: 36px;
        }
        .news-list-col {
            flex: 1;
        }
        .news-list-item {
            display: flex;
            align-items: baseline;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--color-border);
            transition: padding var(--transition-base);
        }
        .news-list-item:hover {
            padding-left: 6px;
        }
        .news-list-item .news-date {
            font-size: 12px;
            color: var(--color-muted);
            white-space: nowrap;
            flex-shrink: 0;
            min-width: 70px;
        }
        .news-list-item a {
            font-size: 15px;
            font-weight: 500;
            color: var(--color-body);
            transition: color var(--transition-base);
            line-height: 1.4;
        }
        .news-list-item a:hover {
            color: var(--color-accent);
        }
        .news-sidebar {
            flex: 0 0 300px;
        }
        .news-sidebar-card {
            background: var(--color-white);
            border-radius: var(--radius-card);
            padding: 22px;
            box-shadow: var(--shadow-card);
            margin-bottom: 16px;
        }
        .news-sidebar-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--color-title);
            margin: 0 0 10px;
        }
        .news-sidebar-card p {
            font-size: 13px;
            color: var(--color-body);
            margin: 0;
            line-height: 1.5;
        }
        .news-sidebar-card .side-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-accent);
            margin-top: 8px;
            display: inline-block;
        }

        @media (max-width: 768px) {
            .news-layout {
                flex-direction: column;
                gap: 24px;
            }
            .news-sidebar {
                flex: 1 1 auto;
            }
        }

        /* ========== FAQ ACCORDION ========== */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--color-border);
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 18px 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--color-title);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-align: left;
            transition: color var(--transition-base);
            font-family: var(--font-stack);
        }
        .faq-question:hover {
            color: var(--color-accent);
        }
        .faq-question .faq-icon {
            font-size: 20px;
            font-weight: 300;
            color: var(--color-muted);
            transition: transform var(--transition-base);
            flex-shrink: 0;
            margin-left: 16px;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            color: var(--color-accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 16px;
        }
        .faq-answer p {
            font-size: 15px;
            color: var(--color-body);
            line-height: 1.6;
            margin: 0;
        }

        /* ========== CTA FORM ========== */
        .cta-form-section {
            background: #F5F2EE;
            border-radius: 16px;
            padding: 48px 40px;
            max-width: 700px;
            margin: 0 auto;
            box-shadow: var(--shadow-card);
        }
        .cta-form-section h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--color-title);
            margin: 0 0 8px;
            text-align: center;
        }
        .cta-form-section .form-subtitle {
            font-size: 15px;
            color: var(--color-body);
            text-align: center;
            margin: 0 0 28px;
        }
        .cta-form-section input,
        .cta-form-section select {
            width: 100%;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-input);
            padding: 13px 16px;
            font-size: 15px;
            background: var(--color-white);
            color: var(--color-body);
            outline: none;
            transition: border-color var(--transition-base), box-shadow var(--transition-base);
            margin-bottom: 16px;
            font-family: var(--font-stack);
        }
        .cta-form-section input:focus,
        .cta-form-section select:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(123,91,76,0.06);
        }
        .cta-form-section input::placeholder {
            color: var(--color-muted);
        }
        .btn-submit-form {
            width: 100%;
            background: var(--color-accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 14px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background var(--transition-base), box-shadow var(--transition-base);
            font-family: var(--font-stack);
        }
        .btn-submit-form:hover {
            background: #b3895e;
            box-shadow: 0 6px 18px rgba(196,154,108,0.35);
        }
        .form-privacy {
            font-size: 12px;
            color: var(--color-muted);
            text-align: center;
            margin-top: 12px;
        }

        @media (max-width: 768px) {
            .cta-form-section {
                padding: 32px 20px;
                border-radius: 12px;
            }
            .cta-form-section h3 {
                font-size: 22px;
            }
        }

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--color-footer-bg);
            color: var(--color-footer-text);
            padding: 48px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr 1fr;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 14px;
        }
        .footer-col p {
            font-size: 13px;
            line-height: 1.6;
            margin: 0 0 8px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--color-footer-text);
            font-size: 13px;
            transition: color var(--transition-base);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-logo-text {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
            display: block;
        }
        .footer-qr {
            width: 100px;
            height: 100px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .footer-qr img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 32px;
            padding: 18px 20px;
            text-align: center;
            font-size: 12px;
            color: var(--color-footer-text);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-col:first-child {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        .scroll-reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== MISC ========== */
        .bg-light {
            background: var(--color-white);
        }
        .text-center {
            text-align: center;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
