:root {
    --primary: #ff00ff;
    --secondary: #00ffff;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gradient-1: linear-gradient(45deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    --shadow-1: 0 0 20px rgba(255, 0, 255, 0.2);
    --shadow-2: 0 0 40px rgba(0, 255, 255, 0.1);
    --accent-color: #FF6B6B;
    --accent-rgb: 255, 107, 107;
    --card-bg: rgba(255, 255, 255, 0.05);
    --bg-gradient: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
}

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

body {
    background: #1E1E1E;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #1E1E1E;
}

.logo img {
    height: 40px;
}

.nav-button {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section Enhancements */
.hero {
    min-height: 100vh;
    padding: 12rem 2rem 6rem;
    position: relative;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, #1E1E1E 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: -4rem auto 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.mega-title {
    font-size: 8.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -4px !important;
    line-height: 1 !important;
    margin: 0 0 4rem !important;
    background: linear-gradient(45deg, 
        #fff 0%, 
        var(--primary) 50%, 
        var(--secondary) 100%
    ) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: textGlow 2s ease-in-out infinite !important;
}

.hero-subtitle {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.hero-subtitle-highlight {
    display: block;
    color: var(--primary);
    font-weight: 800;
    font-size: 2.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Feature Items */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 5rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 300px;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-text strong {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.feature-text span {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Enhanced CTA Section */
.cta-primary {
    margin-top: 5rem;
}

.glow-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 2rem 4rem;
    border-radius: 50px;
    box-shadow: 0 5px 30px rgba(255, 0, 255, 0.3);
}

.btn-main-text {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-sub-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.offer-trust {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.spots-remaining {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.spots-remaining .highlight {
    color: var(--primary);
    font-weight: 800;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.guarantee-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mega-title {
        font-size: 4.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-subtitle-highlight {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .feature-item {
        min-width: auto;
    }

    .btn-main-text {
        font-size: 1.4rem;
    }
}

/* Animated Background Elements */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.hero::before {
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation-delay: -5s;
}

.hero::after {
    background: var(--secondary);
    bottom: -200px;
    right: -200px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 1rem 0;
    background: linear-gradient(45deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle-highlight {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 2.2rem;
    margin-top: 0.5rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    text-align: left;
    line-height: 1.3;
}

.feature-text strong {
    display: block;
    font-size: 1.2rem;
    color: #fff;
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--primary);
}

.cta-primary {
    margin-top: 3rem;
}

.offer-timer {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.glow-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    margin: 1rem 0;
}

.btn-main-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.btn-sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.offer-trust {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.spots-remaining {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.spots-remaining .highlight {
    color: var(--primary);
    font-weight: 700;
}

.guarantee-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.countdown-banner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.timer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.timer-segment {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 100px;
}

.timer-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timer-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.glow-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.offer-ends {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Value Proposition Section - Updated Header Spacing */
.value-proposition {
    padding: 10rem 2rem;  /* Increased padding */
    background: linear-gradient(180deg, #1E1E1E 0%, rgba(30, 30, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 4rem;  /* Increased font size */
    font-weight: 800;  /* Bolder weight */
    line-height: 1.2;  /* Better line height */
    max-width: 800px;  /* Control width */
    margin: 0 auto 6rem;  /* Increased bottom margin */
    padding: 0 1rem;  /* Added padding */
    background: linear-gradient(45deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    letter-spacing: -0.02em;  /* Tighter letter spacing */
}

/* Optional decorative elements */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -2rem;  /* Position below text */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Adjust value grid spacing */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;  /* Added padding */
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1);
    background: rgba(139, 92, 246, 0.2);
}

.value-icon {
    font-size: 2.5rem;
}

.value-content {
    flex: 1;
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 4rem;
    }
    
    .value-proposition {
        padding: 6rem 2rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timer-segment {
        min-width: 80px;
    }
}

/* Pricing Card */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

/* Social Proof Section */
.social-proof {
    background: rgba(139, 92, 246, 0.05);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 2rem;
}

.stat {
    text-align: center;
    position: relative;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Problem Section */
.problem {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #1E1E1E 0%, #1a1a1a 100%);
}

.problem h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.problem-card .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Solution Section */
.solution {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.feature-card ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.7);
}

.feature-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8B5CF6;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    position: relative;
}

/* Header Styling */
.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), rgba(var(--accent-rgb), 0.8));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: start;
}

.pricing-card {
    min-width: 420px;
    padding: 1.75rem;
    transform: scale(0.95);
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.02);
    height: fit-content;
    align-self: flex-start;
    margin-right: 0;
}

.pricing-card.featured {
    min-width: 500px;
    padding: 1.75rem;
    background: rgba(var(--accent-rgb), 0.1);
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 2;
    transform: scale(1.05);
    height: auto;
    margin-top: -2rem;
    margin-bottom: -2rem;
    margin-left: 0;
}

/* Card Base Styles */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.2);
    background: rgba(255, 255, 255, 0.03);
}

/* Plan Introduction */
.plan-intro {
    text-align: left;
    margin-bottom: 1rem;
}

.plan-intro h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-intro p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Price Block */
.price-block {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.price-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.price .current {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.price-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1rem;
}

.save-badge {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.price-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.total-savings {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Features Block */
.features-block {
    padding: 1.5rem 0;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.25rem;
}

.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.35rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefits li:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.benefit-text span {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3;
}

.benefit-text small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Bonus Block */
.bonus-block {
    background: linear-gradient(145deg, 
        rgba(var(--accent-rgb), 0.08),
        rgba(var(--accent-rgb), 0.12)
    );
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.bonus-block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.bonus-block h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
}

.bonus-block ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bonus-block li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.35rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bonus-block li:hover {
    background: rgba(var(--accent-rgb), 0.1);
    transform: translateX(3px);
}

.bonus-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bonus-text span {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.3;
}

.bonus-text small {
    color: var(--accent-color);
    font-size: 0.85rem;
    line-height: 1.2;
}

.total-value {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(var(--accent-rgb), 0.15);
    text-align: center;
    font-size: 0.9rem;
}

.total-value span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Bonus icon styling */
.bonus-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA Section */
.card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 10; /* Higher z-index */
}

.cta-button {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-color), rgba(var(--accent-rgb), 0.8));
    color: white;
    padding: 1.4rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    position: relative;
    z-index: 10; /* Higher z-index */
    pointer-events: auto; /* Ensure clicks are registered */
}

.cta-button::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: 0.5s;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.4);
}

/* Guarantee Section */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.guarantee:hover {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem;
    }

    .price .current {
        font-size: 3rem;
    }

    .benefits {
        gap: 1rem;
    }
}

/* Final CTA Section */
.final-cta {
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
}

.final-countdown {
    background: rgba(139, 92, 246, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.spots-left {
    color: #8B5CF6;
    font-weight: 600;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

.countdown {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.timer-segment {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.timer-value {
    font-size: 2rem;
    font-weight: 700;
    color: #8B5CF6;
    display: block;
}

.timer-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
footer {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.demo-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demo-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Main Benefits Section */
.main-benefits {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.main-benefits h2 {
    text-align: center;
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    background: linear-gradient(to right, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Feature Spotlight Sections */
.feature-spotlight {
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
}

.feature-spotlight .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-spotlight.reverse .container {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.feature-spotlight.reverse .feature-content {
    direction: ltr;
}

.feature-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8B5CF6;
}

.feature-image {
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), transparent);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-image:hover::before {
    opacity: 1;
}

.feature-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), transparent);
    border-radius: 20px;
    z-index: -1;
}

/* Software Comparison Section */
.software-comparison {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1E1E1E 0%, #1a1a1a 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.vs-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.vs-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.vs-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.vs-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonial Section Enhancements */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
}

.testimonial-content {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #8B5CF6;
}

.author-info h4 {
    color: #fff;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Container Utility Class */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .feature-spotlight .container {
        grid-template-columns: 1fr;
    }

    .feature-image {
        margin-top: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        margin: 2rem;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.5); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.8); }
}

/* Enhanced CTA Buttons */
.cta-button.pulse {
    animation: pulse 2s infinite;
    background: linear-gradient(45deg, #8B5CF6, #6D28D9);
    border: none;
    padding: 1rem 2rem;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button.pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* Enhanced Testimonials */
.testimonial-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Enhanced Pricing Section */
.pricing-card.featured {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B5CF6, transparent);
    animation: glow 2s infinite;
}

.limited-spots {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress {
    background: linear-gradient(90deg, #8B5CF6, #6D28D9);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Enhanced Sticky Countdown Header */
.sticky-countdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, 
        rgba(20, 20, 20, 0.98),
        rgba(30, 30, 30, 0.98)
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.sticky-countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sticky-timer {
    display: flex;
    gap: 1rem;
}

.sticky-timer .timer-segment {
    background: rgba(139, 92, 246, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.sticky-timer .timer-segment:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.15);
}

.sticky-timer .timer-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.1rem;
    display: block;
}

.sticky-timer .timer-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sticky-countdown-content {
        flex-direction: column;
        gap: 0.8rem;
    }

    .sticky-timer {
        gap: 0.5rem;
    }

    .sticky-timer .timer-segment {
        min-width: 45px;
        padding: 0.2rem 0.4rem;
    }

    .sticky-timer .timer-value {
        font-size: 1rem;
    }
}

/* Enhanced FUTURE FLOW title */
.mega-title {
    font-size: 7rem !important; /* Increased from 5rem */
    font-weight: 900 !important;
    letter-spacing: -4px !important;
    line-height: 1 !important;
    margin: 2rem 0 !important;
    background: linear-gradient(45deg, 
        #fff 0%, 
        var(--primary) 50%, 
        var(--secondary) 100%
    ) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    position: relative !important;
    animation: textGlow 2s ease-in-out infinite !important;
}

.mega-title::after {
    display: none;
}

/* New keyframes for text glow */
@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 25px rgba(255, 0, 255, 0.2))
               drop-shadow(0 0 45px rgba(255, 0, 255, 0.1));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 255, 0.4))
               drop-shadow(0 0 60px rgba(255, 0, 255, 0.2));
    }
}

/* Slower floating animation */
@keyframes floatSlow {
    0% { 
        transform: translateX(0) translateY(0); 
        opacity: 0.02;
    }
    50% {
        opacity: 0.05;
    }
    100% { 
        transform: translateX(100%) translateY(-20px); 
        opacity: 0.02;
    }
}

/* Add more floating elements for better effect */
.float-text:nth-child(3) {
    top: 40%;
    left: -30%;
    font-size: 15vw;
    opacity: 0.03;
    animation-delay: -25s;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
}

/* Add these new styles for floating elements */
.floating-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.float-text {
    position: absolute;
    font-size: 20vw; /* Larger size */
    font-weight: 900;
    opacity: 0.05; /* Slightly more visible */
    color: white;
    white-space: nowrap;
    filter: blur(30px); /* More blur for bokeh effect */
    animation: floatSlow 30s linear infinite; /* Slower animation */
}

.float-text:nth-child(1) {
    top: 10%;
    left: -50%;
    background: linear-gradient(45deg, var(--primary), transparent);
    -webkit-background-clip: text;
    animation-delay: -15s;
}

.float-text:nth-child(2) {
    bottom: 20%;
    right: -50%;
    background: linear-gradient(45deg, var(--secondary), transparent);
    -webkit-background-clip: text;
    animation-delay: -5s;
}

.float-blur {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    background: var(--primary);
    animation: floatBlur 25s ease-in-out infinite;
}

.float-blur:nth-child(3) {
    top: -20%;
    left: -10%;
    animation-delay: -5s;
    background: var(--primary);
}

.float-blur:nth-child(4) {
    bottom: -20%;
    right: -10%;
    animation-delay: -15s;
    background: var(--secondary);
}

.float-blur:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

@keyframes floatBlur {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, -100px); }
}

