/* ===== Root Variables ===== */
:root {
    /* Light Theme Colors */
    --primary-color: #6B46C1;  /* Deep purple - trust, premium */
    --primary-dark: #553098;
    --primary-light: #9061DB;
    --secondary-color: #FCD34D;  /* Gold - value, attention */
    --secondary-dark: #F59E0B;
    --accent-color: #10B981;  /* Emerald - money, success */
    --danger-color: #F97316;  /* Orange-red - urgency */
    --warning-color: #EAB308;  /* Yellow - caution, highlight */
    
    /* Light Theme Backgrounds */
    --light-bg: #FFFFFF;
    --light-gray: #F9FAFB;
    --card-bg: #FFFFFF;
    --contrast-bg: #F3F4F6;  /* For contrast sections - light gray */
    --accent-bg: #FEFCE8;  /* For special sections - light yellow */
    --dark-border: #E5E7EB;
    
    /* Text Colors */
    --text-primary: #1F2937;  /* Dark gray for main text */
    --text-secondary: #6B7280;  /* Medium gray */
    --text-light: #9CA3AF;  /* Light gray */
    --text-white: #FFFFFF;
    
    /* Premium Gradients */
    --gradient: linear-gradient(135deg, #6B46C1 0%, #9061DB 100%);
    --gradient-purple: linear-gradient(135deg, #6B46C1 0%, #9061DB 100%);
    --gradient-gold: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-danger: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    --gradient-text: linear-gradient(135deg, #6B46C1 0%, #10B981 100%);
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(107, 70, 193, 0.2);
    
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff; /* Keep original white background */
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal scroll on all elements */
* {
    box-sizing: border-box;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Global responsive image rules */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 40px);
    width: 100%;
    overflow-x: hidden;
}

/* Desktop-specific container sizes */
@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
        padding: 0 clamp(24px, 2vw, 48px);
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
        padding: 0 clamp(32px, 2vw, 64px);
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        padding: 0 clamp(40px, 2vw, 80px);
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Enhanced responsive typography for desktop and mobile */
h1 { font-size: clamp(1.75rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.8rem); }
h5 { font-size: clamp(1rem, 2vw, 1.4rem); }
h6 { font-size: clamp(0.9rem, 1.8vw, 1.2rem); }

/* Enhanced paragraph scaling for desktop */
p { font-size: clamp(0.9rem, 1.8vw, 1.25rem); line-height: clamp(1.5, 0.5vw + 1.3, 1.8); }

/* Enhanced small text scaling */
small { font-size: clamp(0.75rem, 1.5vw, 1rem); }

/* Desktop-specific large headings */
@media (min-width: 1440px) {
    h1 { font-size: clamp(3.5rem, 4vw, 5rem); }
    h2 { font-size: clamp(2.8rem, 3vw, 4rem); }
    .hero-title { font-size: clamp(3.2rem, 4vw, 4.8rem); }
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary,
.btn-plan {
    padding: clamp(10px, 2vw, 16px) clamp(16px, 4vw, 32px);
    border-radius: clamp(6px, 1vw, 12px);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1vw, 12px);
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 18px);
    min-height: 44px; /* Touch-friendly minimum */
    min-width: 120px;
    text-align: center;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-purple);
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--dark-border);
}

.btn-secondary:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
}

.btn-large {
    padding: clamp(14px, 3vw, 20px) clamp(24px, 5vw, 40px);
    font-size: clamp(16px, 3vw, 22px);
    min-height: 52px;
    min-width: 180px;
}

