:root {
    --primary: #FF416C;
    --secondary: #FF4B2B;
    --dark: #333;
    --light: #fff;
    --accent: #FFD700;
    --gray: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Add this to your CSS */
.pulse {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}






.pricing-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .pricing-card {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 350px;
        color: white;
        font-weight: bold;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .content {
        position: relative;
        z-index: 2;
    }

    .btn {
        display: inline-block;
        background: #27ae60;
        color: white;
        padding: 10px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin-top: 10px;
    }
    
    .btn:hover {
        background: #219150;
    }
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    animation: move 10s linear infinite;
    opacity: 0.1;
}

@keyframes move {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rocket {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    margin: 0 10px;
    font-size: 2rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

/* Timer */
.timer-container {
    margin: 30px 0;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 5px;
    min-width: 70px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Why You Need This */
.why-section {
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.why-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,65,108,0.05), rgba(255,75,43,0.05));
    animation: zoomBg 20s infinite alternate;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}



.social-icons a {
    display: inline-block;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background-color: #333;
    border-radius: 5px;
    margin: 5px;
}

/* Unique Value Proposition */
.value-proposition {
    background-color: var(--light);
    text-align: center;
}

.quote {
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    padding: 0 40px;
}

.quote::before {
    content: """;
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 4rem;
    color: rgba(255,65,108,0.2);
}

.quote::after {
    content: """;
    position: absolute;
    right: 0;
    bottom: -60px;
    font-size: 4rem;
    color: rgba(255,65,108,0.2);
}

/* Testimonials */
.testimonials {
    background-color: var(--gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: bold;
    color: var(--dark);
}

.testimonial-text {
    font-style: italic;
    color: #666;
}

.trust-badge {
    margin-top: 40px;
    text-align: center;
    background: rgba(255,215,0,0.2);
    border-radius: 5px;
    padding: 15px;
    font-weight: bold;
    display: inline-block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, rgba(255,65,108,0.05), rgba(255,75,43,0.05));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.pricing-normal {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.pricing-discount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 10px 0;
}

.pricing-options {
    margin: 20px 0;
    list-style: none;
}

.pricing-options li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.limited-offer {
    background: var(--accent);
    color: var(--dark);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Features Section */
.features {
    background-color: var(--light);
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--accent);
}

.feature-text {
    font-size: 1.1rem;
}

.final-cta {
    text-align: center;
    margin-top: 40px;
}

.final-cta p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;

}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: var(--dark);
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-icon {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.8rem;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .quote {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}