/* Главная — страница «О компании» (корпоративный стиль TechLine) */
.tl-home {
    flex: 1;
    color: var(--text-color);
    background: var(--bg-color);
}

.tl-home-hero {
    padding: 3.25rem 0 3rem;
    background: var(--card-bg);
    border-bottom: 1px solid var(--card-border, #dee2e6);
}

.tl-home-hero-inner {
    max-width: 48rem;
}

.tl-home-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color, #6b7fd7);
    margin-bottom: 0.75rem;
}

.tl-home-hero h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tl-home-hero-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted, #6c757d);
    margin-bottom: 1.5rem;
}

.tl-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tl-home-stats {
    padding: 2rem 0;
    background: var(--light-color, #f8f9fa);
    border-bottom: 1px solid var(--card-border, #dee2e6);
}

[data-theme="dark"] .tl-home-stats,
[data-theme="contrast"] .tl-home-stats {
    background: var(--light-color);
}

.tl-home-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.tl-home-stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
}

.tl-home-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted, #6c757d);
    margin-top: 0.35rem;
    line-height: 1.4;
}

.tl-home-section {
    padding: 3.5rem 0;
}

.tl-home-section-alt {
    background: var(--light-color, #f8f9fa);
    border-top: 1px solid var(--card-border, #dee2e6);
    border-bottom: 1px solid var(--card-border, #dee2e6);
}

.tl-home-prose {
    max-width: 48rem;
    margin: 0 auto;
}

.tl-home-prose-wide {
    max-width: 52rem;
    margin: 0 auto;
}

.tl-home-section-title {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    color: var(--text-color);
    text-align: center;
}

.tl-home-section-title--left {
    text-align: left;
    margin-bottom: 1.25rem;
}

.tl-home-prose p,
.tl-home-advantage-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.15rem;
    text-align: justify;
}

.tl-home-prose p:last-child {
    margin-bottom: 0;
}

.tl-home-advantages {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.tl-home-advantage-item {
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--card-border, #dee2e6);
}

.tl-home-advantage-item:first-child {
    padding-top: 0;
}

.tl-home-advantage-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tl-home-advantage-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.tl-home-advantage-text {
    margin-bottom: 0;
    font-size: 1rem;
}

.tl-home-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    max-width: 56rem;
    margin: 0 auto;
}

.tl-home-two-col h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.tl-home-two-col p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted, #6c757d);
    margin: 0;
    text-align: justify;
}

.tl-home-news-wrap {
    max-width: 56rem;
    margin: 0 auto;
}

.tl-home-news-card {
    border: 1px solid var(--card-border, #dee2e6);
    border-radius: 4px;
    background: var(--card-bg);
    overflow: hidden;
}

.tl-home-news-card .badge {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.tl-home-footer-cta {
    padding: 2.5rem 0 3rem;
    text-align: center;
    border-top: 1px solid var(--card-border, #dee2e6);
}

.tl-home-footer-cta p {
    color: var(--text-muted, #6c757d);
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .tl-home-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tl-home-two-col {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media (max-width: 575px) {
    .tl-home-stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .tl-home-section {
        padding: 2.5rem 0;
    }

    .tl-home-prose p,
    .tl-home-advantage-text {
        text-align: left;
    }

    .tl-home-two-col p {
        text-align: left;
    }
}
