:root {
    /* Colors */
    --primary-blue: #393089;
    --primary-orange: #f15725;
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8FAFF;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-1: linear-gradient(135deg, var(--primary-blue) 0%, #6454F0 100%);
    --gradient-2: linear-gradient(135deg, var(--primary-orange) 0%, #FF8F6B 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-blue: rgba(57, 48, 137, 0.15);
    --shadow-orange: rgba(241, 87, 37, 0.15);

    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Transitions */
    --transition-fast: 150ms;
    --transition-normal: 300ms;
    --transition-slow: 500ms;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8FAFF;
    color: #333;
    line-height: 1.6;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: #F8FAFF;
}

.section-gradient {
    background: var(--gradient-1);
    color: var(--white);
}

.section-title, .fintech-section-title {
    color: #393089 !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: none !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.section-title:hover::after {
    width: 50%;
}

/* Hero Section - Tesla Style với Fade In/Out mượt mà */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--gray-100);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.01);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    will-change: opacity, transform;
    pointer-events: none;
    visibility: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
    visibility: visible;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
    z-index: 1;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-16) var(--spacing-8);
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 2;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-title {
    font-size: var(--text-6xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: var(--shadow-md);
}

.hero-slide-subtitle {
    font-size: var(--text-2xl);
    margin-bottom: var(--spacing-8);
    opacity: 0.9;
    font-weight: var(--font-normal);
    text-shadow: var(--shadow-sm);
}

.hero-slide-buttons {
    display: flex;
    flex-direction: row !important;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.hero-slide-buttons .btn {
    min-width: 170px;
    max-width: 220px;
    width: 170px;
    text-align: center;
    flex: 0 0 170px;
}

.hero-slide-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
}

.hero-slide-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-slide-buttons .btn-outline-light {
    border: 1px solid var(--white);
    background: transparent;
}

.hero-slide-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-slide-buttons .btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

/* Slider Navigation với animation mượt mà */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: var(--text-xl);
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, background-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 0.8;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.hero-slider-arrow.left {
    left: var(--spacing-5);
}

.hero-slider-arrow.right {
    right: var(--spacing-5);
}

.hero-slide-dots {
    position: absolute;
    bottom: var(--spacing-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-3);
    z-index: 3;
}

.hero-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background-color;
    opacity: 0.6;
}

.hero-slide-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    opacity: 1;
}

.hero-slide-dot.active {
    background: var(--white);
    transform: scale(1.2);
    opacity: 1;
}

