/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default underline from all links */
a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal scroll */
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure all sections don't overflow */
.section {
    overflow-x: hidden;
    width: 100%;
}

/* CSS Variables for Theme */
:root {
    /* Light mode colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-hover: rgba(255, 255, 255, 0.9);
    
    /* Footer colors - Light mode */
    --footer-bg: #f8fafc;
    --footer-text: #475569;
    --footer-text-muted: #64748b;
    --footer-border: #e2e8f0;
    --footer-social-bg: rgba(15, 23, 42, 0.1);
    --footer-social-text: #475569;
    --footer-social-border: rgba(15, 23, 42, 0.1);
    
    /* Brand colors */
    --primary: #10b981;
    --primary-hover: #059669;
    --secondary: #3b82f6;
    --accent: #8b5cf6;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Dark mode variables */
@media (prefers-color-scheme: dark) {
    :root {
        /* Footer colors - Dark mode */
        --footer-bg: #0f172a;
        --footer-text: #e2e8f0;
        --footer-text-muted: #94a3b8;
        --footer-border: rgba(255, 255, 255, 0.1);
        --footer-social-bg: rgba(255, 255, 255, 0.1);
        --footer-social-text: rgba(255, 255, 255, 0.7);
        --footer-social-border: rgba(255, 255, 255, 0.1);
    }
}

/* Manual dark mode class */
.dark-mode {
    /* Footer colors - Dark mode */
    --footer-bg: #0f172a;
    --footer-text: #e2e8f0;
    --footer-text-muted: #94a3b8;
    --footer-border: rgba(255, 255, 255, 0.1);
    --footer-social-bg: rgba(255, 255, 255, 0.1);
    --footer-social-text: rgba(255, 255, 255, 0.7);
    --footer-social-border: rgba(255, 255, 255, 0.1);
}

/* Dark mode colors */
.dark-mode {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --surface: rgba(30, 41, 59, 0.8);
    --surface-hover: rgba(30, 41, 59, 0.9);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 100;
    transition: all 0.3s ease;
}

.sticky-nav {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.dark-mode .sticky-nav {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.nav-logo {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    z-index: 101;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 101;
    touch-action: manipulation;
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.theme-icon {
    position: absolute;
    transition: all 0.3s ease;
}

.light-mode .moon-icon {
    opacity: 0;
    transform: rotate(180deg);
}

.dark-mode .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
}

.cta-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%, 
        var(--bg-primary) 70%, 
        var(--bg-secondary) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 0.95) 50%, 
        rgba(241, 245, 249, 0.9) 100%);
}

/* Modern Geometric Shapes */
.gradient-orb {
    position: absolute;
    opacity: 0.25;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #10b981, #059669);
    top: 15%;
    right: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg);
}

.orb-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    bottom: 25%;
    left: 8%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(-30deg);
}

.orb-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    top: 40%;
    left: 15%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(60deg);
}

/* Additional precision shapes */
.hero-background::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 25%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    opacity: 0.2;
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    transform: rotate(15deg);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    opacity: 0.18;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-45deg);
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--spacing-xl);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.hero-title-large {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    display: block;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #10b981, #06b6d4, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: var(--spacing-2xl) auto;
    transition: all 0.3s ease;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: var(--spacing-xl) auto;
}

.phone-frame {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.video-frame {
    position: absolute;
    top: 10.4%;
    left: 6.25%;
    width: 87.5%;
    height: 79.2%;
    border-radius: 3px;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.phone-mockup:hover .phone-frame {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 3px 10px rgba(0, 0, 0, 0.04);
}

/* Phone Mockup Dark Mode */
.dark-mode .phone-frame rect[fill="#1a1a1a"] {
    fill: #2d3748;
}

.dark-mode .phone-frame rect[stroke="#333"] {
    stroke: #4a5568;
}

.dark-mode .phone-frame rect[fill="#000"] {
    fill: #1a202c;
}

.dark-mode .phone-frame circle[fill="#333"],
.dark-mode .phone-frame rect[fill="#333"] {
    fill: #4a5568;
}

/* Mobile Video Wrapper - Hidden on Desktop */
.mobile-video-wrapper {
    display: none;
}

/* Video Container Responsive */
@media (max-width: 768px) {
    .video-container {
        position: relative;
        width: 100%;
        max-width: 90%;
        margin: var(--spacing-xl) auto;
        padding: 0;
        height: auto;
    }
    
    .phone-mockup {
        display: none;
    }
    
    .mobile-video-wrapper {
        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.08),
            0 4px 16px rgba(0, 0, 0, 0.04),
            0 2px 8px rgba(0, 0, 0, 0.02);
        background: #ffffff;
        border: 3px solid #ffffff;
    }
    
    .mobile-video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 13px;
        border: none;
    }
}

@media (max-width: 480px) {
    .video-container {
        max-width: 95%;
        margin: var(--spacing-lg) auto;
    }
    
    .mobile-video-wrapper {
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
        border-radius: var(--radius-lg);
        margin: 0 auto;
    }
    
    .mobile-video-wrapper iframe {
        border-radius: var(--radius-lg);
    }
}

