/* 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: #fff;
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Color Variables */
:root {
    --primary-blue: #2563eb;
    --warm-accent: #f59e0b;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
    --success-green: #10b981;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-brand h2 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.cta-button-primary, .cta-button-secondary, .cta-button-outline, .cta-button-small {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button-primary {
    background: var(--primary-blue);
    color: white;
}

.cta-button-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-button-primary.large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-button-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-button-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.cta-button-small {
    padding: 8px 16px;
    background: var(--primary-blue);
    color: white;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.hero-content h2 {
    color: var(--medium-gray);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-content p {
    color: var(--medium-gray);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border: 2px dashed var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--medium-gray);
    font-style: italic;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.problem-section h2 {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 4rem;
}

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

.pain-point {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pain-point h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pain-point p {
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    color: var(--warm-accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat span {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
}

.solution-section h2 {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 4rem;
}

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

.value-prop {
    text-align: center;
    padding: 2rem;
}

.value-prop .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-prop h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-prop p {
    color: var(--medium-gray);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--light-gray);
}

.how-it-works h2 {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 4rem;
}

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

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.step p {
    color: var(--medium-gray);
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
}

.social-proof h2 {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 4rem;
}

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

.testimonial {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.testimonial p {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial cite {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: var(--primary-blue);
    padding: 3rem;
    border-radius: 12px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--light-gray);
}

.pricing h2 {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 4rem;
}

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

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-accent);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.coaching-options {
    text-align: left;
    margin-bottom: 2rem;
}

.coaching-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.coaching-option:last-child {
    border-bottom: none;
}

.coaching-option strong {
    color: var(--dark-gray);
}

.coaching-option span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq h2 {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 4rem;
}

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

.faq-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--medium-gray);
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.final-cta-buttons {
    margin: 3rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-signals {
    margin-top: 4rem;
}

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

.guarantee {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.security-item {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    margin: 0;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .pain-points {
        grid-template-columns: 1fr;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .statistics {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantees {
        grid-template-columns: 1fr;
    }
    
    .security {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .pricing-card,
    .pain-point,
    .step,
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .stats-bar {
        padding: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

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

/* Focus Styles for Accessibility */
button:focus,
a:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}