/* Responsive Styles với tối ưu transition */
@media (max-width: 1200px) {
    .hero-slide-title {
        font-size: var(--text-5xl);
    }
    .hero-slide-subtitle {
        font-size: var(--text-xl);
    }
    .hero-slide {
        transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .hero-slide-content {
        transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateY(25px);
    }
    .hero-slide.active .hero-slide-content {
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero-slide-content {
        padding: var(--spacing-12) var(--spacing-6);
    }
    .hero-slide-title {
        font-size: var(--text-4xl);
    }
    .hero-slide-subtitle {
        font-size: var(--text-lg);
        margin-bottom: var(--spacing-6);
    }
    .hero-slide-buttons {
        flex-direction: row !important;
        gap: 10px !important;
    }
    .hero-slide-buttons .btn {
        min-width: 140px;
        max-width: 180px;
        width: 140px;
        flex: 0 0 140px;
        padding: var(--spacing-2) var(--spacing-4);
        font-size: var(--text-sm);
    }
    /* Tối ưu cho mobile */
    .hero-slide {
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .hero-slide-content {
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateY(20px);
    }
    .hero-slide.active .hero-slide-content {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .hero-slide-content {
        padding: var(--spacing-8) var(--spacing-4) var(--spacing-12);
    }
    .hero-slide-title {
        font-size: var(--text-3xl);
    }
    .hero-slide-subtitle {
        font-size: var(--text-base);
    }
    .hero-slider-arrow {
        display: none;
    }
    .hero-slide-buttons {
        flex-direction: row !important;
        gap: 8px !important;
    }
    .hero-slide-buttons .btn {
        min-width: 110px;
        max-width: 140px;
        width: 110px;
        flex: 0 0 110px;
    }
    /* Tối ưu thêm cho mobile nhỏ */
    .hero-slide {
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .hero-slide-content {
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: translateY(15px);
    }
    .hero-slide.active .hero-slide-content {
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: visible;
    width: 100%;
    margin-left: 0;
    transform: none;
    border-radius: 0;
    padding-top: 120px;
    padding-bottom: 120px;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57,48,137,0.1) 0%, rgba(100,84,240,0.1) 100%);
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 24px rgba(57,48,137,0.25), 0 1px 0 #fff;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.sticker-badge {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #393089;
    padding: 7px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.08rem;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: unset;
    z-index: 10;
    margin-bottom: 18px;
    text-align: center;
}
.sticker-badge i {
    color: #f15725;
    font-size: 1.2em;
}
@media (max-width: 900px) {
    .sticker-badge {
        position: absolute;
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        font-size: 1rem;
        padding: 6px 12px;
        border-radius: 16px;
        margin-top: 0;
        margin-bottom: 0;
        white-space: nowrap;
        min-width: unset;
        max-width: 90vw;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .sticker-badge {
        font-size: 0.92rem;
        padding: 5px 8px;
        border-radius: 12px;
        top: 6px;
        max-width: 98vw;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.btn {
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57,48,137,0.15);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline-orange {
    color: #f15725;
    border: 2px solid #f15725;
    background: #fff;
    transition: all 0.3s;
}

.btn-outline-orange:hover {
    background: #f15725;
    color: #fff;
    border-color: #f15725;
}

/* Custom Outline Blue Button (for Desktop) */
.btn-outline-primary-outline {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    background: var(--white);
    transition: all 0.3s ease;
}

.btn-outline-primary-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px var(--shadow-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    transform-origin: center;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(57,48,137,0.15);
    border: 1px solid var(--primary-orange);
}

.feature-icon {
    /*width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Category Cards */
.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    transform-origin: center;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(57,48,137,0.15);
    border-color: var(--primary-blue);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Process Cards */
.process-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(57,48,137,0.08);
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: left;
    min-height: 320px;
    position: relative;
    transform-origin: center;
}
.process-card:hover {
    box-shadow: 0 20px 40px rgba(57,48,137,0.15);
    transform: translateY(-10px) scale(1.02);
}
.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6454F0 0%, #f15725 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(57,48,137,0.10);
    transition: all 0.3s ease;
}
.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}
.process-card-user .process-icon { background: linear-gradient(135deg, #27ae60 0%, #00c853 100%);}
.process-card-affiliate .process-icon { background: linear-gradient(135deg, #393089 0%, #6454F0 100%);}
.process-card-merchant .process-icon { background: linear-gradient(135deg, #f15725 0%, #FFD600 100%);}
.text-gradient {
    background: linear-gradient(135deg, #393089 0%, #f15725 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
}

.process-card ol {
    padding-left: 1.2rem;
}

.process-card li {
    margin-bottom: 1rem;
}

/* News Section */
.news-section {
    background: #F8FAFF;
    padding: 80px 0;
}

.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--primary-orange);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.news-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 16px;
}

.news-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.news-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        padding: 60px 0;
    }
    .hero-image img {
        max-height: 480px;
    }
    .main-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    .hero-image img {
        max-height: 380px;
    }
    .main-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .hero {
        padding: 40px 0;
        overflow-x: hidden;
    }
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        text-align: center;
    }
    .hero-image {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .hero-image img {
        max-height: 350px;
    }
    .hero-buttons {
        flex-direction: column !important;
        gap: 16px;
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        align-items: center;
    }
    .hero .btn {
        width: 100% !important;
        max-width: none;
        min-width: 0;
        box-sizing: border-box;
        margin-bottom: 0 !important;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-width: 2px;
        border-style: solid;
        padding: 12px 0;
    }
    .hero .btn-primary {
        border-color: transparent;
        padding: 14px 0;
    }
    .hero .btn-outline-orange, .hero .btn-outline-primary-outline {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
        background: var(--white);
        padding: 12px 0;
    }
    .hero .btn-outline-orange:hover, .hero .btn-outline-primary-outline:hover {
        background: var(--primary-blue);
        color: var(--white);
        border-color: var(--primary-blue);
    }
    .hero-benefits {
        justify-content: center;
        gap: 10px;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-benefit-item.no-bg {
        flex: 1 1 0;
        min-width: 0;
        max-width: 100px;
    }
    .hero-benefit-item.no-bg .hero-benefit-icon {
        font-size: 1.8rem;
        width: 38px;
        height: 38px;
        margin-bottom: 3px;
    }
    .hero-benefit-item.no-bg .small {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    .sticker-badge {
        position: absolute;
        top: 12%;
        right: 10%;
        transform: translate(0%, -50%);
        padding: 5px 10px;
        font-size: 0.75rem;
        gap: 4px;
        z-index: 11;
    }
    .main-container {
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: hidden;
    }
}

@media (max-width: 576px) {
    .main-container {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .hero {
        overflow-x: hidden;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-image {
        margin-bottom: 1.5rem;
    }
    .hero-image img {
        max-height: 280px;
    }
    .hero-buttons {
        gap: 10px;
        margin-top: 0.8rem;
        margin-bottom: 1.2rem;
    }
    .hero .btn {
        width: 100% !important;
        max-width: none;
        padding: 10px 0;
        border-width: 2px;
    }
    .hero .btn-primary {
        border-color: transparent;
        padding: 12px 0;
    }
    .hero .btn-outline-orange, .hero .btn-outline-primary-outline {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
        background: var(--white);
        padding: 10px 0;
    }
    .hero-benefits {
        gap: 8px;
        margin-bottom: 1.2rem;
        flex-direction: row;
        justify-content: space-between;
    }
    .hero-benefit-item {
        min-width: 0;
        padding: 8px 2px 6px 2px;
    }
    .hero-benefit-icon {
        font-size: 1.6rem;
        width: 34px;
        height: 34px;
    }
}

.main-container {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Các section khác dùng .main-container */
.section, .section-light, .section-gray, .categories, .join-process, .news-section, .cta-section {
    padding-left: 0;
    padding-right: 0;
}

.join-cards .process-card {
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
}
.process-img {
    width: 320px;
    height: 320px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.large-img-top img, .large-img-bottom img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    box-shadow: 0 4px 24px rgba(57,48,137,0.10);
    background: #fff;
    transition: all 0.3s;
}
.align-bottom .process-img {
    order: 2;
    margin-top: 1.2rem;
    margin-bottom: 0;
}
.align-top .process-img {
    order: 0;
}
.process-card h3, .process-card ul {
    text-align: center;
}
.process-card ul {
    margin-top: 1rem;
    font-size: 1.08rem;
    color: #444;
}
.process-card:hover .process-img img {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(57,48,137,0.18);
    transition: all 0.3s;
}
@media (max-width: 992px) {
    .join-cards .process-card {
        min-height: 320px;
        padding: 2rem 1rem;
    }
    .process-img, .large-img-top img, .large-img-bottom img {
        width: 64px;
        height: 64px;
    }
}

.hero-benefits {
    gap: 40px;
    margin-bottom: 50px;
}
.hero-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 12px 10px 8px 10px;
    min-width: 80px;
    min-height: 70px;
    box-shadow: 0 2px 8px rgba(57,48,137,0.06);
}
.hero-benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff176 0%, #f15725 100%);
    color: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px auto;
    box-shadow: 0 2px 8px rgba(241,87,37,0.10);
    transition: all 0.3s ease;
}
.hero-benefit-item:hover .hero-benefit-icon {
    transform: scale(1.1) rotate(5deg);
}
@media (max-width: 576px) {
    .main-container {
        padding-left: 6px;
        padding-right: 6px;
    }
    .hero {
        overflow-x: hidden;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-image {
        margin-bottom: 1.5rem;
    }
    .hero-image img {
        max-height: 280px;
    }
    .hero-buttons {
        gap: 10px;
        margin-top: 0.8rem;
        margin-bottom: 1.2rem;
    }
    .hero .btn {
        width: 100% !important;
        max-width: none;
        padding: 10px 0;
        border-width: 2px;
    }
    .hero .btn-primary {
        border-color: transparent;
        padding: 12px 0;
    }
    .hero .btn-outline-orange, .hero .btn-outline-primary-outline {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
        background: var(--white);
        padding: 10px 0;
    }
    .hero-benefits {
        flex-direction: row;
        gap: 12px;
        margin-bottom: 30px;
        justify-content: space-between;
    }
    .hero-benefit-item {
        min-width: 0;
        padding: 8px 2px 6px 2px;
    }
    .hero-benefit-icon {
        font-size: 1.7rem;
        width: 36px;
        height: 36px;
    }
}

.hero-benefit-item.no-bg {
    background: none !important;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    min-height: 0;
}
.hero-benefit-item.no-bg .hero-benefit-icon {
    font-size: 1.9rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #fff176 0%, #f15725 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(241,87,37,0.10);
}
.hero-benefit-item.no-bg .fa-coins { color: #27ae60; }
.hero-benefit-item.no-bg .fa-sync-alt { color: #393089; }
.hero-benefit-item.no-bg .fa-badge-check { color: #f15725; }
.hero-benefit-item.no-bg .small {
    text-align: center;
    font-size: 0.98rem;
    margin-top: 2px;
}

.partners-section {
    background: #fff;
}
.partner-card {
    background: #f8faff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(57,48,137,0.07);
    padding: 18px 10px 12px 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #f0f0f0;
    min-height: 180px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transform-origin: center;
}
.partner-card:hover {
    box-shadow: 0 20px 40px rgba(57,48,137,0.15);
    border-color: #6454F0;
    background: linear-gradient(135deg, #f8faff 60%, #e3e6ff 100%);
    transform: translateY(-10px) scale(1.02);
    z-index: 2;
}
.partner-logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(57,48,137,0.05);
    transition: all 0.3s ease;
    display: inline-block;
}
.partner-card:hover .partner-logo {
    transform: scale(1.08);
    filter: brightness(1.05);
}
.partner-name {
    font-weight: 700;
    color: #393089;
    font-size: 1.08rem;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}
.partner-desc {
    color: #666;
    font-size: 0.97rem;
    line-height: 1.3;
}
@media (max-width: 992px) {
    .partner-card {
        min-height: 160px;
        padding: 18px 8px 12px 8px;
    }
    .partner-logo {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    .partner-name {
        font-size: 1rem;
    }
    .partner-desc {
        font-size: 0.9rem;
    }
}
@media (max-width: 576px) {
     .partner-card {
        min-height: 140px;
        padding: 20px 10px;
        margin-bottom: 20px;
    }
    .partner-logo {
        max-width: 100%;
        height: auto;
        margin-bottom: 12px;
        max-height: 80px;
        width: auto;
    }
}

/* Animation cho các phần tử */
.feature-card, .category-card, .process-card, .partner-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.feature-card:hover, .category-card:hover, .process-card:hover, .partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(57,48,137,0.15);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(57,48,137,0.15);
}

.btn:active {
    transform: translateY(-1px);
}

/* Hiệu ứng loading cho trang */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hiệu ứng parallax cho hero section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57,48,137,0.1) 0%, rgba(100,84,240,0.1) 100%);
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

/* Hiệu ứng hover cho các icon */
.hero-benefit-icon {
    transition: all 0.3s ease;
}

.hero-benefit-item:hover .hero-benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Hiệu ứng cho sticker badge */
.sticker-badge {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Hiệu ứng cho các section title */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.section-title:hover::after {
    width: 50%;
}

/* Hiệu ứng cho các card khi hover */
.feature-card:hover .feature-icon,
.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon, .process-icon {
    transition: all 0.3s ease;
}

/* Hiệu ứng cho các button trong hero section */
.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-buttons .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Hiệu ứng cho các partner logo */
.partner-logo {
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Hiệu ứng cho các category icon */
.category-icon {
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Hiệu ứng loading cho trang */
.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Hiệu ứng cho các section khi scroll */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Giảm thời gian animation AOS */
html [data-aos="fade-up"], html [data-aos="fade-down"], html [data-aos="fade-right"], html [data-aos="fade-left"],
html [data-aos="zoom-in"], html [data-aos="zoom-in-up"], html [data-aos="zoom-in-down"], html [data-aos="zoom-in-left"], html [data-aos="zoom-in-right"],
html [data-aos="zoom-out"], html [data-aos="zoom-out-up"], html [data-aos="zoom-out-down"], html [data-aos="zoom-out-left"], html [data-aos="zoom-out-right"],
html [data-aos="flip-left"], html [data-aos="flip-right"], html [data-aos="flip-up"], html [data-aos="flip-down"] {
  transition-duration: 0.5s !important;
}

/* User Benefits Section */
.user-benefits img,
.affiliate-benefits img,
.merchant-benefits img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.user-benefits img:hover,
.affiliate-benefits img:hover,
.merchant-benefits img:hover {
    transform: scale(1.05);
}

/* --- FINTECH HERO --- */
.fintech-hero {
    background: var(--gradient-1);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0 0 0;
}
.fintech-hero-content {
    z-index: 2;
}
.fintech-gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0 4px 24px rgba(57,48,137,0.25), 0 1px 0 #fff;
    position: relative;
    z-index: 2;
}
.fintech-hero-benefits {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}
.fintech-benefit {
    background: rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 8px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px var(--shadow-blue);
    font-size: 12px;
}
.fintech-icon {
    color: var(--primary-orange);
    font-size: 1.3em;
}
.fintech-btn-shadow {
    box-shadow: 0 4px 16px var(--shadow-blue);
    font-size: 1.1rem;
    font-weight: 600;
}
.fintech-hero-mockup {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.fintech-app-mockup {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 8px 32px var(--shadow-blue);
    background: rgba(255,255,255,0.08);
}
.fintech-hero-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    border-radius: 18px;
    padding: 6px 18px;
    font-size: 1rem;
    box-shadow: 0 2px 8px var(--shadow-orange);
    display: flex;
    align-items: center;
    gap: 6px;
}
.fintech-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('/images/fintech-wave.svg') no-repeat center bottom/cover;
    z-index: 1;
}

/* --- LỢI ÍCH SECTION --- */
.fintech-benefit-section {
    padding: 80px 0 40px 0;
}
.fintech-card {
    border-radius: 28px;
    box-shadow: 0 4px 24px var(--shadow-blue);
    background: var(--white);
    padding: 36px 28px 32px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fintech-card-hover:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px var(--shadow-blue);
}
.fintech-benefit-img, .feature-card img, .fintech-join-img {
    width: 100%;
    max-width: 240px;
    border-radius: 18px;
    margin-bottom: 18px;
    object-fit: contain;
    box-shadow: 0 2px 12px var(--shadow-blue);
    background: none;
    border: none;
}
@media (min-width: 1200px) {
    .fintech-benefit-img, .feature-card img, .fintech-join-img {
        max-width: 260px;
    }
}
.fintech-note {
    display: inline-block;
    background: #f3f3f3;
    color: var(--primary-blue);
    border-radius: 16px;
    padding: 6px 18px;
    margin: 0 8px;
    font-size: 1rem;
    font-weight: 500;
}

/* --- NGƯỜI DÙNG/ĐỐI TÁC SECTION --- */
.fintech-user-section {
    padding: 80px 0 40px 0;
    background: #f8faff;
}
.fintech-user-block {
    margin-bottom: 48px;
}
.fintech-user-content {
    padding: 0 18px;
}
.fintech-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 18px;
}
.fintech-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}
.fintech-list li {
    margin-bottom: 10px;
    padding-left: 0;
    position: relative;
    font-size: 1.1rem;
    color: #444;
}
.fintech-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}
.fintech-link-orange {
    color: var(--primary-orange);
}
.fintech-user-mockup {
    width: 100%;
    max-width: 340px;
    border-radius: 24px;
    box-shadow: 0 4px 24px var(--shadow-blue);
    background: rgba(255,255,255,0.08);
}

/* --- NGÀNH HÀNG SECTION CHUYÊN NGHIỆP --- */
.fintech-category-section {
    padding: var(--spacing-16) 0;
    background: linear-gradient(135deg, #f8faff 60%, #e3e6ff 100%);
}

.fintech-category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-6);
    padding: var(--spacing-8);
    max-width: 1400px;
    margin: 0 auto;
}

.fintech-category-box {
    box-shadow: 0 8px 32px rgba(57,48,137,0.10), 0 1.5px 8px rgba(241,87,37,0.08);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    background: #fff;
    position: relative;
    border: 2px solid transparent;
    padding: 32px 28px 28px 28px;
}
.fintech-category-box:hover,
.fintech-category-box:focus,
.fintech-category-box:active {
    border: 2.5px solid #393089;
    box-shadow: 0 20px 48px rgba(57,48,137,0.18), 0 4px 16px rgba(241,87,37,0.10);
    z-index: 2;
}
@media (max-width: 900px) {
    .fintech-category-box {
        padding: 22px 14px 18px 14px;
    }
}
@media (max-width: 600px) {
    .fintech-category-box {
        padding: 16px 8px 12px 8px;
    }
}
.category-bg-icon {
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.fintech-category-box:hover .category-bg-icon {
    transform: translate(-50%, calc(-50% - 8px)) scale(1.08);
    opacity: 0.85;
}

.fintech-category-box.has-bg-icon {
    padding-top: var(--spacing-16);
}

.category-bg-icon {
    position: absolute;
    top: var(--spacing-4);
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--gray-200);
    opacity: 0.5;
    transition: all var(--transition-normal) ease;
    z-index: 1;
}

.fintech-category-box.has-bg-icon .category-title {
    position: relative;
    z-index: 2;
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gray-800);
    margin-bottom: var(--spacing-3);
}

.fintech-category-box.has-bg-icon .category-desc {
    position: relative;
    z-index: 2;
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.5;
}

.fintech-category-box:hover .category-bg-icon {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.7;
}

.section-subtitle {
    text-align: center;
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto var(--spacing-12);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .category-bg-icon {
        font-size: 5rem;
    }
    .fintech-category-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-4);
        padding: var(--spacing-6);
    }
}

@media (max-width: 900px) {
    .fintech-category-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .category-bg-icon {
        font-size: 3.2rem;
    }
    .fintech-category-box.has-bg-icon .category-title {
        font-size: var(--text-lg);
    }
    .fintech-category-box.has-bg-icon .category-desc {
        font-size: var(--text-sm);
    }
}

@media (max-width: 600px) {
    .fintech-category-section {
        padding-bottom: 40px;
        margin-bottom: 32px;
    }
    .fintech-category-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding: 0 6px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
        padding-bottom: 12px;
    }
    .fintech-category-box {
        min-width: 80vw;
        max-width: 90vw;
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin-bottom: 0;
        padding: 24px 12px 20px 12px;
    }
    .category-bg-icon {
        font-size: 4.2rem !important;
        opacity: 0.7;
    }
    .fintech-category-box.has-bg-icon .category-title {
        font-size: 1.15rem;
        margin-top: 0.5em;
    }
    .fintech-category-box.has-bg-icon .category-desc {
        font-size: 0.95rem;
        opacity: 0.85;
    }
}

/* Mobile landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .fintech-category-cards {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 12px;
        padding: 12px;
        scroll-snap-type: none;
        scroll-behavior: auto;
        white-space: normal;
    }
    .fintech-category-box {
        min-width: 0;
        max-width: none;
        width: 100%;
        scroll-snap-align: none;
        padding: 20px 12px 16px 12px;
    }
    .category-bg-icon {
        font-size: 4.2rem !important; /* Tăng lên bằng với mobile dọc */
        opacity: 0.7;
    }
    .fintech-category-box.has-bg-icon .category-title {
        font-size: 1.1rem;
        margin-top: 0.5em;
    }
}

/* --- HƯỚNG DẪN THAM GIA SECTION --- */
.fintech-join-section {
    padding: 80px 0 40px 0;
    background: #f8faff;
}
.fintech-join-cards {
    margin-top: 32px;
}
.fintech-join-box {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.fintech-join-img {
    width: 100%;
    max-width: 160px;
    border-radius: 18px;
    margin-bottom: 18px;
    object-fit: cover;
    box-shadow: 0 2px 12px var(--shadow-blue);
}
.fintech-list-small li {
    font-size: 1rem;
    color: #555;
}

/* --- ĐỐI TÁC CHIẾN LƯỢC SECTION --- */
.fintech-partner-section {
    padding: 80px 0 40px 0;
}
.fintech-partner-cards {
    margin-top: 32px;
}
.fintech-partner-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px var(--shadow-blue);
    padding: 18px 10px 10px 10px;
    text-align: center;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.fintech-partner-logo {
    width: 80px;
    max-width: 80px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: grayscale(0.2) contrast(1.1);
}
.fintech-partner-name {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
}
.fintech-partner-box:hover {
    box-shadow: 0 8px 24px var(--shadow-blue);
    transform: translateY(-4px) scale(1.04);
}

/* --- CTA SECTION --- */
.fintech-cta-section {
    background: var(--gradient-1);
    color: var(--white);
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}
.fintech-cta-content {
    text-align: center;
    z-index: 2;
}

/* --- GLASSMORISM --- */
.fintech-card, .fintech-category-box, .fintech-partner-box {
    background: #fff !important;
    backdrop-filter: none !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .fintech-hero {
        padding: 60px 0 0 0;
    }
    .fintech-hero-mockup {
        max-width: 340px;
    }
}
@media (max-width: 992px) {
    .fintech-hero {
        flex-direction: column;
        min-height: unset;
        padding: 40px 0 0 0;
    }
    .fintech-hero-content {
        text-align: center;
        margin-bottom: 32px;
    }
    .fintech-hero-mockup {
        margin: 0 auto;
    }
    .fintech-user-block {
        flex-direction: column !important;
        text-align: center;
    }
    .fintech-user-content {
        margin-bottom: 18px;
    }
    .fintech-user-img {
        margin-bottom: 32px;
    }
}
@media (max-width: 768px) {
    .fintech-card, .fintech-category-box, .fintech-partner-box {
        padding: 18px 8px 18px 8px;
        min-height: unset;
    }
    .fintech-benefit-img, .fintech-join-img {
        max-width: 100%;
        width: 100%;
        border-radius: 14px;
    }
    .fintech-user-mockup {
        max-width: 100%;
        border-radius: 16px;
    }
    .fintech-partner-logo {
        width: 60px;
        height: 30px;
    }
    .hero-buttons .fintech-btn-shadow, .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 1.08rem;
        padding: 14px 0;
    }
}
@media (max-width: 576px) {
    .fintech-hero {
        padding: 24px 0 0 0;
    }
    .fintech-hero-content {
        padding: 0 8px;
    }
    .fintech-card, .fintech-category-box, .fintech-partner-box {
        border-radius: 12px;
        box-shadow: 0 2px 8px var(--shadow-blue);
    }
    .fintech-benefit-section, .fintech-user-section, .fintech-category-section, .fintech-join-section, .fintech-partner-section, .fintech-cta-section {
        padding: 32px 0 16px 0;
    }
    .fintech-section-title, .section-title {
        font-size: 1.3rem;
    }
    .fintech-benefit-img, .fintech-join-img {
        border-radius: 10px;
    }
    .fintech-user-mockup {
        border-radius: 10px;
    }
    .fintech-partner-logo {
        width: 40px;
        height: 20px;
    }
    .fintech-benefit-img, .feature-card img {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        border-radius: 14px !important;
        margin-bottom: 18px;
        object-fit: cover !important;
        display: block;
    }
    .feature-card, .fintech-card {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* HERO IMAGE DESKTOP LỚN HƠN */
@media (min-width: 1200px) {
    .fintech-hero-image img, .fintech-app-mockup {
        max-width: 700px;
        min-width: 480px;
        box-shadow: 0 12px 48px 0 rgba(57,48,137,0.18), 0 0 0 12px rgba(255,255,255,0.08);
        border-radius: 36px;
    }
}

/* HERO TEXT NỔI BẬT HƠN */
.fintech-hero-content::before { display: none !important; }

/* NÚT CTA HERO VÀ APP STORE/GOOGLE PLAY */
.hero-slide-title, .hero-slide-subtitle {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
  opacity: 1 !important;
  filter: none !important;
}
.hero-slide-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin-top: 0.2em;
  margin-bottom: 0.5em;
}
.hero-slide-buttons .btn {
  min-width: 120px;
  max-width: 200px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  white-space: nowrap;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.hero-slide-buttons .btn-primary {
  background: #3e6ae1;
  color: #fff;
}
.hero-slide-buttons .btn-primary:hover,
.hero-slide-buttons .btn-primary:focus {
  background: #174ae6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(62,106,225,0.12);
}
.hero-slide-buttons .btn-outline-light {
  background: #fff;
  color: #222;
}
.hero-slide-buttons .btn-outline-light:hover,
.hero-slide-buttons .btn-outline-light:focus {
  background: #f4f4f4;
  color: #222;
  box-shadow: 0 4px 16px rgba(62,106,225,0.08);
}
@media (max-width: 900px) {
  .hero-slide-buttons {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
  }
  .hero-slide-buttons .btn {
    min-width: 140px !important;
    max-width: 180px !important;
    width: 140px !important;
    flex: 0 0 140px !important;
    font-size: 0.97rem !important;
    padding: 9px 10px !important;
    border-radius: 6px !important;
  }
}
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.12); /* overlay nhẹ hơn, tăng tương phản */
  z-index: 1;
}



/* TESLA STYLE BENEFIT SECTION */
.tesla-benefit-section {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 64px 32px 64px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
}
@media (min-width: 1300px) {
  .tesla-benefit-section {
    max-width: 1800px;
    padding-left: 120px;
    padding-right: 120px;
    gap: 64px;
  }
  .tesla-benefit-row {
    min-height: 520px;
    height: 600px;
    border-radius: 6px;
  }
  .tesla-benefit-content {
    padding: 64px 80px 56px 80px;
    max-width: 800px;
  }
  .tesla-benefit-title { font-size: 2.6rem; }
  .tesla-benefit-desc { font-size: 1.3rem; }
}
@media (max-width: 1300px) {
  .tesla-benefit-section {
    max-width: 1200px;
    padding: 40px 24px 24px 24px;
    gap: 32px;
  }
  .tesla-benefit-row {
    min-height: 400px;
    height: 440px;
    border-radius: 6px;
  }
  .tesla-benefit-content {
    padding: 32px 32px 24px 32px;
    max-width: 600px;
  }
  .tesla-benefit-title { font-size: 1.7rem; }
  .tesla-benefit-desc { font-size: 1.08rem; }
}
@media (max-width: 900px) {
  .tesla-benefit-section {
    max-width: 900px;
    padding: 24px 8px 10px 8px;
    gap: 18px;
    flex-direction: row;
  }
  .tesla-benefit-row {
    min-height: 320px;
    height: 340px;
    border-radius: 6px;
  }
  .tesla-benefit-content {
    padding: 18px 12px 14px 12px;
    max-width: 100vw;
  }
  .tesla-benefit-title { font-size: 1.1rem; }
  .tesla-benefit-desc { font-size: 0.92rem; }
}
@media (max-width: 767px) {
  .tesla-benefit-section {
    flex-direction: column;
    gap: 12px;
    padding: 12px 0 6px 0;
    max-width: 100vw;
  }
  .tesla-benefit-row {
    width: 100vw;
    min-width: 0;
    min-height: 320px;
    height: 360px;
    border-radius: 8px;
    margin: 0 auto;
  }
  .tesla-benefit-content {
    padding: 12px 4vw 12px 4vw;
    max-width: 100vw;
  }
  .tesla-benefit-title { font-size: 0.95rem; }
  .tesla-benefit-desc { font-size: 0.7rem; }
  .tesla-benefit-row {
        margin-bottom: 24px;
    }
}

/* TESLA STYLE PARTNER SECTION */
.tesla-partner-section {
    padding: var(--spacing-16) 0;
    background-color: var(--white);
    text-align: center;
}

.tesla-partner-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--gray-800);
    margin-bottom: var(--spacing-12);
    position: relative;     
    display: inline-block;
}

.tesla-partner-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: var(--radius-full);
}

.tesla-partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.tesla-partner-logo-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(57,48,137,0.07);
    padding: 18px 10px 12px 10px;
    margin: 0 auto;
    min-width: 200px !important;
    max-width: 260px !important;
    min-height: 90px !important;
    max-height: 120px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.tesla-partner-logo-box img {
    max-width: 90%;
    max-height: 72px;
    min-width: 120px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 900px) {
    .tesla-partner-logos {
        gap: 20px;
        padding: 0 8px;
    }
    .tesla-partner-logo-box {
        min-width: 150px;
        max-width: 200px;
        min-height: 64px;
        padding: 10px;
    }
    .tesla-partner-logo-box img {
        min-width: 80px;
        max-height: 48px;
    }
}

@media (max-width: 600px) {
    .tesla-partner-logos {
        gap: 12px;
        padding: 0 4px;
    }
    .tesla-partner-logo-box {
        min-width: 120px;
        max-width: 160px;
        min-height: 48px;
        padding: 6px;
    }
    .tesla-partner-logo-box img {
        min-width: 60px;
        max-height: 32px;
    }
}

/* HERO SLIDE BACKGROUND IMAGE JPG ONLY */
.hero-slide-1 {
  background-image: url('/images/CashPlus-hoan-tien-ngay.jpg');
}
.hero-slide-2 {
  background-image: url('/images/Mua-Sam-hoan-tien-ngay-cung-CashPlus.jpg');
}
.hero-slide-3 {
  background-image: url('/images/Affiliate-tang-doanh-thu-cung-CashPlus.jpg');
}

@media (max-width: 900px) {
  .hero-slide-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100%;
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .hero-slide-buttons .btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    font-size: 1.12rem !important;
    padding: 16px 0 !important;
    border-radius: 6px !important; /* Sửa 12px thành 6px */
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    display: block !important;
  }
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.12); /* overlay nhẹ hơn, tăng tương phản */
  z-index: 1;
}