/* Video Container Dark Mode - Mobile */
@media (max-width: 768px) {
    .dark-mode .mobile-video-wrapper {
        background: #1e293b;
        border: 3px solid rgba(255, 255, 255, 0.1);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 4px 16px rgba(0, 0, 0, 0.2),
            0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode .mobile-video-wrapper:hover {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.4),
            0 6px 20px rgba(0, 0, 0, 0.3),
            0 3px 10px rgba(0, 0, 0, 0.2);
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-3xl);
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 500;
}

.feature-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-xl);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(74, 144, 226, 0.3);
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2c5aa0 100%);
}

.cta-primary:hover svg {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.cta-primary svg {
    transition: transform 0.3s ease;
}

.cta-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.cta-primary.large {
    padding: var(--spacing-xl) var(--spacing-3xl);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.cta-primary.large::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 ease;
}

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

.price-badge {
    text-align: center;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Section Styles */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.solution-logo {
    display: block;
    margin: var(--spacing-lg) 0;
    max-width: 200px;
    height: auto;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

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

/* Mockup Section */
.mockup-section {
    background: var(--bg-primary);
    padding: var(--spacing-lg) 0;
    overflow: visible;
}

.mockup-container {
    text-align: center;
    max-width: 100%;
}

.mockup-intro {
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.intro-title {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
}

.intro-logo {
    width: 360px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.intro-logo:hover {
    transform: scale(1.05);
}

.mockup-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.mockup-image:hover {
    transform: translateY(-5px);
}

.product-description {
    margin-top: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-md);
    overflow: visible;
}

.description-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 50%, 
        rgba(241, 245, 249, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.description-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.description-logo {
    width: 280px;
    height: auto;
    margin: 0 auto var(--spacing-lg) auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.description-logo:hover {
    transform: scale(1.05);
}

.description-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.description-highlight {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(147, 197, 253, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.highlight-icon {
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.highlight-icon svg {
    color: white;
    width: 20px;
    height: 20px;
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mockup-section {
        padding: var(--spacing-md) 0;
    }
    
    .mockup-intro {
        margin-bottom: var(--spacing-xl);
    }
    
    .intro-title {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }
    
    .intro-logo {
        width: 280px;
    }
    
    .description-logo {
        width: 220px;
    }
    
    .mockup-image {
        border-radius: var(--radius-md);
    }
    
    .product-description {
        margin-top: var(--spacing-lg);
        padding: var(--spacing-lg) var(--spacing-md);
        overflow: visible;
    }
    
    .description-content {
        padding: var(--spacing-xl);
    }
    
    .description-title {
        font-size: 1.5rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .description-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        align-self: center;
    }
}

/* Problems Section */
.problems {
    background: linear-gradient(180deg, 
        var(--bg-secondary) 0%, 
        var(--bg-secondary) 80%, 
        var(--bg-tertiary) 100%);
    position: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.problem-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.problem-card p {
    color: var(--text-secondary);
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.solution-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.solution-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.solution-feature {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.solution-feature h4 {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.solution-feature p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.process-step {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    bottom: -20px;
    width: 2px;
    height: 20px;
    background: var(--gradient-primary);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Comparison Section */
.comparison {
    background: var(--bg-secondary);
}

.comparison-table {
    background: var(--surface);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-2xl);
}

.table-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--surface));
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    border-top: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(59, 130, 246, 0.05);
}

.table-row.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.table-row.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.table-cell {
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1.4;
}

.table-header .table-cell {
    color: var(--text-primary);
    justify-content: center;
    text-align: center;
}

.table-row .table-cell:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.table-row.highlight .table-cell {
    font-weight: 600;
    color: var(--primary);
}

.table-row.highlight .table-cell strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bonus Premium Section */
.bonus-premium {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.bonus-premium-container {
    max-width: 900px;
    margin: var(--spacing-2xl) auto;
    padding: 0 var(--spacing-lg);
}

.bonus-premium-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 25%,
        rgba(255, 165, 0, 0.12) 50%,
        rgba(255, 140, 0, 0.08) 75%,
        rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid;
    border-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 165, 0, 0.4) 50%,
        rgba(255, 255, 255, 0.3) 100%) 1;
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: 
        0 8px 32px rgba(255, 165, 0, 0.15),
        0 2px 16px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.bonus-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 200, 87, 0.08) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 24px;
}

.bonus-premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    border-radius: 24px;
}

.bonus-premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(255, 165, 0, 0.25),
        0 4px 24px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    border-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 165, 0, 0.6) 50%,
        rgba(255, 255, 255, 0.5) 100%) 1;
}

.bonus-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.bonus-header {
    margin-bottom: var(--spacing-lg);
}

.bonus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 6px 24px rgba(251, 191, 36, 0.3);
    animation: bonusIconFloat 3s ease-in-out infinite;
}

.bonus-icon svg {
    color: white;
}

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

.bonus-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bonus-image {
    margin: var(--spacing-lg) 0;
    display: flex;
    justify-content: center;
}

.bonus-gift-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 165, 0, 0.15) 50%,
        rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid;
    border-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 165, 0, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 100%) 1;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(255, 165, 0, 0.2),
        0 2px 16px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: bonusGiftPulse 2s ease-in-out infinite;
}

