/* roulang page: index */
:root {
            --color-primary: #5C4033;
            --color-primary-dark: #3E2723;
            --color-primary-light: #7B5D4E;
            --color-accent: #C69C6D;
            --color-accent-light: #D4B896;
            --color-accent-bg: rgba(198, 156, 109, 0.12);
            --color-emerald: #2D8B5E;
            --color-emerald-light: #3DA875;
            --color-bg-warm: #FDF8F0;
            --color-bg-cream: #F8F2E8;
            --color-bg-dark: #2C2416;
            --color-bg-darker: #1A1510;
            --color-text: #333333;
            --color-text-heading: #1E1E1E;
            --color-text-light: #F5F0E8;
            --color-text-muted: #7A7265;
            --color-white: #FFFFFF;
            --color-border: #E8E0D5;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.10);
            --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.14);
            --shadow-btn: 0 8px 22px rgba(92, 64, 51, 0.45);
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            --font-stack: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', -apple-system, BlinkMacSystemFont, sans-serif;
            --container-max: 1200px;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-stack);
            color: var(--color-text);
            background-color: var(--color-bg-warm);
            line-height: 1.75;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--color-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        .btn {
            cursor: pointer;
            font-family: var(--font-stack);
            transition: all var(--transition-smooth);
            border: none;
            outline: none;
        }
        button:focus-visible,
        .btn:focus-visible,
        a:focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 3px;
            border-radius: var(--radius-sm);
        }
        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        @media (max-width: 576px) {
            .container-custom {
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        /* ========== NAVBAR ========== */
        .navbar-custom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            padding: 14px 0;
            transition: all var(--transition-smooth);
            background: rgba(44, 36, 22, 0.35);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .navbar-custom.scrolled {
            background: var(--color-bg-dark);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        }
        .navbar-custom .brand-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-accent);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .navbar-custom .nav-link-custom {
            color: var(--color-text-light);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            position: relative;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .navbar-custom .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform var(--transition-smooth);
            border-radius: 1px;
        }
        .navbar-custom .nav-link-custom:hover,
        .navbar-custom .nav-link-custom.active {
            color: var(--color-accent);
        }
        .navbar-custom .nav-link-custom:hover::after,
        .navbar-custom .nav-link-custom.active::after {
            transform: scaleX(1);
        }
        .navbar-custom .btn-nav-cta {
            background: var(--color-accent);
            color: #1A1510;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
            transition: all var(--transition-smooth);
            white-space: nowrap;
            box-shadow: 0 4px 14px rgba(198, 156, 109, 0.35);
        }
        .navbar-custom .btn-nav-cta:hover {
            background: #D4A87A;
            box-shadow: 0 6px 20px rgba(198, 156, 109, 0.5);
            transform: translateY(-1px);
            color: #1A1510;
        }
        .navbar-custom .btn-nav-cta:active {
            transform: scale(0.96);
            box-shadow: 0 2px 8px rgba(198, 156, 109, 0.3);
        }
        .navbar-custom .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.06);
        }
        .navbar-custom .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245,240,232,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        @media (max-width: 991px) {
            .navbar-custom {
                background: var(--color-bg-dark);
                padding: 10px 0;
            }
            .navbar-custom .navbar-collapse {
                background: var(--color-bg-dark);
                padding: 20px;
                border-radius: 0 0 var(--radius-md) var(--radius-md);
                margin-top: 10px;
                text-align: center;
            }
            .navbar-custom .nav-link-custom {
                padding: 12px 0;
                font-size: 1.05rem;
                display: block;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .navbar-custom .nav-link-custom::after {
                display: none;
            }
            .navbar-custom .btn-nav-cta {
                margin-top: 12px;
                display: inline-block;
            }
        }
        /* ========== HERO ========== */
        .hero-section {
            position: relative;
            min-height: 90vh;
            background: var(--color-bg-dark);
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
            padding-bottom: 60px;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            background: linear-gradient(135deg, rgba(92, 64, 51, 0.25) 0%, rgba(62, 39, 35, 0.5) 100%);
            clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 1;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: var(--color-bg-warm);
            clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
            z-index: 2;
        }
        .hero-content-wrapper {
            position: relative;
            z-index: 3;
            width: 100%;
        }
        .hero-status-bar {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 50px;
            padding: 8px 18px;
            margin-bottom: 28px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            flex-wrap: wrap;
        }
        .hero-status-bar .status-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--color-emerald);
            animation: statusPulse 2s infinite;
            flex-shrink: 0;
        }
        @keyframes statusPulse {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(45, 139, 94, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(45, 139, 94, 0);
            }
        }
        .hero-status-bar span {
            color: var(--color-text-light);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.03em;
        }
        .hero-status-bar .status-sep {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.8rem;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: var(--color-white);
            line-height: 1.25;
            margin-bottom: 18px;
            letter-spacing: 0.02em;
        }
        .hero-title .highlight {
            color: var(--color-accent);
            position: relative;
            display: inline-block;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(245, 240, 232, 0.8);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 520px;
        }
        .hero-btns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-primary-custom {
            background: var(--color-accent);
            color: #1A1510;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            letter-spacing: 0.03em;
            box-shadow: var(--shadow-btn);
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }
        .btn-primary-custom:hover {
            background: #D4A87A;
            box-shadow: 0 12px 28px rgba(198, 156, 109, 0.55);
            transform: translateY(-2px);
            color: #1A1510;
        }
        .btn-primary-custom:active {
            transform: scale(0.95);
            box-shadow: 0 4px 12px rgba(198, 156, 109, 0.3);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--color-accent);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: 1rem;
            letter-spacing: 0.03em;
            border: 2px solid var(--color-accent);
            transition: all var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-custom:hover {
            background: rgba(198, 156, 109, 0.1);
            color: var(--color-accent-light);
            border-color: var(--color-accent-light);
        }
        .btn-outline-custom:active {
            transform: scale(0.95);
        }
        .hero-icon-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            max-width: 440px;
            margin-left: auto;
            position: relative;
            z-index: 3;
        }
        .hero-icon-item {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: all var(--transition-smooth);
            color: var(--color-text-light);
        }
        .hero-icon-item:hover {
            background: rgba(255, 255, 255, 0.13);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .hero-icon-item .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(198, 156, 109, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 1.3rem;
            color: var(--color-accent);
        }
        .hero-icon-item span {
            font-size: 0.85rem;
            font-weight: 500;
            display: block;
            line-height: 1.4;
        }
        @media (max-width: 991px) {
            .hero-section {
                min-height: auto;
                padding-top: 100px;
                padding-bottom: 80px;
            }
            .hero-section::before {
                width: 100%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
            }
            .hero-icon-grid {
                margin-left: 0;
                margin-top: 30px;
                max-width: 100%;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }
            .hero-title {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.7rem;
            }
            .hero-subtitle {
                font-size: 0.95rem;
            }
            .hero-icon-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .hero-icon-item {
                padding: 14px 10px;
            }
            .hero-icon-item .icon-circle {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
            .hero-icon-item span {
                font-size: 0.75rem;
            }
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 12px 24px;
                font-size: 0.9rem;
                justify-content: center;
            }
        }
        /* ========== SECTION COMMON ========== */
        .section-block {
            padding: 70px 0;
            position: relative;
        }
        .section-block.section-alt {
            background: var(--color-white);
        }
        .section-block.section-dark {
            background: var(--color-bg-dark);
            color: var(--color-text-light);
        }
        .section-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-accent);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 10px;
            background: var(--color-accent-bg);
            padding: 5px 14px;
            border-radius: 50px;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--color-text-heading);
            margin-bottom: 12px;
            line-height: 1.3;
            letter-spacing: 0.02em;
        }
        .section-dark .section-title {
            color: var(--color-white);
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 0;
            max-width: 640px;
        }
        .section-dark .section-desc {
            color: rgba(245, 240, 232, 0.7);
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 48px 0;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .section-desc {
                font-size: 0.95rem;
            }
        }
        /* ========== COUPON GRID ========== */
        .coupon-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            border: 2px dashed var(--color-border);
            padding: 28px 24px;
            position: relative;
            transition: all var(--transition-smooth);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .coupon-card::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: var(--color-accent-bg);
            border-radius: 50%;
            transition: all var(--transition-smooth);
        }
        .coupon-card:hover {
            border-color: var(--color-accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
        }
        .coupon-card:hover::before {
            width: 120px;
            height: 120px;
            top: -40px;
            right: -40px;
            background: rgba(198, 156, 109, 0.18);
        }
        .coupon-card .coupon-tag {
            display: inline-block;
            background: var(--color-accent);
            color: #1A1510;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 50px;
            letter-spacing: 0.04em;
            margin-bottom: 14px;
            align-self: flex-start;
            position: relative;
            z-index: 1;
        }
        .coupon-card .coupon-tag.tag-hot {
            background: #E05D4F;
            color: #fff;
        }
        .coupon-card .coupon-tag.tag-new {
            background: var(--color-emerald);
            color: #fff;
        }
        .coupon-card .coupon-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .coupon-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--color-text-heading);
            position: relative;
            z-index: 1;
        }
        .coupon-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            flex-grow: 1;
            position: relative;
            z-index: 1;
            margin-bottom: 14px;
        }
        .coupon-card .coupon-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--color-border);
            padding-top: 14px;
            margin-top: auto;
        }
        .coupon-card .coupon-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-primary);
        }
        .coupon-card .coupon-price small {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--color-text-muted);
        }
        .coupon-card .btn-grab {
            background: var(--color-primary);
            color: #fff;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            transition: all var(--transition-smooth);
            border: none;
        }
        .coupon-card .btn-grab:hover {
            background: var(--color-primary-dark);
            box-shadow: 0 6px 16px rgba(92, 64, 51, 0.35);
            color: #fff;
        }
        .coupon-card .btn-grab:active {
            transform: scale(0.94);
        }
        @media (max-width: 576px) {
            .coupon-card {
                padding: 20px 16px;
            }
            .coupon-card .coupon-img {
                height: 140px;
            }
        }
        /* ========== RULES / STEPS ========== */
        .step-card {
            text-align: center;
            padding: 32px 20px;
            background: var(--color-white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-smooth);
            height: 100%;
            position: relative;
            border: 1px solid var(--color-border);
        }
        .step-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--color-accent);
        }
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--color-accent);
            color: #1A1510;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            box-shadow: 0 6px 18px rgba(198, 156, 109, 0.35);
        }
        .step-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--color-text-heading);
        }
        .step-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin: 0;
        }
        @media (max-width: 768px) {
            .step-card {
                padding: 24px 16px;
            }
            .step-number {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }
        }
        /* ========== INFO LIST ========== */
        .info-list-section .info-list-left {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .info-list-section .info-list-left li {
            padding: 14px 0;
            border-bottom: 1px solid var(--color-border);
            transition: all var(--transition-fast);
        }
        .info-list-section .info-list-left li:hover {
            padding-left: 8px;
        }
        .info-list-section .info-list-left li a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-text-heading);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color var(--transition-fast);
        }
        .info-list-section .info-list-left li a:hover {
            color: var(--color-accent);
        }
        .info-list-section .info-list-left li a .info-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-accent);
            flex-shrink: 0;
        }
        .info-list-section .info-list-left li .info-date {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            margin-left: auto;
            flex-shrink: 0;
        }
        .info-recommend-card {
            background: var(--color-bg-cream);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--color-border);
            height: 100%;
            transition: all var(--transition-smooth);
        }
        .info-recommend-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-accent);
        }
        .info-recommend-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--color-text-heading);
        }
        .info-recommend-card p {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }
        /* ========== TOPIC ZONE ========== */
        .topic-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            height: 240px;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: var(--shadow-sm);
        }
        .topic-card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
        }
        .topic-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .topic-card:hover img {
            transform: scale(1.08);
        }
        .topic-card .topic-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
            color: #fff;
        }
        .topic-card .topic-overlay h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: #fff;
        }
        .topic-card .topic-overlay span {
            font-size: 0.85rem;
            opacity: 0.85;
        }
        @media (max-width: 576px) {
            .topic-card {
                height: 180px;
            }
        }
        /* ========== REVIEW WALL ========== */
        .review-summary-card {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            padding: 32px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
            height: 100%;
        }
        .review-summary-card .big-score {
            font-size: 4rem;
            font-weight: 700;
            color: var(--color-emerald);
            line-height: 1;
        }
        .review-summary-card .stars {
            color: var(--color-accent);
            font-size: 1.2rem;
            margin: 8px 0;
            letter-spacing: 3px;
        }
        .review-summary-card .review-count {
            font-size: 0.9rem;
            color: var(--color-text-muted);
        }
        .review-item-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            height: 100%;
            transition: all var(--transition-smooth);
            position: relative;
        }
        .review-item-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--color-accent);
        }
        .review-item-card .quote-mark {
            font-size: 3rem;
            color: var(--color-accent);
            opacity: 0.3;
            line-height: 1;
            position: absolute;
            top: 10px;
            left: 18px;
        }
        .review-item-card .review-text {
            font-size: 0.95rem;
            color: var(--color-text);
            line-height: 1.7;
            margin-bottom: 14px;
            padding-top: 10px;
            position: relative;
            z-index: 1;
        }
        .review-item-card .reviewer {
            display: flex;
            align-items: center;
            gap: 10px;
            border-top: 1px solid var(--color-border);
            padding-top: 14px;
        }
        .review-item-card .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-accent-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--color-accent);
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .review-item-card .reviewer-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--color-text-heading);
        }
        .review-item-card .reviewer-role {
            font-size: 0.8rem;
            color: var(--color-text-muted);
        }
        @media (max-width: 576px) {
            .review-summary-card .big-score {
                font-size: 3rem;
            }
            .review-item-card {
                padding: 18px;
            }
        }
        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, #5C4033 0%, #3E2723 100%);
            padding: 70px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(198, 156, 109, 0.1);
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: rgba(198, 156, 109, 0.08);
        }
        .cta-section .cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .cta-section .cta-subtitle {
            font-size: 1.05rem;
            color: var(--color-accent-light);
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }
        .cta-section .btn-cta-large {
            background: var(--color-accent);
            color: #1A1510;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            letter-spacing: 0.04em;
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
            transition: all var(--transition-smooth);
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
        }
        .cta-section .btn-cta-large:hover {
            background: #D4A87A;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
            transform: translateY(-3px);
            color: #1A1510;
        }
        .cta-section .btn-cta-large:active {
            transform: scale(0.94);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
        .cta-section .cta-extra {
            margin-top: 16px;
            font-size: 0.9rem;
            color: rgba(245, 240, 232, 0.7);
            position: relative;
            z-index: 1;
        }
        .cta-section .cta-extra i {
            color: var(--color-accent);
            margin-right: 4px;
        }
        @media (max-width: 576px) {
            .cta-section {
                padding: 48px 0;
            }
            .cta-section .cta-title {
                font-size: 1.5rem;
            }
            .cta-section .btn-cta-large {
                padding: 14px 28px;
                font-size: 1rem;
            }
        }
        /* ========== FOOTER ========== */
        .footer-custom {
            background: var(--color-bg-dark);
            color: var(--color-text-light);
            padding: 50px 0 0;
        }
        .footer-custom .footer-brand {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 10px;
        }
        .footer-custom .footer-brand-desc {
            font-size: 0.85rem;
            color: rgba(245, 240, 232, 0.6);
            line-height: 1.6;
        }
        .footer-custom h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .footer-custom ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-custom ul li {
            margin-bottom: 8px;
        }
        .footer-custom ul li a {
            color: rgba(245, 240, 232, 0.6);
            font-size: 0.9rem;
            transition: color var(--transition-fast);
        }
        .footer-custom ul li a:hover {
            color: var(--color-accent);
        }
        .footer-custom .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 40px;
            padding: 18px 0;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(245, 240, 232, 0.4);
        }
        @media (max-width: 768px) {
            .footer-custom {
                padding: 36px 0 0;
            }
            .footer-custom .footer-bottom {
                margin-top: 24px;
            }
        }
        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-up {
            animation: fadeInUp 0.7s ease forwards;
        }
        .animate-delay-1 {
            animation-delay: 0.1s;
            opacity: 0;
        }
        .animate-delay-2 {
            animation-delay: 0.25s;
            opacity: 0;
        }
        .animate-delay-3 {
            animation-delay: 0.4s;
            opacity: 0;
        }
        .animate-delay-4 {
            animation-delay: 0.55s;
            opacity: 0;
        }
        /* ========== UTILITY ========== */
        .text-accent {
            color: var(--color-accent) !important;
        }
        .text-emerald {
            color: var(--color-emerald) !important;
        }
        .bg-warm {
            background: var(--color-bg-warm);
        }
        .bg-cream {
            background: var(--color-bg-cream);
        }
        .gap-row-24 {
            row-gap: 24px;
        }
        @media (max-width: 576px) {
            .gap-row-24 {
                row-gap: 16px;
            }
        }
