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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 100px 0 70px;
    background: #fff;
}

.hero-content {
    max-width: 840px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

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

/* What I Help With Section */
.help-with {
    padding: 60px 0;
    background: #f8f9fa;
}

.help-with h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.2;
    color: #1a1a1a;
}

.help-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.help-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    font-weight: 500;
}

.help-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.2;
    color: #1a1a1a;
}

/* Problem Section */
.problem {
    background: #fff;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pain-card {
    padding: 32px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}

.pain-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.pain-card p {
    color: #666;
    line-height: 1.5;
}

.problem-conclusion {
    text-align: center;
    margin-top: 42px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 8px solid #1a1a1a;
}

.problem-conclusion p {
    font-size: 1.2rem;
    color: #1a1a1a;

    font-weight: 500;
}

/* Solution Section */
.solution {
    background: #f8f9fa;
}

.solution-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-intro {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 500;
}

.outcome-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.outcome-item {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1a1a1a;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #1a1a1a;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-author a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.testimonial-author a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Steps Section */
.steps-section {
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.2;
}

.pricing-info {
    margin-bottom: 40px;
}

.pricing-info p {
    font-size: 1.1rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.final-cta .price-range {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

.final-cta .cta-primary {
    background: white;
    color: #1a1a1a;
}

.final-cta .cta-primary:hover {
    background: #f0f0f0;
}

.contact-info {
    margin-top: 24px;
    opacity: 0.8;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .help-with {
        padding: 40px 0;
    }

    .pain-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .outcome-list {
        grid-template-columns: 1fr;
    }

    .help-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .final-cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {

    .pain-card,
    .step-card {
        padding: 24px;
    }

    .solution-box {
        padding: 0;
    }

    .help-list,
    .outcome-list {
        grid-template-columns: 1fr;
    }
}

.final-cta-content {
    max-width: 760px;
    margin: 0 auto;
}