/**
 * PointSeller - Premium Modern Theme
 * Clean, Professional Design
 * Version 3.0
 */

/* ============================================
   1. CSS VARIABLES
   ============================================ */
:root {
    /* Primary Colors - Vibrant Blue */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;

    /* Secondary - Purple Accent */
    --secondary: #7c3aed;
    --secondary-dark: #6d28d9;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.4);

    /* Border Radius */
    --rounded-sm: 0.25rem;
    --rounded: 0.375rem;
    --rounded-md: 0.5rem;
    --rounded-lg: 0.75rem;
    --rounded-xl: 1rem;
    --rounded-2xl: 1.5rem;
    --rounded-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Legacy compatibility */
    --primary-blue: var(--primary);
    --primary-blue-light: var(--primary-light);
    --text-light: var(--gray-400);
    --text-muted: var(--gray-500);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* ============================================
   4. LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--rounded-lg);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   6. HEADER
   ============================================ */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.modern-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-modern img {
    height: 45px;
    transition: var(--transition);
}

/* Desktop Navigation */
.modern-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.modern-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.modern-nav .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--rounded-lg);
    transition: var(--transition);
    text-decoration: none;
}

.modern-nav .nav-links a i {
    display: none;
}

.modern-header.scrolled .modern-nav .nav-links a {
    color: var(--gray-700);
}

.modern-nav .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modern-header.scrolled .modern-nav .nav-links a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Desktop CTA */
.modern-nav .nav-cta {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.modern-nav .nav-cta .btn-cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--rounded-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.modern-nav .nav-cta .btn-cta-mobile:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.modern-nav .nav-cta .nav-cta-text {
    display: none;
}

/* Hide mobile-only elements on desktop */
.mobile-nav-header {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: var(--rounded-lg);
    z-index: 1002;
}

.mobile-toggle .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.modern-header.scrolled .mobile-toggle .hamburger-line {
    background: var(--gray-900);
}

/* Hamburger animation */
.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MOBILE STYLES (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .modern-header {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.75rem 0;
    }

    .modern-header.scrolled {
        background: rgba(255, 255, 255, 0.98);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-overlay {
        display: block;
    }

    /* Mobile Navigation Panel */
    .modern-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }

    .modern-nav.active {
        right: 0;
    }

    /* Mobile Header */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-logo {
        height: 35px;
    }

    .mobile-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        color: var(--white);
        font-size: 1.25rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .mobile-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Mobile Links */
    .modern-nav .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
    }

    .modern-nav .nav-links a {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-decoration: none;
    }

    .modern-nav .nav-links a i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--rounded-lg);
        font-size: 0.875rem;
        color: var(--primary);
    }

    .modern-nav .nav-links a:hover,
    .modern-nav .nav-links a:active {
        background: rgba(255, 255, 255, 0.05);
    }

    .modern-nav .nav-links a:hover i,
    .modern-nav .nav-links a:active i {
        background: var(--primary);
        color: var(--white);
    }

    /* Mobile CTA */
    .modern-nav .nav-cta {
        margin: auto 1.5rem 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        gap: 1rem;
    }

    .modern-nav .nav-cta .btn-cta-mobile {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border-radius: var(--rounded-xl);
    }

    .modern-nav .nav-cta .btn-cta-mobile:hover {
        transform: none;
        filter: brightness(1.1);
    }

    .modern-nav .nav-cta .nav-cta-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        margin: 0;
    }

    .modern-nav .nav-cta .nav-cta-text i {
        color: var(--primary);
    }
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero-modern {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-modern {
        min-height: auto;
        padding: 7rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 4rem 0 1.5rem;
        overflow: visible;
        min-height: auto;
    }

    .hero-modern .container {
        overflow: visible;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-carousel-3d {
        order: 1;
        padding-bottom: 0.5rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-buttons {
        margin-bottom: 1rem;
    }
}

/* Background Pattern */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
    filter: blur(40px);
    animation: float 10s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
}

.floating-element:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

/* Hero Text */
.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--rounded-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--success);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-description {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        margin-bottom: 0.75rem;
        gap: 0.5rem;
    }

    .hero-buttons .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-around;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 0.5rem 1rem;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }
}

.stat-item {
    text-align: left;
}