/* Khôi phục căn giữa cho hero title, subtitle, nút */
.hero-slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 30px;
}
.hero-slide-title, .hero-slide-subtitle {
  color: #fff !important;
  text-align: center !important;
}
.hero-slide-buttons .btn {
  font-size: 0.97rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.hero-slide-buttons .btn-primary:hover,
.hero-slide-buttons .btn-primary:focus {
  background: #174ae6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(62,106,225,0.12);
}
.hero-slide-buttons .btn-outline-light:hover,
.hero-slide-buttons .btn-outline-light:focus {
  background: #f4f4f4;
  color: #222;
  box-shadow: 0 4px 16px rgba(62,106,225,0.08);
}

/* Sửa lại style nút hero trên mobile giống Tesla */
@media (max-width: 900px) {
  .hero-slide-buttons {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100%;
    margin-top: 0.8em !important;
    margin-bottom: 0.5em !important;
  }
  .hero-slide-buttons .btn {
    padding: 11px 18px !important;
    font-size: 0.98rem !important;
    min-width: 110px !important;
    /* max-width: 140px !important; */
    width: auto !important;
  }
}

/* FORCE HERO SLIDE TITLE/SUBTITLE WHITE - OVERRIDE ALL */
.hero-slide .hero-slide-title, .hero-slide .hero-slide-subtitle,
.hero-slide-title, .hero-slide-subtitle {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18) !important;
  opacity: 1 !important;
  filter: none !important;
} 

