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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.feature-highlight {
    max-width: 800px;
    margin: 0 auto;
}

.feature-highlight i {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 20px;
}

.feature-highlight h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 15px;
}

.feature-highlight p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Artists Section */
.artists-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

.artists-grid {
    margin-top: 40px;
}

.artists-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* What's Included Section */
.included-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.included-section .section-title {
    color: white;
}

.included-section .section-title .highlight {
    color: #fd7f28;
}

.included-section .section-subtitle {
    color: #cbd5e0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(229,62,62,0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #e53e3e;
    box-shadow: 0 15px 35px rgba(229,62,62,0.2);
}

.feature-card.full-width {
    grid-column: 1 / -1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53e3e, #fd7f28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: #cbd5e0;
    font-size: 1rem;
    line-height: 1.6;
}

.bonus-section {
    margin-top: 50px;
}

.bonus-btn {
    background: linear-gradient(135deg, #fd7f28, #f56500);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(245,101,0,0.3);
}

.bonus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245,101,0,0.4);
}

/* Offer Section */
.offer-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.offer-card {
    background: white;
    border: 3px solid #fbb6ce;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(229,62,62,0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.offer-badge {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.offer-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.offer-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.highlight {
    color: #fd7f28;
    font-weight: 600;
}

.pricing {
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.old-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.old-price .price-label {
    font-size: 1rem;
    color: #666;
}

.old-price .price-value {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.new-price .price-label {
    font-size: 1.1rem;
    color: #666;
}

.new-price .price-value {
    font-size: 3.5rem;
    color: #e53e3e;
    font-weight: 800;
}

.savings {
    background: linear-gradient(135deg, #38a169, #2f855a);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.cta-button {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    box-shadow: 0 8px 25px rgba(229,62,62,0.3);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229,62,62,0.4);
    background: linear-gradient(135deg, #c53030, #9c2626);
}

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

.guarantee {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

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

.faq-item {
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e53e3e;
}

.faq-item.active {
    border-color: #e53e3e;
    box-shadow: 0 5px 20px rgba(229,62,62,0.1);
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: #fff5f5;
}

.faq-number {
    background: #e53e3e;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.faq-icon {
    color: #e53e3e;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

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

.footer p {
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .offer-card {
        margin: 0 20px;
        padding: 40px 30px;
    }
    
    .new-price .price-value {
        font-size: 2.8rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 18px 35px;
    }
    
    .faq-question {
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-card {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .new-price .price-value {
        font-size: 2.5rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 16px 30px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(229,62,62,0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(229,62,62,0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(229,62,62,0.3);
    }
}

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

.cta-button:hover {
    animation: none;
}

