.page-intro {
    margin-bottom: 1.5rem;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.guide-list li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.guide-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.service-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.7;
}

.cta-inline {
    text-align: center;
}

.cta-inline h2 {
    margin-bottom: 0.5rem;
}

.cta-inline p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}