@media (max-width: 900px) {
    .hero-slide-buttons .btn {
        font-size: 0.85rem !important;
        padding: 0.6rem 1rem !important;
        min-width: 90px !important;
        /* max-width: 140px !important; */
        width: auto !important;
    }
}
@media (max-width: 540px) {
    .hero-slide-buttons .btn {
        font-size: 0.75rem !important;
        padding: 0.45rem 0.7rem !important;
        min-width: 60px !important;
        /* max-width: 90px !important; */
        width: auto !important;
    }
}

.tesla-benefit-row {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tesla-benefit-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  padding-bottom: 2.5rem;
  color: #fff;
  text-align: left;
}
.tesla-benefit-title {
    color: #fff !important;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.7em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 2px rgba(0,0,0,0.18);
}
.tesla-benefit-desc {
  color: #fff !important;
  font-size: 1.15rem;
  margin-bottom: 1.2em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.22), 0 1px 2px rgba(0,0,0,0.18);
}
.tesla-btn-secondary {
  display: inline-block;
  background: #fff;
  color: var(--primary-blue);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(57,48,137,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-top: 0.2em;
}
.tesla-btn-secondary:hover {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 24px rgba(57,48,137,0.18);
}
@media (max-width: 1300px) {
  .tesla-benefit-title { font-size: 1.5rem; }
  .tesla-benefit-desc { font-size: 1rem; }
  .tesla-btn-secondary { font-size: 0.95rem; padding: 10px 22px; border-radius: 6px !important; }
}
@media (max-width: 900px) {
  .tesla-benefit-title { font-size: 1.1rem; }
  .tesla-benefit-desc { font-size: 0.92rem; }
  .tesla-btn-secondary { font-size: 0.9rem; padding: 8px 16px; border-radius: 6px !important; }
}
@media (max-width: 767px) {
  .tesla-benefit-content { padding-bottom: 1.2rem; }
  .tesla-benefit-title { font-size: 1.1rem; }
  .tesla-benefit-desc { font-size: 0.92rem; }
  .tesla-btn-secondary { font-size: 0.9rem; padding: 8px 16px; border-radius: 6px !important; }
}

.fintech-category-box.has-bg-icon {
  position: relative;
  overflow: hidden;
}
.category-bg-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 6.5rem;
  color: rgba(57,48,137,0.08);
  z-index: 1;
  pointer-events: none;
  user-select: none;
  transition: font-size 0.3s;
}
.fintech-category-box.has-bg-icon .category-title,
.fintech-category-box.has-bg-icon .category-desc {
  position: relative;
  z-index: 2;
  color: #393089;
  text-align: left;
}
.fintech-category-box.has-bg-icon .category-title {
  font-weight: 700;
  font-size: 1.18rem;
  margin-bottom: 0.3em;
}
.fintech-category-box.has-bg-icon .category-desc {
  font-size: 1rem;
  color: #444;
}
@media (max-width: 1200px) {
  .category-bg-icon { font-size: 5rem; }
}
@media (max-width: 900px) {
  .category-bg-icon { font-size: 3.2rem; }
  .fintech-category-box.has-bg-icon .category-title { font-size: 1rem; }
  .fintech-category-box.has-bg-icon .category-desc { font-size: 0.92rem; }
}
@media (max-width: 600px) {
  .category-bg-icon { font-size: 2.8rem; }
  .fintech-category-box.has-bg-icon .category-title { font-size: 1.08rem; }
  .fintech-category-box.has-bg-icon .category-desc { font-size: 0.95rem; }
}

