/* Страница LED-экранов */
.led-page {
    padding-top: 90px;
    background-color: #f8f5f3;
}

.led-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.led-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(32, 30, 29, 0.92) 0%, rgba(32, 30, 29, 0.75) 45%, rgba(255, 126, 62, 0.35) 100%),
        url('/static/images/screen.jpg') center/cover no-repeat;
    z-index: 0;
}

.led-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 56px;
}

.led-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
}

.led-hero__lead {
    font-size: 1.125rem;
    line-height: 1.65;
    max-width: 720px;
    opacity: 0.95;
    margin-bottom: 28px;
}

.led-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 32px;
}

.led-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: #333;
}

.led-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.led-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #201e1d;
    margin-bottom: 12px;
    padding-top: 16px;
}

.led-section__subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.led-features {
    display: grid;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.led-features li {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(32, 30, 29, 0.06);
    font-size: 1rem;
    line-height: 1.65;
    border-left: 4px solid #ff7e3e;
}

.led-features li strong {
    display: block;
    color: #201e1d;
    margin-bottom: 6px;
    font-size: 1.0625rem;
}

.led-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.led-benefits li {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(32, 30, 29, 0.06);
}

.led-benefits li strong {
    display: block;
    color: #ff7e3e;
    font-size: 1.0625rem;
    margin-bottom: 10px;
}

.led-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.led-steps li {
    counter-increment: step;
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 24px 72px;
    position: relative;
    box-shadow: 0 4px 20px rgba(32, 30, 29, 0.06);
    line-height: 1.65;
}

.led-steps li::before {
    content: counter(step);
    position: absolute;
    left: 20px;
    top: 22px;
    width: 36px;
    height: 36px;
    background: #ff7e3e;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.led-cta-text {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #201e1d;
    max-width: 640px;
    margin: 0 auto 8px;
    line-height: 1.5;
}

.led-page .header__menu a.landing-page__nav-active {
    color: #ff7e3e;
}

@media (max-width: 768px) {
    .led-hero {
        min-height: 360px;
    }

    .led-hero__container {
        padding: 32px 16px 40px;
    }

    .led-content,
    .led-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}
