/* === HERO === */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #f0f9ff 100%);
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
}

.hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* === TOOLS GRID === */
.tool-section { margin-bottom: 2.5rem; }

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* === SEO CONTENT === */
.seo-content {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.seo-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem 0;
    color: var(--color-text);
}

.seo-content h2:first-child { margin-top: 0; }

.seo-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
    color: var(--color-primary);
}

.seo-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero__title { font-size: 1.75rem; }
    .hero { padding: 2rem 1rem; }
    .tools-grid { grid-template-columns: 1fr; }
    .seo-content { padding: 1.5rem; }
}