.section-subtitle {
  font-size: 1.12rem;
  color: #555;
  font-weight: 400;
  margin: -25px auto 40px auto;  
  line-height: 1.5;
}

@media (min-width: 1300px) {
  .fintech-category-section {
    padding-left: 80px;
    padding-right: 80px;
  }
  .fintech-category-cards {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .fintech-category-box {
    min-width: 320px;
    min-height: 180px;
    padding: 48px 24px 36px 24px;
  }
  .category-bg-icon { font-size: 8rem; }
}

/* CTA Section */
.cta-section.fintech-cta-section {
    padding: var(--spacing-16) 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta-section.fintech-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.cta-content.fintech-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--spacing-4);
    line-height: 1.2;
}

.cta-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}

.cta-button.fintech-btn-shadow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal) ease;
    text-decoration: none;
    margin: 0 var(--spacing-2);
}

.cta-button.fintech-btn-shadow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.fintech-btn-shadow:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .cta-title {
        font-size: var(--text-3xl);
    }
    .cta-description {
        font-size: var(--text-lg);
    }
}

@media (max-width: 900px) {
    .cta-section.fintech-cta-section {
        padding: var(--spacing-12) 0;
    }
    .cta-title {
        font-size: var(--text-2xl);
    }
    .cta-description {
        font-size: var(--text-base);
        margin-bottom: var(--spacing-6);
    }
    .cta-button.fintech-btn-shadow {
        padding: var(--spacing-3) var(--spacing-6);
        font-size: var(--text-base);
    }
}

