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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

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

/* Color Variables */
:root {
    --primary: hsl(16, 90%, 68%);
    --primary-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(215, 29%, 96%);
    --secondary-foreground: hsl(215, 28%, 17%);
    --muted-foreground: hsl(215, 28%, 45%);
    --foreground: hsl(215, 28%, 17%);
    --border: hsl(0, 0%, 89.8%);
    --green-500: #10b981;
    --green-600: #059669;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--green-500);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: var(--green-600);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-button.large {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.cta-button.extra-large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.cta-button.full-width {
    width: 100%;
    margin-top: 2rem;
}

/* Text Utilities */
.text-primary {
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.heart-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.navbar .cta-button {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(to bottom, var(--secondary), white);
}

.hero-content {
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto 3rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Modules Section */
.modules {
    padding: 5rem 0;
    background: white;
}

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

.module-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.module-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-content {
    padding: 1.5rem;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.module-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.module-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.module-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.updates-card {
    background: linear-gradient(to right, rgba(255, 122, 89, 0.1), var(--secondary));
    border: 1px solid rgba(255, 122, 89, 0.2);
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.updates-content {
    padding: 2rem;
    text-align: center;
}

.updates-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.updates-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto 1rem;
}

.updates-content strong {
    color: var(--primary);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: rgba(248, 250, 252, 0.5);
}

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

.testimonial-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-image {
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 400px;
    height: 400px;
    max-width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border-color: rgba(255, 122, 89, 0.5);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding: 2rem 1.5rem 0;
}

.pricing-card.featured .pricing-header {
    padding-top: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.price-period {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted-foreground);
}

.plan-description {
    color: var(--muted-foreground);
    margin: 0;
}

.pricing-content {
    padding: 0 1.5rem 1.5rem;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green-500);
    flex-shrink: 0;
}

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: rgba(248, 250, 252, 0.3);
}

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

.guarantee-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.guarantee-icon {
    width: 4rem;
    height: 4rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.guarantee-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.guarantee-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.6;
    padding-bottom: 1.5rem;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(255, 122, 89, 0.1), var(--secondary), rgba(255, 122, 89, 0.1));
    text-align: center;
}

.rocket-icon {
    width: 5rem;
    height: 5rem;
    color: var(--primary);
    margin: 0 auto 2rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.125rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1.05);
    }
    
    .testimonial-image img {
        width: 300px;
        height: 300px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .final-cta h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-image img {
        width: 250px;
        height: 250px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .navbar .cta-button {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}