@media (max-width: 1024px) {
    .stat-item {
        text-align: center;
    }
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Hero Carousel - 3D Coverflow Style */
.hero-carousel-3d {
    position: relative;
    padding: 2rem 0;
    perspective: 1200px;
}

.heroSwiper3D {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
    overflow: visible;
}

.heroSwiper3D .swiper-slide {
    width: 320px;
    height: auto;
    transition: all 0.4s ease;
}

.heroSwiper3D .swiper-slide-active {
    transform: scale(1.05);
}

.slide-card {
    position: relative;
    border-radius: var(--rounded-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    background: var(--white);
    transition: all 0.4s ease;
}

.heroSwiper3D .swiper-slide-active .slide-card {
    box-shadow: 0 30px 60px -15px rgba(37, 99, 235, 0.5);
}

.slide-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.heroSwiper3D .swiper-slide-active .slide-card img {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.25rem 1.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.heroSwiper3D .swiper-slide-active .slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.slide-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Pagination */
.hero-pagination {
    position: relative;
    bottom: 0;
    margin-top: 1rem;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary-light);
    width: 32px;
    border-radius: 6px;
}

/* Swiper Navigation */
.swiper-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.swiper-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 1rem;
}

.swiper-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.swiper-btn:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .hero-carousel-3d {
        padding: 1.5rem 0;
        margin: 0 -1rem;
    }

    .heroSwiper3D {
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .heroSwiper3D .swiper-slide {
        width: 180px;
    }

    .slide-card img {
        height: 120px;
    }

    .slide-card {
        box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.3);
        border-radius: var(--rounded-md);
    }

    .swiper-nav {
        display: none;
    }

    .hero-carousel-3d {
        padding: 0;
        margin: 0;
        perspective: 600px;
    }

    .heroSwiper3D {
        padding-top: 5px;
        padding-bottom: 10px;
        overflow: visible !important;
    }

    .heroSwiper3D .swiper-wrapper {
        padding-bottom: 0;
    }

    .slide-overlay {
        padding: 0.75rem 0.5rem 0.5rem;
        opacity: 1;
        transform: none;
    }

    .slide-overlay span {
        font-size: 0.65rem;
    }

    .hero-pagination {
        margin-top: 0.15rem;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 16px;
    }
}

@media (max-width: 480px) {
    .hero-modern {
        padding: 4rem 0 1.5rem;
    }

    .heroSwiper3D .swiper-slide {
        width: 160px;
    }

    .slide-card img {
        height: 110px;
    }

    .slide-card {
        border-radius: var(--rounded-md);
    }

    .hero-carousel-3d {
        padding: 0 0 0.5rem;
        perspective: 500px;
    }

    .heroSwiper3D {
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .slide-overlay span {
        font-size: 0.65rem;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 16px;
    }
}

/* ============================================
   8. SECTIONS
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-light {
    background: var(--gray-50);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-gradient {
    background: var(--gradient-primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: var(--rounded-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-dark .section-badge,
.section-gradient .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.section-title {
    margin-bottom: 1rem;
}

.section-dark .section-title,
.section-gradient .section-title {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.section-dark .section-description,
.section-gradient .section-description {
    color: var(--gray-300);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

@media (max-width: 1024px) {
    .content-grid.reverse {
        direction: ltr;
    }
}

/* ============================================
   9. FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-50);
    border-radius: var(--rounded-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Glass Card for Dark Sections */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.glass-card .feature-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.glass-card .feature-title,
.glass-card h4 {
    color: var(--white);
}

.glass-card .feature-description,
.glass-card p {
    color: var(--gray-300);
}

/* ============================================
   10. STATS SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card .feature-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    margin: 0 auto 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* ============================================
   11. PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--rounded-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--rounded-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-name {
    color: var(--white);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0 0.5rem;
    line-height: 1;
}

.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-500);
}

.pricing-card.featured .pricing-price span {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    text-align: left;
    margin: 1.5rem 0 2rem;
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
    color: #86efac;
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem;
    font-weight: 600;
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ============================================
   12. CLIENTS
   ============================================ */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.client-logo {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-logo:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.client-logo img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ============================================
   13. CONTACT
   ============================================ */
.contact-form {
    background: var(--white);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: var(--rounded-lg);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info .glass-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.contact-info .glass-card h4,
.contact-info .glass-card h5 {
    color: var(--gray-900);
}

.contact-info .glass-card p {
    color: var(--gray-600);
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer-modern {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .footer-brand img {
        margin: 0 auto 1rem;
    }
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

/* ============================================
   15. PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   16. BACK TO TOP
   ============================================ */
#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--rounded-full);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

#back-to-top a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   17. VIDEO EMBED
   ============================================ */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-xl);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   18. IMAGE STYLES
   ============================================ */
.img-rounded {
    border-radius: var(--rounded-xl);
}

.img-shadow {
    box-shadow: var(--shadow-xl);
}

.img-hover {
    transition: var(--transition);
}

.img-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

/* ============================================
   19. LIST STYLES
   ============================================ */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-600);
}

.check-list li i {
    color: var(--success);
    margin-top: 0.25rem;
}

/* ============================================
   20. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-500); }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.w-full { width: 100%; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }

.text-muted { color: var(--gray-500); }
.text-sm { font-size: 0.875rem; }

/* ============================================
   21. FORMS
   ============================================ */
.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--rounded-lg);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: var(--gray-400);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.alert-success {
    background: var(--success);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--rounded-lg);
    margin-bottom: 1rem;
}

