        /* Enhanced CSS Variables */
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --warning-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            --light-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-light: #718096;
            --text-white: #ffffff;
            
            --bg-primary: #ffffff;
            --bg-secondary: #f7fafc;
            --bg-accent: #edf2f7;
            
            --border-radius: 12px;
            --border-radius-lg: 20px;
            --border-radius-xl: 30px;
            
            --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
            --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
            --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Enhanced Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Magical Cursor Effect */
        .cursor-glow {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.8) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
            mix-blend-mode: difference;
        }

        /* Floating Particles Background */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 50%;
            animation: float-particle 20s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Enhanced Header */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            transition: var(--transition);
            padding: 1rem 0;
        }

        .main-header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-light);
            padding: 0.75rem 0;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 900;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.02em;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: var(--transition);
        }

        .logo:hover::after {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--glass-gradient);
            transition: var(--transition);
            z-index: -1;
        }

        .nav-links a:hover::before {
            left: 0;
        }

        .nav-links a:hover {
            color: #667eea;
            transform: translateY(-2px);
        }

        .header-cta {
            background: var(--primary-gradient);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .header-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: var(--transition);
        }

        .header-cta:hover::before {
            left: 100%;
        }

        .header-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-gradient);
            margin: 3px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
            box-shadow: var(--shadow-medium);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu .nav-links {
            flex-direction: column;
            padding: 2rem;
            gap: 1rem;
        }

        /* Spectacular Hero Section */
        .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #c4b5fd 0%, #ddd6fe 50%, #ede9fe 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 50px 0 20px; /* Reduced from 120px 0 80px */
}

/* Add multiple background layers for a richer effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Layer 1: Enhanced bubbles with more animation */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="20" r="3" fill="url(%23grad1)" opacity="0.9"><animate attributeName="cy" values="20;80;20" dur="8s" repeatCount="indefinite"/><animate attributeName="r" values="3;5;3" dur="8s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="4" fill="url(%23grad1)" opacity="0.7"><animate attributeName="cx" values="80;20;80" dur="10s" repeatCount="indefinite"/><animate attributeName="r" values="4;6;4" dur="10s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="2.5" fill="url(%23grad1)" opacity="0.8"><animate attributeName="r" values="2.5;4.5;2.5" dur="6s" repeatCount="indefinite"/><animate attributeName="cy" values="80;30;80" dur="6s" repeatCount="indefinite"/></circle><circle cx="65" cy="30" r="3.5" fill="url(%23grad1)" opacity="0.6"><animate attributeName="r" values="3.5;5.5;3.5" dur="7s" repeatCount="indefinite"/><animate attributeName="cx" values="65;35;65" dur="7s" repeatCount="indefinite"/></circle><circle cx="10" cy="60" r="2" fill="url(%23grad1)" opacity="0.7"><animate attributeName="r" values="2;4;2" dur="9s" repeatCount="indefinite"/><animate attributeName="cy" values="60;20;60" dur="9s" repeatCount="indefinite"/></circle></svg>');
    animation: float 15s ease-in-out infinite;
    opacity: 0.8;
}

/* Add a second layer with different bubbles */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Layer 2: Different pattern of bubbles */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad2" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="70" cy="70" r="4" fill="url(%23grad2)" opacity="0.6"><animate attributeName="r" values="4;7;4" dur="12s" repeatCount="indefinite"/></circle><circle cx="30" cy="50" r="3" fill="url(%23grad2)" opacity="0.5"><animate attributeName="cy" values="50;20;50" dur="11s" repeatCount="indefinite"/></circle><circle cx="50" cy="30" r="2" fill="url(%23grad2)" opacity="0.7"><animate attributeName="cx" values="50;70;50" dur="9s" repeatCount="indefinite"/></circle><circle cx="85" cy="85" r="5" fill="url(%23grad2)" opacity="0.4"><animate attributeName="r" values="5;8;5" dur="10s" repeatCount="indefinite"/></circle></svg>');
    animation: float 20s ease-in-out infinite reverse;
    opacity: 0.6;
}

        
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align the content */
    gap: 0.5rem; /* Control spacing between elements */

}

        .hero-section h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .subtitle {
            font-size: 1.2rem;
            margin-bottom: 0rem;
            opacity: 0.95;
            line-height: 1.4;
            font-weight: 400;
        }

        .hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem; /* Reduced from 4rem */
    margin: 3rem 0;
    flex-wrap: nowrap; /* Changed from wrap to nowrap to keep items in one line */
}


/* Tighter spacing around subtitle */
.animated-headline {
  margin-bottom: 0.25rem; /* Reduced space below headline */
}

.subtitle {
  margin-top: 0; /* Remove any top margin */
  margin-bottom: 0.5rem; /* Reduced space below subtitle */
  padding-top: 0; /* Remove any top padding */
  padding-bottom: 0; /* Remove any bottom padding */
}