.bonus-gift-box svg {
    color: var(--primary);
}

@keyframes bonusGiftPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 16px 50px rgba(16, 185, 129, 0.2); }
}

.bonus-description {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-main-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.bonus-options {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.bonus-option {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 165, 0, 0.08) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 
        0 4px 16px rgba(255, 165, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-option:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(255, 165, 0, 0.2),
        0 2px 12px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 165, 0, 0.12) 50%,
        rgba(255, 255, 255, 0.25) 100%);
}

.bonus-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.bonus-option-icon svg {
    color: white;
}

.bonus-option span {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
    flex: 1;
}

.bonus-option strong {
    color: var(--primary);
    font-weight: 600;
}

.bonus-flexible {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 165, 0, 0.12) 50%,
        rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 16px rgba(255, 165, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flexible-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    animation: bonusRotate 3s linear infinite;
}

.flexible-icon svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

@keyframes bonusRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-flexible h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-sm) 0;
}

.bonus-flexible p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.bonus-cta {
    text-align: center;
}

.bonus-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.bonus-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    color: white;
}

.bonus-link svg {
    transition: transform 0.3s ease;
}

.bonus-link:hover svg {
    transform: translateX(3px);
}

/* Dark mode styles for bonus section */
.dark-mode .bonus-premium-card {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.4) 0%,
        rgba(51, 65, 85, 0.3) 25%,
        rgba(255, 165, 0, 0.15) 50%,
        rgba(255, 140, 0, 0.12) 75%,
        rgba(30, 41, 59, 0.35) 100%);
    border-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 165, 0, 0.5) 50%,
        rgba(255, 255, 255, 0.2) 100%) 1;
    box-shadow: 
        0 8px 32px rgba(255, 165, 0, 0.2),
        0 2px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.dark-mode .bonus-premium-card::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 200, 87, 0.12) 0%, transparent 60%);
}

.dark-mode .bonus-premium-card:hover {
    border-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 165, 0, 0.7) 50%,
        rgba(255, 255, 255, 0.3) 100%) 1;
    box-shadow: 
        0 16px 48px rgba(255, 165, 0, 0.3),
        0 4px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.dark-mode .bonus-gift-box {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%, 
        rgba(255, 165, 0, 0.2) 50%,
        rgba(51, 65, 85, 0.5) 100%);
    border-image: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 165, 0, 0.7) 50%,
        rgba(255, 255, 255, 0.2) 100%) 1;
    box-shadow: 
        0 8px 32px rgba(255, 165, 0, 0.25),
        0 2px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.dark-mode .bonus-option {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.5) 0%, 
        rgba(255, 165, 0, 0.12) 50%,
        rgba(51, 65, 85, 0.4) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(255, 165, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-mode .bonus-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%, 
        rgba(255, 165, 0, 0.18) 50%,
        rgba(51, 65, 85, 0.5) 100%);
    box-shadow: 
        0 8px 24px rgba(255, 165, 0, 0.25),
        0 2px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.dark-mode .bonus-flexible {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.5) 0%, 
        rgba(255, 165, 0, 0.15) 50%,
        rgba(51, 65, 85, 0.4) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(255, 165, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Pricing Section */
.pricing {
    background: var(--bg-secondary);
    position: relative;
    overflow: visible;
    padding-bottom: var(--spacing-2xl);
}

/* Coupon Section */
.coupon-section {
    animation: fadeInUp 0.6s ease-out;
}

.coupon-code:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    border-color: var(--primary) !important;
}

.coupon-code:active {
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background animations removed for better performance */

.pricing .container {
    position: relative;
    z-index: 2;
}

/* Animation keyframes removed for better performance */

/* Geometric shapes and particles removed for better performance */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-2xl);
}

.pricing-grid.pricing-single {
    grid-template-columns: 1fr;
    max-width: 400px;
    justify-items: center;
}

.pricing-card {
    background: linear-gradient(145deg, var(--surface) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(145deg, 
        rgba(255, 165, 0, 0.12) 0%, 
        rgba(255, 200, 87, 0.08) 30%,
        var(--surface) 60%, 
        rgba(255, 165, 0, 0.06) 100%);
    border: 2px solid rgba(255, 165, 0, 0.4);
    transform: scale(1.03);
    box-shadow: 0 12px 36px rgba(255, 165, 0, 0.2);
}

.pricing-card.featured::after {
    content: 'TERPOPULER';
    position: absolute;
    top: 15px;
    right: -25px;
    transform: rotate(35deg);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-2xl);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    z-index: 10;
    min-width: 80px;
    text-align: center;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(255, 255, 255, 0.1));
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.featured-badge {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price {
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    opacity: 0.7;
}

.current-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
}