@media (max-width: 600px) {
    .cta-section.fintech-cta-section {
        padding: var(--spacing-8) 0;
    }
    .cta-title {
        font-size: var(--text-xl);
    }
    .cta-description {
        font-size: var(--text-sm);
        margin-bottom: var(--spacing-4);
    }
    .cta-button.fintech-btn-shadow {
        padding: var(--spacing-2) var(--spacing-4);
        font-size: var(--text-sm);
        margin: var(--spacing-2) 0;
        width: 100%;
        max-width: 280px;
    }
}

.section-title-cashplus {
    color: var(--primary-blue);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: var(--spacing-12);
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: none;
    line-height: 1.2;
    letter-spacing: -0.5px;
    transition: color var(--transition-normal);
}
.section-title-cashplus::after {
    content: '';
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    width: 0;
    height: 4px;
    background: var(--gradient-1);
    border-radius: var(--radius-full);
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.section-title-cashplus:hover::after,
.section-title-cashplus:focus::after {
    width: 35%;
}
@media (max-width: 900px) {
    .section-title-cashplus {
        font-size: clamp(1.3rem, 5vw, 2rem);
        margin-bottom: var(--spacing-8);
    }
}
@media (max-width: 600px) {
    .section-title-cashplus {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-6);
    }
}

@media (max-width: 600px) {
    .fintech-category-section,
    .tesla-partner-section,
    .tesla-news-section {
        text-align: center;
    }
}

/* TESLA NEWS SECTION - UPDATED */
.tesla-news-section {
    padding: 80px 0;
    background: #F8FAFF;
}

.tesla-news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
}
@media (max-width: 1300px) {
    .tesla-news-container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}
@media (max-width: 768px) {
    .tesla-news-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.tesla-news-wrapper {
    position: relative;
    margin: 40px 0;
}

.tesla-news-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 18px;
}
.tesla-news-slide {
    scroll-snap-align: start;
    flex: 0 0 32%;
    min-width: 320px;
    max-width: 420px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(57,48,137,0.04);
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.18s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.tesla-news-slide:hover, .tesla-news-slide:focus {
    border-color: #393089;
    box-shadow: 0 8px 32px rgba(57,48,137,0.10);
    transform: translateY(-4px) scale(1.02);
}
.tesla-news-slide:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(57,48,137,0.04);
    border-color: #393089;
}
.tesla-news-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tesla-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: block;
}
.tesla-news-slide:hover .tesla-news-img {
    transform: scale(1.03);
}
.tesla-news-info {
    padding: 14px 10px 10px 10px;
    text-align: left;
}
.tesla-news-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.3em;
    line-height: 1.3;
    text-overflow: unset;
    overflow: visible;
    white-space: normal;
    box-shadow: none !important;
    text-shadow: none !important;
    word-break: break-word;
}
.tesla-news-desc {
    font-size: 1rem;
    margin-bottom: 0.7em;
    opacity: 0.9;
    line-height: 1.5;
}
.tesla-news-btns {
    margin-top: 8px;
}
.tesla-btn-secondary {
    background: #fff;
    color: var(--primary-blue);
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 12px rgba(57,48,137,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}
.tesla-btn-secondary:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57,48,137,0.25);
}
.tesla-news-nav {
    position: absolute;
    top: 50%;
    left: 16px;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.tesla-news-arrow {
    background: #fff;
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(57,48,137,0.15);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tesla-news-arrow:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(57,48,137,0.25);
}
.tesla-news-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.tesla-news-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tesla-news-dots span:hover,
.tesla-news-dots span.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}
.tesla-news-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: #fff;
    padding: 32px 24px 24px 24px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}
