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

html {
    scroll-behavior: smooth;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1c7a85 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

.ebook-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.ebook-cover {
    width: 280px;
    height: 360px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    color: #333;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 10px 20px rgba(0,0,0,0.2);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ebook-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(40, 167, 69, 0.05) 100%);
    pointer-events: none;
}

.ebook-cover:hover {
    transform: rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.ebook-cover h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #2a5298;
    line-height: 1.3;
}

.ebook-icon {
    font-size: 4rem;
    margin-top: 20px;
}

.hero-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 30px;
    display: block;
    transition: transform 0.3s ease;
}

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

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2a5298;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    margin: 20px auto;
    border-radius: 2px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 1.5rem;
    color: #28a745;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
}

.section-cta {
    text-align: center;
}

/* Recipes Section */
.recipes-section {
    padding: 100px 0;
    background: white;
}

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

.recipe-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recipe-card:hover {
    background: white;
    border-color: #28a745;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

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

.recipe-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2a5298;
}

.recipe-card p {
    color: #666;
    line-height: 1.5;
}

.recipes-footer {
    text-align: center;
    font-size: 1.3rem;
    color: #28a745;
    font-weight: bold;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: #f5f6fa;
}

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

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    text-align: center;
}

.offer-card.basic {
    border: 2px solid #e0e0e0;
    padding: 40px 30px;
}

.offer-card.featured {
    border: 3px solid #ffc107;
    background: #fffef7;
    position: relative;
    text-align: center;
    padding: 40px 30px;
}

.bestseller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    white-space: nowrap;
}

.offer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.offer-icon {
    font-size: 1.5rem;
}

.offer-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 30px 0;
    text-align: center;
}

.offer-pricing {
    margin-bottom: 25px;
}

.original-price {
    text-decoration: line-through;
    color: #dc3545;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center;
}

.discount-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 10px 0 20px 0;
}

.current-price {
    font-size: 2.8rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
    text-align: center;
}

.savings {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 30px;
}

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

.offer-features li {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.included-basic {
    background: #ffc107;
    margin: 20px -30px;
    padding: 15px 30px;
    border-radius: 0;
    color: #333;
}

.included-header {
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

.bonus-items {
    margin: 20px 0;
    text-align: left;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: none;
}

.bonus-item:last-child {
    border-bottom: none;
}

.bonus-icon {
    font-size: 1.2rem;
    color: #ffc107;
}

.bonus-content {
    flex: 1;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-title {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0;
    flex: 1;
}

.bonus-value {
    font-size: 0.8rem;
    color: #dc3545;
    text-decoration: line-through;
    margin-left: 10px;
}

.basic-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.basic-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.premium-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
}

.premium-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.social-proof {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 4px solid #ffc107;
    position: relative;
}

.testimonial-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-top: 20px;
}

.testimonial-content p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    flex-shrink: 0;
}




/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.guarantee-icon {
    font-size: 4rem;
}

.guarantee-shield {
    font-size: 4rem;
    color: #28a745;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.check-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Rating Overview */
.rating-overview {
    text-align: center;
    margin-bottom: 50px;
}

.rating-overview .stars {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating-overview .rating-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: bold;
}

/* Testimonial Stars */
.testimonial-stars {
    display: flex;
    gap: 2px;
    font-size: 1.1rem;
}

.star {
    color: #ffc107;
}

/* Avatar Photos */
.avatar-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.guarantee-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.guarantee-text p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.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 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
    font-weight: bold;
    font-size: 1.1rem;
    color: #2a5298;
}

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

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

/* Footer */
.footer {
    background: #2a5298;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
    display: grid;
    gap: 20px;
}

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

.footer-security {
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-contact {
    font-size: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    margin-top: 20px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .recipes-carousel {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .offer-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .bestseller-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .bonus-title {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guarantee-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .guarantee-text h2 {
        font-size: 2rem;
    }
    
    
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .benefits-section,
    .recipes-section,
    .offers-section,
    .testimonials-section,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .ebook-cover {
        width: 220px;
        height: 280px;
        padding: 30px 20px;
    }
    
    .ebook-cover h3 {
        font-size: 1.4rem;
    }
    
    .recipe-card {
        padding: 30px 15px;
    }
    
    .offer-content {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px;
    }
}

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

.hero-content,
.benefit-item,
.recipe-card,
.offer-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
.cta-button:focus,
.faq-question:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.urgency-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 2s infinite;
}

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

.urgency-content {
    position: relative;
    z-index: 1;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .urgency-text {
        font-size: 1rem;
    }
}

/* Purchase Notification */
.purchase-notification {
    position: fixed;
    top: 5px;
    right: -400px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #28a745;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transition: transform 0.4s ease-in-out;
    font-family: Arial, sans-serif;
}

.purchase-notification.show {
    transform: translateX(-420px);
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 2px;
}

.notification-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-product {
    color: #28a745;
    font-size: 13px;
    font-weight: 500;
}

.notification-time {
    color: #666;
    font-size: 12px;
}

@media (max-width: 768px) {
    .purchase-notification {
        width: 280px;
        top: 10px;
        right: -300px;
    }
    
    .purchase-notification.show {
        transform: translateX(-300px);
    }
}

/* Print Styles */
@media print {
    .cta-button,
    .purchase-notification {
        display: none;
    }
    
    .hero-section {
        background: #2a5298;
        color: white;
    }
    
    * {
        box-shadow: none !important;
    }
}