.current-price::after {
    content: '/sekali bayar';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-lg) 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    padding: var(--spacing-xs) 0;
    transition: all 0.2s ease;
}

.pricing-feature:hover {
    transform: translateX(4px);
}

.pricing-feature svg {
    color: var(--success);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 2px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
}

.pricing-feature span {
    font-weight: 500;
    line-height: 1.4;
}

.pricing-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(255, 255, 255, 0.1));
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    box-sizing: border-box;
}

.pricing-cta::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 ease;
}

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

.pricing-cta:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.featured-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-weight: 800;
}

.featured-cta:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #059669, #10b981) !important;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .resell-benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefit-item {
        padding: var(--spacing-lg);
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-content h3 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .benefit-icon {
        align-self: center;
    }
}

/* Guarantee Section */
.guarantee {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    margin: 0 0 var(--spacing-xl) 0;
    margin-top: calc(-1 * var(--spacing-lg));
}

.guarantee-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.guarantee-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: #16a34a;
}

.guarantee-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding-bottom: var(--spacing-3xl);
    overflow: visible;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 50%, 
        rgba(241, 245, 249, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(147, 197, 253, 0.5) 50%, 
        transparent 100%);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(147, 197, 253, 0.4);
}

.faq-item.active {
    background: linear-gradient(135deg, 
        rgba(147, 197, 253, 0.15) 0%, 
        rgba(219, 234, 254, 0.2) 50%, 
        rgba(191, 219, 254, 0.15) 100%);
    border-color: rgba(147, 197, 253, 0.5);
    box-shadow: 
        0 6px 25px rgba(59, 130, 246, 0.15),
        0 2px 6px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    line-height: 1.4;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-question svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b7280;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-item:hover .faq-question svg {
    color: #3b82f6;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
    padding: 0 1.25rem 1.25rem;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.875rem;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(147, 197, 253, 0.2);
}

.faq-section {
    margin-bottom: 1rem;
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-section h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(147, 197, 253, 0.2);
}

.faq-answer ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
    list-style: none;
}

.faq-answer li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 0.75rem;
}

.faq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.faq-answer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* FAQ Dark Mode */
.dark-mode .faq-item {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%, 
        rgba(51, 65, 85, 0.8) 50%, 
        rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid rgba(51, 65, 85, 0.6);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-mode .faq-item::before {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.4) 50%, 
        transparent 100%);
}

.dark-mode .faq-item:hover {
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
}

