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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 46px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Banner */
.header-banner {
    background: #fd0d03;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(253, 13, 3, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1000;
}

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

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

/* Removed pulse animation for better performance */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 4.97rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight-green {
    color: #00c851;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.86rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.logo-container {
    margin: 30px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
    display: block;
}

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

.offer-banner {
    background: #fd0d03;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin: 20px 0 25px 0;
    max-width: 90%;
    word-wrap: break-word;
}

/* Removed bounce animation for better performance */

/* Buttons */
.cta-button {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    display: inline-block;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.6);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    }
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.benefit-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-card {
    max-width: 450px;
    margin: 40px auto 0;
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3), 0 0 30px rgba(253, 13, 3, 0.2);
    text-align: center;
    position: relative;
    border: 3px solid #fd0d03;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.package-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.price-section {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.2rem;
    color: #ff4757;
    text-decoration: line-through;
    display: block;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #228B22;
    display: block;
    margin: 10px 0;
}

.payment-info {
    color: #666;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

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

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.testimonial-photo {
    flex-shrink: 0;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.avatar-initials {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.testimonial-content {
    flex: 1;
}

.testimonial p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 10px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: #7f8c8d;
}

.stars {
    font-size: 18px;
    color: #ffd700;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: white;
    border-left: 8px solid #27ae60;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.1);
}

.guarantee h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.guarantee-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    border: 3px solid #27ae60;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.2);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    border-left: 4px solid #27ae60;
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(39, 174, 96, 0.05), transparent);
    border-radius: 8px;
    padding: 20px;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.urgency-banner {
    background: #ff4757;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 30px;
    max-width: 90%;
    word-wrap: break-word;
}

.security-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.security-badges span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 3.1rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.24rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .header-banner {
         font-size: 14px;
         padding: 12px 0;
     }
     
     body {
         padding-top: 50px;
     }
    
    .cta-button {
        font-size: 1rem;
        padding: 16px 30px;
        margin: 0 10px;
    }
    
    .logo-container {
        margin: 25px 0;
    }
    
    .hero-logo {
        max-width: 150px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        padding: 0 5px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .pricing-card {
        margin: 30px 10px 0;
        padding: 25px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .avatar-circle {
        width: 60px;
        height: 60px;
    }
    
    .avatar-initials {
        font-size: 20px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        padding: 16px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
    }
    
    .cta-button.large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .how-it-works, .pricing, .testimonials, .guarantee, .final-cta {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.48rem;
        line-height: 1.1;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 1.24rem;
        padding: 0 5px;
    }
    
    .hero-logo {
        max-width: 120px;
    }
    
    .header-banner {
         font-size: 12px;
         padding: 10px 5px;
     }
     
     body {
         padding-top: 45px;
     }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 14px 25px;
        margin: 0 5px;
        border-radius: 25px;
    }
    
    .offer-banner, .urgency-banner {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .benefit-item {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
        padding: 0;
    }
    
    .pricing-card {
        margin: 20px 5px 0;
        padding: 20px 15px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial p {
        font-size: 14px;
    }
    
    .testimonial-author strong {
        font-size: 15px;
    }
    
    .avatar-circle {
        width: 50px;
        height: 50px;
    }
    
    .avatar-initials {
        font-size: 16px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}