/* Services & Pricing page */

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.services-header h1 {
    font-size: 2rem;
    color: var(--text-bright);
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-header p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Service categories */
.service-category {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: 8px;
    padding: 28px 24px;
    margin-bottom: 20px;
    transition: border-color 0.25s ease;
}

.service-category:hover {
    border-color: var(--purple-border-hover);
}

.service-category h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-category > p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 14px;
}

.service-category ul {
    padding-left: 20px;
    margin: 0;
}

.service-category li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.service-category .service-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

/* Section headings */
.services-section-heading {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-heading);
    text-align: center;
    margin: 48px 0 28px;
}

/* How it works */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.how-step {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.25s ease;
}

.how-step:hover {
    border-color: var(--purple-border-hover);
}

.how-step .step-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--purple-lighter);
    margin-bottom: 8px;
}

.how-step h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.how-step p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing */
.pricing-rate-table {
    max-width: 700px;
    margin: 0 auto 32px;
}

.pricing-rate-table p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-rate-table .rate-highlight {
    color: var(--purple-lighter);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-rate-table .billing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: 8px;
    padding: 24px;
    transition: border-color 0.25s ease;
}

.package-card:hover {
    border-color: var(--purple-border-hover);
}

.package-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.package-card .package-price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--purple-lighter);
    margin-bottom: 10px;
}

.package-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

/* What you get / What we don't do */
.values-section {
    max-width: 700px;
    margin: 0 auto 16px;
}

.values-section ul {
    padding-left: 20px;
}

.values-section li {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 8px;
    line-height: 1.6;
}

.values-section p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

.boundaries-list {
    list-style: none;
    padding-left: 0;
}

.boundaries-list li {
    margin-bottom: 12px;
}

.boundaries-list strong {
    color: var(--text-heading);
}

/* Testimonials placeholder */
.testimonials-placeholder {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-dim);
    font-style: italic;
    padding: 20px;
}

/* Free resources */
.free-resources {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.free-resources p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

.free-resources ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.free-resources li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.free-resources .workshop-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--purple-lighter);
    margin-bottom: 8px;
}

/* CTA */
.services-cta {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid var(--purple-border-subtle);
    margin-top: 32px;
}

.services-cta h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.services-cta p {
    color: var(--text-body);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.services-cta .cta-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.services-cta .cta-links a {
    font-size: 0.88rem;
}

.services-cta .cta-divider {
    color: var(--text-dim);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .services-header h1 {
        font-size: 1.6rem;
    }

    .how-it-works {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .services-cta .cta-links {
        flex-direction: column;
        gap: 10px;
    }

    .services-cta .cta-divider {
        display: none;
    }
}
