/* ============================================
   Landing Page V3 - Cyan-Emerald Theme
   Gradient: linear-gradient(135deg, #0891B2 0%, #10B981 100%)
   ============================================ */

/* === CSS Variables === */
:root {
    --primary-cyan: #0891B2;
    --primary-emerald: #10B981;
    --gradient-primary: linear-gradient(135deg, #0891B2 0%, #10B981 100%);
    --gradient-hero: linear-gradient(135deg, rgba(8, 145, 178, 0.9) 0%, rgba(16, 185, 129, 0.85) 100%);
    --dark-bg: #0f172a;
    --light-bg: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 20px 40px rgba(8, 145, 178, 0.2);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s ease;
}

/* === Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.landing-v3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container-v3 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Utility Classes === */
.text-gradient-v3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-v3 {
    background: var(--gradient-primary);
}

.btn-gradient-v3 {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-gradient-v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(8, 145, 178, 0.4);
}

.btn-outline-v3 {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-v3:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* === Hero Section === */
.hero-v3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-v3::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23ffffff' d='M0,100 C480,150 960,50 1440,100 L1440,150 L0,150 Z'/%3E%3C/svg%3E") center bottom / cover no-repeat;
    z-index: 1;
}

.hero-content-v3 {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 150px;
}

.hero-text-v3 {
    color: white;
}

.hero-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-v3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-v3 .highlight {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-v3 {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions-v3 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats-v3 {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-v3 {
    text-align: center;
}

.hero-stat-v3 .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.hero-stat-v3 .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-image-v3 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-v3 img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Floating Icons */
.floating-icons-v3 {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon-v3 {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon-v3:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-v3:nth-child(2) {
    top: 20%;
    right: 5%;
    animation-delay: 1s;
}

.floating-icon-v3:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-icon-v3:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* === Section Styles === */
.section-v3 {
    padding: 100px 0;
}

.section-v3.dark {
    background: var(--dark-bg);
    color: white;
}

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

.section-header-v3 {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary-cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-v3.dark .section-badge-v3,
.section-v3.gradient .section-badge-v3 {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.section-title-v3 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description-v3 {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-v3.dark .section-description-v3,
.section-v3.gradient .section-description-v3 {
    color: rgba(255, 255, 255, 0.8);
}

/* === Platforms Grid === */
.platforms-grid-v3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.platform-card-v3 {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.platform-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.platform-card-v3 img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
}

.platform-card-v3 h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.platforms-grid-secondary-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 40px auto 0;
}

/* === Tables Section === */
.tables-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.table-card-v3 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header-v3 h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
    font-weight: 600;
}

.table-header-v3 h3 i {
    color: #fbbf24;
}

.period-select-v3 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
}

.data-table-v3 {
    width: 100%;
    border-collapse: collapse;
}

.data-table-v3 th,
.data-table-v3 td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table-v3 th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.data-table-v3 td {
    font-size: 0.875rem;
}

/* === Services Grid === */
.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card-v3 {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.service-icon-v3 {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-v3 i {
    font-size: 1.75rem;
    color: white;
}

.service-card-v3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card-v3 p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === Affiliate Stats === */
.stats-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-v3 {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.stat-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.stat-icon-v3 {
    width: 56px;
    height: 56px;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon-v3 i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.stat-card-v3 .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.stat-card-v3 .label {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* === Customer Tiers === */
.tiers-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tier-card-v3 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tier-card-v3:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
}

.tier-card-v3.featured {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.tier-icon-v3 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
}

.tier-card-v3.bronze .tier-icon-v3 {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.tier-card-v3.silver .tier-icon-v3 {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.tier-card-v3.gold .tier-icon-v3 {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.tier-card-v3.diamond .tier-icon-v3 {
    background: linear-gradient(135deg, #b9f2ff 0%, #00bfff 100%);
}

.tier-card-v3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tier-requirement-v3 {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.tier-benefits-v3 {
    text-align: left;
}

.tier-benefits-v3 .benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
}

.tier-benefits-v3 .benefit i {
    color: var(--primary-emerald);
}

/* === Announcements === */
.announcements-list-v3 {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-card-v3 {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-cyan);
}

.announcement-card-v3:hover {
    transform: translateX(8px);
    box-shadow: var(--card-hover-shadow);
}

.announcement-date-v3 {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    min-width: 70px;
}

.announcement-date-v3 .day {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
}

.announcement-date-v3 .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.announcement-content-v3 h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.announcement-content-v3 p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-content-v3 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description-v3 {
        margin: 0 auto 32px;
    }

    .hero-actions-v3 {
        justify-content: center;
    }

    .hero-stats-v3 {
        justify-content: center;
    }

    .hero-image-v3 {
        order: -1;
    }

    .platforms-grid-v3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .tables-grid-v3,
    .services-grid-v3,
    .tiers-grid-v3,
    .stats-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-v3 {
        font-size: 2.5rem;
    }

    .section-title-v3 {
        font-size: 2rem;
    }

    .platforms-grid-v3,
    .platforms-grid-secondary-v3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tables-grid-v3,
    .services-grid-v3,
    .tiers-grid-v3,
    .stats-grid-v3 {
        grid-template-columns: 1fr;
    }

    .hero-stats-v3 {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title-v3 {
        font-size: 2rem;
    }

    .hero-actions-v3 {
        flex-direction: column;
    }

    .btn-gradient-v3,
    .btn-outline-v3 {
        width: 100%;
        justify-content: center;
    }

    .platforms-grid-v3 {
        grid-template-columns: 1fr 1fr;
    }

    .floating-icons-v3 {
        display: none;
    }
}

/* === Stats Counter Row (Zocio Style) === */
.stats-counter-v3 {
    background: #f8fafc;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-row-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item-v3 {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.stat-item-v3 .stat-icon-v3 {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-item-v3 .stat-icon-v3 i {
    font-size: 1.5rem;
    color: white;
}

.stat-info-v3 {
    display: flex;
    flex-direction: column;
}

.stat-number-v3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    line-height: 1;
}

.stat-label-v3 {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* === About Us Section (Zocio Style) === */
.about-section-v3 {
    background: #ffffff;
}

.about-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-v3 {
    position: relative;
}

.about-image-v3 img {
    width: 100%;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.2);
}

.about-badge-v3 {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 40px rgba(8, 145, 178, 0.4);
}

.about-badge-v3 .badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge-v3 .badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.about-content-v3 {
    padding: 20px 0;
}

.about-content-v3 .section-badge-v3 {
    margin-bottom: 20px;
}

.about-content-v3 .section-title-v3 {
    margin-bottom: 24px;
}

.about-text-v3 {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* === Why Choose Us Section (Zocio Style) === */
.why-choose-v3 {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.features-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-v3 {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.feature-icon-v3 {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

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

.feature-icon-v3 i {
    font-size: 2rem;
    color: white;
}

.feature-card-v3 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card-v3 p {
    color: var(--text-light);
    font-size: 0.938rem;
    line-height: 1.7;
}

/* === Responsive for New Sections === */
@media (max-width: 1024px) {
    .stats-row-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-grid-v3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-badge-v3 {
        right: 20px;
    }

    .about-content-v3 .section-title-v3 {
        text-align: center !important;
    }

    .about-content-v3 {
        text-align: center;
    }

    .features-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-counter-v3 {
        padding: 40px 0;
    }

    .stats-row-v3 {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-item-v3 {
        flex-direction: column;
        text-align: center;
    }

    .stat-number-v3 {
        font-size: 2rem;
    }

    .about-badge-v3 {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .features-grid-v3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-row-v3 {
        grid-template-columns: 1fr;
    }
}

/* === Platforms Showcase (New Design) === */
.platforms-section-v3 {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.platforms-showcase-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.platform-item-v3 {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}

.platform-item-v3:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.platform-icon-wrapper-v3 {
    width: 64px;
    height: 64px;
    background: var(--platform-color, var(--primary-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.platform-item-v3:hover .platform-icon-wrapper-v3 {
    transform: scale(1.1) rotate(5deg);
}

.platform-icon-wrapper-v3 i {
    font-size: 1.75rem;
    color: white;
}

.platform-item-v3 h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.platform-tag-v3 {
    display: inline-block;
    background: rgba(8, 145, 178, 0.1);
    color: var(--primary-cyan);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* === Exclusive Services (New Design) === */
.exclusive-section-v3 {
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.exclusive-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.exclusive-card-v3 {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.exclusive-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.exclusive-card-v3.featured {
    border: 2px solid var(--primary-cyan);
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.02) 0%, white 100%);
}

.exclusive-card-v3 .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.exclusive-icon-v3 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.exclusive-card-v3:hover .exclusive-icon-v3 {
    transform: scale(1.1);
}

.exclusive-icon-v3 i {
    font-size: 2rem;
    color: white;
}

.exclusive-card-v3 h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.exclusive-card-v3>p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.exclusive-features-v3 {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.exclusive-features-v3 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.938rem;
}

.exclusive-features-v3 li i {
    color: var(--primary-emerald);
}

/* === Customer Tiers (Unified Colors) === */
.tiers-section-v3 {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.tier-card-v3-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.tier-card-v3-new:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.tier-card-v3-new.featured {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.3) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-color: var(--primary-cyan);
}

.tier-card-v3-new .featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.tier-icon-v3-new {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: white;
    transition: var(--transition);
}

.tier-card-v3-new:hover .tier-icon-v3-new {
    transform: scale(1.1);
}

.tier-card-v3-new h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tier-discount-v3 {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.tier-card-v3-new .tier-requirement-v3 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.938rem;
    margin-bottom: 24px;
}

.tier-card-v3-new .tier-benefits-v3 {
    text-align: left;
}

.tier-card-v3-new .tier-benefits-v3 .benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.938rem;
}

.tier-card-v3-new .tier-benefits-v3 .benefit i {
    color: var(--primary-emerald);
}

/* === Footer Override (Unified Colors) === */
body.landing-v3 .footer,
body.landing-v3 footer {
    background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%) !important;
    color: white;
}

body.landing-v3 .footer h4,
body.landing-v3 footer h4 {
    color: white;
    position: relative;
    padding-bottom: 12px;
}

body.landing-v3 .footer h4::after,
body.landing-v3 footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

body.landing-v3 .footer a,
body.landing-v3 footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

body.landing-v3 .footer a:hover,
body.landing-v3 footer a:hover {
    color: var(--primary-cyan);
}

body.landing-v3 .footer-bottom,
body.landing-v3 .footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent !important;
}

body.landing-v3 .social_footer_ul button,
body.landing-v3 .social_footer_ul a {
    background: var(--gradient-primary) !important;
    color: white !important;
}

/* === Responsive for New Sections === */
@media (max-width: 1024px) {
    .platforms-showcase-v3 {
        grid-template-columns: repeat(4, 1fr);
    }

    .exclusive-grid-v3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .platforms-showcase-v3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .exclusive-card-v3 {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .platforms-showcase-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .platform-item-v3 {
        padding: 24px 16px;
    }

    .platform-icon-wrapper-v3 {
        width: 48px;
        height: 48px;
    }

    .platform-icon-wrapper-v3 i {
        font-size: 1.25rem;
    }
}

/* === Affiliate Section Customization (Teal/Glass Match) === */
#affiliate-section.section-v3 {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    /* Cyan to Emerald */
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Override V3 Badge for this section */
#affiliate-section .section-badge-v3 {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

#affiliate-section .section-badge-v3 i {
    color: white;
    margin-right: 8px;
}

#affiliate-section .section-title-v3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

#affiliate-section .section-description-v3 {
    color: rgba(255, 255, 255, 0.9);
}

/* Target stat cards specifically inside the V3 grid in this section */
.stats-grid-v3 .stat-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    padding: 30px 20px !important;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-grid-v3 .stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Update icons inside these cards */
.stats-grid-v3 .stat-card .stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Gradients for icons */
.purple-pink-gradient {
    background: linear-gradient(135deg, #c026d3 0%, #a855f7 100%) !important;
}

.pink-red-gradient {
    background: linear-gradient(135deg, #f43f5e 0%, #ef4444 100%) !important;
}

.blue-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

/* Text styles inside cards */
.stats-grid-v3 .stat-card .stat-value {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-grid-v3 .stat-card .stat-label {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 8px;
}

.stats-grid-v3 .stat-card .stat-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
}

.pink-red-gradient {
    background: linear-gradient(135deg, #f43f5e 0%, #ef4444 100%) !important;
}

/* Rose to Red */
.blue-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.stat-value {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    line-height: 1.5;
    max-width: 90%;
    margin-top: auto;
    /* Push to bottom if needed, or just flow */
}