/* Responsive */
@media (max-width: 1300px) {
    .tesla-news-container { max-width: 100%; padding-left: 16px; padding-right: 16px; }
    .tesla-news-slide { flex: 0 0 48%; max-width: 400px; }
}
@media (max-width: 992px) {
    .tesla-news-container { max-width: 800px; }
    .tesla-news-slide { flex: 0 0 48%; max-width: 400px; }
    .tesla-news-title { font-size: 1.08rem; }
    .tesla-news-desc { font-size: 0.95rem; }
}
@media (max-width: 900px) {
    .tesla-news-slide { flex: 0 0 90vw; min-width: 260px; max-width: 100vw; }
    .tesla-news-slider { gap: 12px; }
    .tesla-news-title { font-size: 1rem; }
    .tesla-news-info { padding: 10px 6px 8px 6px; }
}
@media (max-width: 600px) {
    .tesla-news-section { padding: 40px 0; }
    .tesla-news-container { padding: 0 6px; }
    .tesla-news-slide { flex: 0 0 98vw; min-width: 90vw; max-width: 100vw; border-radius: 8px; }
    .tesla-news-img-wrapper { border-radius: 8px 8px 0 0; aspect-ratio: 4/3; }
    .tesla-news-img { border-radius: 8px 8px 0 0; }
    .tesla-news-info { padding: 8px 4px 6px 4px; }
    .tesla-news-title { font-size: 0.97rem; }
    .tesla-news-desc { font-size: 0.9rem; }
    .tesla-news-slider { gap: 8px; }
    .tesla-news-nav { left: 0; right: 0; }
    .tesla-news-arrow { width: 32px; height: 32px; font-size: 0.9rem; }
    .tesla-news-dots { margin-top: 20px; gap: 8px; }
    .tesla-news-dots span { width: 8px; height: 8px; }
}
@media (max-width: 800px) {
    .tesla-news-nav, .tesla-news-arrow { display: none !important; visibility: hidden !important; pointer-events: none !important; }
}
@media (min-width: 1200px) {
    .tesla-news-img { height: 420px; }
}
@media (max-width: 900px) and (min-width: 601px) {
    .tesla-news-slide { min-width: 320px; }
}
/* Kết thúc dọn dẹp tesla-news-section */

@media (max-height: 500px) and (orientation: landscape) {
  /* HERO SLIDER - MOBILE LANDSCAPE */
  .hero-slide-content {
    padding: 12px 10vw 12px 10vw !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 8px;
  }
  .hero-slide-title {
    font-size: 1.3rem !important;
    margin-bottom: 0.3em !important;
    line-height: 1.15 !important;
  }
  .hero-slide-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 0.5em !important;
    line-height: 1.2 !important;
  }
  .hero-slide-buttons {
    flex-direction: row !important;
    gap: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .hero-slide-buttons .btn {
    font-size: 0.85rem !important;
    padding: 0.5em 1em !important;
    min-width: 80px !important;
    border-radius: 6px !important;
  }
  .hero-slide-dots {
    bottom: 10px !important;
  }

  /* TIN TỨC - MOBILE LANDSCAPE */
  .tesla-news-img-wrapper {
    max-height: 280px !important;
    height: 280px !important;
    aspect-ratio: unset !important;
  }
  .tesla-news-img {
    max-height: 280px !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 8px 8px 0 0 !important;
  }
}

/* ĐỐI TÁC CHIẾN LƯỢC - KHUNG BAO LOGO */
.tesla-partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(57,48,137,0.06);
  padding: 12px 18px;
  margin: 0 4px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  min-height: 56px;  
  max-height: 70px;
  /*-- min-width: 90px;
  max-width: 160px; */
  min-width: 160px !important;
  max-width: 240px !important;
}
.tesla-partner-logo-box:hover {
  border-color: #393089;
  box-shadow: 0 8px 24px rgba(57,48,137,0.16);
  transform: translateY(-4px) scale(1.06);
  z-index: 2;
}
.tesla-partner-logo-box img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  transition: transform 0.22s;
}
.tesla-partner-logo-box:hover img {
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .tesla-partner-logo-box {
    padding: 8px 10px;
    min-width: 70px;
    min-height: 40px;
    max-width: 110px;
    max-height: 48px;
  }
  .tesla-partner-logo-box img {
    max-height: 28px;
  }
}
@media (max-width: 600px) {
  .tesla-partner-logo-box {
    padding: 6px 6px;
    min-width: 54px;
    min-height: 28px;
    max-width: 80px;
    max-height: 36px;
  }
  .tesla-partner-logo-box img {
    max-height: 20px;
  }
}

@media (min-width: 1200px) {
  .tesla-partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
  }
  .tesla-partner-logo-box {
    min-width: 160px;
    max-width: 240px;
    min-height: 80px;
    max-height: 110px;
    padding: 24px 32px;
  }
  .tesla-partner-logo-box img {
    max-height: 64px;
  }
}

/* ĐỐI TÁC CHIẾN LƯỢC - RESPONSIVE */
.tesla-partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    justify-items: center;
}

.tesla-partner-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(57,48,137,0.06);
    padding: 16px 24px;
    transition: all 0.22s;
    min-height: 80px;
    width: 100%;
}

.tesla-partner-logo-box:hover {
    border-color: #393089;
    box-shadow: 0 8px 24px rgba(57,48,137,0.16);
    transform: translateY(-4px) scale(1.06);
    z-index: 2;
}

.tesla-partner-logo-box img {
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    transition: transform 0.22s;
}

/* Desktop lớn */
@media (min-width: 1200px) {
    .tesla-partner-logos {
        grid-template-columns: repeat(5, 1fr);
        gap: 48px;
        padding: 0 48px;
    }
    .tesla-partner-logo-box {
        min-height: 100px;
        padding: 24px 32px;
    }
    .tesla-partner-logo-box img {
        max-height: 64px;
    }
}

/* Tablet & Desktop nhỏ */
@media (min-width: 768px) and (max-width: 1199px) {
    .tesla-partner-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        padding: 0 32px;
    }
    .tesla-partner-logo-box {
        min-height: 90px;
        padding: 20px 28px;
    }
    .tesla-partner-logo-box img {
        max-height: 56px;
    }
}

/* Mobile ngang */
@media (min-width: 501px) and (max-width: 767px) {
    .tesla-partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    .tesla-partner-logo-box {
        min-height: 80px;
        padding: 16px 20px;
    }
    .tesla-partner-logo-box img {
        max-height: 48px;
    }
}

