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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.urgency-bar {
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
}

.urgency-bar i {
    margin-right: 8px;
    animation: bounce 1s infinite;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.testimonial-quote {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 600px;
    border-left: 4px solid #ffd700;
    backdrop-filter: blur(10px);
}

.testimonial-quote i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-quote span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Buttons */
.btn-cta, .btn-cta-large {
    background: linear-gradient(45deg, #08a01a, #046e45);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 3px solid transparent;
}

.btn-cta-large {
    font-size: 1.3rem;
    padding: 25px 45px;
    flex-direction: column;
    gap: 5px;
}

.btn-cta:hover, .btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    border-color: #ffd700;
}

.btn-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0;
}

.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(255, 107, 107, 0.8); }
    100% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4); }
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8f9fa;
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.problem-item i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.problem-item p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.problem-cta {
    text-align: center;
    margin-top: 40px;
}

.problem-cta p {
    font-size: 1.3rem;
    color: #ff6b6b;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

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

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-item i {
    color: #28a745;
    font-size: 1.3rem;
    margin-top: 3px;
}

.benefit-item span {
    font-size: 1.1rem;
    line-height: 1.5;
}

.solution-image {
    position: relative;
    text-align: center;
}

.kit-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.image-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* What's Included */
.included {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.included h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.included-item {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

.included-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.included-icon i {
    font-size: 2rem;
    color: #ffd700;
}

.included-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.included-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author strong {
    color: #333;
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.social-proof-numbers {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-item .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b6b;
    line-height: 1;
}

.proof-item .label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.bonuses h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.bonus-card {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.bonus-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
}

.bonus-badge {
    background: #ffd700;
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.bonus-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.bonus-value {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
}

.free-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    text-align: center;
}

.offer h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.original-price, .special-price {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    min-width: 250px;
}

.original-price {
    opacity: 0.8;
    position: relative;
}

.original-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #ff4444;
    transform: rotate(-15deg);
}

.special-price {
    border: 3px solid #ffd700;
    transform: scale(1.1);
}

.price-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.breakdown, .savings {
    font-size: 0.9rem;
    opacity: 0.8;
}

.savings {
    color: #ffd700;
    font-weight: 700;
}

.offer-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Countdown Timer */
.countdown-timer {
    margin-bottom: 40px;
}

.countdown-timer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time-unit {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
}

.time-unit label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.guarantee i {
    font-size: 3rem;
    color: #ffd700;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.guarantee-text p {
    opacity: 0.9;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i:first-child {
    color: #ff6b6b;
    font-size: 1.3rem;
}

.faq-question i:last-child {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 25px;
    display: none;
    color: #666;
    line-height: 1.6;
}

/* About */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.author-image {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.about-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.credentials {
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.credential i {
    color: #ff6b6b;
    font-size: 1.2rem;
    width: 20px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.final-cta > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.urgency-message {
    background: rgba(255,107,107,0.2);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid rgba(255,107,107,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.urgency-message i {
    color: #ffd700;
    font-size: 2rem;
}

.final-guarantee {
    margin-top: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .price-comparison {
        flex-direction: column;
        align-items: center;
    }
    
    .special-price {
        transform: none;
    }
    
    .offer-features {
        flex-direction: column;
        align-items: center;
    }
    
    .timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 15px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .social-proof-numbers {
        gap: 30px;
    }
    
    .proof-item .number {
        font-size: 2rem;
    }
    
    .btn-cta, .btn-cta-large {
        width: 100%;
        max-width: 400px;
    }
    
    .included-grid,
    .testimonials-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .testimonial-quote {
        padding: 20px;
    }
    
    .included-item,
    .bonus-card {
        padding: 25px;
    }
    
    .offer h2,
    .bonuses h2 {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

