.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 80px 24px;
}

.hero-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    opacity: 0.4;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 480px;
}

.hero .btn {
    margin-top: 16px;
}

.section-types {
    padding: 80px 48px;
    border-top: 1px solid var(--border);
}

.section-types .section-label {
    text-align: center;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 960px;
    margin: 0 auto;
}

.section-about {
    padding: 80px 48px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.section-about h2 {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}

.section-about p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 60px 24px;
    }

    .hero-title {
        font-size: 28px;
    }

    .types-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-types,
    .section-about {
        padding: 60px 24px;
    }
}