/* Updated Sticky Countdown styles */
.sticky-countdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, 
        rgba(139, 92, 246, 0.95), 
        rgba(0, 0, 0, 0.95)
    );
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    transform: translateY(0);
}

.countdown-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.sticky-timer {
    display: flex;
    gap: 1rem;
}

.sticky-timer .timer-segment {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    min-width: 50px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.sticky-timer .timer-segment:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.15);
}

.sticky-timer .timer-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.1rem;
    display: block;
}

.sticky-timer .timer-label {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Add these new animation keyframes */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

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

@keyframes border-glow {
    0%, 100% { border-color: rgba(139, 92, 246, 0.2); }
    50% { border-color: rgba(139, 92, 246, 0.8); }
}

@keyframes background-pan {
    0% { background-position: 0% center; }
    100% { background-position: -200% center; }
}

/* Enhance the hero badge animation */
.hero-badge {
    animation: scale-pulse 2s infinite, border-glow 2s infinite;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary),
        var(--primary)
    );
    background-size: 200%;
    animation: background-pan 3s linear infinite;
}

/* Add hover animations to feature items */
.feature-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.feature-item:hover .feature-icon {
    animation: float-vertical 2s ease-in-out infinite;
}

/* Enhanced CTA button */
.glow-button {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary), 
        var(--secondary), 
        var(--primary)
    );
    background-size: 200%;
    z-index: -1;
    animation: background-pan 3s linear infinite;
    border-radius: 52px;
}

