/* Hero */
.hero {
    text-align: center;
    padding: 80px 24px 60px;
}

.hero h1 {
    font-size: 2.4rem;
    color: var(--text-bright);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero .btn-primary {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
}

/* Section headings */
.section-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 32px;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

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

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

.service-icon {
    margin-bottom: 16px;
    display: block;
    color: var(--purple-light);
}
.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Mission / About sections */
.content-section {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.content-section h2 {
    margin-bottom: 16px;
}

.content-section p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* Pricing tables */
.pricing-section {
    margin-bottom: 60px;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--purple-lighter);
    margin-bottom: 4px;
}

.pricing-card .price-unit {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-body);
    margin-bottom: 24px;
}

/* SPS */
.sps-badge-row {
    margin: 20px 0;
}

.sps-badge-row a {
    display: inline-block;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--purple-border);
    border-radius: 6px;
    transition: border-color 0.25s;
}

.sps-badge-row a:hover {
    border-color: var(--purple-border-hover);
}

.sps-links {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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