/* If you need even tighter spacing */
.hero-content {
  gap: 0.25rem; /* Reduce the gap between flex items if using flexbox */
}

.stat-item {
    text-align: center;
    padding: 1rem; /* Reduced from 1.5rem */
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 120px; /* Reduced from 150px */
    flex: 1; /* Added to make items share available space equally */
}

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    max-width: 80%;
    width: fit-content;
    cursor: pointer; /* Add this to ensure cursor changes to pointer */
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.5);
}

.timer-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.3);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.5);
    backdrop-filter: blur(10px);
    margin-top: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center; /* Ensure text is centered */
    width: fit-content; /* Make it only as wide as its content */
    margin-left: auto; /* Center horizontally */
    margin-right: auto;
}

/* Add responsive adjustments for mobile */
@media (max-width: 768px) {
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: 90%;
    }
    
    .timer-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        max-width: 90%;
    }
}


        /* FIXED: Problem Section with Light Background */
        /* Problem Section with 2x2 Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 1.75rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border-left: 5px solid #ef4444;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '❌';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    opacity: 0.7;
}

.problem-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-left-color: #dc2626;
}

.problem-card strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    padding-right: 1.5rem; /* Make room for the X icon */
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
}



        .problem-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .problem-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 12s ease-in-out infinite;
        }

        .problem-content {
            position: relative;
            z-index: 2;
        }

        .problem-section h2 {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .problem-list {
            list-style: none;
            max-width: 800px;
            margin: 0 auto;
        }

        .problem-list li {
            background: white;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-light);
            border-left: 5px solid #ef4444;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .problem-list li::before {
            content: '❌';
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 1.5rem;
            opacity: 0.7;
        }

        .problem-list li:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-medium);
            border-left-color: #dc2626;
        }

        .problem-list li strong {
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .problem-list li p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* FIXED: Solution Section with Beautiful Light Background */
        .solution-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
            position: relative;
            overflow: hidden;
        }

        .solution-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        .solution-section::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

        .solution-section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            position: relative;
            z-index: 2;
        }

        .solution-section > .container > p {
            text-align: center;
            position: relative;
            z-index: 2;
            color: var(--text-secondary);
        }

        .solution-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .step-card {
            background: white;
            padding: 3rem;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-light);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--success-gradient);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .step-card:hover::before {
            transform: scaleX(1);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--success-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            margin: 0 auto 2rem;
            box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: var(--success-gradient);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
            100% { transform: scale(1); opacity: 0.3; }
        }

        .step-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .step-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Enhanced Features Section */
        .features-section {
            padding: 100px 0;
            background: var(--bg-secondary);
            position: relative;
        }

        .features-section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: white;
            padding: 3rem;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--glass-gradient);
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: var(--border-radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: white;
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        
.feature-card h3 {
    font-size: 1.3rem; /* Reduced from 1.4rem */
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Reduced from 1rem */
    position: relative;
    z-index: 2;
    flex-wrap: nowrap; /* Prevent wrapping */
    line-height: 1.2; /* Added to improve text layout */
}

.premium-badge {
    background: var(--secondary-gradient);
    color: white;
    padding: 0.25rem 0.5rem; /* Reduced horizontal padding from 0.75rem */
    border-radius: 20px;
    font-size: 0.7rem; /* Reduced from 0.75rem */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0; /* Prevent the badge from shrinking */
}

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /* Spectacular Demo Section */
        .demo-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .demo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(59,130,246,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(147,51,234,0.1);stop-opacity:1" /></linearGradient></defs><polygon points="20,10 30,30 10,30" fill="url(%23grad)" opacity="0.6"><animateTransform attributeName="transform" type="rotate" values="0 20 20;360 20 20" dur="20s" repeatCount="indefinite"/></polygon><polygon points="80,20 90,40 70,40" fill="url(%23grad)" opacity="0.4"><animateTransform attributeName="transform" type="rotate" values="360 80 30;0 80 30" dur="25s" repeatCount="indefinite"/></polygon></svg>');
            animation: float 20s ease-in-out infinite;
        }

        .demo-section h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            font-weight: 800;
            position: relative;
            z-index: 2;
        }

        .demo-video {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .demo-placeholder {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-xl);
            padding: 4rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            cursor: pointer;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .demo-placeholder:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.02);
        }

        .play-button {
            width: 100px;
            height: 100px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: var(--transition);
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
            position: relative;
        }

        .play-button::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--primary-gradient);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
        }

        .demo-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .demo-stat {
            text-align: center;
        }

                .demo-stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            background: var(--warning-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .demo-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Stunning Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 18s ease-in-out infinite;
        }

        .pricing-section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            position: relative;
            z-index: 2;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .pricing-card {
            background: white;
            padding: 3rem;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .pricing-card.premium {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        
.pricing-card.premium::before {
    content: '🔥 MOST POPULAR';
    position: absolute;
    top: 9px; /* Further adjusted if needed */
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-gradient);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-medium);
    z-index: 1;
}

        .pricing-card:not(.premium):hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .plan-price {
            text-align: center;
            margin-bottom: 2rem;
        }

        .plan-price {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
        }

        .plan-price span {
            font-size: 1.2rem;
            font-weight: 500;
            opacity: 0.7;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .plan-features li {
            padding: 0.75rem 0;
            position: relative;
            padding-left: 2rem;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        .plan-features li::before {
            content: '✅';
            position: absolute;
            left: 0;
            top: 0.75rem;
            font-size: 1.1rem;
        }

        .plan-features li.limited::before {
            content: '⚠️';
        }

        .plan-cta {
            display: block;
            text-align: center;
            background: var(--primary-gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.premium .plan-cta {
            background: white;
            color: #667eea;
        }

        .plan-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: var(--transition);
        }

        .plan-cta:hover::before {
            left: 100%;
        }

        .plan-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* Testimonials Section with Masonry Layout */
        .testimonials-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .testimonials-section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--bg-secondary);
            padding: 2.5rem;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: serif;
    line-height: 1;
}

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }

        .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    padding-top: 2rem; /* Added padding to move text down */
    padding-left: 0.5rem; /* Added a bit of left padding */
}

        .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .author-info {
        text-align: center;
    }
    
    .company-logo {
        margin-left: 0;
    }
}

        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .author-info h4 {
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .rating {
            font-size: 0.9rem;
            color: #f59e0b;
            font-weight: 600;
        }

        /* Interactive FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: var(--bg-secondary);
            position: relative;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 4rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-primary);
            transition: var(--transition);
            position: relative;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary-gradient);
            transform: scaleY(0);
            transition: var(--transition);
        }

        .faq-item.active .faq-question::before {
            transform: scaleY(1);
        }

        .faq-question:hover {
            color: #667eea;
        }

        .faq-question .icon {
            font-size: 1.5rem;
            font-weight: 300;
            transition: var(--transition);
            color: #667eea;
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-slow);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 2rem 2rem;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* Epic Final CTA Section */
        .final-cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(102,126,234,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(102,126,234,0);stop-opacity:0" /></radialGradient><radialGradient id="grad2" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(251,191,36,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(251,191,36,0);stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="30" r="15" fill="url(%23grad1)" opacity="0.6"><animate attributeName="r" values="15;25;15" dur="8s" repeatCount="indefinite"/></circle><circle cx="80" cy="70" r="20" fill="url(%23grad2)" opacity="0.4"><animate attributeName="r" values="20;30;20" dur="10s" repeatCount="indefinite"/></circle></svg>');
            animation: float 15s ease-in-out infinite;
        }

        .final-cta-section h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            font-weight: 900;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .final-cta-section p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1f2937;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: var(--transition);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 25px 60px rgba(251, 191, 36, 0.6);
        }

        /* Elegant Footer */
        .main-footer {
            background: #0f172a;
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }

        .footer-links a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        .main-footer p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--primary-gradient);
            z-index: 10000;
            transition: width 0.1s ease;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Fade-in Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-slow);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hover Lift Effect */
        .hover-lift {
            transition: var(--transition);
        }

        .hover-lift:hover {
            transform: translateY(-5px);
        }

        /* Add dynamic floating bubbles using the particles container */