.glow-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

/* Animate value cards */
.value-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.value-card:hover .value-icon {
    animation: float-vertical 2s ease-in-out infinite;
}

/* Add shimmer effect to pricing card */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite;
    z-index: 1;
    pointer-events: none; /* Prevent interference with clicks */
}

/* Animate spots remaining */
.spots-remaining .highlight {
    position: relative;
    animation: border-glow 2s infinite;
}

/* Enhance timer segments */
.timer-segment {
    transition: all 0.3s ease;
}

.timer-segment:hover {
    transform: scale(1.1);
    background: rgba(139, 92, 246, 0.2);
}

/* Add floating animation to testimonial cards */
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

/* Enhance feature quotes */
.feature-quote {
    position: relative;
    transition: all 0.3s ease;
}

.feature-quote:hover {
    transform: scale(1.02);
}

/* Add subtle animation to guarantee badge */
.guarantee {
    position: relative;
    transition: all 0.3s ease;
    z-index: 5;
}

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

/* Enhance sticky countdown */
.sticky-countdown {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-timer .timer-segment {
    transition: all 0.3s ease;
}

.sticky-timer .timer-segment:hover {
    transform: scale(1.1);
    background: rgba(139, 92, 246, 0.2);
}

/* Add smooth transitions to all interactive elements */
a, button, .feature-item, .value-card, .testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} 