/* ============================================
   22. CARDS (GENERAL)
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

/* ============================================
   23. TAGS
   ============================================ */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: var(--rounded-full);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   24. CONTACT STYLES
   ============================================ */
.contact-item {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.contact-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

.icon-large {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* ============================================
   25. SOCIAL LINKS
   ============================================ */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.25rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-facebook { background: #1877f2; }
.social-whatsapp { background: #25d366; }
.social-youtube { background: #ff0000; }
.social-email { background: var(--primary); }

/* ============================================
   26. HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--rounded-xl);
    display: inline-block;
    margin-top: 1rem;
}

/* ============================================
   27. CLIENT CAROUSEL
   ============================================ */
.clients-carousel {
    padding: 1rem 0;
}

.client-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--shadow-sm);
}

.client-logo img {
    max-height: 60px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   28. BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.back-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   28. POINTSELLER BI CARD
   ============================================ */
.bi-features-card {
    background: var(--white);
    border-radius: var(--rounded-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.bi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bi-icon i {
    font-size: 2rem;
    color: var(--white);
}

.bi-features-card h3 {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.bi-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.bi-price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-500);
}

.bi-plan-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    text-align: left;
}

.bi-plan-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bi-plan-features li i {
    color: var(--primary);
    font-size: 0.875rem;
}

/* BI Benefits Grid */
.bi-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.bi-benefit {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.bi-benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #3b82f6;
}

.bi-benefit i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.bi-benefit h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin: 0 0 0.5rem;
}

.bi-benefit p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* BI Stats Grid */
.bi-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.bi-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--rounded-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.bi-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
}

.bi-stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* BI Plans Preview */
.bi-plans-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bi-plan-card {
    background: var(--white);
    border-radius: var(--rounded-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
}

.bi-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.bi-plan-card.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
}

.bi-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--rounded-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bi-plan-card h4 {
    font-size: 1rem;
    color: var(--gray-800);
    margin: 0 0 0.5rem;
}

.bi-plan-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #3b82f6;
}

.bi-plan-price span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.bi-plan-card p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0.5rem 0 0;
}

@media (max-width: 768px) {
    .bi-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bi-benefit {
        padding: 1.5rem 1rem;
    }

    .bi-benefit i {
        font-size: 2rem;
    }

    .bi-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bi-stat-number {
        font-size: 2rem;
    }

    .bi-plans-preview {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   29. RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
}

/* ============================================
   22. HERO FULLSCREEN CAROUSEL
   ============================================ */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 900px;
    width: 100%;
    overflow: hidden;
}

.heroFullscreenSwiper {
    width: 100%;
    height: 100%;
}

.heroFullscreenSwiper .swiper-slide {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 27, 75, 0.75) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-slide-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--rounded-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-slide-content h2 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-300);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Fullscreen Pagination */
.hero-fullscreen-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-fullscreen-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-fullscreen-pagination .swiper-pagination-bullet-active {
    background: var(--white);
    width: 36px;
    border-radius: 6px;
}

/* Fullscreen Navigation */
.hero-fullscreen-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
}

.hero-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 1.25rem;
}

.hero-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator a:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    margin-bottom: 8px;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.5; }
}

.hero-scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   23. HERO INFO SECTION
   ============================================ */
.hero-info-section {
    background: var(--gradient-dark);
    padding: 5rem 0;
    position: relative;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-info-text {
    color: var(--white);
}

.hero-info-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-info-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-info-description {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-info-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-info-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-xl);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--primary);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--rounded-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.stat-card-content {
    flex: 1;
}

.stat-card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-card-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Responsive Hero Fullscreen */
@media (max-width: 1024px) {
    .hero-fullscreen {
        height: 70vh;
        min-height: 450px;
    }

    .hero-slide-content {
        bottom: 20%;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-info-buttons {
        justify-content: center;
    }

    .hero-info-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        flex: 1 1 calc(50% - 0.75rem);
        max-width: 300px;
    }

    .stat-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }

    .hero-slide-content {
        bottom: 25%;
        width: 95%;
    }

    .hero-slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .hero-fullscreen-nav {
        padding: 0 10px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-fullscreen-pagination {
        bottom: 20px !important;
    }

    .hero-info-section {
        padding: 3rem 0;
    }

    .hero-info-stats {
        flex-direction: column;
    }

    .stat-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .stat-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .stat-card-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen {
        height: 55vh;
        min-height: 350px;
    }

    .hero-slide-content h2 {
        font-size: 1.5rem;
    }

    .hero-slide-content p {
        font-size: 0.9rem;
    }

    .hero-info-title {
        font-size: 1.75rem;
    }

    .hero-info-description {
        font-size: 1rem;
    }

    .hero-info-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-info-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   24. PRINT STYLES
   ============================================ */
@media print {
    .modern-header,
    .page-loader,
    #back-to-top,
    .wa__btn_popup,
    .wa__popup_chat_box,
    .hero-fullscreen {
        display: none !important;
    }
}
