/* CSS Variables */
:root {
    /* Colors - Beauty-focused palette */
    --primary: hsl(340, 75%, 55%); /* Elegant rose */
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(340, 65%, 65%);

    --secondary: hsl(25, 95%, 53%); /* Golden accent */
    --secondary-foreground: hsl(342, 20%, 15%);

    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 100%);

    --warning: hsl(38, 92%, 50%);
    --warning-foreground: hsl(342, 20%, 15%);

    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);

    --background: hsl(0, 0%, 100%);
    --foreground: hsl(342, 20%, 15%);

    --muted: hsl(340, 8%, 96%);
    --muted-foreground: hsl(342, 15%, 45%);

    --border: hsl(340, 8%, 92%);
    --card-background: hsl(0, 0%, 100%);

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, hsl(340, 75%, 55%) 0%, hsl(25, 95%, 53%) 100%);
    --elegant-gradient: linear-gradient(180deg, hsl(340, 8%, 98%) 0%, hsl(340, 8%, 96%) 100%);
    --cta-gradient: linear-gradient(135deg, hsl(340, 75%, 55%) 0%, hsl(340, 85%, 45%) 100%);
    --gold-gradient: linear-gradient(135deg, hsl(25, 95%, 53%) 0%, hsl(38, 92%, 50%) 100%);

    /* Shadows */
    --shadow-card: 0 2px 15px -3px hsl(342, 20%, 15%, 0.1);
    --shadow-elegant: 0 4px 20px -4px hsl(340, 75%, 55%, 0.15);
    --shadow-glow: 0 0 30px hsl(340, 75%, 55%, 0.2);

    /* Typography */
    --font-hero: clamp(2.5rem, 5vw, 3.5rem);
    --font-heading: clamp(1.8rem, 4vw, 2.25rem);
    --font-subheading: clamp(1.2rem, 3vw, 1.5rem);

    /* Spacing */
    --space-section: clamp(3rem, 8vw, 6rem);
    --space-element: 2rem;
    --space-tight: 1rem;

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border radius */
    --radius: 0.75rem;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
.section-title {
    font-size: var(--font-heading);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--cta-gradient);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-elegant);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.btn-secondary {
    background-color: var(--muted);
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--border);
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-full {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: calc(var(--radius) * 0.5);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

.warning-badge {
    background-color: var(--warning);
    color: var(--warning-foreground);
}

.secondary-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Cards */
.card {
    background-color: var(--card-background);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
}

/* Hero Section */
.hero-section {
    background: var(--hero-gradient);
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: var(--font-hero);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-price {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.price-subtitle {
    font-size: 0.875rem;
}

/* Hero Image Section */
.hero-image-section {
    padding: 3rem 1rem;
    background: var(--elegant-gradient);
}

.hero-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

/* Social Proof Section */
.social-proof-section {
    padding: var(--space-section) 1rem;
    background-color: var(--muted);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
}

.border-primary {
    border-left: 4px solid var(--primary);
}

.border-secondary {
    border-left: 4px solid var(--secondary);
}

.border-success {
    border-left: 4px solid var(--success);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--warning);
    fill: currentColor;
}

.testimonial-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
}

/* Opportunity Section */
.opportunity-section {
    padding: var(--space-section) 1rem;
}

.opportunity-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .opportunity-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.opportunity-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.opportunity-text strong {
    color: var(--primary);
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.earnings-card {
    background: var(--elegant-gradient);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
    text-align: center;
}

.earnings-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.earnings-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.earnings-range {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.earnings-per {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.earnings-monthly {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Learning Section */
.learning-section {
    padding: var(--space-section) 1rem;
    background-color: var(--muted);
}

.learning-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .learning-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.learning-card {
    text-align: center;
    transition: var(--transition-smooth);
}

.learning-card:hover {
    box-shadow: var(--shadow-glow);
}

.day-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.day-1 {
    background-color: var(--primary);
}

.day-2 {
    background-color: var(--secondary);
}

.day-3 {
    background-color: var(--success);
}

.learning-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.learning-text {
    color: var(--muted-foreground);
}

/* Pricing Section */
.pricing-section {
    padding: var(--space-section) 1rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    position: relative;
    transition: var(--transition-smooth);
}

.silver-plan {
    border: 2px solid var(--border);
}

.vip-plan {
    border: 2px solid var(--primary);
    background: linear-gradient(to bottom right, 
        rgba(340, 75%, 55%, 0.05), 
        rgba(25, 95%, 53%, 0.05));
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1.5rem;
    border-radius: calc(var(--radius) * 0.5);
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.plan-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.plan-features {
    margin-bottom: 2rem;
}

.vip-includes {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-section) 1rem;
    background-color: var(--muted);
}

.faq-list {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
    padding: var(--space-section) 1rem;
    background: var(--hero-gradient);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button-main {
    background-color: white;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-button-main:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.urgency-box {
    background-color: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius);
    padding: 1rem;
    max-width: 24rem;
    margin: 0 auto;
}

.urgency-box p {
    font-size: 0.875rem;
    margin: 0;
}

/* Letter Section */
.letter-section {
    padding: var(--space-section) 1rem;
}

.letter-title {
    font-size: var(--font-heading);
    font-weight: 700;
    margin-bottom: 2rem;
}

.letter-content {
    max-width: 64rem;
    margin: 0 auto;
}

.letter-content p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.letter-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Comparison Section */
.comparison-section {
    padding: var(--space-section) 1rem;
    background: var(--elegant-gradient);
}

.comparison-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comparison-card {
    padding: 2rem;
}

.before-card {
    border-left: 4px solid var(--destructive);
}

.after-card {
    border: 2px solid var(--success);
}

.comparison-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.before-title {
    color: var(--destructive);
}

.after-title {
    color: var(--success);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.before-dot {
    background-color: var(--destructive);
}

.after-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}

/* Bonus Section */
.bonus-section {
    padding: var(--space-section) 1rem;
    background: var(--gold-gradient);
    color: white;
    text-align: center;
}

.bonus-title {
    font-size: var(--font-heading);
    font-weight: 700;
    margin-bottom: 3rem;
}

.bonus-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5rem;
}

.bonus-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: block;
}

.bonus-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-description {
    opacity: 0.9;
}

.bonus-value {
    margin-top: 3rem;
}

.bonus-total {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-offer {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.final-cta {
    background-color: white;
    color: var(--primary);
}

.final-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

/* Footer */
.footer {
    padding: 3rem 1rem;
    background-color: var(--foreground);
    color: var(--background);
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .pricing-grid,
    .learning-grid,
    .testimonials-grid,
    .bonus-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

/* Performance Optimizations */
.card,
.btn {
    will-change: transform;
}

.hero-section {
    transform: translateZ(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}