/* Updated Pricing Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: start;
}

/* Side Cards Styling - Updated */
.pricing-card.starter {
    min-width: 420px;
    padding: 1.75rem;
    transform: scale(0.95);
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.02);
    height: fit-content;
    align-self: flex-start;
    margin-right: 0;
}

/* Featured Card Enhancement */
.pricing-card.featured {
    min-width: 500px;
    padding: 1.75rem;
    background: rgba(var(--accent-rgb), 0.1);
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 2;
    transform: scale(1.05);
    height: auto;
    margin-top: -2rem;
    margin-bottom: -2rem;
    margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .pricing-grid {
        max-width: 1200px;
        gap: 0.5rem;
    }
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 2rem;
    }

    .pricing-card.starter,
    .pricing-card.featured {
        min-width: 100%;
        transform: scale(1);
        opacity: 1;
        margin: 0;
    }
} 

/* Individual card toggle styling */
.price-block .plan-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-toggle span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.plan-toggle span.active {
    color: #fff;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0 0.25rem;
    z-index: 10;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    cursor: pointer;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
} 

/* Add the circle slider */
.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

/* Toggle states */
input:checked + .slider {
    background-color: var(--accent-color);
}

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

/* Hover states */
.slider:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

input:checked + .slider:hover {
    background-color: rgba(var(--accent-rgb), 0.8);
} 