.dark-mode .faq-item.active {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(30, 58, 138, 0.3) 50%, 
        rgba(59, 130, 246, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 
        0 6px 25px rgba(59, 130, 246, 0.3),
        0 2px 6px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.dark-mode .faq-answer p {
    border-top: 1px solid rgba(59, 130, 246, 0.3);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-list {
        max-width: 100%;
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-question svg {
        width: 16px;
        height: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
        max-height: 120px;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .faq-list {
        padding: 0 0.75rem;
    }
    
    .faq-question {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .faq-question span {
        padding-right: 0.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0.875rem 0.875rem;
        max-height: 100px;
    }
    
    .faq-answer p {
        font-size: 0.75rem;
        padding-top: 0.375rem;
    }
}

/* Final CTA Section */
.final-cta {
    background: var(--bg-secondary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

/* Final CTA Responsive */
@media (max-width: 768px) {
    .cta-content {
        padding: 0 var(--spacing-md);
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-md);
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.25rem;
        line-height: 1.4;
        word-break: break-word;
        hyphens: auto;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* Footer */
.footer {
    background: #f8fafc !important; /* Strong fallback for light mode */
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
    border-top: 1px solid #e2e8f0 !important; /* Strong fallback for light mode */
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Light mode explicit styling */
:root .footer,
body:not(.dark-mode) .footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}

/* Light mode footer elements */
body:not(.dark-mode) .footer-logo {
    color: #0f172a !important;
}

body:not(.dark-mode) .footer-brand p {
    color: #475569 !important;
}

body:not(.dark-mode) .footer-bottom {
    border-top: 1px solid #e2e8f0 !important;
}

body:not(.dark-mode) .footer-bottom p {
    color: #475569 !important;
}

body:not(.dark-mode) .footer-social a {
    background: rgba(15, 23, 42, 0.1) !important;
    color: #475569 !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

/* CSS variables support */
.footer {
    background: var(--footer-bg, #f8fafc) !important;
    border-top: 1px solid var(--footer-border, #e2e8f0) !important;
}

/* Explicit dark mode footer styling */
.dark-mode .footer {
    background: #0f172a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Dark mode hero background */
.dark-mode .hero {
    background: linear-gradient(180deg, 
        var(--bg-primary) 0%, 
        var(--bg-primary) 70%, 
        var(--bg-secondary) 100%);
}

.dark-mode .hero-background {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 1) 0%, 
        rgba(30, 41, 59, 0.95) 50%, 
        rgba(51, 65, 85, 0.9) 100%);
}

.dark-mode .gradient-orb {
    opacity: 0.3;
}

.dark-mode .orb-1 {
    background: linear-gradient(45deg, #34d399, #10b981);
}

.dark-mode .orb-2 {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.dark-mode .orb-3 {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.dark-mode .hero-background::before {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    opacity: 0.25;
}

.dark-mode .hero-background::after {
    background: linear-gradient(135deg, #f87171, #ef4444);
    opacity: 0.22;
}

.dark-mode .footer-logo {
    color: #e2e8f0 !important;
}

.dark-mode .footer-brand p {
    color: #94a3b8 !important;
}

.dark-mode .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dark-mode .footer-bottom p {
    color: #94a3b8 !important;
}

.dark-mode .footer-social a {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--footer-text);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    transition: color 0.3s ease;
}

.footer-logo svg {
    color: var(--primary);
    width: clamp(28px, 4vw, 36px);
    height: clamp(28px, 4vw, 36px);
}

.footer-brand p {
    color: var(--footer-text-muted);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.footer-brand-logo {
    display: block;
    margin: var(--spacing-lg) auto;
    max-width: 350px;
    height: auto;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    padding-top: clamp(1rem, 3vw, 1.5rem);
    border-top: 1px solid var(--footer-border);
    transition: border-color 0.3s ease;
}

.footer-bottom p {
    color: var(--footer-text-muted);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin: 0;
    transition: color 0.3s ease;
}

.footer-social {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    justify-content: center;
}

.footer-social a {
    width: clamp(40px, 5vw, 48px);
    height: clamp(40px, 5vw, 48px);
    background: var(--footer-social-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-social-text);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--footer-social-border);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: var(--primary);
}

.footer-social a svg {
    width: clamp(18px, 3vw, 22px);
    height: clamp(18px, 3vw, 22px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Countdown Timer */
.countdown-timer {
    position: fixed;
    top: 50%;
    right: var(--spacing-lg);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
}

.dark-mode .countdown-timer {
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--border-color);
}

.countdown-header {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-family: 'Inter', monospace;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.countdown-item span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    min-width: 24px;
    text-align: center;
}

.countdown-item small {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 2px;
}

.countdown-timer:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.countdown-timer.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(100%);
}

.countdown-timer.fade-out {
    animation: fadeOutSlide 0.5s ease-in-out forwards;
}

@keyframes fadeOutSlide {
    0% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hide desktop nav menu on tablet and mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: flex; /* Keep flex for mobile menu functionality */
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        height: auto !important;
        width: auto !important;
        padding: 0 !important;
        border: none !important;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    color: var(--text-primary);
    z-index: 101;
    position: relative;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    margin: 2px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .header {
        top: var(--spacing-sm);
        left: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    .nav-container {
        padding: var(--spacing-sm) var(--spacing-md);
        position: relative;
    }
    
    .nav-title {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: var(--spacing-sm);
        right: var(--spacing-sm);
        width: calc(100% - 2 * var(--spacing-sm));
        height: auto;
        max-height: calc(100vh - 120px);
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: var(--spacing-lg);
        gap: var(--spacing-lg);
        transition: all 0.3s ease;
        z-index: 99;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
    }
    
    .dark-mode .nav-menu {
        background: rgba(15, 23, 42, 0.7);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-actions {
        gap: var(--spacing-sm);
        order: 2;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .countdown-timer {
        position: fixed;
        top: 80px;
        right: var(--spacing-md);
        min-width: 120px;
        padding: var(--spacing-xs) var(--spacing-sm);
        z-index: 98;
        transform: none;
    }
    
    .countdown-header {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }
    
    .countdown-display {
        gap: 2px;
    }
    
    .countdown-item span {
        font-size: 0.8rem;
        min-width: 18px;
        padding: 2px 4px;
    }
    
    .countdown-item small {
        font-size: 0.5rem;
    }
    
    .countdown-separator {
        font-size: 0.7rem;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-features {
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .cta-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        width: 100%;
        max-width: none;
    }
    
    .comparison-table {
        border-radius: var(--radius-lg);
        overflow: visible;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        display: block;
        background: var(--surface);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        margin-bottom: var(--spacing-lg);
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-md);
    }
    
    .table-row.highlight {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
        border: 2px solid var(--primary);
        transform: none;
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.2);
    }
    
    .table-cell {
        display: block;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }
    
    .table-cell:last-child {
        border-bottom: none;
    }
    
    .table-cell:before {
        content: attr(data-label) ': ';
        font-weight: 700;
        display: inline;
        color: var(--primary);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .table-row .table-cell:first-child:before {
        content: '';
    }
    
    .table-row .table-cell:first-child {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        border-bottom: 2px solid var(--border-color);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .scroll-to-top {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 var(--spacing-xs);
    }
    
    .section-title {
        font-size: 1.3rem;
        line-height: 1.4;
        padding: 0 var(--spacing-sm);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .cta-primary {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    .cta-primary.large {
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1rem;
    }
    
    .pricing-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .pricing-card {
        padding: var(--spacing-lg);
        margin: 0 0 var(--spacing-lg) 0;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .pricing-features {
        font-size: 0.9rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .nav-container {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 50px;
    }
    
    .countdown-timer {
        top: 65px;
        right: var(--spacing-sm);
        min-width: 100px;
        padding: var(--spacing-xs);
        font-size: 0.75rem;
        transform: none;
    }
    
    .countdown-header {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .countdown-item span {
        font-size: 0.7rem;
        min-width: 16px;
        padding: 1px 3px;
    }
    
    .countdown-item small {
        font-size: 0.45rem;
    }
    
    .countdown-separator {
        font-size: 0.6rem;
    }
    
    .cta-button {
        font-size: 0.8rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .theme-toggle {
        width: 32px;
        height: 32px;
    }
    
    .hero-cta {
        gap: var(--spacing-sm);
    }
    
    .hero-features {
        gap: var(--spacing-sm);
    }
    
    .hero-features .feature {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    .nav-container {
        padding: var(--spacing-xs);
    }
    
    .nav-brand {
        font-size: 1rem;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .countdown-timer {
        top: 60px;
        right: var(--spacing-xs);
        min-width: 90px;
        padding: 2px 4px;
        font-size: 0.7rem;
        transform: none;
    }
    
    .countdown-header {
        font-size: 0.55rem;
        margin-bottom: 1px;
    }
    
    .countdown-item span {
        font-size: 0.65rem;
        min-width: 14px;
        padding: 1px 2px;
    }
    
    .countdown-item small {
        font-size: 0.4rem;
    }
    
    .countdown-separator {
        font-size: 0.55rem;
    }
    
    .cta-button {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .theme-toggle {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-toggle {
        padding: 4px;
    }
    
    .mobile-menu-toggle span {
        width: 16px;
        height: 1.5px;
    }
    
    .nav-menu {
         top: 45px;
     }
     
     .video-container {
         max-width: 98%;
         margin: var(--spacing-md) auto;
     }
     
     .mobile-video-wrapper {
         padding-bottom: 56.25%;
         border-radius: 12px;
         border-width: 2px;
     }
     
     .mobile-video-wrapper iframe {
         border-radius: 10px;
     }
 }
    
    .faq-item {
        margin: 0 var(--spacing-xs) var(--spacing-sm) var(--spacing-xs);
    }
    
    .table-cell:before {
        font-size: 0.8rem;
    }
    
    .footer-content {
        padding: 0 var(--spacing-sm);
    }
    
    .process-step::after {
        display: none;
    }
}

/* Print Styles */
@media print {
    .nav-container,
    .scroll-to-top {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding-top: 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-secondary: #000000;
    }
    
    .dark-mode {
        --border-color: #ffffff;
        --text-secondary: #ffffff;
    }
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }
    
    /* Responsive hero background shapes */
    .orb-1 {
        width: 150px;
        height: 150px;
        top: 10%;
        right: 5%;
    }
    
    .orb-2 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 5%;
    }
    
    .orb-3 {
        width: 60px;
        height: 60px;
        top: 35%;
        left: 10%;
    }
    
    .hero-background::before {
        width: 45px;
        height: 45px;
        top: 15%;
        right: 20%;
    }
    
    .hero-background::after {
        width: 30px;
        height: 30px;
        bottom: 10%;
        right: 10%;
    }
    
    .guarantee {
        margin-top: calc(-1 * var(--spacing-sm));
        margin-bottom: var(--spacing-lg);
    }
    
    .guarantee-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
        min-height: 90vh;
    }
    
    /* Extra small mobile hero shapes */
    .orb-1 {
        width: 120px;
        height: 120px;
        top: 8%;
        right: 3%;
    }
    
    .orb-2 {
        width: 80px;
        height: 80px;
        bottom: 15%;
        left: 3%;
    }
    
    .orb-3 {
        width: 50px;
        height: 50px;
        top: 30%;
        left: 8%;
    }
    
    .hero-background::before {
        width: 35px;
        height: 35px;
        top: 12%;
        right: 15%;
    }
    
    .hero-background::after {
        width: 25px;
        height: 25px;
        bottom: 8%;
        right: 8%;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 var(--spacing-xs);
        text-align: center;
    }
    
    .guarantee {
        margin-top: calc(-1 * var(--spacing-md));
        margin-bottom: var(--spacing-lg);
    }
    
    .guarantee-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
}

@media (max-width: 320px) {
    .section-title {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 var(--spacing-xs);
        margin-bottom: var(--spacing-md);
    }
    
    .highlight-green {
        font-size: 0.9em;
        padding: 0.3rem 0.6rem;
    }
}

/* Highlight Green Background */
.highlight-green {
    background: rgba(16, 185, 129, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.8em;
}

.dark-mode .highlight-green {
    background: rgba(16, 185, 129, 0.2);
}

/* Gradient Green Text */
.gradient-green {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.dark-mode .gradient-green {
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Dark Mode - Product Description */
.dark-mode .description-content {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.95) 0%, 
        rgba(51, 65, 85, 0.9) 50%, 
        rgba(71, 85, 105, 0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(148, 163, 184, 0.1);
}

.dark-mode .description-text {
    color: rgba(203, 213, 225, 0.9);
}

.dark-mode .description-highlight {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(147, 197, 253, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.dark-mode .highlight-text {
    color: rgba(241, 245, 249, 0.95);
}



.dark-mode .hero-subtitle {
    background: linear-gradient(135deg, #34d399, #22d3ee, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.dark-mode .pricing-card.featured {
    background: linear-gradient(145deg, 
        rgba(255, 165, 0, 0.15) 0%, 
        rgba(255, 200, 87, 0.1) 30%,
        rgba(30, 41, 59, 0.8) 60%, 
        rgba(255, 165, 0, 0.08) 100%);
    border: 2px solid rgba(255, 165, 0, 0.5);
    box-shadow: 0 12px 36px rgba(255, 165, 0, 0.25);
}

/* Comparison Summary */
.comparison-summary {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.comparison-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.comparison-summary .feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.comparison-summary .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.comparison-summary .feature-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.comparison-summary .feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
    background: rgba(59, 130, 246, 0.1);
    padding: var(--spacing-sm);
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.comparison-summary .feature-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.4;
    flex: 1;
}

@media (max-width: 768px) {
    .comparison-summary {
        margin-top: 1.5rem;
    }
    
    .comparison-summary .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 2000px;
        padding: 0 1rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-answer li {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    /* Dark Mode Mobile - Product Description */
    .dark-mode .description-content {
        background: linear-gradient(135deg, 
            rgba(15, 23, 42, 0.98) 0%, 
            rgba(30, 41, 59, 0.95) 50%, 
            rgba(51, 65, 85, 0.98) 100%);
        border: 1px solid rgba(148, 163, 184, 0.25);
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.4),
            0 1px 4px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(148, 163, 184, 0.15);
    }
    
    .dark-mode .description-text {
        color: rgba(203, 213, 225, 0.95);
        font-size: 1rem;
    }
    
    .dark-mode .description-title {
        font-size: 1.4rem;
    }
    

}

/* Imagination Text Styling */
.imagination-text {
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.imagination-quote {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        rgba(6, 182, 212, 0.05) 50%,
        rgba(59, 130, 246, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.imagination-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4, #3b82f6);
}

.imagination-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.quote-highlight {
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.quote-content {
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
    display: inline-block;
}





/* Dark Mode */
.dark-mode .imagination-quote {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.12) 0%, 
        rgba(6, 182, 212, 0.08) 50%,
        rgba(59, 130, 246, 0.12) 100%);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dark-mode .imagination-quote:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(16, 185, 129, 0.4);
}

.dark-mode .quote-content {
    color: rgba(148, 163, 184, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .imagination-quote {
        padding: var(--spacing-md);
        font-size: clamp(1rem, 2.2vw, 1.125rem);
    }
    

}

@media (max-width: 480px) {
    .imagination-quote {
        padding: var(--spacing-sm);
    }
    

}

/* Course Content Section */
.course-content {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.03) 0%, 
        rgba(6, 182, 212, 0.05) 50%,
        rgba(59, 130, 246, 0.03) 100%);
    position: relative;
    overflow: visible;
    padding: var(--spacing-3xl) 0;
}

.course-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.course-content .container {
    position: relative;
    z-index: 2;
}

.course-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    padding: 0 var(--spacing-xs);
}

.content-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

.content-item:hover::before {
    opacity: 1;
}

.content-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.content-item:hover .content-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.content-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.content-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Dark Mode Styles */
.dark-mode .content-item {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dark-mode .content-item:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dark-mode .content-text h4 {
    color: rgba(241, 245, 249, 0.95);
}

.dark-mode .content-text p {
    color: rgba(148, 163, 184, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .course-content-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0;
    }
    
    .content-item {
        padding: var(--spacing-md);
        margin: 0 var(--spacing-xs);
    }
    
    .content-icon {
        width: 40px;
        height: 40px;
    }
    
    .content-text h4 {
        font-size: 1rem;
    }
    
    .content-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-item {
        gap: var(--spacing-sm);
    }
    
    .content-icon {
        width: 36px;
        height: 36px;
    }
    
    .content-text h4 {
        font-size: 0.95rem;
    }
    
    .content-text p {
        font-size: 0.85rem;
    }
}

/* Bonus Premium Responsive */
@media (max-width: 768px) {
    .bonus-premium {
        padding: var(--spacing-lg) 0;
    }
    
    .bonus-premium-container {
        margin: var(--spacing-xl) auto;
        padding: 0 var(--spacing-md);
    }
    
    .bonus-premium-card {
        padding: var(--spacing-lg);
        border-radius: 20px;
        box-shadow: 
            0 6px 24px rgba(255, 165, 0, 0.12),
            0 2px 12px rgba(255, 255, 255, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    }
    
    .bonus-title {
        font-size: 2rem;
    }
    
    .bonus-icon {
        width: 60px;
        height: 60px;
    }
    
    .bonus-gift-box {
        width: 120px;
        height: 120px;
    }
    
    .bonus-gift-box svg {
        width: 80px;
        height: 80px;
    }
    
    .bonus-main-text {
        font-size: 1.1rem;
    }
    
    .bonus-option {
        padding: var(--spacing-md);
    }
    
    .bonus-option span {
        font-size: 0.95rem;
    }
    
    .bonus-flexible {
        padding: var(--spacing-lg);
    }
    
    .bonus-flexible h3 {
        font-size: 1.25rem;
    }
    
    .bonus-link {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-premium {
        padding: var(--spacing-md) 0;
    }
    
    .bonus-premium-container {
        margin: var(--spacing-lg) auto;
        padding: 0 var(--spacing-sm);
    }
    
    .bonus-premium-card {
        padding: var(--spacing-md);
        border-radius: 18px;
        box-shadow: 
            0 4px 20px rgba(255, 165, 0, 0.1),
            0 2px 10px rgba(255, 255, 255, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    }
    
    .bonus-title {
        font-size: 1.75rem;
    }
    
    .bonus-icon {
        width: 50px;
        height: 50px;
    }
    
    .bonus-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .bonus-gift-box {
        width: 100px;
        height: 100px;
    }
    
    .bonus-gift-box svg {
        width: 60px;
        height: 60px;
    }
    
    .bonus-main-text {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .bonus-option {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .bonus-option-icon {
        width: 32px;
        height: 32px;
    }
    
    .bonus-option-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .bonus-option span {
        font-size: 0.9rem;
    }
    
    .bonus-flexible {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }
    
    .bonus-flexible h3 {
        font-size: 1.1rem;
    }
    
    .bonus-flexible p {
        font-size: 0.9rem;
    }
    
    .flexible-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .bonus-link {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
        gap: var(--spacing-xs);
    }
    
    .bonus-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-orb {
        animation: none;
    }
}

/* Problem Title Enhanced Styling */
.problem-title-enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0 1rem 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.1) 0%, 
        rgba(220, 38, 38, 0.15) 50%, 
        rgba(185, 28, 28, 0.1) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.problem-title-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(239, 68, 68, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.problem-title-enhanced:hover::before {
    left: 100%;
}

.problem-title-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(239, 68, 68, 0.2),
        0 4px 8px rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: #ef4444;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
    animation: pulse-warning 2s infinite;
}

.problem-icon-svg svg {
    width: 100%;
    height: 100%;
}

.problem-title-main {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.problem-title-highlight {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, 
        #ef4444 0%, 
        #dc2626 50%, 
        #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    position: relative;
    z-index: 1;
}

@keyframes pulse-warning {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.5));
    }
}

/* Dark Mode Support */
.dark-mode .problem-title-enhanced {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.15) 0%, 
        rgba(220, 38, 38, 0.2) 50%, 
        rgba(185, 28, 28, 0.15) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.dark-mode .problem-title-enhanced:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 
        0 10px 30px rgba(239, 68, 68, 0.3),
        0 4px 8px rgba(239, 68, 68, 0.2);
}

.dark-mode .problem-title-main {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-title-enhanced {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .problem-icon-svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .problem-title-main,
    .problem-title-highlight {
        text-align: center;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .problem-title-enhanced {
        padding: 0.75rem 1rem;
        border-radius: 15px;
    }
    
    .problem-icon-svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* AI Made Popup */
.ai-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid #10b981;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    animation: aiPopupSlideIn 0.8s ease-out 1s forwards;
    max-width: 280px;
}

.ai-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #059669;
}

.ai-popup-icon {
    color: #15b290;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ai-popup-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
    word-wrap: break-word;
    flex: 1;
}

/* Dark mode styling */
.dark-mode .ai-popup {
    background: rgba(30, 41, 59, 0.3);
    border-color: #10b981;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.dark-mode .ai-popup:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(0, 0, 0, 0.25);
    border-color: #34d399;
}

.dark-mode .ai-popup-icon {
    color: #34d399;
}

/* Animation keyframes */
@keyframes aiPopupSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ai-popup {
        bottom: 16px;
        left: 16px;
        padding: 6px 8px;
        max-width: 250px;
    }
    
    .ai-popup-text {
        font-size: 11px;
    }
    
    .ai-popup-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .ai-popup {
        bottom: 12px;
        left: 12px;
        padding: 6px;
        max-width: 220px;
        gap: 6px;
    }
    
    .ai-popup-text {
        font-size: 10px;
        line-height: 1.1;
    }
    
    .ai-popup-icon {
        width: 14px;
        height: 14px;
    }
}

/* Enhanced Coupon Button Animations */
.coupon-code {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.coupon-code::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;
}

.coupon-code:hover::before {
    left: 100%;
}

.coupon-code.copying {
    pointer-events: none;
}

.coupon-text {
    transition: opacity 0.25s ease;
}

/* Confetti animation */
@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100px) rotate(720deg) scale(0.5);
    }
}

/* Floating notification animation */
@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(-20px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(-30px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px) scale(0.9);
    }
}

/* Pulse animation for coupon button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Shake animation for error states */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}