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

/* Variables */
:root {
    --primary-color: #00aaff;
    --secondary-color: #0099ee;
    --accent-color: #66ccff;
    --success-color: #28A745;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gradient-primary: linear-gradient(135deg, #00aaff 0%, #0099ee 100%);
    --gradient-secondary: linear-gradient(135deg, #28A745 0%, #20C997 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Typography */
h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: var(--gradient-secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-package {
    display: block;
    width: 100%;
    padding: 18px 20px;
    background: var(--gradient-secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-package.premium {
    background: var(--gradient-secondary);
}

.cta-center {
    text-align: center;
    margin: 3rem 0;
}

/* Hero Section */
.hero {
    background: #e6f3ff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    font-weight: 600;
    color: #333;
}

.hero-badge i {
    color: #ffc107;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-cta {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.hero-image {
    margin-top: 2rem;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    background: var(--gray-light);
}

.showcase-single {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.showcase-main {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    max-width: 100%;
}

.showcase-main:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.showcase-main {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 25%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.rating-display {
    text-align: center;
    margin-bottom: 3rem;
}

.stars {
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Limited Offer */
.limited-offer {
    padding: 15px 0;
    background: #dc3545;
}

.offer-banner {
    text-align: center;
}

.offer-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Packages */
.packages {
    padding: 80px 0;
    background: var(--gray-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.package-card.premium {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price-container {
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1.1rem;
    color: #dc3545;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.discount {
    display: inline-block;
    background: var(--success-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: #28a745;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.savings {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
}

.package-content {
    padding: 0 2rem;
}

.included-text {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.package-features i {
    color: var(--success-color);
    margin-top: 3px;
    font-size: 1rem;
}

.package-features i.fa-gift {
    color: #ffc107;
}

.basic-features {
    margin-bottom: 0;
}

.bonus-features {
    margin-bottom: 2rem;
    margin-top: 0;
}

.bonus-features li {
    justify-content: space-between;
    align-items: center;
}

.bonus-price {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-left: auto;
    text-decoration: line-through;
}

.package-footer {
    padding: 0 2rem 2rem;
}

.social-proof {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--gray-light);
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Guarantee */
.guarantee-section {
    padding: 60px 0;
    background: var(--white);
}

.guarantee-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--success-color);
}

.guarantee-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.guarantee-content p {
    color: var(--text-medium);
    margin: 0;
}

.security-badge {
    text-align: center;
    color: var(--text-medium);
    font-weight: 600;
}

.security-badge i {
    margin-right: 8px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-disclaimer,
.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: var(--shadow-heavy);
    max-width: 300px;
    transform: translateX(-120%);
    transition: transform 0.5s ease;
    z-index: 1000;
}

.sales-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    color: var(--success-color);
    font-size: 1.5rem;
}

.notification-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.time-ago {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-main {
        max-width: 75%;
    }
    
    .showcase-main img {
        transform: scale(1.1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card.premium {
        transform: none;
    }
    
    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .sales-notification {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .btn-primary {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .showcase-main {
        margin: 0 auto;
    }
    
    .package-badge {
        right: 1rem;
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
}