.hero-section .particles-container {
    z-index: 1; /* Make sure particles are above the background but below the content */
}

        /* Floating Animation */
        @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(1deg) scale(1.02); }
    50% { transform: translateY(-5px) rotate(-1deg) scale(0.98); }
    75% { transform: translateY(-10px) rotate(0.5deg) scale(1.01); }
}

        
@media (max-width: 768px) {
    .header-content > .nav-links { /* More specific selector */
        display: none;
    }

            .pricing-card.premium::before {
        content: '🔥 POPULAR'; /* Shortened text */
        padding: 0.4rem 1.5rem; /* Reduced padding */
        font-size: 0.7rem; /* Smaller font */
        letter-spacing: 0.5px; /* Reduced letter spacing */
        white-space: nowrap; /* Prevent wrapping */
    }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .stat-item {
                min-width: 120px;
                padding: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .problem-section h2,
            .solution-section h2,
            .features-section h2,
            .demo-section h2,
            .pricing-section h2,
            .testimonials-section h2,
            .faq-section h2,
            .final-cta-section h2 {
                font-size: 2.2rem;
            }

            .solution-steps,
            .features-grid,
            .pricing-cards,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pricing-card.premium {
                transform: none;
            }

            .demo-stats {
                gap: 2rem;
            }

            .footer-links {
                gap: 1rem;
            }

            .header-content {
        justify-content: space-between;
        gap: 0.5rem; /* Add some gap between elements */
    }
    
    .logo {
        font-size: 1.5rem; /* Slightly smaller logo on mobile */
    }
    
    .mobile-menu-toggle {
        margin-left: 0.5rem; /* Add some space between button and toggle */
    }

            .container {
                padding: 0 20px;

            .header-cta {
        padding: 0.75rem 1rem; /* Reduced horizontal padding */
        font-size: 0.9rem; /* Slightly smaller font */
        white-space: nowrap; /* Prevent text wrapping */
    }
            }
        }

        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .pricing-card.premium::before {
        content: '🔥 MOST POPULAR'; /* Alternative shorter text */
        padding: 0.3rem 1rem; /* Even smaller padding */
        font-size: 0.65rem; /* Even smaller font */
        letter-spacing: 0; /* No letter spacing */
    }

            .header-cta {
        padding: 0.6rem 0.8rem; /* Further reduced padding */
        font-size: 0.85rem; /* Even smaller font */
            }

            .hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }

            .step-card,
            .feature-card,
            .testimonial-card {
                padding: 2rem;
            }

            .demo-placeholder {
                padding: 2rem;
                min-height: 300px;
            }

            .pricing-card {
                padding: 2rem;
            }

            .final-cta-section h2 {
                font-size: 2.5rem;
            }

            .cta-button {
                padding: 1.25rem 2rem;
                font-size: 1.1rem;
            }
        }

        /* ROI Calculator Styles */