/* FAQ Section Styling */
.faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
    position: relative;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.faq-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding-bottom: 1.5rem;
    margin: 0;
}

/* Active state */
.faq-item.active {
    background: rgba(var(--accent-rgb), 0.05);
    border-color: rgba(var(--accent-rgb), 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
} 

/* Feature Boxes Styling */
.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--accent-rgb), 0.2);
}

.feature-box-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-boxes {
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.25rem;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
    }
}

/* Enhanced Testimonial Section */
.testimonials {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.testimonial-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4;
}

.bokeh {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-color);
    filter: blur(20px);
    animation: floatBokeh 20s infinite ease-in-out;
}

.bokeh:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.bokeh:nth-child(2) { top: 60%; left: 80%; animation-delay: -5s; }
.bokeh:nth-child(3) { top: 80%; left: 20%; animation-delay: -10s; }
.bokeh:nth-child(4) { top: 30%; left: 60%; animation-delay: -15s; }

@keyframes floatBokeh {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(100px, -100px) scale(1.5);
        opacity: 0.6;
    }
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Remove the old quote mark */
.testimonial-content::before {
    display: none;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative;
    padding-left: 2rem;
}

/* Add single quote mark */
.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-family: Georgia, serif;
    color: var(--accent-color);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-author p {
    text-align: left;
    padding-left: 2rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    
    .testimonial-card:nth-child(n) {
        transform: none;
    }
}

/* Update Testimonial Card Content Styling */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Remove the old quote mark */
.testimonial-content::before {
    display: none;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative;
    padding-left: 2rem;
}