/* Mobile dọc siêu nhỏ */
@media (max-width: 500px) {
    .tesla-partner-logos {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    .tesla-partner-logo-box {
        min-height: 70px;
        padding: 14px 18px;
    }
    .tesla-partner-logo-box img {
        max-height: 40px;
    }
}

/* --- TỐI ƯU TEXT LỢI ÍCH NGƯỜI DÙNG/ĐỐI TÁC --- */
.fintech-section-title, .fintech-list li, .fintech-section-desc {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.22), 0 1px 2px rgba(0,0,0,0.18) !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Nếu có class .fintech-section-desc thì áp dụng luôn */
.fintech-section-desc {
    font-size: 1.08rem;
    margin-bottom: 1.2em;
}

/* --- NÚT TÌM HIỂU THÊM ĐỒNG BỘ HERO --- */
.benefit-more-btn {
    min-width: 120px;
    max-width: 180px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 0.97rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.benefit-more-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(62,106,225,0.12);
}

/* --- TỐI ƯU TEXT & NÚT LỢI ÍCH TESLA STYLE --- */
.tesla-benefit-title, .tesla-benefit-desc {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.22), 0 1px 2px rgba(0,0,0,0.18) !important;
    opacity: 1 !important;
    filter: none !important;
}

.tesla-btn-secondary {
    min-width: 120px;
    max-width: 180px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 0.97rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    border: none;
    background: #fff;
    color: var(--primary-blue);
    margin-top: 0.2em;
}
.tesla-btn-secondary:hover {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(62,106,225,0.12);
}
@media (max-width: 900px) {
    .tesla-btn-secondary {
        min-width: 90px;
        max-width: 140px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}
@media (max-width: 540px) {
    .tesla-btn-secondary {
        min-width: 60px;
        max-width: 90px;
        font-size: 0.75rem;
        padding: 0.45rem 0.7rem;
    }
}

@media (max-width: 900px) {
  .tesla-benefit-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .tesla-btn-secondary {
    width: auto !important;
    min-width: 120px !important;
    max-width: 180px !important;
    display: inline-flex !important;
    justify-content: flex-start !important;
    font-size: 0.8rem !important;
    padding: 5px 18px !important;
    border-radius: 6px !important;
    margin-top: 0.8em;
    margin-left: 0 !important;
  }
}

@media (max-width: 600px) {
  .tesla-btn-secondary {
    font-size: 0.85rem !important;
    padding: 5px 10px !important;
    min-width: 80px !important;
    max-width: 120px !important;
    border-radius: 6px !important;
  }
}

/* TỐI ƯU HIỆU ỨNG AOS: HIỂN THỊ NGAY KHI SCROLL */
html [data-aos],
html [data-aos][data-aos-delay],
html [data-aos][data-aos-duration] {
  transition-duration: 0.18s !important;
  transition-delay: 0s !important;
  animation-duration: 0.18s !important;
  animation-delay: 0s !important;
}

html [data-aos][data-aos-delay] {
  transition-delay: 0s !important;
  animation-delay: 0s !important;
}

html [data-aos][data-aos-duration] {
  transition-duration: 0.18s !important;
  animation-duration: 0.18s !important;
}

@media (max-width: 600px) {
  .tesla-partner-logos {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 0 4px !important;
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
  .tesla-partner-logo-box {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }
}

/* --- Download App Page Custom CSS (Dowloadnow.cshtml) --- */
.download-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8faff 60%, #e3e6ff 100%);
    padding: 0 6vw;
    gap: 32px;
}
.download-hero-left {
    flex: 1.1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.download-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #393089;
    margin-bottom: 1.1em;
    line-height: 1.1;
}
.download-desc {
    font-size: 1.25rem;
    color: #393089;
    margin-bottom: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
}
.download-cta-row {
    display: flex;
    gap: 18px;
    margin-bottom: 1.5rem;
}
.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #393089 0%, #6454F0 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    padding: 16px 32px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(57,48,137,0.10);
    transition: background 0.18s, transform 0.18s;
    position: relative;
}
.download-btn:hover {
    background: linear-gradient(135deg, #6454F0 0%, #393089 100%) !important;
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
}
.download-hero-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 0;
}
.download-hero-img.no-bg {
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: 600px !important;
    width: 100% !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}
.sticker-badge {
    position: absolute;
    left: 50% !important;
    top: 18px;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #393089;
    padding: 7px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.08rem;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    min-width: unset;
    z-index: 10;
    margin-bottom: 18px;
    text-align: center;
}
.sticker-badge i {
    color: #f15725 !important;
    font-size: 1.2em !important;
}
@media (max-width: 900px) {
    .download-hero {
        flex-direction: column-reverse;
        gap: 24px;
        padding: 18px 2vw;
    }
    .download-hero-left, .download-hero-right {
        max-width: 100vw;
        align-items: center;
        padding-left: 0;
    }
    .download-title {
        font-size: 2rem;
        text-align: center;
    }
    .download-desc {
        font-size: 1.08rem;
        text-align: center;
    }
    .download-cta-row {
        justify-content: center;
    }
    .sticker-badge {
        position: relative;
        left: unset;
        top: unset;
        transform: none;
        margin-top: 20px;
        margin-bottom: 10px;
        display: inline-flex;
        font-size: 1rem;
    }
    .download-hero-img.no-bg {
        max-width: 90vw !important;
    }
}
@media (max-width: 600px) {
    .download-hero {
        padding: 8px 0 8px 0;
    }
    .download-title {
        font-size: 1.15rem;
    }
    .download-desc {
        font-size: 0.98rem;
    }
    .download-btn {
        font-size: 0.98rem;
        padding: 10px 12px;
        border-radius: 10px;
    }
    .download-hero-img.no-bg {
        max-width: 98vw !important;
    }
    .sticker-badge {
        font-size: 0.92rem;
        padding: 6px 12px;
        border-radius: 14px;
        margin-top: 12px;
        margin-bottom: 8px;
    }
}
/* --- END HERO SECTION --- */

@media (max-width: 900px) {
    .download-hero-right {
        width: 100vw !important;
        justify-content: center !important;
        align-items: center !important;
        min-width: 0 !important;
        display: flex !important;
        overflow: hidden !important;
    }
    .download-hero-img.no-bg {
        width: auto !important;
        max-width: 90vw !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }
    .sticker-badge i {
        color: #f15725 !important;
        fill: #f15725 !important;
        font-size: 1.2em !important;
    }
}
@media (max-width: 600px) {
    .download-hero-right {
        width: 100vw !important;
        justify-content: center !important;
        align-items: center !important;
        min-width: 0 !important;
        display: flex !important;
        overflow: hidden !important;
    }
    .download-hero-img.no-bg {
        width: auto !important;
        max-width: 90vw !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }
    .sticker-badge i {
        color: #f15725 !important;
        fill: #f15725 !important;
        font-size: 1.2em !important;
    }
}
/* Đảm bảo icon vương miện luôn màu cam trên mọi thiết bị */
.sticker-badge i {
    color: #f15725 !important;
    fill: #f15725 !important;
    font-size: 1.2em !important;
    transition: none !important;
}

@media (max-width: 900px) {
    .download-hero {
        flex-direction: column-reverse !important;
        width: 100vw !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .download-hero-left, .download-hero-right {
        flex: unset !important;
        width: 100vw !important;
        min-width: 0 !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    .download-hero-right {
        justify-content: center !important;
        align-items: center !important;
        overflow: hidden !important;
        position: relative !important;
    }
    .download-hero-img.no-bg {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }
}
@media (max-width: 600px) {
    .download-hero {
        flex-direction: column-reverse !important;
        width: 100vw !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .download-hero-left, .download-hero-right {
        flex: unset !important;
        width: 100vw !important;
        min-width: 0 !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    .download-hero-right {
        justify-content: center !important;
        align-items: center !important;
        overflow: hidden !important;
        position: relative !important;
    }
    .download-hero-img.no-bg {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: contain !important;
    }
}