.roi-calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.roi-calculator-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.calculator-inputs {
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.calculator-results {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calculator-inputs h3,
.calculator-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

@media (max-width: 420px) {
    .logo {
        font-size: 1.2rem; /* Smaller font size */
        white-space: nowrap; /* Ensure it stays on one line */
        letter-spacing: -0.5px; /* Tighter letter spacing */
    }
    
    .header-content {
        padding: 0 10px; /* Reduce padding to give more space */
    }
}

@media (max-width: 420px), (max-height: 920px) {
    /* Reduce padding throughout the site */
    .container {
        padding: 0 12px;
    }
    
    /* Make hero section more compact */
    .hero-section {
        padding: 30px 0 10px; /* Significantly reduced padding */
        min-height: auto; /* Remove fixed height */
    }
    
    /* Smaller headline text */
    .animated-headline {
        font-size: 1.8rem;
        padding-top: 15px;
    }
    
    /* Smaller subtitle */
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    /* Scale down floating resume */
    .floating-resume {
        transform: scale(0.6);
        margin: 0 auto;
    }
    
    /* Make stats more compact */
    .hero-stats.enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        margin: 5px auto;
    }
    
    .stat-item.enhanced {
        padding: 0.5rem 0.25rem;
    }
    
    .stat-number.enhanced {
        font-size: 1.5rem;
    }
    
    .stat-label.enhanced {
        font-size: 0.7rem;
    }
    
    /* Smaller CTA button */
    .hero-cta.enhanced {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    /* Smaller timer badge */
    .timer-badge.enhanced {
        transform: scale(0.8);
        margin: 0.25rem auto;
        padding: 0.5rem 0.75rem;
    }
    
    .timer-text {
        font-size: 0.8rem;
    }
    
    .countdown-item {
        min-width: 40px;
        padding: 0.2rem 0.4rem;
    }
    
    .countdown-value {
        font-size: 1rem;
    }
    
    /* Reduce section padding */
    .problem-section,
    .solution-section,
    .features-section,
    .demo-section,
    .pricing-section,
    .testimonials-section,
    .faq-section,
    .final-cta-section,
    .roi-calculator-section {
        padding: 50px 0;
    }
    
    /* Smaller section headings */
    .section-header h2,
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {
    /* Even smaller logo */
    .logo {
        font-size: 1rem;
    }
    
    /* Hide header CTA text on extremely small screens */
    .header-cta {
        padding: 0.5rem;
        width: 32px;
        height: 32px;
        overflow: hidden;
        white-space: nowrap;
        text-indent: -9999px;
        position: relative;
    }
    
    .header-cta::after {
        content: "+";
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        text-indent: 0;
        font-size: 1.2rem;
    }
    
    /* Further reduce hero elements */
    .animated-headline {
        font-size: 1.6rem;
    }
    
    /* Make floating resume even smaller */
    .floating-resume {
        transform: scale(0.5);
    }
}

@media (max-height: 700px) {
    /* Hide or extremely reduce floating resume on very short screens */
    .floating-resume {
        transform: scale(0.4);
        margin: 0 auto;
    }
    
    /* Reduce vertical spacing */
    .hero-content > * {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }
    
    /* Make hero section content scrollable if needed */
    .hero-section {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }
}

@media (max-width: 420px) {
    .mobile-menu-toggle {
        padding: 0.25rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
}


.input-group {
    margin-bottom: 1.5rem;
}

/* Custom dropdown wrapper for enhanced styling */
.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3rem;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .roi-header h2 {
        font-size: 2.5rem;
    }
    
    .roi-subheading {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

.input-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.range-with-value {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider {
    flex-grow: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 5px;
    appearance: none;
    outline: none;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-value {
    min-width: 60px;
    padding: 0.4rem 0.8rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}


/* Enhanced ROI Calculator Heading Styles */
.roi-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.roi-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.roi-accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.roi-underline {
    height: 6px;
    width: 120px;
    background: var(--primary-gradient);
    border-radius: 3px;
    margin: 0.8rem auto 0;
}

.roi-subheading {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.highlight-text {
    color: #667eea;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.5;
}

/* Enhanced Custom Dropdown Styling */
.select-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    background: white;
    font-size: 1rem;
    color: var(--text-primary);
    appearance: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.select-input:hover {
    border-color: #cbd5e0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.select-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.result-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.result-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-content {
    flex-grow: 1;
}

.result-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.result-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
}

.result-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.before, .after {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.before .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ef4444;
}

.after .value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #10b981;
}

.before .label, .after .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.personalized-message {
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-primary);
    border-left: 4px solid #667eea;
}

.calculator-cta {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    align-self: center;
}

.calculator-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Responsive adjustments for ROI Calculator */
@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 576px) {
    .result-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .result-icon {
        margin-bottom: 0.5rem;
    }
    
    .personalized-message {
        font-size: 0.95rem;
    }
}


        /* High-end Visual Effects */
        .glow-effect {
            position: relative;
        }

        .glow-effect::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            border-radius: inherit;
            filter: blur(20px);
            opacity: 0.3;
            z-index: -1;
        }

        /* Parallax Effect */
        .parallax {
            transform: translateZ(0);
            transition: transform 0.1s ease-out;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        }

        /* Selection Color */
        ::selection {
            background: rgba(102, 126, 234, 0.2);
            color: var(--text-primary);
        }

        /* Focus States for Accessibility */
        button:focus,
        a:focus,
        input:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        /* Print Styles */
        @media print {
            .main-header,
            .scroll-progress,
            .particles-container {
                display: none;
            }
        }


/* Testimonial Carousel Styles */
.testimonial-carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 350px;
        flex: 0 0 350px;
    }
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 1rem;
}

.author-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.linkedin-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.linkedin-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.author-details {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    text-align: left;
}

.company-logo {
    max-width: 80px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-left: 1rem;
}

.company-logo:hover {
    opacity: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e0;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active {
    background-color: #667eea;
    transform: scale(1.2);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.prev-btn, .next-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    z-index: 10;
}

.prev-btn:hover, .next-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
    .carousel-controls {
        display: none;
    }
    
    /* Responsive adjustments for testimonial author section */
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .author-info {
        text-align: center;
    }
    
    .company-logo {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        min-width: 260px;
        flex: 0 0 260px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* Feature Comparison Table Styles */
.feature-comparison {
    margin-bottom: 4rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.comparison-table th:first-child {
    text-align: left;
    width: 40%;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.comparison-table tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
}

@media (max-width: 1200px) {
    .plan-windows {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        justify-content: center;
    }
    
    .plan-window {
        width: calc(50% - 1rem); /* Two cards per row on medium screens */
        min-width: 240px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .plan-window {
        width: 100%; /* Full width on mobile */
        max-width: 320px;
    }
}

/* Compact Plan Windows */
.plan-windows {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Reduced gap to fit all cards */
    margin: 2rem auto;
    flex-wrap: nowrap; /* Changed from wrap to nowrap to keep in one row */
    max-width: 1200px;
    overflow-x: auto; /* Allow horizontal scrolling if needed */
    padding-bottom: 1rem; /* Add padding for scrollbar */
}

.plan-window {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    width: 260px; /* Slightly reduced width to fit all cards */
    min-width: 260px; /* Add min-width to prevent shrinking */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-window:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.plan-window.pro {
    border: 2px solid #667eea;
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary-gradient);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1;
}

.plan-window-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-window.pro .plan-window-header {
    padding-top: 2.5rem;
}

.plan-window-header h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a202c;
}

.price-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.price-tag {
    font-size: 3rem;
    font-weight: 1500;
    color: #000000;
    display: block;
    letter-spacing: -0.02em;
    line-height: 1;
}

.original-price {
    font-size: 1.3rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 0.5rem;
    display: inline-block;
    position: relative;
    top: -0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    display: inline-block;
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
    display: block; /* Changed from inline-block to block */
}

.price-breakdown {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.per-day-price {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.25rem;
}

.per-day-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
}

.savings-tag {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.25rem;
}

.discount-tag {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    right: -25px;
    transform: rotate(10deg);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
    0% { transform: rotate(10deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
    100% { transform: rotate(10deg) scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .original-price {
        font-size: 1.3rem;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
    
    .discount-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.7rem;
    }
}


.plan-window-price {
    position: relative;
    padding: 0.5rem 0;
}

.plan-window-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.plan-window-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-window-body p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.plan-window-body ul {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
}

.plan-window-body ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.plan-window-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
}

.plan-window-body ul li.spacer-item {
    height: 1rem;
    padding: 0;
}

.plan-window-body ul li.spacer-item::before {
    content: none;
}

.plan-window-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
}

.plan-window-cta {
    display: block;
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-window-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
    .plan-windows {
        gap: 2rem;
    }
    
    .plan-window {
        width: 100%;
        max-width: 320px;
    }
    
    .original-price {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .plan-window {
        width: 100%;
        max-width: 320px;
    }
}

/* Enhanced Section Headers - Global Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.section-underline {
    height: 6px;
    width: 120px;
    background: var(--primary-gradient);
    border-radius: 3px;
    margin: 0.8rem auto 0;
}

.section-subheading {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Reuse the highlight-text class we created earlier */
.highlight-text {
    color: #667eea;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-subheading {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

.percentage-highlight {
    color: #ef4444; /* Bright red color */
    font-weight: 900;
    background: none;
    -webkit-text-fill-color: #ef4444;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4338ca 0%, #7e22ce 50%, #a21caf 100%);
}

.hero-3d-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float-3d 20s infinite ease-in-out;
}

.shape1 {
  width: 300px;
  height: 300px;
  top: -5%;
  left: -5%;
  animation-delay: 0s;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.shape2 {
  width: 500px;
  height: 500px;
  top: 60%;
  right: -10%;
  animation-delay: -5s;
  background: radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
}

.shape3 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 15%;
  animation-delay: -10s;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.shape4 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: 20%;
  animation-delay: -15s;
  background: radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
}

.shape5 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 10%;
  animation-delay: -7s;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

@keyframes float-3d {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(5%, -5%) rotate(5deg) scale(1.05); }
  50% { transform: translate(0%, 3%) rotate(-3deg) scale(0.95); }
  75% { transform: translate(-5%, -2%) rotate(2deg) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Additional responsive adjustments */
@media (max-height: 800px) {
  .animated-headline {
    font-size: 3rem;
  }
  
  .floating-resume {
    transform: scale(0.8);
  }

  
/* Reduce the margin below the floating resume */
.floating-resume {
  margin-bottom: 0; /* Reduce from current value */
  margin-top: 0; /* Ensure top margin is also minimal */
}
  
  .stat-item.enhanced {
    padding: 1rem 0.75rem;
  }
  
  .stat-number.enhanced {
    font-size: 2rem;
  }
}

/* For very small screens */
@media (max-height: 700px) {
  .hero-section {
    padding: 70px 0 40px;
  }
  
  .floating-resume {
    transform: scale(0.8);
    margin: 10px auto;
  }
  
  .hero-stats.enhanced {
    margin: 0.5rem 0;
  }
  
  .timer-badge.enhanced {
    transform: scale(0.9);
  }
}

/* Adjust for mobile devices */
@media (max-width: 768px) {
  .animated-headline {
    padding-top: 30px; /* Slightly less padding on mobile */
    font-size: 2.5rem; /* Maintain existing mobile font size */
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .animated-headline {
    padding-top: 25px; /* Even less padding on very small screens */
    font-size: 2rem; /* Maintain existing small screen font size */
  }
}

.animated-headline {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  padding-top: 55px; /* Add padding to the top to move it down */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

.text-animation {
  position: relative;
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 180px; /* Add a minimum width to prevent layout shifts */
}

.text-rotate {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  animation: rotate-words 9s cubic-bezier(0.6, -0.28, 0.74, 0.05) infinite;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(50px);
}

.text-rotate.active {
  opacity: 1;
  transform: translateY(0);
}

.text-rotate:nth-child(1) {
  animation-delay: 0s;
}

.text-rotate:nth-child(2) {
  animation-delay: 3s;
}

.text-rotate:nth-child(3) {
  animation-delay: 6s;
}

.text-rotate:nth-child(2) {
  animation-delay: 3s;
}

.text-rotate:nth-child(3) {
  animation-delay: 6s;
}

@keyframes rotate-words {
  0%, 10%, 90%, 100% { 
    opacity: 0; 
    transform: translateY(50px); 
  }
  15%, 85% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

.highlight-animation {
  position: relative;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-highlight 2s infinite;
}

@keyframes pulse-highlight {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.hero-stats.enhanced {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: nowrap;
  position: relative;
  z-index: 5;
}

.stat-item.enhanced {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 150px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-item.enhanced:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number.enhanced {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label.enhanced {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.hero-cta.enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1f2937;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4), 0 0 0 0 rgba(251, 191, 36, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin: 1rem auto 0.5rem;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  max-width: 80%;
  width: fit-content;
  cursor: pointer;
  z-index: 5;
  animation: cta-pulse 2s infinite;
}

.cta-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  animation: pulse-ring 2s infinite;
}

.cta-icon {
  margin-right: 12px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.cta-text {
  position: relative;
  z-index: 2;
}

.cta-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

.hero-cta.enhanced:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 50px rgba(251, 191, 36, 0.6);
  animation: none;
}

.hero-cta.enhanced:hover .cta-icon {
  transform: translateY(-5px);
}

@keyframes cta-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  20% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.timer-badge.enhanced {
  display: flex;
  align-items: center;
  background: rgba(34, 197, 94, 0.2);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.5);
  backdrop-filter: blur(10px);
  margin: 0.5rem auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: fit-content;
  max-width: 90%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  animation: badge-glow 3s infinite;
}

.timer-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  animation: timer-pulse 1s infinite;
}


.timer-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Add this line to center the content */
  text-align: center; /* Add this line to center the text */
  width: 100%; /* Add this to ensure full width */
}


.timer-text {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: center; /* Add this line */
  width: 100%; /* Add this line */
}

.timer-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  min-width: 50px;
}

.countdown-value {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.countdown-label {
  font-size: 0.6rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: -0.5rem;
}


.timer-users {
  font-size: 0.8rem;
  opacity: 0.9;
  text-align: center; /* Add this line */
  width: 100%; /* Add this line */
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4); }
}

@keyframes timer-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.social-proof-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  pointer-events: none;
}

.social-proof-notification {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #475569 0%, #94a3b8 100%);

  color: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  max-width: 300px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}

.social-proof-notification.show {
  transform: translateX(0);
}

.social-proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

.social-proof-content {
  flex-grow: 1;
}

.social-proof-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.social-proof-action {
  font-size: 0.85rem;
  opacity: 0.9;
}

.social-proof-time {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}

.social-proof-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-proof-close:hover {
  opacity: 1;
}

.social-proof-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: notification-shine 3s infinite;
}

@keyframes notification-shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  20% {
    left: 100%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.floating-resume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 10px auto 5px;
  perspective: 1000px;
  z-index: 5;
  position: relative;
  transform: scale(0.7); /* Scale down by 15% */
  transform-origin: center center;
}

.resume-before, .resume-after {
  width: 220px;
  height: 300px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  animation: float-resume 6s infinite ease-in-out;
}

.resume-before {
  background: #f8fafc;
  animation-delay: 0s;
}

.resume-after {
  background: white;
  animation-delay: 1s;
}

.resume-header {
  height: 30px;
  background: #e2e8f0;
  border-radius: 5px;
  margin-bottom: 20px;
}

.resume-line {
  height: 12px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 15px;
  width: 100%;
}

.resume-header.optimized {
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
}

.resume-line.optimized {
  background: linear-gradient(90deg, #f0f9ff 0%, #e0f2fe 100%);
}

.rejected-stamp, .approved-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 10px;
  border: 4px solid;
  border-radius: 8px;
  opacity: 0.8;
}

.rejected-stamp {
  color: #ef4444;
  border-color: #ef4444;
}

.approved-stamp {
  color: #10b981;
  border-color: #10b981;
}

.transform-arrow {
  animation: pulse-arrow 2s infinite;
}

@keyframes float-resume {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-15px) rotateX(5deg); }
}

@keyframes pulse-arrow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-resume {
    flex-direction: column;
    gap: 10px;
  }
  
  .transform-arrow {
    transform: rotate(90deg);
  }
  
  .resume-before, .resume-after {
    width: 180px;
    height: 250px;
  }
}
/* Add or modify these styles in your CSS */
@media (max-width: 768px) {
  .floating-resume {
    flex-direction: row; /* Keep horizontal layout */
    gap: 10px; /* Minimal gap */
    width: 90%; /* Use 90% of container width to create margins */
    max-width: 500px; /* Cap maximum width */
    justify-content: center; /* Center the items */
    transform: none; /* Remove previous scaling */
    margin: 10px auto; /* Center horizontally with auto margins */
    padding: 0 5%; /* Add equal padding on both sides */
    box-sizing: border-box; /* Include padding in width calculation */
  }
  
  .resume-before, .resume-after {
    width: calc(42% - 5px); /* Use percentage of container minus half the gap */
    height: auto; /* Auto height */
    aspect-ratio: 3/4; /* Maintain aspect ratio */
    max-width: 170px; /* Cap maximum size */
    max-height: 230px;
    flex: 1; /* Allow flex growth */
  }
  
  .transform-arrow {
    transform: none; /* Keep arrow horizontal */
    width: 30px; /* Smaller arrow */
    flex-shrink: 0; /* Prevent arrow from shrinking */
    display: flex; /* Ensure proper alignment */
    align-items: center; /* Center vertically */
  }
  
  .transform-arrow svg {
    width: 25px;
    height: 25px;
  }
}

/* For very small screens */
@media (max-width: 360px) {
  .floating-resume {
    width: 95%; /* Use more width on very small screens */
    gap: 5px; /* Reduce gap further */
  }
  
  .resume-before, .resume-after {
    width: calc(45% - 5px); /* Slightly larger percentage */
  }
  
  .transform-arrow {
    width: 20px;
  }
  
  .transform-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* Add or modify these styles in your CSS */
@media (max-width: 768px) {
  /* Previous mobile styles remain unchanged */
  
  /* New styles for metrics widgets */
  .hero-stats.enhanced {
    display: grid; /* Change to grid layout */
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-template-rows: repeat(2, auto); /* 2 rows */
    gap: 10px; /* Gap between grid items */
    width: 90%; /* Match the width of floating-resume */
    margin: 10px auto; /* Center horizontally */
  }
  
  .stat-item.enhanced {
    width: 100%; /* Full width of grid cell */
    min-width: unset; /* Remove min-width constraint */
    margin: 0; /* Remove margin */
    padding: 0.75rem 0.5rem; /* Reduce padding */
  }
  
  .stat-number.enhanced {
    font-size: 2rem; /* Slightly smaller font */
  }
  
  .stat-label.enhanced {
    font-size: 0.85rem; /* Smaller label text */
  }
}

/* For very small screens */
@media (max-width: 360px) {
  .hero-stats.enhanced {
    width: 95%; /* Match the width of floating-resume on small screens */
    gap: 8px; /* Smaller gap */
  }
  
  .stat-item.enhanced {
    padding: 0.6rem 0.4rem; /* Further reduce padding */
  }
  
  .stat-number.enhanced {
    font-size: 1.8rem; /* Even smaller font */
    margin-bottom: 0.25rem; /* Reduce bottom margin */
  }
  
  .stat-label.enhanced {
    font-size: 0.75rem; /* Smaller label text */
  }
}



/* Extra compact view styles */
.hero-section.compact-view .animated-headline {
  font-size: 2.5rem;
}

.hero-section.compact-view .subtitle {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.hero-section.compact-view .hero-stats.enhanced {
  flex-wrap: wrap;
  justify-content: center;
}

.hero-section.compact-view .stat-item.enhanced {
  min-width: 100px;
  padding: 0.75rem 0.5rem;
}

.hero-section.compact-view .hero-cta.enhanced {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.hero-section.compact-view .timer-badge.enhanced {
  padding: 0.5rem 1rem;
  transform: scale(0.85);
}


#changing-word {
  display: inline-block;
  min-width: 180px; /* Ensure enough width for all words */
  text-align: left;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.5s ease;
  padding-bottom: 5px; /* Add padding to ensure gradient covers descenders */
  position: relative; /* Ensure proper positioning */
}

.word-color-1 {
  background-image: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); /* Bright Red to Dark Red */
  background-size: 100% 120%; /* Extend gradient beyond text boundaries */
  background-position: 0 0; /* Position from top */
}

.word-color-2 {
  background-image: linear-gradient(135deg, #dc2626 0%, #991b1b 100%); /* Medium Red to Darker Red */
  background-size: 100% 120%; /* Extend gradient beyond text boundaries */
  background-position: 0 0; /* Position from top */
}

.word-color-3 {
  background-image: linear-gradient(135deg, #f87171 0%, #dc2626 100%); /* Light Red to Medium Red */
  background-size: 100% 120%; /* Extend gradient beyond text boundaries */
  background-position: 0 0; /* Position from top */
}


/* ADD THIS IMPROVED PRICING SECTION CSS */

/* Pricing Slider Navigation */
.pricing-slider-nav {
    display: none;
}

/* Responsive adjustments for Pricing Section */
@media (max-width: 1200px) {
    .plan-windows {
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        justify-content: center;
        gap: 2rem; /* Consistent gap between cards */
    }
    
    .plan-window {
        width: calc(50% - 1rem); /* Two cards per row on medium screens */
        min-width: 240px;
        max-width: 280px;
        margin: 0; /* Remove margins that cause alignment issues */
    }
}

@media (max-width: 768px) {
    .plan-windows {
        flex-direction: column; /* Stack cards vertically on mobile */
        align-items: center;
        gap: 2rem;
    }
    
    .plan-window {
        width: 100%; /* Full width on mobile */
        max-width: 320px;
        margin: 0 auto; /* Center each card */
    }
    
    /* Fix premium badge positioning */
    .plan-window.premium {
        transform: none; /* Remove scale transform that causes issues */
    }
    
    .plan-badge {
        font-size: 0.7rem; /* Smaller text for badge */
        padding: 0.4rem 1rem;
    }
    
    /* Adjust pricing display for mobile */
    .price-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .original-price {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    /* Ensure discount tag doesn't overflow */
    .discount-tag {
        right: -15px;
        top: -5px;
        font-size: 0.7rem;
        padding: 0.25rem 0.7rem;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .plan-window {
        padding: 1rem;
    }
    
    .plan-window-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .plan-window-body {
        padding: 1rem;
    }
    
    .plan-window-footer {
        padding: 0 1rem 1rem;
    }
}