/* Add single quote mark */
.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-family: Georgia, serif;
    color: var(--accent-color);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-author p {
    text-align: left;
    padding-left: 2rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Adjust hover state */
.testimonial-card:hover .testimonial-content::before {
    opacity: 0.5;
    transform: translateX(-50%) scale(1.1);
    transition: all 0.3s ease;
}

/* Remove quote icon from testimonial cards */
.testimonial-content p::before {
    display: none; /* Remove the quote icon */
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: left;
    position: relative;
    padding-left: 0; /* Remove the left padding that was for the quote */
}

.testimonial-author p {
    text-align: left;
    padding-left: 0; /* Remove the left padding that was matching the quote padding */
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-subtitle {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .mega-title {
        font-size: 6rem !important;
        padding: 0 1rem;
    }

    .hero-features {
        padding: 0 1rem;
        gap: 1rem;
    }

    .feature-spotlight .container {
        padding: 0 1.5rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .mega-title {
        font-size: 4rem !important;
        letter-spacing: -2px !important;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-subtitle-highlight {
        font-size: 1.8rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    /* Feature Spotlights */
    .feature-spotlight .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-content {
        padding-right: 0;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    .feature-image {
        margin: 2rem 0;
    }

    /* Pricing Section */
    .pricing-grid {
        padding: 0 1rem;
    }

    .pricing-card.starter,
    .pricing-card.featured {
        min-width: unset;
        width: 100%;
        padding: 1.5rem;
    }

    .price .current {
        font-size: 3.5rem;
    }

    .plan-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .mega-title {
        font-size: 3rem !important;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-subtitle-highlight {
        font-size: 1.5rem;
    }

    .glow-button {
        padding: 1rem 1.5rem;
    }

    .btn-main-text {
        font-size: 1.2rem;
    }

    /* Pricing Cards */
    .price-block {
        padding: 1rem;
    }

    .price .current {
        font-size: 3rem;
    }

    .benefits li {
        padding: 0.25rem;
    }

    .bonus-block {
        padding: 1rem;
    }

    /* FAQ Section */
    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Fix for sticky header on mobile */
@media (max-width: 768px) {
    .sticky-countdown {
        padding: 0.5rem 0;
    }

    .sticky-countdown-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .countdown-label {
        font-size: 0.9rem;
    }

    .sticky-timer {
        gap: 0.5rem;
    }

    .sticky-timer .timer-segment {
        min-width: 40px;
        padding: 0.2rem 0.4rem;
    }
}

/* Landscape mode fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 2rem;
    }

    .mega-title {
        font-size: 3.5rem !important;
    }

    .hero-features {
        margin: 2rem 0;
    }
}

/* Tablet-specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        gap: 1rem;
    }

    .pricing-card.starter,
    .pricing-card.featured {
        min-width: unset;
    }

    .feature-spotlight .container {
        gap: 3rem;
    }
}

/* Large screen optimizations */
@media (min-width: 1600px) {
    .container {
        max-width: 1400px;
    }

    .mega-title {
        font-size: 9rem !important;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }
}

/* Responsive adjustments for feature images */
@media (max-width: 1200px) {
    .feature-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .feature-image {
        max-width: 100%;
        margin: 2rem auto;
    }
}

/* Why Buy Section Styling */
.why-buy-section {
    padding: 8rem 2rem;
    background: linear-gradient(45deg, 
        rgba(var(--accent-rgb), 0.15),
        rgba(var(--accent-rgb), 0.05)
    );
    position: relative;
    overflow: hidden;
}

.why-buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(var(--accent-rgb), 0.5),
        transparent
    );
}

.why-buy-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-buy-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(var(--accent-rgb), 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-buy-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.1);
}

.why-buy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-buy-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.why-buy-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-buy-section {
        padding: 6rem 1.5rem;
    }

    .why-buy-grid {
        grid-template-columns: 1fr;
    }

    .why-buy-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .why-buy-card {
        padding: 2rem;
    }
}

/* Updated Impact Section Styling */
.impact-section {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(0, 0, 0, 0.95)) !important;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.impact-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Warning Badge */
.alert-badge-container {
    text-align: center;
    margin-bottom: 4rem;
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 0, 0, 0.1);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    color: #ff3b3b;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    font-size: 1.1rem;
    animation: pulseBadge 2s infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

/* Header Layout */
.impact-header-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.impact-title {
    flex: 1;
}

.impact-title h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stat Box */
.stat-highlight {
    flex: 0 0 450px;
    background: rgba(255, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-align: center;
}

.stat-number {
    font-size: 8rem;
    font-weight: 800;
    color: #ff3b3b;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
}

.stat-highlight p {
    font-size: 1.6rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* Solutions Grid */
.solution-points-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 1200px;
}

.point-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.point-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.2);
}

.point-icon {
    font-size: 2.5rem;
}

.point-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Bottom Quote */
.impact-testimonial {
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin: 4rem auto 0;
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    text-align: center;
    max-width: 900px;
}

.impact-testimonial p {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-info .name {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

.author-info .title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .impact-header-flex {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        padding: 0 2rem;
    }

    .impact-title h2 {
        font-size: 3.5rem;
        text-align: center;
    }

    .stat-highlight {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .solution-points-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 2rem;
    }
}

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

    .impact-testimonial {
        padding: 2rem;
        margin: 3rem 2rem 0;
    }

    .impact-testimonial p {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 6rem;
    }

    .stat-highlight p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .solution-points-grid {
        grid-template-columns: 1fr;
    }
}