/* ===== Offer Banner ===== */
.offer-banner {
    background: var(--gradient-danger);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

/* Responsive offer banner */
@media (max-width: 768px) {
    .offer-banner {
        padding: 10px 0;
    }
    
    .offer-content {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .offer-banner {
        padding: 8px 0;
    }
    
    .offer-content {
        padding: 0 12px;
        gap: 6px;
    }
}

@media (max-width: 375px) {
    .offer-banner {
        padding: 6px 0;
    }
    
    .offer-content {
        padding: 0 8px;
        gap: 4px;
    }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.offer-text {
    font-size: 14px;
}

.countdown {
    display: flex;
    gap: 10px;
}

.countdown-item {
    background: rgb(180 172 172 / 30%);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    color: #000;
}


.offer-cta {
    background: white;
    color: #EF4444;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.offer-cta:hover {
    transform: scale(1.05);
}

/* Responsive offer banner */
@media (max-width: 768px) {
    .offer-banner {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .offer-banner {
        padding: 8px 0;
    }
    
    .offer-text {
        display: none; /* Hide warning text on small screens */
    }
}

@media (max-width: 375px) {
    .offer-banner {
        padding: 6px 0;
    }
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(8px, 2vw, 20px) 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Desktop navigation */
@media (min-width: 1200px) {
    .navbar {
        padding: 20px 0;
    }
    
    .nav-menu {
        gap: 40px;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    .nav-actions .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Responsive navbar for different scroll states */
.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 24px);
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-icon {
    font-size: 32px;
    display: inline-flex;
    align-items: center;
}

.logo-text {
    display: inline-block;
}

.logo-badge {
    background: var(--gradient);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0 auto;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--light-gray);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.nav-actions .btn-primary {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: clamp(20px, 5vw, 24px);
    cursor: pointer;
    padding: clamp(6px, 1.5vw, 10px);
    border-radius: clamp(4px, 1vw, 6px);
    transition: var(--transition);
    flex-shrink: 0;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.mobile-menu-toggle:active {
    background: var(--primary-color);
    color: white;
}

/* ===== Responsive Navigation Breakpoints ===== */

/* Large Desktops (1440px+) */
@media (min-width: 1440px) {
    .navbar {
        padding: 24px 0;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-icon {
        font-size: 32px;
    }
    
    .nav-menu {
        gap: 35px;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .nav-actions .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 15px;
        padding: 6px 10px;
    }
    
    .nav-actions .btn-primary {
        padding: 10px 24px;
        font-size: 15px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .navbar {
        padding: 18px 0;
        top: 45px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo-icon {
        font-size: 28px;
    }
    
    .logo-badge {
        font-size: 11px;
        padding: 2px 6px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 5px 8px;
    }
    
    .nav-actions .btn-primary {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Small Tablets & Large Phones (640px - 767px) */
@media (max-width: 767px) {
    .navbar {
        padding: clamp(12px, 3vw, 18px) 0;
        top: 0;
        position: fixed;
        width: 100%;
    }
    
    .nav-content {
        padding: 0 clamp(16px, 4vw, 24px);
    }
    
    .logo {
        font-size: clamp(18px, 4vw, 22px);
        gap: clamp(6px, 1.5vw, 10px);
    }
    
    .logo-icon {
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .logo-badge {
        font-size: clamp(9px, 2vw, 11px);
        padding: clamp(1px, 0.3vw, 3px) clamp(4px, 1vw, 7px);
    }
    
    /* Hide desktop menu */
    .nav-menu {
        display: none !important;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        width: clamp(40px, 8vw, 44px);
        height: clamp(40px, 8vw, 44px);
        font-size: clamp(18px, 4vw, 22px);
        background: rgba(107, 70, 193, 0.08);
        border: 1px solid rgba(107, 70, 193, 0.2);
        color: var(--primary-color);
        border-radius: clamp(6px, 1.5vw, 8px);
    }
    
    .mobile-menu-toggle:active {
        background: var(--primary-color);
        color: white;
        transform: scale(0.95);
    }
}

/* Mobile Phones (≤480px) */
@media (max-width: 480px) {
    .navbar {
        padding: clamp(10px, 2.5vw, 14px) 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .nav-content {
        padding: 0 clamp(12px, 3vw, 18px);
    }
    
    .logo {
        font-size: clamp(16px, 4vw, 20px);
        gap: clamp(4px, 1vw, 8px);
    }
    
    .logo-icon {
        font-size: clamp(20px, 5vw, 26px);
    }
    
    .logo-text {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .logo-badge {
        font-size: clamp(8px, 2vw, 10px);
        padding: clamp(1px, 0.2vw, 2px) clamp(3px, 0.8vw, 5px);
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        width: clamp(38px, 8vw, 42px);
        height: clamp(38px, 8vw, 42px);
        font-size: clamp(16px, 4vw, 20px);
        background: rgba(107, 70, 193, 0.1);
        border: 1px solid rgba(107, 70, 193, 0.3);
        color: var(--primary-color);
        border-radius: clamp(5px, 1vw, 7px);
    }
    
    .mobile-menu-toggle:active {
        background: var(--primary-color);
        color: white;
        transform: scale(0.9);
    }
}

/* Very Small Mobile Devices (≤375px) */
@media (max-width: 375px) {
    .navbar {
        padding: clamp(8px, 2vw, 12px) 0;
    }
    
    .nav-content {
        padding: 0 clamp(10px, 2.5vw, 14px);
    }
    
    .logo {
        font-size: clamp(14px, 3.5vw, 18px);
        gap: clamp(3px, 0.8vw, 6px);
    }
    
    .logo-icon {
        font-size: clamp(18px, 4.5vw, 22px);
    }
    
    .logo-text {
        font-size: clamp(14px, 3.5vw, 18px);
    }
    
    .logo-badge {
        font-size: clamp(7px, 1.8vw, 9px);
        padding: clamp(0.5px, 0.1vw, 1px) clamp(2px, 0.5vw, 4px);
    }
    
    .mobile-menu-toggle {
        width: clamp(36px, 7vw, 40px);
        height: clamp(36px, 7vw, 40px);
        font-size: clamp(14px, 3.5vw, 18px);
        border-radius: clamp(4px, 1vw, 6px);
    }
}

/* iPhone SE and very small devices */
@media (max-width: 320px) {
    .logo-text {
        display: none; /* Hide text on very small screens */
    }
    
    .logo-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        font-size: 8px;
    }
    
    .logo {
        position: relative;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--card-bg);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--dark-border);
    background: var(--light-gray);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    background: var(--danger-color);
    color: white;
}

.mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    min-height: 56px; /* Touch-friendly */
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
    background: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-menu-nav a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: var(--text-secondary);
}

.mobile-menu-nav a:hover i {
    color: var(--primary-color);
}

.mobile-menu-cta {
    padding: 20px;
    border-top: 1px solid var(--dark-border);
    background: var(--light-gray);
}

.mobile-menu-cta .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    min-height: 50px;
}

/* Mobile Menu Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ===== Hero Section ===== */
.hero {
    padding: clamp(20px, 4vw, 50px) 0;
    position: relative;
    overflow: hidden;
}

/* Enhanced desktop hero */
@media (min-width: 1200px) {
    .hero {
        padding: clamp(30px, 5vw, 60px) 0;
    }
    
    .hero-content {
        gap: clamp(60px, 6vw, 100px);
    }
    
    .hero-description {
        font-size: clamp(18px, 1.8vw, 24px);
        line-height: 1.7;
        margin-bottom: clamp(32px, 3vw, 48px);
    }
    
    .hero-stats {
        gap: clamp(40px, 4vw, 80px);
        margin-bottom: clamp(40px, 4vw, 64px);
    }
    
    .stat-number {
        font-size: clamp(28px, 3vw, 42px);
    }
    
    .stat-label {
        font-size: clamp(14px, 1.4vw, 18px);
    }
}

/* Ultra-wide screens optimization */
@media (min-width: 1920px) {
    .hero {
        padding: clamp(40px, 6vw, 80px) 0;
    }
    
    .hero-content {
        max-width: 2000px;
        gap: clamp(100px, 12vw, 160px);
    }
    
    .hero-title {
        font-size: clamp(48px, 5.5vw, 72px);
        line-height: 1.08;
        max-width: 90%;
        word-spacing: 0.02em;
        letter-spacing: -0.01em;
    }
    
    .hero-description {
        font-size: clamp(20px, 2.2vw, 28px);
        max-width: 85%;
    }
    
    .hero-stats {
        gap: clamp(60px, 8vw, 100px);
    }
    
    .stat-number {
        font-size: clamp(36px, 4vw, 48px);
    }
    
    .stat-label {
        font-size: clamp(16px, 1.8vw, 22px);
    }
    
    .video-preview-container {
        max-width: clamp(700px, 35vw, 1000px);
        margin: clamp(-100px, -12vw, -70px) auto 0;
        transform: translateY(clamp(-80px, -9vw, -50px));
        min-height: clamp(400px, 20vw, 560px);
    }
    
    .preview-video {
        min-height: clamp(400px, 20vw, 560px);
    }
    
    .floating-card {
        font-size: clamp(15px, 1.8vw, 20px);
        padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3vw, 28px);
    }
    
    .preview-play {
        width: clamp(80px, 14vw, 110px);
        height: clamp(80px, 14vw, 110px);
        font-size: clamp(30px, 4.5vw, 40px);
    }
    
    .trust-badges img {
        height: clamp(60px, 8vw, 100px);
        max-width: clamp(140px, 20vw, 240px);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    text-align: center;
}

/* Desktop hero layout - Enhanced */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
        align-items: center;
        gap: clamp(40px, 6vw, 100px);
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 clamp(20px, 3vw, 40px);
    }
    
    .hero-text {
        order: 1;
        max-width: none;
    }
    
    .hero-visual {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: clamp(45px, -3vw, -10px);
    }
    
    .hero-stats {
        justify-content: flex-start;
        gap: clamp(24px, 3vw, 40px);
    }
    
    .hero-cta {
        justify-content: flex-start;
        gap: clamp(16px, 2vw, 24px);
    }
}

@media (min-width: 1024px) {
    .hero-content {
        max-width: 1400px;
        padding: 0 clamp(24px, 3.5vw, 48px);
        gap: clamp(48px, 6vw, 80px);
    }
    
    .hero-stats {
        gap: clamp(32px, 4vw, 50px);
        margin-bottom: clamp(32px, 4vw, 48px);
    }
    
    .hero-cta {
        gap: clamp(16px, 2vw, 24px);
        flex-wrap: nowrap;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        min-width: clamp(180px, 22vw, 250px);
        padding: clamp(11px, 1.3vw, 16px) clamp(18px, 2.2vw, 28px);
        font-size: clamp(13px, 1.5vw, 17px);
    }
}

@media (min-width: 1200px) {
    .hero-content {
        grid-template-columns: 1.3fr 1fr;
        gap: clamp(60px, 8vw, 120px);
        max-width: 1600px;
        padding: 0 clamp(32px, 4vw, 64px);
    }
    
    .hero-badge {
        padding: clamp(8px, 1.2vw, 14px) clamp(16px, 2.2vw, 24px);
        font-size: clamp(13px, 1.5vw, 17px);
        margin-bottom: clamp(20px, 2.5vw, 32px);
    }
    
    .hero-title {
        font-size: clamp(36px, 4.5vw, 58px);
        line-height: 1.2;
        margin-bottom: clamp(24px, 3vw, 36px);
        max-width: 90%;
    }
    
    .hero-stats {
        gap: clamp(40px, 5vw, 60px);
        margin-bottom: clamp(40px, 5vw, 56px);
    }
    
    .stat-number {
        font-size: clamp(26px, 3.2vw, 38px);
    }
    
    .stat-label {
        font-size: clamp(13px, 1.5vw, 17px);
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        min-width: clamp(190px, 25vw, 280px);
        padding: clamp(12px, 1.5vw, 18px) clamp(20px, 2.5vw, 32px);
        font-size: clamp(14px, 1.6vw, 18px);
    }
}

@media (min-width: 1440px) {
    .hero-content {
        grid-template-columns: 1.4fr 1fr;
        gap: clamp(80px, 10vw, 140px);
        max-width: 1800px;
    }
    
    .hero-title {
        font-size: clamp(42px, 5vw, 64px);
        line-height: 1.1;
        max-width: 95%;
        word-spacing: 0.05em;
    }
    
    .hero-description {
        font-size: clamp(18px, 2vw, 26px);
        line-height: 1.65;
        max-width: 90%;
    }
    
    .hero-stats {
        gap: clamp(50px, 6vw, 80px);
    }
    
    .stat-number {
        font-size: clamp(30px, 3.5vw, 44px);
    }
    
    .stat-label {
        font-size: clamp(14px, 1.6vw, 19px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 12px);
    background: var(--light-gray);
    padding: clamp(6px, 1vw, 12px) clamp(12px, 2vw, 20px);
    border-radius: clamp(16px, 3vw, 24px);
    border: 1px solid var(--dark-border);
    margin-bottom: clamp(16px, 2vw, 32px);
    font-size: clamp(12px, 1.4vw, 16px);
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-badge i {
    color: #FBBF24;
}

.hero-title {
    margin-bottom: clamp(20px, 3vw, 32px);
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.15;
    font-size: clamp(24px, 5vw, 42px);
    word-spacing: 0.1em;
    max-width: 100%;
}

.hero-description {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary);
    margin-bottom: clamp(24px, 3vw, 48px);
    line-height: clamp(1.6, 0.2vw + 1.5, 1.8);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    max-width: none;
}

/* Desktop hero description optimization */
@media (min-width: 768px) {
    .hero-description {
        max-width: 90%;
    }
}

@media (min-width: 1200px) {
    .hero-description {
        font-size: clamp(18px, 1.8vw, 24px);
        max-width: 85%;
    }
}

.hero-stats {
    display: flex;
    gap: clamp(20px, 4vw, 50px);
    margin-bottom: clamp(24px, 4vw, 50px);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}

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

.stat-number {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: clamp(12px, 2vw, 16px);
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(24px, 4vw, 50px);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

/* Mobile: Stack buttons vertically */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: stretch;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
}

/* Tablet and larger: Keep buttons side by side */
@media (min-width: 769px) {
    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: clamp(14px, 1.8vw, 20px);
        flex-wrap: nowrap;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        flex: 0 0 auto;
        max-width: clamp(180px, 24vw, 260px);
        min-width: clamp(160px, 20vw, 220px);
        padding: clamp(10px, 1.2vw, 14px) clamp(16px, 2vw, 24px);
        font-size: clamp(13px, 1.4vw, 16px);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
}

/* Hero Visual Section - Desktop Responsive */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.video-preview-container {
    position: relative;
    width: 100%;
    max-width: clamp(400px, 90vw, 700px);
    margin: clamp(-40px, -5vw, -20px) auto 0;
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
    background: var(--card-bg);
    transform: translateY(clamp(-30px, -4vw, -15px));
    min-height: clamp(225px, 25vw, 400px);
}

.preview-video {
    width: 100%;
    height: 100%;
    min-height: clamp(225px, 25vw, 400px);
    aspect-ratio: 16/9;
    border-radius: clamp(12px, 2vw, 20px);
    object-fit: cover;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    border-radius: clamp(12px, 2vw, 20px);
}

.preview-timer {
    position: absolute;
    top: clamp(12px, 2vw, 20px);
    left: clamp(12px, 2vw, 20px);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: clamp(6px, 1vw, 10px) clamp(10px, 1.5vw, 16px);
    border-radius: clamp(6px, 1vw, 10px);
    font-size: clamp(11px, 1.2vw, 14px);
    display: flex;
    align-items: center;
    gap: clamp(4px, 0.5vw, 8px);
    backdrop-filter: blur(8px);
}

.preview-play {
    background: var(--primary-color);
    color: white;
    border: none;
    width: clamp(50px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 3vw, 28px);
    cursor: pointer;
}


.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: clamp(8px, 1.5vw, 16px) clamp(12px, 2vw, 20px);
    border-radius: clamp(8px, 1.5vw, 14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: 600;
    color: var(--text-primary);
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: clamp(12px, 1.4vw, 16px);
}

.floating-card.card-1 {
    top: clamp(10%, 15%, 20%);
    right: clamp(-12%, -8%, -2%);
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: clamp(20%, 25%, 30%);
    left: clamp(-18%, -12%, -6%);
    animation-delay: 1s;
}

.floating-card.card-3 {
    top: clamp(55%, 60%, 65%);
    right: clamp(2%, 8%, 12%);
    animation-delay: 2s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
    }
}

/* Desktop responsive enhancements for hero visual */
@media (min-width: 768px) {
    .video-preview-container {
        max-width: clamp(500px, 55vw, 800px);
        margin: clamp(-60px, -7vw, -30px) auto 0;
        transform: translateY(clamp(-40px, -5vw, -20px));
        min-height: clamp(280px, 30vw, 450px);
    }
    
    .preview-video {
        min-height: clamp(280px, 30vw, 450px);
    }
    
    .floating-card {
        padding: clamp(10px, 1.8vw, 18px) clamp(14px, 2.2vw, 22px);
        font-size: clamp(11px, 1.3vw, 15px);
    }
    
    .floating-card i {
        font-size: clamp(13px, 1.5vw, 17px);
    }
    
    .preview-play {
        width: clamp(60px, 10vw, 90px);
        height: clamp(60px, 10vw, 90px);
        font-size: clamp(22px, 3.5vw, 32px);
    }
}

@media (min-width: 1024px) {
    .video-preview-container {
        max-width: clamp(550px, 50vw, 850px);
        margin: clamp(-70px, -8vw, -40px) auto 0;
        transform: translateY(clamp(-50px, -6vw, -25px));
        min-height: clamp(310px, 28vw, 480px);
    }
    
    .preview-video {
        min-height: clamp(310px, 28vw, 480px);
    }
    
    .floating-card {
        padding: clamp(12px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
        font-size: clamp(12px, 1.4vw, 16px);
    }
    
    .floating-card.card-1 {
        top: clamp(10%, 15%, 20%);
        right: clamp(-15%, -8%, -2%);
    }
    
    .floating-card.card-2 {
        bottom: clamp(20%, 25%, 30%);
        left: clamp(-20%, -12%, -5%);
    }
    
    .floating-card.card-3 {
        top: clamp(55%, 60%, 65%);
        right: clamp(0%, 5%, 10%);
    }
}

@media (min-width: 1200px) {
    .video-preview-container {
        max-width: clamp(600px, 45vw, 900px);
        margin: clamp(-80px, -9vw, -50px) auto 0;
        transform: translateY(clamp(-60px, -7vw, -35px));
        min-height: clamp(340px, 25vw, 510px);
    }
    
    .preview-video {
        min-height: clamp(340px, 25vw, 510px);
    }
    
    .floating-card {
        padding: clamp(14px, 2.2vw, 22px) clamp(18px, 2.8vw, 26px);
        font-size: clamp(13px, 1.5vw, 17px);
        border-radius: clamp(10px, 1.8vw, 16px);
    }
    
    .floating-card i {
        font-size: clamp(15px, 1.7vw, 19px);
    }
    
    .preview-play {
        width: clamp(70px, 12vw, 100px);
        height: clamp(70px, 12vw, 100px);
        font-size: clamp(26px, 4vw, 36px);
    }
}

@media (min-width: 1440px) {
    .video-preview-container {
        max-width: clamp(650px, 40vw, 950px);
        margin: clamp(-90px, -10vw, -60px) auto 0;
        transform: translateY(clamp(-70px, -8vw, -45px));
        min-height: clamp(365px, 22vw, 535px);
    }
    
    .preview-video {
        min-height: clamp(365px, 22vw, 535px);
    }
    
    .floating-card {
        font-size: clamp(14px, 1.6vw, 18px);
    }
    
    .preview-timer {
        font-size: clamp(12px, 1.3vw, 15px);
        padding: clamp(8px, 1.2vw, 12px) clamp(12px, 1.8vw, 18px);
    }
}

.trust-badges {
    display: flex;
    gap: clamp(8px, 1.2vw, 16px);
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: clamp(20px, 3vw, 40px);
    padding: clamp(10px, 1.8vw, 18px);
    background: rgba(255, 255, 255, 0.02);
    border-radius: clamp(8px, 1.5vw, 16px);
    backdrop-filter: blur(4px);
    overflow-x: auto;
    overflow-y: hidden;
}

.trust-badges img {
    height: clamp(25px, 4vw, 40px);
    width: auto;
    max-width: clamp(60px, 10vw, 120px);
    object-fit: contain;
    filter: brightness(0.9);
    flex-shrink: 0;
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Enhanced desktop trust badges */
@media (min-width: 768px) {
    .trust-badges {
        justify-content: flex-start;
        margin-top: clamp(24px, 3vw, 38px);
        gap: clamp(10px, 1.5vw, 20px);
        padding: clamp(12px, 2vw, 20px);
        flex-wrap: nowrap;
    }
    
    .trust-badges img {
        height: clamp(28px, 4.5vw, 48px);
        max-width: clamp(70px, 12vw, 140px);
    }
}

@media (min-width: 1024px) {
    .trust-badges {
        gap: clamp(12px, 1.8vw, 24px);
        margin-top: clamp(28px, 3.5vw, 42px);
        flex-wrap: nowrap;
    }
    
    .trust-badges img {
        height: clamp(32px, 5vw, 56px);
        max-width: clamp(80px, 13vw, 150px);
        opacity: 0.85;
    }
}

@media (min-width: 1200px) {
    .trust-badges {
        gap: clamp(14px, 2vw, 28px);
        margin-top: clamp(32px, 4vw, 48px);
        padding: clamp(14px, 2.2vw, 24px);
        flex-wrap: nowrap;
    }
    
    .trust-badges img {
        height: clamp(36px, 5.5vw, 64px);
        max-width: clamp(90px, 14vw, 170px);
    }
    
    .trust-badges img:hover {
        filter: brightness(1);
        transform: scale(1.05);
        opacity: 1;
    }
}

@media (min-width: 1440px) {
    .trust-badges {
        gap: clamp(16px, 2.2vw, 32px);
        margin-top: clamp(36px, 4.5vw, 56px);
        flex-wrap: nowrap;
    }
    
    .trust-badges img {
        height: clamp(40px, 6vw, 72px);
        max-width: clamp(100px, 15vw, 180px);
    }
}

/* ===== Opportunity Grid & Meta Ads Box Centering ===== */
.opportunity-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.meta-ads-strategy {
    max-width: 800px;
    margin: 0 auto;
}

/* Center h3 and p tags with margin auto */
.meta-ads-strategy h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
}

.meta-ads-strategy p {
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    text-align: center;
}

/* Center the grid container but keep text left-aligned */
.meta-ads-strategy div[style*="display: grid; grid-template-columns: repeat(2, 1fr)"] {
    margin: 0 auto;
    max-width: 600px;
}

/* Center the pro tip box */
.meta-ads-strategy div[style*="background: rgba(255,255,255,0.2)"] {
    margin: 20px auto 0;
    max-width: 500px;
}

/* Hide empty grid items and improve grid centering */
.opportunity-grid .opportunity-card:empty,
.meta-ads-grid > div:empty,
.viral-grid .viral-strategy:empty {
    display: none;
}

/* Ensure grid items are centered when there are fewer items */
.opportunity-grid {
    justify-content: center;
    justify-items: center;
}

.meta-ads-grid {
    justify-content: center;
    justify-items: center;
}

.viral-grid {
    justify-content: center;
    justify-items: center;
}

/* Social icons with brand colors - now visible with higher specificity */
.social-icons-display i.fa-facebook,
.social-icons-display .fab.fa-facebook {
    color: #1877F2 !important; /* Facebook blue */
}

.social-icons-display i.fa-instagram,
.social-icons-display .fab.fa-instagram {
    color: #E4405F !important; /* Instagram pink */
}

.social-icons-display i {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.social-icons-display i:hover {
    transform: scale(1.1);
}

/* Use Cases Grid - 2 rows x 3 columns layout - Centered */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 40px);
    justify-content: center;
    align-content: center;
}

/* Ensure use-case items maintain their original font sizes - NO text centering */
.use-cases-grid .use-case {
    text-align: left !important;
    padding: clamp(20px, 3vw, 32px);
    background: var(--card-bg);
    border-radius: clamp(12px, 2vw, 16px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.use-case i {
    font-size: clamp(40px, 6vw, 56px);
    margin-bottom: clamp(16px, 2.5vw, 24px);
    color: var(--primary-color);
}

.use-case h3 {
    font-size: clamp(18px, 2.8vw, 24px);
    margin-bottom: clamp(12px, 2vw, 16px);
    color: var(--text-primary);
}

.use-case p {
    font-size: clamp(14px, 2.2vw, 18px);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: clamp(16px, 4vw, 24px);
    }
}

@media (max-width: 480px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: clamp(12px, 3vw, 20px);
    }
}

/* ===== Tablet Layout Fixes ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        padding: clamp(20px, 2.5vw, 30px) 0 clamp(25px, 3vw, 35px);
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: clamp(20px, 3vw, 30px);
        text-align: center;
    }
    
    .hero-text {
        order: 1;
        max-width: 100%;
    }
    
    .hero-visual {
        order: 2;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .video-preview-container {
        max-width: clamp(350px, 50vw, 450px) !important;
        width: clamp(350px, 50vw, 450px) !important;
        height: clamp(200px, 28vw, 255px) !important;
        margin: 0 auto;
        border-radius: clamp(12px, 2vw, 16px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }
    
    .preview-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* Hero CTA buttons for tablet */
    .hero-cta {
        gap: clamp(12px, 1.5vw, 16px);
        margin-bottom: clamp(20px, 2.5vw, 25px);
        align-items: center;
        justify-content: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        max-width: 320px;
        min-width: 240px;
        padding: clamp(14px, 2vw, 18px) clamp(24px, 3vw, 32px);
        font-size: clamp(16px, 2vw, 18px);
        border-radius: clamp(8px, 1vw, 12px);
        display: inline-block;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Trust badges/logos for tablet */
    .trust-badges {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(18px, 2.5vw, 24px);
        padding: clamp(14px, 2vw, 18px);
        flex-wrap: wrap;
        background: rgba(255, 255, 255, 0.8);
        border-radius: clamp(8px, 1vw, 12px);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin: 0 auto clamp(5px, 1vw, 8px) auto;
        max-width: fit-content;
    }
    
    .trust-badges img {
        height: clamp(65px, 7vw, 80px) !important;
        max-width: clamp(140px, 17vw, 180px) !important;
        width: auto !important;
        margin: 0 auto;
        object-fit: contain;
        filter: brightness(1.05) contrast(1.05);
        transition: transform 0.2s ease, filter 0.2s ease;
    }
    
    .trust-badges img:hover {
        transform: scale(1.05);
        filter: brightness(1.1) contrast(1.1);
    }
    
    /* Handle circular logos for tablet */
    .trust-badges img[style*="border-radius: 100%"] {
        border-radius: 50% !important;
        padding: 2px;
        background: rgba(255, 255, 255, 0.9);
    }
    
    /* Use cases grid - 2 rows x 3 columns for tablet */
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: clamp(20px, 2.5vw, 30px);
        max-width: 900px;
    }
}

/* ===== Mobile Layout Fixes ===== */
@media (max-width: 767px) {
    body {
        padding-top: clamp(50px, 10vw, 70px);
    }
    
    /* Fix offer banner for mobile */
    .offer-banner {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1002;
        padding: clamp(8px, 2vw, 12px) 0;
    }
    
    .offer-content {
        padding: 0 clamp(10px, 2.5vw, 16px);
        justify-content: center;
        gap: clamp(8px, 2vw, 12px);
    }
    
    .countdown-timer {
        font-size: clamp(10px, 2.5vw, 12px);
        gap: clamp(4px, 1vw, 8px);
    }
    
    .countdown-item {
        padding: clamp(3px, 0.8vw, 6px);
        min-width: clamp(20px, 5vw, 30px);
    }
    
    .countdown-item span {
        font-size: clamp(12px, 3vw, 16px);
    }
    
    .countdown-item small {
        font-size: clamp(7px, 1.8vw, 9px);
    }
    
    .offer-text {
        font-size: clamp(11px, 2.8vw, 14px);
        line-height: 1.3;
        text-align: center;
    }
    
    .offer-text strong {
        font-size: clamp(12px, 3vw, 15px);
    }
    
    .offer-cta {
        padding: clamp(4px, 1vw, 8px) clamp(8px, 2vw, 12px);
        font-size: clamp(10px, 2.5vw, 12px);
        min-width: auto;
        min-height: auto !important;
        height: auto !important;
    }
    
    /* Adjust header position when offer banner is present */
    .header {
        top: auto;
        position: relative;
        margin-top: 0;
    }
    
    .hero {
        padding: clamp(20px, 5vw, 40px) 0 clamp(40px, 8vw, 60px);
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
        margin-top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: clamp(24px, 6vw, 40px);
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 0;
    }
    
    .hero-badge {
        font-size: clamp(11px, 3vw, 14px);
        padding: clamp(6px, 1.5vw, 10px) clamp(12px, 3vw, 16px);
        margin-bottom: clamp(16px, 4vw, 24px);
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
        border: 1px solid rgba(251, 191, 36, 0.3);
        box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
        backdrop-filter: blur(8px);
    }
    
    .hero-description {
        font-size: clamp(14px, 4vw, 18px);
        line-height: 1.6;
        margin-bottom: clamp(24px, 6vw, 32px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: clamp(16px, 4vw, 24px);
        margin-bottom: clamp(24px, 6vw, 32px);
        align-items: center;
    }
    
    .stat {
        text-align: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.8);
        padding: clamp(12px, 3vw, 18px);
        border-radius: clamp(8px, 2vw, 12px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
    }
    
    .stat-number {
        font-size: clamp(20px, 5vw, 28px);
    }
    
    .stat-label {
        font-size: clamp(12px, 3vw, 14px);
    }
    
    .hero-title {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.1;
        margin-bottom: clamp(16px, 4vw, 24px);
    }
    
    /* 2-line layout for mobile */
    .hero-title br {
        display: none;
    }
    
    .hero-title .gradient-text {
        display: inline;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: clamp(12px, 3vw, 16px);
        margin-bottom: clamp(24px, 6vw, 32px);
        align-items: center;
        text-align: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        max-width: 280px;
        margin: 0 auto;
        padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 24px);
        font-size: clamp(14px, 3.5vw, 16px);
        border-radius: clamp(8px, 2vw, 12px);
        box-shadow: 0 4px 16px rgba(107, 70, 193, 0.25);
        border: none;
        position: relative;
        overflow: hidden;
        display: inline-block;
        text-align: center;
    }
    
    .hero-cta .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .hero-cta .btn-primary:active::before {
        left: 100%;
    }
    
    .hero-cta .btn-secondary {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(107, 70, 193, 0.2);
    }
    
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: clamp(8px, 2vw, 12px);
        margin-top: clamp(16px, 4vw, 24px);
        background: rgba(255, 255, 255, 0.6);
        padding: clamp(10px, 2.5vw, 16px);
        border-radius: clamp(8px, 2vw, 12px);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .trust-badges img {
        height: clamp(36px, 7vw, 50px);
        max-width: clamp(90px, 18vw, 130px);
        filter: brightness(1.1) contrast(1.1);
        border-radius: clamp(4px, 1vw, 6px);
        transition: transform 0.2s ease;
    }
    
    .trust-badges img:active {
        transform: scale(0.95);
    }
    
    .video-preview-container {
        max-width: clamp(240px, 65vw, 300px) !important;
        width: clamp(240px, 65vw, 300px) !important;
        height: clamp(135px, 36vw, 170px) !important;
        margin: 0 auto;
        transform: none;
        border-radius: clamp(12px, 3vw, 20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        overflow: hidden;
    }
    
    .preview-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        min-height: auto !important;
    }
    
    .floating-card {
        font-size: clamp(9px, 2.5vw, 12px);
        padding: clamp(6px, 1.5vw, 10px) clamp(8px, 2vw, 12px);
    }
    
    .floating-card i {
        font-size: clamp(10px, 2.5vw, 14px);
    }
    
    .preview-timer {
        font-size: clamp(8px, 2vw, 10px);
        padding: clamp(3px, 0.8vw, 6px) clamp(6px, 1.5vw, 10px);
        border-radius: clamp(12px, 2vw, 16px);
    }
    
    .preview-play {
        width: clamp(40px, 8vw, 55px);
        height: clamp(40px, 8vw, 55px);
        font-size: clamp(14px, 3.5vw, 20px);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: clamp(32px, 8vw, 48px) 0;
    }
    
    .hero-content {
        gap: clamp(20px, 5vw, 32px);
    }
    
    .hero-badge {
        font-size: clamp(10px, 2.5vw, 12px);
        padding: clamp(5px, 1vw, 8px) clamp(10px, 2.5vw, 14px);
    }
    
    .hero-description {
        font-size: clamp(13px, 3.5vw, 16px);
        margin-bottom: clamp(20px, 5vw, 28px);
    }
    
    .hero-stats {
        gap: clamp(12px, 3vw, 20px);
        margin-bottom: clamp(20px, 5vw, 28px);
    }
    
    .stat-number {
        font-size: clamp(18px, 4.5vw, 24px);
    }
    
    .stat-label {
        font-size: clamp(11px, 2.5vw, 13px);
    }
    
    .hero-title {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.1;
        margin-bottom: clamp(14px, 3.5vw, 20px);
    }
    
    /* Keep 2-line layout */
    .hero-title br {
        display: none;
    }
    
    .hero-title .gradient-text {
        display: inline;
    }
    
    .hero-cta {
        gap: clamp(10px, 2.5vw, 14px);
        margin-bottom: clamp(20px, 5vw, 28px);
        align-items: center;
        text-align: center;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        max-width: 260px;
        margin: 0 auto;
        padding: clamp(10px, 2.5vw, 14px) clamp(14px, 3.5vw, 20px);
        font-size: clamp(13px, 3vw, 15px);
        display: inline-block;
        text-align: center;
    }
    
    .trust-badges {
        gap: clamp(6px, 1.5vw, 10px);
        margin-top: clamp(14px, 3.5vw, 20px);
    }
    
    .trust-badges img {
        height: clamp(45px, 5vw, 28px);
        max-width: clamp(50px, 12vw, 70px);
    }
    
    .video-preview-container {
        max-width: clamp(200px, 60vw, 260px) !important;
        width: clamp(200px, 60vw, 260px) !important;
        height: clamp(115px, 34vw, 150px) !important;
    }
    
    .preview-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        min-height: auto !important;
    }
    
    .floating-card {
        font-size: clamp(8px, 2vw, 11px);
        padding: clamp(5px, 1vw, 8px) clamp(6px, 1.5vw, 10px);
    }
    
    .floating-card i {
        font-size: clamp(9px, 2vw, 12px);
    }
    
    .preview-timer {
        font-size: clamp(7px, 1.8vw, 9px);
        padding: clamp(2px, 0.6vw, 5px) clamp(5px, 1.2vw, 8px);
        border-radius: clamp(10px, 1.8vw, 14px);
    }
    
    .preview-play {
        width: clamp(35px, 7vw, 50px);
        height: clamp(35px, 7vw, 50px);
        font-size: clamp(12px, 3vw, 18px);
    }
}

/* ===== Video Preview Container ===== */
.video-preview-container {
    position: relative;
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: fadeInRight 1s ease-out;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9; /* Maintain consistent aspect ratio */
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(107, 70, 193, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.preview-timer {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: clamp(6px, 1vw, 12px) clamp(12px, 2vw, 20px);
    border-radius: clamp(16px, 3vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    font-weight: 600;
    font-size: clamp(12px, 2vw, 16px);
    align-self: flex-start;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.preview-play {
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    font-size: clamp(24px, 5vw, 40px);
    cursor: pointer;
    align-self: center;
}



.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
}

.card-1 {
    top: 20%;
    right: 10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: 10px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: 20px;
    animation-delay: 2s;
}

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

/* ===== Urgency Section ===== */
.urgency-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 40px 0;
    margin: 60px 0;
    border-radius: 16px;
}

.urgency-content {
    text-align: center;
}

.urgency-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

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

.highlight {
    color: var(--accent-color);
    font-weight: 800;
}

.spots-indicator {
    max-width: 400px;
    margin: 30px auto 0;
}

.spots-bar {
    height: 10px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.spots-filled {
    height: 100%;
    background: var(--gradient);
    transition: width 2s ease-out;
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from { width: 0; }
}

/* ===== Features Section ===== */
.features {
    padding: clamp(60px, 8vw, 120px) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

/* Enhanced desktop section spacing */
@media (min-width: 1200px) {
    .section-header {
        margin-bottom:40px;
    }
    
    .section-header h2 {
        margin-bottom: clamp(16px, 2vw, 32px);
    }
    
    .section-header p {
        font-size: clamp(16px, 1.6vw, 22px);
        max-width: 800px;
        margin: 0 auto;
    }
    
    .section-badge {
        font-size: clamp(12px, 1.2vw, 16px);
        padding: clamp(8px, 1vw, 16px) clamp(16px, 2vw, 32px);
        margin-bottom: clamp(16px, 2vw, 32px);
    }
}

.section-badge {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--dark-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(16px, 3vw, 40px);
}

/* Enhanced desktop grids */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: clamp(30px, 3vw, 50px);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(30px, 3vw, 50px);
    }
    
    .channels-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(30px, 3vw, 50px);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: clamp(25px, 2.5vw, 40px);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(30px, 3vw, 50px);
    }
}

.feature-card {
    background: var(--card-bg);
    padding: clamp(24px, 4vw, 48px);
    border-radius: clamp(12px, 2vw, 20px);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

/* Enhanced desktop hover effects */
@media (min-width: 1200px) and (hover: hover) {
    .feature-card {
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    }
    
    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }
    
    .channel-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .use-case:hover {
        transform: translateY(-6px);
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(236, 72, 153, 0.12) 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

.feature-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gradient);
    z-index: 0;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.step-content h3 {
    margin-bottom: 15px;
}

.step-time {
    display: inline-block;
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 15px;
    color: var(--text-secondary);
    border: 1px solid var(--dark-border);
}

/* ===== Pricing Section ===== */
.pricing {
    padding: clamp(60px, 8vw, 120px) 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
}

/* ===== Pricing Tabs ===== */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(30px, 5vw, 60px);
    padding: 0 clamp(16px, 3vw, 24px);
}

.pricing-tabs {
    display: flex;
    background: var(--light-bg);
    border-radius: clamp(12px, 2vw, 20px);
    padding: clamp(4px, 0.8vw, 8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--dark-border);
    gap: clamp(4px, 0.8vw, 8px);
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.pricing-tab {
    background: transparent;
    border: none;
    padding: clamp(12px, 2.5vw, 20px) clamp(16px, 3vw, 32px);
    border-radius: clamp(8px, 1.5vw, 16px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 12px);
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    color: var(--text-secondary);
    min-height: clamp(44px, 8vw, 56px);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    min-width: clamp(100px, 20vw, 140px);
    justify-content: center;
}

.pricing-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-tab:hover::before {
    left: 100%;
}

.pricing-tab:hover {
    background: rgba(107, 70, 193, 0.05);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 70, 193, 0.2);
}

.pricing-tab.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
    transform: translateY(-2px);
}

.pricing-tab.active:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.5);
}

.tab-icon {
    font-size: clamp(16px, 3vw, 22px);
    display: inline-block;
}

.tab-text {
    font-weight: 700;
    font-size: clamp(13px, 2.3vw, 16px);
    letter-spacing: 0.02em;
}

/* Active tab animation */
.pricing-tab.active .tab-icon {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Enhanced desktop pricing */
@media (min-width: 1200px) {
    .pricing {
        padding: clamp(100px, 10vw, 160px) 0;
    }
    
    .single-pricing-card {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .pricing-card.mega {
        padding: clamp(40px, 4vw, 80px);
    }
    
    .plan-header h3 {
        font-size: clamp(28px, 2.8vw, 36px);
    }
    
    .amount {
        font-size: clamp(56px, 5vw, 80px);
    }
    
    .currency {
        font-size: clamp(28px, 3vw, 40px);
    }
    
    .features-columns {
        gap: clamp(30px, 3vw, 50px);
    }
}

/* Single Pricing Card */
.single-pricing-card {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-highlight {
    background: linear-gradient(135deg, #EF4444 0%, #F59E0B 100%);
    padding: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.highlight-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-highlight h3 {
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-highlight p {
    opacity: 0.95;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.price-increase-warning {
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Responsive Pricing Section */
@media (max-width: 1024px) {
    .pricing { padding: 60px 0; }
    .single-pricing-card { max-width: 900px; margin: 0 20px; }
}

@media (max-width: 768px) {
    .pricing { padding: 50px 0; }
    .single-pricing-card { margin: 0 16px; }
    .pricing-highlight { padding: 18px 16px; }
    .pricing-highlight h3 { font-size: 22px; }
    .pricing-highlight p { font-size: 15px; }
    .highlight-badge { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 480px) {
    .pricing { padding: 40px 0; }
    .single-pricing-card { margin: 0 12px; }
    .pricing-highlight { padding: 16px 12px; }
    .pricing-highlight h3 { font-size: 20px; line-height: 1.3; }
    .pricing-highlight p { font-size: 14px; }
    .highlight-badge { font-size: 10px; padding: 4px 10px; }
    .price-increase-warning { font-size: 13px; padding: 8px; }
}

@media (max-width: 375px) {
    .pricing-highlight h3 { font-size: 18px; }
    .pricing-highlight p { font-size: 13px; }
}

/* Earning Calculator */
.earning-calculator {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.earning-calculator h4 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 20px;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.calc-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.calc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.calc-item.highlight {
    background: var(--gradient);
    color: white;
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

.calc-item.highlight::before {
    content: '🎯 TARGET';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.calc-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
    line-height: 1.3;
}

.calc-value {
    display: block;
    font-weight: 800;
    color: var(--accent-color);
}

.calc-item.highlight .calc-value {
    color: white;
}

/* Responsive Earning Calculator */
@media (max-width: 768px) {
    .earning-calculator { padding: 20px; }
    .earning-calculator h4 { font-size: 18px; }
    .calc-grid { gap: 15px; }
    .calc-item { padding: 16px 12px; }
    .calc-value { font-size: 20px; }
    .calc-label { font-size: 13px; }
}

@media (max-width: 480px) {
    .calc-grid { grid-template-columns: 1fr; gap: 12px; }
    .calc-item { padding: 16px; }
    .calc-item.highlight { transform: scale(1); }
    .calc-value { font-size: 22px; }
    .calc-label { font-size: 12px; }
}

@media (max-width: 375px) {
    .earning-calculator { padding: 16px; margin-bottom: 20px; }
    .calc-item { padding: 14px; }
}

/* Mega Pricing Card */
.pricing-card.mega {
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.plan-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.plan-header p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0;
    gap: 4px;
}

.currency {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.7;
    font-size: 16px;
}

/* Features Columns */
.features-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-column {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.feature-column:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Mega Card */
@media (max-width: 1024px) {
    .pricing-card.mega { padding: 35px 30px; }
    .features-columns { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .plan-header h3 { font-size: 26px; }
    .amount { font-size: 50px; }
}

@media (max-width: 768px) {
    .pricing-card.mega { padding: 30px 25px; }
    .features-columns { grid-template-columns: 1fr; gap: 20px; margin: 30px 0; }
    .plan-header { margin-bottom: 25px; }
    .plan-header h3 { font-size: 24px; }
    .plan-header p { font-size: 15px; }
    .amount { font-size: 46px; }
    .currency { font-size: 24px; }
    .period { font-size: 16px; }
}

@media (max-width: 480px) {
    .pricing-card.mega { padding: 25px 20px; }
    .plan-header h3 { font-size: 22px; }
    .plan-header p { font-size: 14px; }
    .amount { font-size: 42px; }
    .currency { font-size: 22px; }
    .period { font-size: 15px; }
    .feature-column { padding: 16px; }
    .feature-column h4 { font-size: 16px; margin-bottom: 16px; }
}

@media (max-width: 375px) {
    .pricing-card.mega { padding: 20px 16px; }
    .plan-header h3 { font-size: 20px; }
    .amount { font-size: 38px; }
    .feature-column { padding: 14px; }
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    animation: bonusShimmer 4s infinite;
}

@keyframes bonusShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.bonus-section h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bonus-item {
    text-align: center;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.bonus-item:hover {
    transform: translateY(-3px);
    background: var(--gradient);
    color: white;
    border-color: var(--primary-color);
}

.bonus-item i {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.bonus-item:hover i {
    color: white;
}

.bonus-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* Mega Button */
.btn-mega {
    width: 100%;
    background: var(--gradient);
    color: white;
    padding: clamp(16px, 3.5vw, 24px) clamp(20px, 5vw, 48px);
    font-size: clamp(16px, 3.5vw, 24px);
    font-weight: 700;
    border: none;
    border-radius: clamp(8px, 1.5vw, 16px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
    margin-top: clamp(16px, 2vw, 24px);
    min-height: clamp(52px, 8vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.btn-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-mega:hover::before {
    left: 100%;
}

.btn-mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

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

/* Urgency Notes */
.urgency-notes {
    text-align: center;
    margin-top: 15px;
}

.urgency-notes .plan-note:first-child {
    color: #ef4444 !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.urgency-notes .plan-note:last-child {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive Bonus & Button */
@media (max-width: 1024px) {
    .bonus-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .btn-mega { font-size: 18px; padding: 18px 32px; }
}

@media (max-width: 768px) {
    .bonus-section { padding: 25px 20px; }
    .bonus-section h4 { font-size: 18px; }
    .bonus-grid { gap: 14px; }
    .bonus-item { padding: 12px; }
    .bonus-item i { font-size: 28px; }
    .bonus-item span { font-size: 13px; }
    .btn-mega { font-size: 17px; padding: 16px 28px; }
}

@media (max-width: 480px) {
    .bonus-section { padding: 20px 16px; margin: 25px 0; }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bonus-item { padding: 10px 8px; }
    .bonus-item i { font-size: 24px; margin-bottom: 8px; }
    .bonus-item span { font-size: 12px; }
    .btn-mega { font-size: 16px; padding: 16px 24px; }
    .urgency-notes .plan-note:first-child { font-size: 14px; }
    .urgency-notes .plan-note:last-child { font-size: 13px; }
}

@media (max-width: 375px) {
    .bonus-section { padding: 18px 14px; }
    .bonus-grid { gap: 10px; }
    .bonus-item { padding: 8px 6px; }
    .bonus-item span { font-size: 11px; }
    .btn-mega { font-size: 15px; }
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-gray);
    border-radius: 30px;
    transition: var(--transition);
    border: 2px solid var(--dark-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

input:checked + .slider {
    background: var(--gradient);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--dark-border);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    background: var(--gradient);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px 8px 0 0;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0;
}

.currency {
    font-size: 24px;
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
    margin-left: 5px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.6;
}

.savings-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 15px;
    line-height: 1.5;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-features li.disabled i {
    color: var(--text-secondary);
}

.plan-features strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Plan Features */
@media (max-width: 768px) {
    .plan-features li {
        padding: 8px 0;
        font-size: 14px;
        gap: 10px;
    }
    .plan-features i {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .plan-features {
        margin-bottom: 20px;
    }
    .plan-features li {
        padding: 6px 0;
        font-size: 13px;
        gap: 8px;
        line-height: 1.4;
    }
    .plan-features i {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .plan-features li {
        font-size: 12px;
        padding: 5px 0;
    }
    .plan-features i {
        font-size: 13px;
    }
}

.btn-plan {
    width: 100%;
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    justify-content: center;
}

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

.btn-featured {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.plan-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 15px;
}

/* ===== Bundle Section ===== */
.bundle-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-border);
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.bundle-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-border);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.bundle-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.bundle-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.bundle-price {
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-right: 15px;
}

.new-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

/* ===== Social Proof ===== */
.social-proof {
    padding: 60px 0;
    background: var(--light-gray);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.proof-item {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: var(--shadow-sm);
}

.proof-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.proof-number {
    display: block;
    font-weight: 800;
    margin-bottom: 6px;
}

.proof-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Social Proof - Responsive Tweaks */
@media (max-width: 1024px) {
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .proof-item i { font-size: 32px; }
    .proof-number { font-size: 30px; }
}

@media (max-width: 768px) {
    .social-proof { padding: 40px 0; }
    .proof-item { padding: 18px 12px; }
    .proof-item i { font-size: 28px; }
    .proof-number { font-size: 28px; }
}

@media (max-width: 480px) {
    .proof-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 16px; }
    .proof-item { padding: 16px 10px; }
    .proof-item i { font-size: 24px; }
    .proof-number { font-size: 24px; }
    .proof-label { font-size: 12px; }
}

@media (max-width: 375px) {
    .proof-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 12px; }
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(16px, 3vw, 40px);
    margin-bottom: clamp(40px, 6vw, 80px);
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.testimonial-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.verified-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Testimonial Avatar Icons */
.testimonial-avatar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-purple);
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.testimonial-avatar-icon.fitness {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
}

.testimonial-avatar-icon.production {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
}

.testimonial-avatar-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.rating {
    display: flex;
    gap: 4px;
    color: #FBBF24;
    margin-top: 5px;
}

.testimonial-text {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.testimonial-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-stats i {
    color: var(--primary-color);
}

/* ===== Case Studies ===== */
.case-studies {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-top: 40px;
    border: 1px solid var(--dark-border);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.case-study {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

/* ===== Use Cases ===== */
.use-cases {
    padding: 80px 0;
    background: var(--light-gray);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: clamp(16px, 3vw, 40px);
    margin-top: clamp(24px, 4vw, 50px);
}

.use-case {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.use-case:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.use-case i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ===== Channels Section ===== */
.channels {
    padding: 80px 0;
}

.channels-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(16px, 3vw, 40px);
    margin-top: clamp(40px, 5vw, 80px);
}

.channel-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-border);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.channel-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.channel-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.channel-icon.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
}

.channel-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0C63D4 100%);
}

.channel-icon.website {
    background: var(--gradient);
}

.channel-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.channel-card ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.channel-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.channel-stats {
    background: var(--light-gray);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
    border: 1px solid var(--dark-border);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(16px, 3vw, 40px);
    margin-top: clamp(40px, 5vw, 80px);
}

.faq-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Final CTA ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.cta-badge {
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid var(--dark-border);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.cta-features i {
    color: var(--secondary-color);
}

/* ===== Footer ===== */
.footer {
    background: var(--light-gray);
    padding: clamp(60px, 8vw, 100px) 0 clamp(20px, 2vw, 40px);
    border-top: 1px solid var(--dark-border);
}

/* Enhanced desktop footer */
@media (min-width: 1200px) {
    .footer {
        padding: clamp(80px, 8vw, 120px) 0 clamp(30px, 3vw, 60px);
    }
    
    .footer-content {
        gap: clamp(40px, 4vw, 80px);
        margin-bottom: clamp(40px, 4vw, 60px);
    }
    
    .footer-column h4 {
        font-size: clamp(16px, 1.6vw, 20px);
        margin-bottom: clamp(20px, 2vw, 32px);
    }
    
    .footer-column p,
    .footer-column ul li {
        font-size: clamp(14px, 1.4vw, 16px);
        line-height: 1.6;
    }
    
    .social-links a {
        width: clamp(40px, 4vw, 50px);
        height: clamp(40px, 4vw, 50px);
        font-size: clamp(16px, 1.6vw, 20px);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-column p { color: var(--text-secondary); }

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Footer - Responsive Tweaks */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .footer { padding: 40px 0 20px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 10px; }
}

@media (max-width: 375px) {
    .social-links a { width: 36px; height: 36px; }
    .footer-logo { font-size: 22px; }
}

/* ===== WhatsApp Strategy Section Responsive ===== */
.whatsapp-strategy {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: clamp(24px, 4vw, 48px);
    border-radius: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(24px, 4vw, 48px);
}

.whatsapp-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
}

/* Mobile: Stack WhatsApp strategy sections vertically */
@media (max-width: 768px) {
    .whatsapp-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: center;
    }
    
    .whatsapp-grid > div:first-child {
        order: 1;
    }
    
    .whatsapp-grid > div:last-child {
        order: 2;
        text-align: left;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .whatsapp-strategy {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .whatsapp-grid {
        gap: 20px !important;
    }
    
    .whatsapp-grid h3 {
        font-size: clamp(20px, 4vw, 24px) !important;
        margin-bottom: 16px !important;
    }
    
    .whatsapp-grid .fab.fa-whatsapp {
        font-size: clamp(80px, 15vw, 100px) !important;
    }
    
    .whatsapp-grid > div:last-child {
        text-align: center;
    }
}

/* ===== Meta Ads Strategy Section Responsive ===== */
.meta-ads-strategy {
    background: linear-gradient(135deg, #1877F2 0%, #833AB4 100%);
    padding: clamp(24px, 4vw, 48px);
    border-radius: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(24px, 4vw, 48px);
}

.meta-ads-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
}

/* Mobile: Stack Meta ads strategy sections vertically */
@media (max-width: 768px) {
    .meta-ads-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .meta-ads-grid > div:first-child {
        order: 1;
        text-align: center;
    }
    
    .meta-ads-grid > div:last-child {
        order: 2;
        text-align: center;
    }
}

/* Small mobile adjustments for Meta ads */
@media (max-width: 480px) {
    .meta-ads-strategy {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .meta-ads-grid h3 {
        font-size: clamp(20px, 4vw, 24px) !important;
        margin-bottom: 16px !important;
    }
    
    .meta-ads-grid p {
        font-size: clamp(14px, 3vw, 16px) !important;
        margin-bottom: 16px !important;
    }
    
    .meta-ads-grid .social-icons-display i {
        font-size: clamp(60px, 12vw, 80px) !important;
    }
}

/* ===== ROI Section Responsive ===== */
.roi-section {
    padding: clamp(40px, 6vw, 100px) 0;
    background: var(--light-gray);
}

.roi-breakdown {
    margin-top: clamp(10px, 2vw, 20px);
}

.roi-formula {
    background: var(--card-bg);
    padding: clamp(20px, 3vw, 40px);
    border-radius: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(24px, 4vw, 48px);
    box-shadow: var(--shadow-md);
}

.roi-formula h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(16px, 2vw, 32px);
    text-align: center;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: clamp(12px, 2vw, 24px);
}

/* Enhanced desktop ROI grid */
@media (min-width: 768px) {
    .roi-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(16px, 2.5vw, 32px);
    }
}

@media (min-width: 1200px) {
    .roi-grid {
        gap: clamp(24px, 3vw, 40px);
    }
    
    .roi-card {
        padding: clamp(20px, 2.5vw, 32px);
    }
    
    .roi-value {
        font-size: clamp(24px, 3vw, 36px);
    }
    
    .roi-label {
        font-size: clamp(13px, 1.4vw, 16px);
    }
}

.roi-card {
    background: var(--light-gray);
    padding: clamp(16px, 2vw, 24px);
    border-radius: clamp(8px, 1vw, 12px);
    text-align: center;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.roi-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.roi-label {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-secondary);
    margin-bottom: clamp(8px, 1vw, 12px);
}

.roi-value {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 800;
    display: block;
    margin-bottom: clamp(6px, 1vw, 10px);
}

.roi-description {
    font-size: clamp(11px, 1.8vw, 13px);
    color: var(--text-secondary);
}

.growth-trajectory {
    background: var(--card-bg);
    padding: clamp(20px, 3vw, 40px);
    border-radius: clamp(12px, 2vw, 20px);
    box-shadow: var(--shadow-md);
}

.growth-trajectory h3 {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(20px, 3vw, 32px);
    text-align: center;
}

.growth-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(16px, 2vw, 24px);
    margin-bottom: clamp(24px, 3vw, 40px);
}

/* Enhanced desktop growth timeline */
@media (min-width: 768px) {
    .growth-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(16px, 2vw, 24px);
        overflow: visible;
    }
    
    .growth-item {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .growth-timeline {
        gap: clamp(20px, 2.5vw, 32px);
    }
    
    .growth-item {
        min-height: 220px;
        padding: clamp(18px, 2vw, 28px);
    }
}

@media (min-width: 1200px) {
    .growth-timeline {
        gap: clamp(24px, 2.5vw, 36px);
        margin-bottom: clamp(32px, 4vw, 48px);
    }
    
    .growth-item {
        padding: clamp(20px, 2.2vw, 32px);
        min-height: 240px;
    }
    
    .growth-details .title {
        font-size: clamp(15px, 1.6vw, 20px);
        margin-bottom: clamp(6px, 0.8vw, 10px);
    }
    
    .growth-details .description {
        font-size: clamp(12px, 1.3vw, 15px);
        line-height: 1.4;
    }
    
    .growth-revenue {
        font-size: clamp(16px, 1.8vw, 24px);
        margin-top: auto;
    }
    
    .growth-month {
        font-size: clamp(12px, 1.3vw, 15px);
        margin-bottom: clamp(10px, 1.2vw, 16px);
    }
}

@media (min-width: 1440px) {
    .growth-timeline {
        gap: clamp(28px, 3vw, 40px);
    }
    
    .growth-item {
        padding: clamp(24px, 2.5vw, 36px);
        min-height: 260px;
    }
}

.growth-item {
    background: var(--light-gray);
    padding: clamp(16px, 2vw, 24px);
    border-radius: clamp(8px, 1vw, 12px);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.growth-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.growth-month {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: clamp(8px, 1vw, 12px);
}

.growth-details .title {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
    margin-bottom: clamp(4px, 0.8vw, 8px);
}

.growth-details .description {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-secondary);
}

.growth-revenue {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 800;
    color: var(--accent-color);
    margin-top: clamp(12px, 1.5vw, 16px);
}

.roi-highlight {
    background: var(--gradient);
    padding: clamp(20px, 3vw, 32px);
    border-radius: clamp(12px, 2vw, 20px);
    text-align: center;
    color: white;
}

.main-stat {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: clamp(8px, 1vw, 12px);
}

.sub-stat {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.95;
}

/* Enhanced desktop ROI highlight */
@media (min-width: 1200px) {
    .roi-highlight {
        padding: clamp(32px, 4vw, 48px);
        border-radius: clamp(16px, 2vw, 24px);
    }
    
    .main-stat {
        font-size: clamp(32px, 3.5vw, 48px);
        margin-bottom: clamp(12px, 1.5vw, 20px);
    }
    
    .sub-stat {
        font-size: clamp(18px, 2vw, 24px);
    }
}

/* ===== Social Icons Display ===== */
.social-icons-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
    padding: clamp(16px, 3vw, 32px);
}

.social-icons-display i {
    font-size: clamp(48px, 10vw, 96px);
    color: white;
}

/* ===== Viral Strategies Section ===== */
.viral-section {
    padding: clamp(24px, 4vw, 48px);
    background: var(--light-gray);
    border-radius: clamp(12px, 2vw, 20px);
    margin-top: clamp(24px, 4vw, 48px);
}

.viral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 3vw, 32px);
    margin-top: clamp(24px, 4vw, 48px);
}

.viral-strategy {
    background: var(--card-bg);
    padding: clamp(20px, 3vw, 32px);
    border-radius: clamp(12px, 2vw, 20px);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.viral-strategy:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.viral-icon {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: clamp(12px, 2vw, 20px);
}

.viral-strategy h4 {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: clamp(12px, 2vw, 20px);
}

.viral-list {
    list-style: none;
    padding: 0;
}

.viral-list li {
    padding: clamp(6px, 1vw, 10px) 0;
    font-size: clamp(14px, 2vw, 16px);
}

.viral-result {
    background: var(--gradient);
    color: white;
    padding: clamp(8px, 1.5vw, 16px);
    border-radius: clamp(6px, 1vw, 10px);
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    margin-top: clamp(12px, 2vw, 20px);
    text-align: center;
}

.viral-total {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    padding: clamp(20px, 3vw, 32px);
    border-radius: clamp(12px, 2vw, 20px);
    margin-top: clamp(24px, 4vw, 48px);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.viral-total h4 {
    font-size: clamp(20px, 3.5vw, 28px);
    margin-bottom: clamp(8px, 1.5vw, 16px);
}

.viral-total p {
    font-size: clamp(16px, 2.5vw, 20px);
}

.viral-total strong {
    color: var(--accent-color);
    font-size: clamp(20px, 3.5vw, 28px);
}

/* Enhanced desktop viral strategies */
@media (min-width: 768px) {
    .viral-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 2.5vw, 32px);
    }
    
    .viral-strategy {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 280px;
        padding: clamp(20px, 2.2vw, 28px);
    }
    
    .viral-result {
        margin-top: auto;
        padding: clamp(10px, 1.2vw, 16px);
    }
}

@media (min-width: 1024px) {
    .viral-section {
        padding: clamp(40px, 4.5vw, 64px);
        margin-top: clamp(40px, 5vw, 64px);
    }
    
    .viral-grid {
        gap: clamp(24px, 3vw, 40px);
    }
    
    .viral-strategy {
        min-height: 320px;
        padding: clamp(24px, 2.5vw, 32px);
    }
    
    .viral-icon {
        font-size: clamp(40px, 4vw, 64px);
        margin-bottom: clamp(16px, 2vw, 24px);
    }
    
    .viral-strategy h4 {
        font-size: clamp(20px, 2.2vw, 26px);
        margin-bottom: clamp(16px, 2vw, 24px);
    }
    
    .viral-list li {
        font-size: clamp(15px, 1.6vw, 18px);
        padding: clamp(8px, 1vw, 12px) 0;
    }
    
    .viral-result {
        font-size: clamp(15px, 1.6vw, 18px);
        padding: clamp(12px, 1.5vw, 18px);
    }
}

@media (min-width: 1200px) {
    .viral-section {
        padding: clamp(50px, 5vw, 80px);
        border-radius: clamp(16px, 2vw, 24px);
    }
    
    .viral-grid {
        gap: clamp(32px, 3.5vw, 48px);
        margin-top: clamp(40px, 4.5vw, 60px);
    }
    
    .viral-strategy {
        min-height: 360px;
        padding: clamp(32px, 3vw, 40px);
        border-radius: clamp(16px, 2vw, 20px);
    }
    
    .viral-total {
        padding: clamp(32px, 3.5vw, 48px);
        border-radius: clamp(16px, 2vw, 24px);
        margin-top: clamp(40px, 4.5vw, 60px);
    }
    
    .viral-total h4 {
        font-size: clamp(24px, 2.8vw, 32px);
        margin-bottom: clamp(12px, 1.5vw, 20px);
    }
    
    .viral-total p {
        font-size: clamp(18px, 2vw, 24px);
    }
    
    .viral-total strong {
        font-size: clamp(24px, 2.8vw, 32px);
    }
}

/* Enhanced desktop typography scaling */
@media (min-width: 768px) {
    h1 {
        font-size: clamp(28px, 4vw, 48px);
        line-height: 1.2;
        margin-bottom: clamp(16px, 2vw, 24px);
    }
    
    h2 {
        font-size: clamp(24px, 3.2vw, 40px);
        line-height: 1.25;
        margin-bottom: clamp(14px, 1.8vw, 20px);
    }
    
    h3 {
        font-size: clamp(20px, 2.8vw, 32px);
        line-height: 1.3;
        margin-bottom: clamp(12px, 1.5vw, 18px);
    }
    
    h4 {
        font-size: clamp(18px, 2.4vw, 28px);
        line-height: 1.35;
        margin-bottom: clamp(10px, 1.2vw, 16px);
    }
    
    p {
        font-size: clamp(16px, 1.8vw, 20px);
        line-height: 1.6;
        margin-bottom: clamp(12px, 1.5vw, 18px);
    }
    
    .lead {
        font-size: clamp(18px, 2vw, 24px);
        line-height: 1.5;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: clamp(32px, 4.5vw, 56px);
        margin-bottom: clamp(18px, 2.2vw, 28px);
    }
    
    h2 {
        font-size: clamp(28px, 3.5vw, 44px);
        margin-bottom: clamp(16px, 2vw, 24px);
    }
    
    h3 {
        font-size: clamp(24px, 3vw, 36px);
        margin-bottom: clamp(14px, 1.8vw, 22px);
    }
    
    .lead {
        font-size: clamp(20px, 2.2vw, 26px);
        max-width: 800px;
        margin: 0 auto clamp(20px, 2.5vw, 32px) auto;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: clamp(36px, 5vw, 64px);
        margin-bottom: clamp(20px, 2.5vw, 32px);
    }
    
    h2 {
        font-size: clamp(32px, 4vw, 48px);
        margin-bottom: clamp(18px, 2.2vw, 28px);
    }
    
    .lead {
        font-size: clamp(22px, 2.5vw, 28px);
        max-width: 900px;
    }
}

/* ===== Global Desktop Optimizations ===== */
@media (min-width: 1200px) {
    /* Enhanced section padding for desktop */
    .why-model,
    .roi-section,
    .marketing-strategy,
    .urgency-section,
    .how-it-works,
    .social-proof,
    .testimonials,
    .use-cases,
    .channels,
    .faq,
    .final-cta {
        padding: clamp(80px, 8vw, 140px) 0;
    }
    
    /* Enhanced card padding for desktop */
    .feature-card,
    .testimonial-card,
    .channel-card,
    .use-case,
    .faq-item {
        padding: clamp(30px, 3vw, 50px);
    }
    
    /* Enhanced button sizes for desktop */
    .btn-primary,
    .btn-secondary,
    .btn-plan {
        padding: clamp(12px, 1.5vw, 20px) clamp(24px, 2.5vw, 40px);
        font-size: clamp(14px, 1.4vw, 18px);
        min-height: clamp(44px, 4.5vw, 56px);
    }
    
    .btn-large {
        padding: clamp(16px, 2vw, 24px) clamp(32px, 3vw, 48px);
        font-size: clamp(16px, 1.6vw, 20px);
        min-height: clamp(52px, 5vw, 64px);
    }
    
    .btn-mega {
        font-size: clamp(18px, 1.8vw, 24px);
        min-height: clamp(56px, 6vw, 72px);
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== COMPREHENSIVE MOBILE-FIRST RESPONSIVE DESIGN ===== */
/* Optimized for top 20 mobile devices including iPhones, Samsung Galaxy, OnePlus, iPads */

/* ===== Extra Small Devices (320px-375px) ===== */
/* iPhone SE, Galaxy S20/S21 compact, OnePlus compact models */
@media only screen and (max-width: 375px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    /* Typography optimized for small screens */
    h1 { 
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    h2 { 
        font-size: 1.4rem !important;
        line-height: 1.3;
    }
    h3 { 
        font-size: 1.15rem !important;
    }
    h4 { 
        font-size: 1rem !important;
    }
    
    .hero-title {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
    }
    
    .gradient-text {
        display: inline-block;
    }

    /* Offer Banner - Stack vertically */
    .offer-content {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }
    .offer-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
    .countdown {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .countdown-item {
        padding: 3px 6px;
        font-size: 11px;
    }
    .offer-cta {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Navigation - Ultra compact */
    .navbar {
        padding: 12px 0;
        top: 40px;
    }
    .logo {
        font-size: 18px;
    }
    .logo-icon {
        font-size: 22px;
    }
    .logo-badge {
        font-size: 10px;
        padding: 1px 6px;
    }
    /* Mobile menu toggle handled in main navigation styles */
    .nav-menu, .nav-actions {
        display: none;
    }

    /* Hero Section - Mobile-first */
    .hero {
        padding: 30px 0 50px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    .hero-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    .hero-stats {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
        padding: 15px 10px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
    .hero-stats .stat {
        text-align: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .hero-stats .stat:last-child {
        border-bottom: none;
    }
    .stat-number {
        font-size: 20px;
        font-weight: 800;
    }
    .stat-label {
        font-size: 11px;
        margin-top: 3px;
    }
    .hero-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
        font-weight: 600;
        justify-content: center;
        border-radius: 8px;
        min-height: 52px;
    }
    .hero-cta .btn-primary {
        box-shadow: 0 4px 15px rgba(107, 70, 193, 0.3);
    }
    
    /* Trust badges - Better mobile layout */
    .trust-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        align-items: center;
        max-width: 320px;
        margin: 25px auto 0;
        padding: 15px;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        backdrop-filter: blur(3px);
    }
    .trust-badges img {
        height: 45px;
        width: auto;
        object-fit: contain;
        border-radius: 6px;
        opacity: 0.9;
        flex: 0 0 auto;
    }

    /* Video preview - Mobile optimized */
    .hero-visual {
        display: block !important;
        margin-top: 30px;
    }
    .video-preview-container {
        position: relative;
        width: 100%;
        aspect-ratio: 16/9;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    .preview-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .floating-cards {
        display: none; /* Hide on very small screens */
    }
    .preview-timer {
        font-size: 12px;
        padding: 6px 12px;
    }
    .preview-play {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* Buttons - Touch-friendly */
    .btn-primary, .btn-secondary, .btn-plan {
        min-height: 48px;
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 6px;
    }
    .btn-large {
        min-height: 52px;
        font-size: 16px;
        padding: 16px 20px;
    }
    .btn-mega {
        min-height: 56px;
        font-size: 18px;
        padding: 18px 24px;
    }

    /* Cards and grids - Stack everything */
    .features-grid,
    .testimonials-grid,
    .faq-grid,
    .channels-showcase,
    .use-cases-grid,
    .case-study-grid,
    .bundle-grid,
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-columns,
    .calc-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Opportunity cards mobile optimization */
    .opportunity-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 25px !important;
    }
    
    .opportunity-card {
        padding: 20px !important;
        margin: 0 !important;
    }
    
    .opportunity-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    .opportunity-card p {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }
    
    .opportunity-card div[style*="font-size: 48px"] {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }
    
    /* Section headers mobile */
    .section-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .section-header p {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .section-badge {
        font-size: 11px !important;
        padding: 6px 14px !important;
    }

    /* Feature cards - Compact */
    .feature-card {
        padding: 20px;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Pricing cards - Mobile-first */
    .pricing-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    .pricing-card.mega {
        padding: 30px 20px;
    }
    .price .amount {
        font-size: 36px;
    }
    .price .currency {
        font-size: 20px;
    }
    
    /* Footer - Stack vertically */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    .social-links {
        justify-content: center;
    }
}

/* ===== Small Mobile Devices (376px-414px) ===== */
/* iPhone 12 mini, Galaxy S21, OnePlus 9 */
@media only screen and (min-width: 376px) and (max-width: 414px) {
    .container {
        padding: 0 16px;
    }

    /* Slightly larger typography */
    h1 { font-size: clamp(2rem, 7vw, 2.4rem) !important; }
    h2 { font-size: clamp(1.6rem, 6vw, 1.9rem) !important; }
    
    /* Offer banner - Better spacing */
    .offer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .countdown {
        gap: 8px;
    }
    .countdown-item {
        padding: 4px 8px;
        font-size: 12px;
    }

    /* Logo slightly bigger */
    .logo {
        font-size: 20px;
    }
    .logo-icon {
        font-size: 26px;
    }

    /* Hero adjustments */
    .hero-description {
        font-size: 17px;
    }
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .stat-number {
        font-size: 24px;
    }

    /* Trust badges - 3x2 grid */
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        max-width: 280px;
        gap: 12px;
    }
    .trust-badges img {
        height: 70px;
    }

    /* Show floating cards on larger small screens */
    .floating-cards {
        display: block;
    }
    .floating-card {
        padding: 8px 12px;
        font-size: 12px;
    }
    .card-1, .card-2 {
        display: none; /* Show only one card to avoid clutter */
    }

    /* Buttons */
    .btn-primary, .btn-secondary {
        font-size: 15px;
        padding: 14px 20px;
    }

    /* Some grids can be 2 columns */
    .use-cases-grid {
        grid-template-columns: repeat(1fr);
        gap: 20px;
    }
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ===== Medium Mobile Devices (415px-480px) ===== */
/* iPhone 12/13/14, Galaxy S22, OnePlus 10 */
@media only screen and (min-width: 415px) and (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    /* Better typography scaling */
    h1 { font-size: clamp(2.2rem, 6vw, 2.6rem) !important; }
    h2 { font-size: clamp(1.8rem, 5vw, 2.1rem) !important; }

    /* Offer banner - Single row */
    .offer-content {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    .offer-badge {
        font-size: 13px;
    }
    .countdown-item {
        font-size: 13px;
        padding: 5px 10px;
    }
    .offer-cta {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Navigation */
    .logo {
        font-size: 22px;
    }
    .logo-icon {
        font-size: 28px;
    }
    .logo-badge {
        font-size: 11px;
    }

    /* Hero section improvements */
    .hero {
        padding: 50px 0 70px;
    }
    .hero-description {
        font-size: 18px;
        line-height: 1.7;
    }
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }
    .stat-number {
        font-size: 26px;
    }
    .stat-label {
        font-size: 13px;
    }

    /* CTA buttons side by side on larger screens */
    .hero-cta {
        flex-direction: row;
        gap: 15px;
    }
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        flex: 1;
        min-width: 0;
    }

    /* Trust badges - 3x2 or 2x3 */
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .trust-badges img {
        height: 75px;
    }

    /* Video preview */
    .floating-cards {
        display: block;
    }
    .floating-card {
        padding: 10px 16px;
        font-size: 13px;
    }
    .card-1, .card-2, .card-3 {
        display: flex; /* Show all cards */
    }

    /* Grid improvements */
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Feature cards */
    .feature-card {
        padding: 25px;
    }
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    /* Pricing cards */
    .pricing-card {
        padding: 30px 25px;
    }
    .price .amount {
        font-size: 42px;
    }
}

/* ===== Large Mobile/Small Tablet (481px-768px) ===== */
/* iPhone 14 Plus, Galaxy Note series, OnePlus large models, iPad mini */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 720px;
    }

    /* Typography for larger screens */
    h1 { font-size: clamp(2.4rem, 5vw, 2.8rem) !important; }
    h2 { font-size: clamp(2rem, 4vw, 2.3rem) !important; }
    h3 { font-size: clamp(1.6rem, 3vw, 1.8rem) !important; }

    /* Offer banner - Full width layout */
    .offer-banner {
        padding: 15px 0;
    }
    .offer-content {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
    .offer-badge {
        font-size: 14px;
        padding: 6px 16px;
    }
    .countdown-item {
        font-size: 14px;
        padding: 6px 12px;
    }
    .offer-cta {
        font-size: 15px;
        padding: 10px 20px;
    }

    /* Navigation improvements */
    .navbar {
        padding: 18px 0;
    }
    .logo {
        font-size: 24px;
    }
    .logo-icon {
        font-size: 30px;
    }
    .logo-badge {
        font-size: 12px;
        padding: 3px 10px;
    }
    .nav-menu, .nav-actions {
        display: none; /* Still hidden on tablet */
    }
    .mobile-menu-toggle {
        display: block;
    }

    /* Hero section - Better layout */
    .hero {
        padding: 60px 0 80px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-badge {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    .hero-description {
        font-size: 19px;
        line-height: 1.7;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-bottom: 35px;
    }
    .stat-number {
        font-size: 30px;
    }
    .stat-label {
        font-size: 14px;
    }

    /* CTA buttons - Side by side */
    .hero-cta {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        flex: 1;
        max-width: 240px;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Trust badges - Better grid */
    .trust-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    .trust-badges img {
        height: 80px;
        flex: 0 0 auto;
    }

    /* Video preview - Larger */
    .video-preview-container {
        max-width: 500px;
        margin: 0 auto;
        border-radius: 16px;
    }
    .floating-cards {
        display: block;
    }
    .floating-card {
        padding: 12px 20px;
        font-size: 14px;
    }
    .preview-timer {
        font-size: 14px;
        padding: 8px 16px;
    }
    .preview-play {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    /* Grid layouts - 2 columns where appropriate */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .channels-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Pricing specific */
    .features-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .calc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Cards */
    .feature-card {
        padding: 30px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .pricing-card {
        padding: 35px 30px;
    }
    .pricing-card.mega {
        padding: 40px 30px;
    }
    
    /* Footer - 2 columns */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .footer-links {
        flex-direction: row;
        gap: 20px;
    }
}

/* ===== Tablet Portrait (769px-1024px) ===== */
/* iPad Air, iPad Pro 11", Galaxy Tab, OnePlus Pad */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
        max-width: 960px;
    }

    /* Typography for tablets */
    h1 { font-size: clamp(2.6rem, 4vw, 3.2rem) !important; }
    h2 { font-size: clamp(2.2rem, 3.5vw, 2.8rem) !important; }
    h3 { font-size: clamp(1.8rem, 2.8vw, 2.2rem) !important; }

    /* Offer banner - Full layout */
    .offer-banner {
        padding: 16px 0;
    }
    .offer-content {
        flex-direction: row;
        gap: 25px;
        justify-content: center;
        align-items: center;
    }
    .offer-badge {
        font-size: 15px;
        padding: 8px 18px;
    }
    .countdown-item {
        font-size: 15px;
        padding: 8px 14px;
    }
    .offer-cta {
        font-size: 16px;
        padding: 12px 24px;
    }

    /* Navigation - Consider showing some nav items */
    .navbar {
        padding: 20px 0;
    }
    .logo {
        font-size: 26px;
    }
    .logo-icon {
        font-size: 34px;
    }
    .logo-badge {
        font-size: 13px;
        padding: 4px 12px;
    }

    /* Hero section - Two column layout possible */
    .hero {
        padding: 70px 0 90px;
    }
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        text-align: left;
        align-items: center;
    }
    .hero-text {
        order: 1;
    }
    .hero-visual {
        order: 2;
    }
    .hero-badge {
        font-size: 15px;
        padding: 10px 20px;
    }
    .hero-description {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 35px;
    }
    .hero-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 50px;
        margin-bottom: 40px;
    }
    .stat-number {
        font-size: 32px;
    }
    .stat-label {
        font-size: 15px;
    }

    /* CTA buttons */
    .hero-cta {
        flex-direction: row;
        gap: 25px;
        justify-content: flex-start;
    }
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        flex: 0 0 auto;
        padding: 18px 28px;
        font-size: 17px;
    }

    /* Trust badges - Horizontal layout */
    .trust-badges {
        display: flex;
        justify-content: flex-start;
        gap: 15px;
        flex-wrap: wrap;
    }
    .trust-badges img {
        height: 85px;
    }

    /* Video preview */
    .video-preview-container {
        max-width: 100%;
        border-radius: 16px;
    }
    .floating-cards {
        display: block;
    }
    .floating-card {
        padding: 14px 24px;
        font-size: 15px;
    }
    .preview-timer {
        font-size: 15px;
        padding: 10px 20px;
    }
    .preview-play {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    /* Grid layouts - More columns */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .channels-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
 
    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .case-study-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .bundle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Pricing layouts */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .features-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .calc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Steps timeline - Show all 3 */
    .steps-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .steps-timeline::before {
        display: block;
    }

    /* Cards */
    .feature-card {
        padding: 35px;
    }
    .pricing-card {
        padding: 40px 35px;
    }
    .pricing-card.mega {
        padding: 45px 35px;
    }

    /* Footer - 3 columns */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        text-align: left;
    }
}

/* ===== Tablet Landscape/Small Desktop (1025px-1199px) ===== */
/* iPad Pro 12.9", large Android tablets landscape */
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
    .container {
        max-width: 1140px;
        padding: 0 40px;
    }

    /* Show navigation menu on larger tablets */
    .nav-menu {
        display: flex;
        gap: 25px;
    }
    .nav-actions {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none;
    }

    /* Hero section - Full two-column */
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
    .hero-stats {
        justify-content: flex-start;
        gap: 40px;
    }
    .hero-cta {
        justify-content: flex-start;
    }
    .trust-badges {
        justify-content: flex-start;
    }

    /* More columns for grids */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    .channels-showcase {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .use-cases-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }

    /* Pricing can show side by side for comparison */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 3fr 2fr 2fr;
    }
}

/* ===== Device-Specific Optimizations ===== */

/* iPhone 12/13/14/15 Pro Max - 428×926 */
@media only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
    .navbar {
        padding: 14px 0;
    }
    
    .logo {
        font-size: 19px;
    }
    
    .logo-icon {
        font-size: 26px;
    }
    
    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }
    
    .hero-description {
        font-size: 19px;
        line-height: 1.6;
    }
    .floating-card {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 8px;
    }
    .offer-content {
        padding: 0 10px;
    }
}

/* Galaxy S21/S22/S23 Ultra - Various sizes */
@media only screen and (min-device-width: 384px) and (max-device-width: 428px) and (min-device-height: 854px) {
    .navbar {
        padding: 13px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 25px;
    }
    
    .logo-badge {
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        background: rgba(107, 70, 193, 0.08);
    }
    
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .trust-badges img {
        height: 65px;
    }
    .hero-stats {
        gap: 25px;
    }
}

/* iPad Air/iPad Pro - Portrait */
@media only screen and (device-width: 820px) and (device-height: 1180px) and (-webkit-device-pixel-ratio: 2) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .nav-menu {
        display: flex;
    }
    .nav-actions {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

/* OnePlus devices - Various sizes */
@media only screen and (min-device-width: 412px) and (max-device-width: 414px) {
    .countdown {
        gap: 8px;
    }
    .countdown-item {
        min-width: 35px;
        text-align: center;
    }
}

/* ===== Orientation-Specific Rules ===== */

/* Landscape orientation for phones */
@media only screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 30px 0 40px;
    }
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
    }
    .hero-cta {
        flex-direction: row;
        gap: 15px;
    }
    .trust-badges {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    .trust-badges img {
        height: 50px;
    }
    .floating-cards .card-1,
    .floating-cards .card-2 {
        display: none;
    }
    .video-preview-container {
        max-width: 400px;
    }
}

/* ===== High DPI/Retina Optimizations ===== */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
    .trust-badges img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .preview-video {
        image-rendering: -webkit-optimize-contrast;
    }
    
    /* Ensure icons look crisp */
    .logo-icon,
    .feature-icon,
    .mobile-menu-toggle {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ===== Touch-Specific Optimizations ===== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for mobile */
    .btn-primary,
    .btn-secondary,
    .btn-plan,
    .offer-cta,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    /* Better touch spacing */
    .nav-menu a,
    .footer-links a {
        padding: 10px 5px;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE CSS FOR ALL CONTENT SECTIONS ===== */

/* ===== Why This Model Section - Responsive ===== */
.why-model {
    padding: 80px 0;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.opportunity-card {
    background: var(--card-bg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #10B981;
    transition: var(--transition);
}

.opportunity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.opportunity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.opportunity-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.opportunity-card div[style*="font-size: 48px"] {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.opportunity-card div[style*="font-weight: bold"] {
    font-weight: bold;
    font-size: 16px;
}

/* ===== ROI Section - Responsive ===== */
.roi-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.roi-breakdown {
    margin-top: 20px;
}

.roi-formula {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
}

.roi-formula h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.roi-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    border: 2px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
}

.roi-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.roi-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.roi-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.roi-value.investment {
    color: #EF4444;
}

.roi-value.subscription {
    color: #10B981;
}

.roi-value.breakeven {
    color: #F59E0B;
}

.roi-value.target {
    color: #6366F1;
}

.roi-description {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.3;
}

.growth-trajectory {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
}

.growth-trajectory h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
}

.growth-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.growth-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    position: relative;
    transition: var(--transition);
}

.growth-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.growth-item.month-6 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid var(--accent-color);
}

.growth-month {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.growth-details .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.growth-details .description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 15px;
}

.growth-revenue {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-color);
}

.roi-highlight {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
    border-radius: 12px;
    margin-top: 20px;
}

.roi-highlight .main-stat {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.roi-highlight .sub-stat {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Marketing Strategy Section - Responsive ===== */
.marketing-strategy {
    padding: 80px 0;
}

/* Viral Social Sharing - Responsive */
.viral-section {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-md);
}

.viral-section h3 {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.viral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.viral-strategy {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    text-align: center;
}

.viral-strategy:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.viral-strategy.instagram {
    border-top: 4px solid #E1306C;
}

.viral-strategy.twitter {
    border-top: 4px solid #1DA1F2;
}

.viral-strategy.youtube {
    border-top: 4px solid #FF0000;
}

.viral-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.viral-strategy h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.viral-strategy.instagram h4 {
    color: #E1306C;
}

.viral-strategy.twitter h4 {
    color: #1DA1F2;
}

.viral-strategy.youtube h4 {
    color: #FF0000;
}

.viral-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.viral-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.viral-result {
    background: var(--accent-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.viral-total {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
}

.viral-total h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.viral-total p {
    font-size: 18px;
    color: var(--text-secondary);
}

.viral-total strong {
    color: var(--accent-color);
    font-size: 20px;
}

/* Social Icons Display - Responsive */
.social-icons-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    text-align: center;
}

.social-icons-display i {
    font-size: 80px;
    opacity: 0.1;
    display: block;
    margin-bottom: 10px;
}

.social-icons-display i.fab.fa-facebook {
    color: #1877F2;
}

.social-icons-display i.fab.fa-instagram {
    color: #E1306C;
}

/* ===== RESPONSIVE BREAKPOINTS FOR ALL SECTIONS ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .opportunity-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .roi-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .growth-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .viral-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .why-model,
    .roi-section,
    .marketing-strategy {
        padding: 70px 0;
    }
    
    .opportunity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .roi-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .growth-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .viral-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .why-model,
    .roi-section,
    .marketing-strategy {
        padding: 60px 0;
    }
    
    .opportunity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
    
    .opportunity-card {
        padding: 25px;
    }
    
    .opportunity-card h3 {
        font-size: 1.3rem;
    }
    
    .roi-formula,
    .growth-trajectory,
    .viral-section {
        padding: 30px;
    }
    
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .growth-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    

    
    .roi-value {
        font-size: 24px;
    }
    
    .growth-revenue {
        font-size: 18px;
    }
}

/* Tablet Portrait & Large Mobile (481px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .why-model,
    .roi-section,
    .marketing-strategy {
        padding: 50px 0;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .opportunity-card {
        padding: 20px;
    }
    
    .opportunity-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .opportunity-card p {
        font-size: 15px;
    }
    
    .roi-formula,
    .growth-trajectory,
    .viral-section {
        padding: 25px 20px;
    }
    
    .roi-formula h3,
    .growth-trajectory h3,
    .viral-section h3 {
        font-size: 22px;
    }
    
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .growth-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .growth-item {
        padding: 20px;
        text-align: center;
    }
    
    .viral-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .roi-value {
        font-size: 22px;
    }
    
    .growth-revenue {
        font-size: 16px;
    }
    
    .roi-highlight .main-stat {
        font-size: 28px;
    }
    
    .roi-highlight .sub-stat {
        font-size: 16px;
    }
}

/* Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    .why-model,
    .roi-section,
    .marketing-strategy {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 25px;
    }
    
    .opportunity-card {
        padding: 18px;
    }
    
    .opportunity-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .opportunity-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .opportunity-card div[style*="font-size: 48px"] {
        font-size: 36px !important;
        margin-bottom: 12px !important;
    }
    
    .roi-formula,
    .growth-trajectory,
    .viral-section {
        padding: 20px 16px;
        margin-bottom: 25px;
    }
    
    .roi-formula h3,
    .growth-trajectory h3,
    .viral-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .roi-card {
        padding: 20px 15px;
    }
    
    .roi-value {
        font-size: 24px;
    }
    
    .roi-label {
        font-size: 13px;
    }
    
    .roi-description {
        font-size: 11px;
    }
    
    .growth-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .growth-item {
        padding: 18px 15px;
    }
    
    .growth-month {
        font-size: 16px;
    }
    
    .growth-details .title {
        font-size: 15px;
    }
    
    .growth-details .description {
        font-size: 12px;
    }
    
    .growth-revenue {
        font-size: 18px;
    }
    
    .viral-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .viral-strategy {
        padding: 20px 16px;
    }
    
    .viral-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .viral-strategy h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .viral-list li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .viral-result {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .roi-highlight {
        padding: 20px 15px;
    }
    
    .roi-highlight .main-stat {
        font-size: 24px;
    }
    
    .roi-highlight .sub-stat {
        font-size: 14px;
    }
    
    .viral-total {
        padding: 20px 15px;
    }
    
    .viral-total h4 {
        font-size: 20px;
    }
    
    .viral-total p {
        font-size: 16px;
    }
    
    .social-icons-display {
        display: none;
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .why-model,
    .roi-section,
    .marketing-strategy {
        padding: 35px 0;
    }
    
    .container {
        padding: 0 14px;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .opportunity-card {
        padding: 16px;
    }
    
    .opportunity-card h3 {
        font-size: 1rem;
    }
    
    .opportunity-card p {
        font-size: 13px;
    }
    
    .roi-formula,
    .growth-trajectory,
    .viral-section {
        padding: 18px 14px;
    }
    
    .roi-formula h3,
    .growth-trajectory h3,
    .viral-section h3 {
        font-size: 18px;
    }
    
    .roi-card,
    .growth-item,
    .viral-strategy {
        padding: 16px 12px;
    }
    
    .roi-value {
        font-size: 20px;
    }
    
    .growth-revenue {
        font-size: 16px;
    }
    
    .viral-icon {
        font-size: 36px;
    }
    
    .viral-strategy h4 {
        font-size: 16px;
    }
    
    .roi-highlight .main-stat {
        font-size: 22px;
    }
    
    .viral-total h4 {
        font-size: 18px;
    }
    
    .viral-total p {
        font-size: 14px;
    }
}

/* iPhone SE and smallest devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .section-header h2 {
        font-size: 1.4rem !important;
        line-height: 1.2;
    }
    
    .opportunity-card,
    .roi-card,
    .growth-item,
    .viral-strategy {
        padding: 14px 10px;
    }
    
    .roi-value,
    .growth-revenue {
        font-size: 18px;
    }
    
    .viral-icon {
        font-size: 32px;
    }
    
    .roi-highlight .main-stat {
        font-size: 20px;
    }
}

/* ===== Mobile Hero Section Enhancements ===== */
@media only screen and (max-width: 768px) {
    /* Hero section mobile-specific fixes */
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }
    
    .hero-content {
        min-height: auto;
    }
    
    /* Mobile-optimized video preview */
    .video-preview-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
        border-radius: 12px;
        margin: 20px auto 0;
    }
    
    .preview-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    /* Mobile preview overlay */
    .preview-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
        background: linear-gradient(
            to bottom, 
            transparent 0%, 
            rgba(0, 0, 0, 0.3) 70%, 
            rgba(107, 70, 193, 0.4) 100%
        );
    }
    
    /* Mobile preview timer */
    .preview-timer {
        align-self: flex-start;
        background: rgba(239, 68, 68, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    /* Mobile play button */
    .preview-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 3px solid rgba(107, 70, 193, 0.3);
    }
    
    .preview-play:active {
        background: var(--primary-color);
        color: white;
    }
    
    /* Mobile floating cards - simplified */
    .floating-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 2px 8px rgba(0, 0, 0, 0.08);
        font-weight: 600;
        font-size: 11px;
        padding: 8px 12px;
        border-radius: 8px;
        white-space: nowrap;
        animation: mobileFloat 4s ease-in-out infinite;
    }
    
    /* Only show one floating card on very small screens */
    .card-2, .card-1 {
        display: none;
    }
    
    .card-3 {
        bottom: 15px;
        right: 15px;
        animation-delay: 0s;
    }
    
    @keyframes mobileFloat {
        0%, 100% { 
            transform: translateY(0) scale(1);
            opacity: 1;
        }
        25% { 
            transform: translateY(-8px) scale(1.02);
            opacity: 0.9;
        }
        50% { 
            transform: translateY(-15px) scale(1.05);
            opacity: 0.8;
        }
        75% { 
            transform: translateY(-8px) scale(1.02);
            opacity: 0.9;
        }
    }
    
    /* Mobile stats optimization */
    .hero-stats {
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        margin: 30px 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .stat {
        text-align: center;
        padding: 10px 0;
    }
    
    .stat-number {
        display: block;
        font-size: 24px;
        font-weight: 800;
        background: var(--gradient-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 12px;
        color: var(--text-secondary);
        margin-top: 5px;
        font-weight: 500;
    }
    
    /* Mobile CTA buttons enhancement */
    .hero-cta {
        padding: 0 10px;
    }
    
    .hero-cta .btn-primary {
        background: var(--gradient-purple);
        border: none;
        box-shadow: 
            0 8px 25px rgba(107, 70, 193, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        position: relative;
        overflow: hidden;
    }
    
    .hero-cta .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg, 
            transparent, 
            rgba(255, 255, 255, 0.3), 
            transparent
        );
        transition: left 0.6s ease;
    }
    
    .hero-cta .btn-primary:active::before {
        left: 100%;
    }
    
    .hero-cta .btn-secondary {
        background: rgba(255, 255, 255, 0.95);
        color: var(--text-primary);
        border: 2px solid var(--primary-color);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .hero-cta .btn-secondary:active {
        background: var(--primary-color);
        color: white;
        transform: translateY(1px);
    }
    
    /* Trust badges mobile grid */
    .trust-badges {
        margin-top: 30px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 12px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .trust-badges img {
        border-radius: 8px;
        transition: transform 0.2s ease;
        filter: brightness(1.1) contrast(1.1);
    }
    
    .trust-badges img:active {
        transform: scale(0.95);
    }
}

/* ===== ROI Section ===== */
.roi-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.roi-breakdown {
    max-width: 1000px;
    margin: 20px auto;
}

.roi-formula {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.roi-formula h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.roi-card {
    background: var(--card-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--dark-border);
}

.roi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.roi-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.roi-value {
    font-weight: 800;
    margin-bottom: 8px;
}

.roi-value.investment { color: #EF4444; }
.roi-value.subscription { color: #F59E0B; }
.roi-value.breakeven { color: #6366F1; }
.roi-value.target { color: #10B981; }

.roi-description {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Growth Trajectory */
.growth-trajectory {
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--dark-border);
}

.growth-trajectory h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--text-primary);
}

.growth-timeline {
    display: grid;
    gap: 20px;
}

.growth-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.growth-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.growth-item.month-1 { border-left-color: #EF4444; }
.growth-item.month-2 { border-left-color: #F59E0B; }
.growth-item.month-3 { border-left-color: #6366F1; }
.growth-item.month-6 {
    border-left-color: #10B981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
}

.growth-month {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    min-width: 80px;
}

.growth-details {
    flex: 1;
}

.growth-details .title {
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.growth-details .description {
    color: var(--text-secondary);
    font-size: 14px;
}

.growth-revenue {
    font-size: 24px;
    font-weight: bold;
    color: #10B981;
}

.growth-item.month-6 .growth-revenue {
    font-size: 28px;
}

.roi-highlight {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.roi-highlight .main-stat {
    font-size: 18px;
    font-weight: bold;
    color: #10B981;
    margin-bottom: 10px;
}

.roi-highlight .sub-stat {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Enhanced desktop ROI breakdown */
@media (min-width: 768px) {
    .roi-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(20px, 2.5vw, 30px);
    }
    
    .roi-card {
        padding: clamp(20px, 2.2vw, 28px);
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .growth-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(16px, 2vw, 24px);
    }
}

@media (min-width: 1024px) {
    .roi-breakdown {
        max-width: 1200px;
        padding: 0 20px;
        margin-top: 15px;
    }
    
    .roi-grid {
        gap: clamp(24px, 2.8vw, 36px);
    }
    
    .roi-card {
        padding: clamp(24px, 2.5vw, 32px);
        min-height: 200px;
    }
    
    .roi-value {
        font-size: clamp(32px, 3.2vw, 44px);
        margin-bottom: clamp(8px, 1vw, 12px);
    }
    
    .roi-label {
        font-size: clamp(14px, 1.4vw, 16px);
        margin-bottom: clamp(8px, 1vw, 12px);
    }
    
    .roi-description {
        font-size: clamp(12px, 1.2vw, 14px);
        line-height: 1.4;
    }
    
    .growth-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(20px, 2.5vw, 32px);
    }
}

@media (min-width: 1200px) {
    .roi-breakdown {
        max-width: 1400px;
        margin: clamp(25px, 3vw, 40px) auto;
    }
    
    .roi-formula {
        padding: clamp(40px, 4vw, 56px);
        margin-bottom: clamp(30px, 4vw, 50px);
    }
    
    .roi-formula h3 {
        font-size: clamp(28px, 3.2vw, 40px);
        margin-bottom: clamp(30px, 3.5vw, 40px);
    }
    
    .roi-grid {
        gap: clamp(28px, 3vw, 40px);
    }
    
    .roi-card {
        padding: clamp(28px, 3vw, 40px);
        min-height: 220px;
        border-radius: clamp(12px, 1.5vw, 16px);
    }
    
    .roi-value {
        font-size: clamp(36px, 3.5vw, 48px);
    }
    
    .roi-label {
        font-size: clamp(15px, 1.5vw, 18px);
    }
    
    .roi-description {
        font-size: clamp(13px, 1.3vw, 15px);
    }
    
    .growth-trajectory {
        padding: clamp(40px, 4vw, 56px);
    }
    
    .growth-trajectory h3 {
        font-size: clamp(24px, 2.8vw, 32px);
        margin-bottom: clamp(30px, 3.5vw, 40px);
    }
}

@media (min-width: 1440px) {
    .roi-breakdown {
        max-width: 1600px;
    }
    
    .roi-grid {
        gap: clamp(32px, 3.5vw, 48px);
    }
    
    .roi-card {
        padding: clamp(32px, 3.5vw, 48px);
        min-height: 240px;
    }
}

/* Viral Social Sharing Section */
.viral-section {
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    margin-top: 40px;
}

.viral-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-primary);
}


.viral-strategy {
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.viral-strategy:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.viral-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.viral-strategy h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.viral-strategy.instagram h4 { color: #E4405F; }
.viral-strategy.twitter h4 { color: #1DA1F2; }
.viral-strategy.youtube h4 { color: #FF0000; }

.viral-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.viral-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.viral-result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.viral-strategy.instagram .viral-result {
    background: rgba(228, 64, 95, 0.2);
    color: #E4405F;
}

.viral-strategy.twitter .viral-result {
    background: rgba(29, 161, 242, 0.2);
    color: #1DA1F2;
}

.viral-strategy.youtube .viral-result {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

.viral-total {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.viral-total h4 {
    font-size: 24px;
    color: #10B981;
    margin-bottom: 10px;
}

.viral-total p {
    font-size: 20px;
    margin: 0;
}

.viral-total strong {
    color: #10B981;
    font-weight: 700;
}

/* Social Icons */
.social-icons-display {
    text-align: center;
    margin: 20px 0;
}

.social-icons-display i {
    font-size: 80px;
    color: white;
    margin: 0 10px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* ROI & Viral Sections - Responsive */
@media (max-width: 1024px) {
    .roi-section { padding: 60px 0; }
    .roi-breakdown { margin: 40px 20px; }
    .roi-formula { padding: 35px 25px; }
    .roi-formula h3 { font-size: 28px; }
    .roi-grid { gap: 16px; }
    .viral-section { padding: 35px 25px; }
    .viral-section h3 { font-size: 26px; }
}

@media (max-width: 768px) {
    .roi-section { padding: 50px 0; }
    .roi-breakdown { margin: 30px 16px; }
    .roi-formula { padding: 30px 20px; }
    .roi-formula h3 { font-size: 24px; margin-bottom: 25px; }
    .roi-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .roi-card { padding: 20px 16px; }
    .roi-value { font-size: 28px; }
    .growth-trajectory { padding: 30px 20px; }
    .growth-item { flex-direction: column; text-align: center; gap: 12px; }
    .growth-month { min-width: auto; margin-bottom: 8px; }
    .growth-revenue { font-size: 20px; }
    .growth-item.month-6 .growth-revenue { font-size: 24px; }
    .viral-section { padding: 30px 20px; margin-top: 30px; }
    .viral-section h3 { font-size: 22px; }
    .viral-grid { gap: 20px; }
    .viral-strategy { padding: 20px 16px; }
    .social-icons-display i { font-size: 60px; }
}

@media (max-width: 480px) {
    .roi-section { padding: 40px 0; }
    .roi-breakdown { margin: 25px 12px; }
    .roi-formula { padding: 25px 16px; }
    .roi-formula h3 { font-size: 20px; }
    .roi-grid { grid-template-columns: 1fr; gap: 12px; }
    .roi-card { padding: 18px 14px; }
    .roi-value { font-size: 24px; }
    .roi-label { font-size: 13px; }
    .roi-description { font-size: 11px; }
    .growth-trajectory { padding: 25px 16px; }
    .growth-trajectory h3 { font-size: 20px; }
    .growth-timeline { gap: 16px; }
    .growth-item { padding: 16px 12px; }
    .growth-month { font-size: 18px; }
    .growth-details .title { font-size: 15px; }
    .growth-details .description { font-size: 13px; }
    .growth-revenue { font-size: 18px; }
    .growth-item.month-6 .growth-revenue { font-size: 20px; }
    .roi-highlight { padding: 16px; }
    .roi-highlight .main-stat { font-size: 16px; }
    .roi-highlight .sub-stat { font-size: 14px; }
    .viral-section { padding: 25px 16px; }
    .viral-section h3 { font-size: 20px; }
    .viral-grid { grid-template-columns: 1fr; gap: 16px; }
    .viral-strategy { padding: 18px 14px; }
    .viral-strategy h4 { font-size: 16px; }
    .viral-list li { font-size: 13px; }
    .viral-result { font-size: 13px; padding: 8px; }
    .viral-total { padding: 16px; }
    .viral-total h4 { font-size: 20px; }
    .viral-total p { font-size: 16px; }
    .social-icons-display i { font-size: 50px; margin: 0 5px; }
}

@media (max-width: 375px) {
    .roi-formula h3 { font-size: 18px; }
    .roi-value { font-size: 20px; }
    .growth-month { font-size: 16px; }
    .growth-revenue { font-size: 16px; }
    .growth-item.month-6 .growth-revenue { font-size: 18px; }
    .viral-section h3 { font-size: 18px; }
    .viral-total h4 { font-size: 18px; }
    .viral-total p { font-size: 15px; }
    .social-icons-display i { font-size: 40px; }
}

/* ===== Performance Optimizations for Mobile ===== */
@media only screen and (max-width: 768px) {
    /* Reduce animations on mobile for performance */
    .floating-card {
        animation-duration: 4s;
    }
    
    .preview-timer {
        animation-duration: 3s;
    }
    
    /* Simplify gradients on mobile */
    .hero::before {
        background: rgba(99, 102, 241, 0.05);
    }
    
    /* Reduce shadows for better performance */
    .feature-card,
    .testimonial-card,
    .pricing-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    /* Optimize images for mobile */
    .trust-badges img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .floating-card {
            animation: none;
        }
        
        .preview-timer {
            animation: none;
        }
        
        * {
            transition-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
        }
    }
}

@media (min-width:768px) {
    .proof-number{
   font-size: 20px;
}
    
}

@media (min-width:1200px) {
    .roi-value{
         font-size: 36px;
    }
    .viral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.calc-value{
    font-size: 24px;
}
.proof-number{
   font-size: 34px;
}
}