/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #151515;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Верхнее меню */
.header-top {
    background-color: #1a1a1a;
    padding: 10px 0;
}

.top-menu-list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 30px;
}

.top-menu-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.top-menu-item a:hover {
    color: #FFCC00;
}

/* Нижнее меню */
.header-bottom {
    background-color: #000;
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.header-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Логотип */
.logo {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

/* Основное меню */
.main-menu {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-left: 60px;
}

.main-menu-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.main-menu-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.main-menu-item a:hover {
    color: #FFCC00;
}

/* Поиск */
.search {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #FFCC00;
}

/* Основной контент */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero секция */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
}

/* Контент секция */
.content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.content-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.content-card h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.content-card p {
    color: #666;
    line-height: 1.8;
}

/* Блок Спецтехника CAT */
.equipment-section {
    background-color: #151515;
    padding: 80px 0;
    overflow: hidden;
}

.equipment-section[data-brand="cat"] {
    padding-bottom: 0;
}

.equipment-section[data-brand="sem"] {
    padding-top: 80px;
}

.equipment-section .container {
    max-width: none;
    padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
    padding-right: 0;
}

.equipment-title {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    margin-top: 0;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-slider-wrapper {
    overflow: visible;
    margin: 0;
}

.equipment-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-right: 40px;
}

.equipment-card {
    flex: 0 0 287px;
    min-width: 287px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    border-radius: 4px;
}

.equipment-card:hover {
    transform: scale(1.02);
}

.equipment-card-image {
    width: 287px;
    height: 352px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.equipment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-card-image img {
    transform: scale(1.05);
}

.equipment-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px 15px 0;
    border-bottom: 1px solid #333;
    transition: border-color 0.3s ease;
}

.equipment-card:hover .equipment-card-footer {
    border-bottom-color: #FFCC00;
}

.equipment-card-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.equipment-card-arrow {
    color: #FFCC00;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-card-arrow {
    transform: translateX(5px);
}

.equipment-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    max-width: calc(1200px - 40px);
}

.equipment-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.equipment-dot {
    width: 7px;
    height: 7px;
    background-color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.equipment-dot.active {
    width: 36px;
    height: 7px;
    background-color: #fff;
    border-radius: 4px;
}

.equipment-arrows {
    display: flex;
    align-items: center;
    gap: 24px;
}

.equipment-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-arrow svg {
    display: block;
}

.equipment-arrow-prev {
    color: #fff;
}

.equipment-arrow-next {
    color: #fff;
}

.equipment-arrow:hover {
    color: #fff;
}

.equipment-arrow.disabled {
    color: #555;
    cursor: default;
}

.equipment-arrow.disabled:hover {
    color: #555;
}

/* Секция Хиты продаж */
.hits-section {
    background-color: #FFCC00;
    padding: 80px 0;
}

.hits-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.hits-title-highlight {
    display: block;
    font-weight: 400;
}

.hits-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hits-product-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hits-product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.hits-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hits-product-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hits-product-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.hits-product-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0 0 24px 0;
}

.hits-product-specs {
    margin-bottom: 24px;
}

.hits-product-spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}

.hits-product-spec-label {
    color: #666;
}

.hits-product-spec-value {
    font-weight: 600;
    color: #000;
    text-align: right;
}

.hits-product-spec-note {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: #999;
}

.hits-product-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 12px 20px;
    background: #FFCC00;
    border: none;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
}

.hits-product-btn:hover {
    background: #e6c200;
}

.hits-product-btn.secondary {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.hits-product-btn.secondary:hover {
    background: #000;
    color: #fff;
}

.hits-product-btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hits-product-btn:hover .hits-product-btn-arrow {
    transform: translateX(5px);
}

.hits-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hits-description {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 40px;
}

.hits-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hits-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hits-link:hover {
    opacity: 0.7;
}

.hits-link-arrow {
    font-size: 18px;
}

.hits-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 264px;
    height: 48px;
    padding: 0 20px;
    background: #000;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.hits-btn:hover {
    background: #333;
}

.hits-btn-arrow {
    font-size: 20px;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.hits-btn:hover .hits-btn-arrow {
    transform: translateX(5px);
}

.hits-btn.primary {
    background: #FFCC00;
    color: #000;
}

.hits-btn.primary:hover {
    background: #e6c200;
}

.hits-btn.secondary {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.hits-btn.secondary:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.hits-link.btn-style {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 264px;
    height: 48px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hits-link.btn-style.primary {
    background: #FFCC00;
    color: #000;
}

.hits-link.btn-style.primary:hover {
    background: #e6c200;
    opacity: 1;
}

.hits-link.btn-style.secondary {
    background: transparent;
    border: 1px solid #000;
    color: #000;
}

.hits-link.btn-style.secondary:hover {
    background: #000;
    color: #fff;
    opacity: 1;
}

.hits-link.btn-style.dark {
    background: #000;
    color: #fff;
}

.hits-link.btn-style.dark:hover {
    background: #333;
    opacity: 1;
}

/* Секция Zeppelin & Caterpillar */
.about-section {
    background-color: #151515;
    padding: 80px 0;
}

.about-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 60px;
}

.about-title br + * {
    color: #FFCC00;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.about-column-left {
    padding-right: 20px;
}

.about-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #888;
    margin: 0;
}

.about-column-right p {
    font-size: 14px;
    line-height: 1.8;
    color: #888;
    margin: 0 0 20px 0;
}

.about-column-right p:first-child {
    margin-top: 0;
}

.about-column-right p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    margin-top: 30px;
}

.about-btn-wrapper {
    margin-top: 0;
}

.about-btn-wrapper.center {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.about-btn-wrapper.center .about-btn {
    grid-column: 2;
}

.about-btn-wrapper.right {
    text-align: right;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 264px;
    height: 48px;
    padding: 12px 20px;
    background: #FFCC00;
    border: 1px solid #FFCC00;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.about-btn:hover {
    background: #e6c200;
    border-color: #e6c200;
}

.about-btn .about-btn-arrow {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.about-btn:hover .about-btn-arrow {
    transform: translateX(5px);
}

/* Footer */
/* ==================== ФУТЕР ==================== */
.footer {
    background: #151515;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex-shrink: 0;
}

.footer-column:last-child {
    text-align: left;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FFCC00;
    display: inline-block;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #FFCC00;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    background: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 12px;
    text-transform: uppercase;
}

.footer-logo-cat {
    background: #FFCC00;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 10px;
}

.footer-copyright {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-menu {
        margin-left: 0;
    }

    .main-menu-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-menu-list {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .equipment-section .container {
        padding-left: 20px;
    }

    .equipment-card {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .equipment-card-image {
        width: 240px;
        height: 295px;
    }

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


    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-column-left {
        padding-right: 0;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .equipment-card {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .equipment-card-image {
        width: 220px;
        height: 270px;
    }

    .equipment-title {
        font-size: 24px;
    }
}

/* Секция Ремонт и обслуживание */
.services-section {
    background-color: #fff;
    padding: 80px 0;
}

.services-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.services-title-highlight {
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #FFCC00;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 368px;
    box-sizing: border-box;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    line-height: 1.3;
    height: 47px;
}

.service-card-description {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.service-card-link:hover {
    gap: 12px;
}

.service-card-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-card-arrow {
    transform: translateX(3px);
}

.services-button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.services-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 336px;
    height: 44px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
}

.services-main-btn:hover {
    background: #000;
    color: #fff;
}

.services-btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.services-main-btn:hover .services-btn-arrow {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services-section {
        padding: 60px 0;
    }

    .service-card {
        height: auto;
        min-height: 280px;
    }

    .services-button-wrapper {
        justify-content: center;
    }

    .services-main-btn {
        width: 100%;
    }
}

/* Секция Новости */
.news-section {
    background-color: #fff;
    padding: 80px 0 0 0;
}

.news-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.news-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.news-title-highlight {
    color: #000;
}

.news-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: right;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.news-item-link:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.news-item-link:hover .news-item-btn {
    background-color: #e6c200;
    border-color: #e6c200;
}

.news-item {
    display: grid;
    grid-template-columns: 260px 1fr 336px;
    gap: 40px;
    align-items: stretch;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

.news-item-link:first-child .news-item {
    border-top: 1px solid #e0e0e0;
}

.news-item-image {
    width: 260px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 150px;
}

.news-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.news-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.news-item-date {
    font-size: 13px;
    color: #808080;
    font-weight: 500;
}

.news-item-action {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 150px;
}

.news-item-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 336px;
    height: 44px;
    padding: 0 16px;
    background: #FFCC00;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    line-height: 1;
}

.news-item-btn:hover {
    background: #e6c200;
}

.news-item-btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.news-item-btn:hover .news-item-btn-arrow {
    transform: translateX(3px);
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
}

.news-nav {
    display: flex;
    gap: 10px;
}

.news-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #FFCC00;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.news-nav-btn:hover {
    background: #e6c200;
}

.news-nav-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news-nav-btn.disabled:hover {
    background: #FFCC00;
}

.news-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 336px;
    height: 44px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
}

.news-all-btn:hover {
    background: #000;
    color: #fff;
}

.news-all-btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.news-all-btn:hover .news-all-btn-arrow {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .news-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-subtitle {
        text-align: left;
    }

    .news-title {
        font-size: 42px;
    }

    .news-item {
        grid-template-columns: 150px 1fr 200px;
        gap: 20px;
    }

    .news-item-image {
        width: 150px;
        height: 100px;
    }

    .news-item-btn {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 40px 0;
    }

    .news-header {
        display: block !important;
        grid-template-columns: unset !important;
        margin-bottom: 30px;
    }

    .news-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .news-subtitle {
        text-align: left;
        font-size: 14px;
    }

    .news-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .news-item-link {
        display: block !important;
    }

    .news-item-link:last-child {
        margin-bottom: 0 !important;
    }

    .news-item {
        display: block !important;
        grid-template-columns: unset !important;
        gap: unset !important;
        padding: 0 !important;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
    }

    .news-item-link:first-child .news-item {
        border-top: 1px solid #e0e0e0;
    }

    .news-item-image {
        width: 100% !important;
        height: 200px !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
    }

    .news-item-content {
        display: block !important;
        padding: 15px !important;
        height: auto !important;
    }

    .news-item-title {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin: 0 0 10px 0 !important;
        line-height: 1.3;
    }

    .news-item-description {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
        margin: 0 0 12px 0 !important;
    }

    .news-item-date {
        font-size: 12px;
        color: #888;
    }

    .news-item-action {
        display: none !important;
        height: auto !important;
    }

    .news-footer {
        display: none !important;
    }
}


/* Tips/Promo Slider Section */
.tips-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.tips-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.tips-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.tips-slide.active {
    opacity: 1;
    visibility: visible;
}

.tips-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.tips-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.tips-slide-content {
    max-width: 945px;
}

.tips-slide-title {
    font-size: 56px;
    font-weight: 300;
    color: #fff;
    line-height: 64px;
    margin: 0 0 60px 0;
    text-transform: uppercase;
}

.tips-title-main {
    display: block;
    font-weight: 700;
    color: #fff;
}

.tips-title-highlight {
    display: block;
    color: #fff;
    font-weight: 200;
    max-width: 945px;
}

.tips-slide-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.tips-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 200px;
    height: 48px;
    padding: 0 20px;
    background: #FFCC00;
    border: none;
    border-radius: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    gap: 15px;
}

.tips-slide-btn:hover {
    background: #e6c200;
}

.tips-slide-btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tips-slide-btn:hover .tips-slide-btn-arrow {
    transform: translateX(3px);
}

.tips-footer {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.tips-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tips-progress {
    flex: 1;
    height: 4px;
    background: #ffffff;
    margin-right: 30px;
    overflow: hidden;
}

.tips-progress-bar {
    height: 100%;
    width: 0%;
    background: #FFCC00;
    transition: width 0.1s linear;
}

.tips-nav {
    display: flex;
    gap: 10px;
}

.tips-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tips-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.tips-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .tips-section {
        height: 400px;
    }

    .tips-slide-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .tips-section {
        height: 350px;
    }

    .tips-slide-title {
        font-size: 28px;
    }

    .tips-slide-content {
        max-width: 100%;
    }

    .tips-slide-btn {
        width: 100%;
    }

    .tips-footer .container {
        flex-direction: column;
        gap: 15px;
    }

    .tips-progress {
        width: 100%;
        margin-right: 0;
    }
}

/* ===== СТРАНИЦА СЕРВИСНОГО ОБСЛУЖИВАНИЯ ===== */

/* Баннер страницы */
.page-banner {
    height: 900px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

/* Контент страницы сервиса */
.service-content {
    background: #000;
    padding: 80px 0;
    color: #fff;
}

.service-header {
    margin-bottom: 60px;
}

.service-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
}

.service-title-bold {
    font-weight: 700;
    display: block;
}

.service-title-light {
    font-weight: 300;
    display: block;
}

/* Описание в 2 колонки */
.service-description {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 285px;
    margin-bottom: 80px;
}

.service-intro {
    font-size: 16px;
    font-style: normal;
    color: #ccc;
    line-height: 1.6;
    white-space: nowrap;
}

.service-description-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Карточки услуг на странице сервиса */
.service-page-cards {
    display: flex;
    gap: 20px;
}

.service-page-card {
    width: 350px;
    height: 275px;
    background: #FFCC00;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.service-page-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-page-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-page-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.service-page-card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #000;
    flex: 1;
}

.service-page-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    margin-top: auto;
}

.service-page-card-link:hover {
    opacity: 0.7;
}

.service-page-card-link svg {
    transition: transform 0.3s ease;
}

.service-page-card-link:hover svg {
    transform: translateX(5px);
}

/* Адаптивность страницы сервиса */
@media (max-width: 1024px) {
    .service-page-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-description {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 600px;
    }

    .service-content {
        padding: 60px 0;
    }

    .service-title {
        font-size: 36px;
    }

    .service-page-cards {
        grid-template-columns: 1fr;
    }

    .service-description {
        margin-bottom: 50px;
    }
}

/* Блок управления парком техники */
.fleet-section {
    background: #fff;
    padding: 80px 0;
}

.fleet-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.fleet-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.fleet-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.fleet-title-bold {
    font-size: 56px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.fleet-title-light {
    font-size: 56px;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
}

.fleet-text {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.fleet-text:first-child {
    margin-top: 0;
}

.fleet-btn {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    background: #FFCC00;
    color: #000;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.fleet-btn:hover {
    background: #e6b800;
}

.fleet-btn svg {
    transition: transform 0.3s ease;
}

.fleet-btn:hover svg {
    transform: translateX(5px);
}

.fleet-image {
    width: 100%;
    max-width: 500px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* Категории сервиса */
.service-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 100px;
}

.service-category {
    position: relative;
    height: 352px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border-radius: 4px;
}

.service-category-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.service-category:hover .service-category-image {
    transform: scale(1.05);
}

.service-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-category-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-category:hover .service-category-title {
    color: #FFCC00;
}

.service-category-overlay svg {
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-category:hover .service-category-overlay svg {
    transform: translateX(5px);
    color: #FFCC00;
}

/* Адаптивность блока управления парком */
@media (max-width: 1024px) {
    .fleet-content {
        flex-direction: column;
    }

    .service-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-title-bold,
    .fleet-title-light {
        font-size: 28px;
    }

    .service-categories {
        grid-template-columns: 1fr;
    }
}

/* Блок сервис и ремонт энергетического оборудования */
.energy-section {
    background: #fff;
    padding: 100px 0;
}

.energy-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.energy-title-bold {
    font-size: 56px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.energy-title-light {
    font-size: 56px;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
}

.energy-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.energy-description-left {
    max-width: 400px;
}

.energy-intro {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.energy-description-right p {
    font-size: 14px;
    line-height: 1.8;
    color: #000;
}

.energy-videos {
    display: flex;
    gap: 30px;
}

.energy-video-card {
    display: flex;
    flex-direction: column;
    width: 348px;
    flex-shrink: 0;
}

.energy-video-link {
    display: block;
    text-decoration: none;
}

.energy-video-thumbnail {
    position: relative;
    width: 348px;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
}

.energy-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
}

.energy-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.energy-video-link:hover .energy-video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.energy-video-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-top: 15px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .energy-description {
        grid-template-columns: 1fr;
    }

    .energy-videos {
        flex-wrap: wrap;
    }

    .energy-video-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .energy-title-bold,
    .energy-title-light {
        font-size: 28px;
    }

    .energy-video-card {
        width: 100%;
    }
}

/* Блок ремонтные опции */
.repair-section {
    background: #FFCC00;
    padding: 100px 0;
}

.repair-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.repair-title-bold {
    font-size: 56px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.repair-title-light {
    font-size: 56px;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
}

.repair-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.repair-left {
    display: flex;
    flex-direction: column;
}

.repair-description {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 132px;
    max-width: 510px;
}

.repair-btn {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    background: #000;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.repair-btn:hover {
    background: #333;
}

.repair-btn svg {
    transition: transform 0.3s ease;
}

.repair-btn:hover svg {
    transform: translateX(5px);
}

.repair-right {
    display: flex;
    flex-direction: column;
}

.repair-image {
    width: 100%;
    max-width: 500px;
    border-radius: 4px;
}

.repair-contact {
    margin-top: 30px;
}

.repair-phone-label {
    font-size: 14px;
    color: #000;
    margin-bottom: 10px;
}

.repair-phone {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.repair-hours {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
}

.repair-email {
    font-size: 14px;
    color: #000;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .repair-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .repair-title-bold,
    .repair-title-light {
        font-size: 28px;
    }
}

/* ========================================
   УЛУЧШЕННАЯ МОБИЛЬНАЯ АДАПТАЦИЯ
   ======================================== */

/* Общие стили для мобильных */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Хиты продаж */
    .hits-section {
        padding: 50px 0;
    }

    .hits-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .hits-products {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .hits-product-image {
        height: 200px;
    }

    .hits-product-content {
        padding: 20px;
    }

    .hits-product-title {
        font-size: 18px;
    }

    .hits-footer {
        padding-top: 25px;
    }

    .hits-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hits-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .hits-link.btn-style,
    .hits-btn {
        width: 100%;
        justify-content: center;
    }

    /* О компании */
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-column-right p {
        font-size: 13px;
    }

    .about-btn-wrapper.center {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-btn-wrapper.center .about-btn {
        grid-column: 1;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    /* Секция оборудования */
    .equipment-section {
        padding: 50px 0;
    }

    .equipment-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .equipment-controls {
        margin-top: 25px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    /* Сервисы */
    .services-section {
        padding: 50px 0;
    }

    .services-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-card {
        height: auto;
        min-height: 250px;
        padding: 25px;
    }

    .service-card-title {
        font-size: 16px;
        height: auto;
        margin-bottom: 20px;
    }

    /* Новости */
    .news-section {
        padding: 50px 0 0 0;
    }

    .news-header {
        display: block;
        margin-bottom: 30px;
    }

    .news-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .news-subtitle {
        font-size: 13px;
        text-align: left;
    }

    .news-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .news-item-link {
        display: block;
    }

    .news-item {
        display: block;
        padding: 0;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
    }

    .news-item-link:first-child .news-item {
        border-top: 1px solid #e0e0e0;
    }

    .news-item-image {
        width: 100%;
        height: 200px;
        border-radius: 0;
    }

    .news-item-content {
        display: block;
        padding: 15px;
        height: auto;
    }

    .news-item-title {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    .news-item-description {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
        margin: 0 0 12px 0;
    }

    .news-item-date {
        font-size: 12px;
        color: #888;
    }

    .news-item-action {
        display: none;
    }

    .news-footer {
        display: none;
    }

    /* Tips слайдер - скрыт на мобильных */
    .tips-section {
        display: none;
    }

    .tips-slide-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .tips-title-highlight {
        max-width: 100%;
    }

    .tips-footer {
        position: relative;
        bottom: auto;
        padding: 30px 0;
    }

    /* Футер */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .footer-menu a {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-copyright {
        font-size: 11px;
        text-align: center;
        line-height: 1.5;
    }
}

/* Маленькие мобильные (до 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hits-title {
        font-size: 24px;
    }

    .hits-product-title {
        font-size: 16px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 14px;
    }

    .services-title {
        font-size: 24px;
    }

    .news-title {
        font-size: 24px;
    }

    .tips-slide-title {
        font-size: 20px;
    }

    .tips-slide-btn {
        min-width: 100%;
    }

    /* Сервисные карточки */
    .service-card {
        padding: 20px;
    }

    .service-card-title {
        font-size: 14px;
    }

    .service-card-description {
        font-size: 13px;
    }

    /* Хиты */
    .hits-product-btn {
        height: 44px;
        font-size: 13px;
    }
}

/* Фикс для горизонтального скролла */
html, body {
    overflow-x: hidden;
}

/* Плавные анимации на мобильных */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    a, button {
        touch-action: manipulation;
    }
}

/* ========================================
   МОБИЛЬНАЯ АДАПТАЦИЯ ВНУТРЕННИХ СТРАНИЦ
   ======================================== */

@media (max-width: 768px) {
    /* Каталог */
    .catalog-page {
        padding-bottom: 60px;
    }

    .catalog-title {
        font-size: 28px !important;
        letter-spacing: 1px;
    }

    .catalog-products-count {
        font-size: 13px;
    }

    .catalog-header {
        gap: 15px;
    }

    .catalog-header-right {
        flex-direction: column;
        gap: 10px;
    }

    .catalog-download-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        font-size: 13px;
    }

    .catalog-categories {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 25px;
    }

    .catalog-category-title {
        font-size: 11px;
        line-height: 1.3;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .catalog-products {
        margin-top: 50px;
    }

    .catalog-products-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .catalog-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .catalog-item-title {
        font-size: 11px;
    }

    .catalog-item-body {
        padding: 10px 12px;
    }

    /* Страница баннера */
    .page-banner {
        height: 400px;
    }

    /* Сервисная страница */
    .service-content {
        padding: 40px 0;
    }

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

    .service-description {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .service-intro {
        white-space: normal;
        font-size: 14px;
    }

    .service-page-cards {
        flex-direction: column;
        gap: 15px;
    }

    .service-page-card {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    /* Fleet section */
    .fleet-section {
        padding: 50px 0;
    }

    .fleet-title-bold,
    .fleet-title-light {
        font-size: 24px;
    }

    .fleet-content {
        gap: 30px;
        margin-bottom: 40px;
    }

    .fleet-text {
        font-size: 13px;
    }

    .fleet-btn {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .fleet-image {
        max-width: 100%;
    }

    /* Service categories */
    .service-categories {
        grid-template-columns: 1fr !important;
        gap: 15px;
        margin-top: 50px;
    }

    .service-category {
        height: 250px;
    }

    .service-category-title {
        font-size: 14px;
    }

    /* Energy section */
    .energy-section {
        padding: 50px 0;
    }

    .energy-title-bold,
    .energy-title-light {
        font-size: 24px;
    }

    .energy-intro {
        font-size: 18px;
    }

    .energy-videos {
        flex-direction: column;
        gap: 20px;
    }

    .energy-video-card {
        width: 100%;
    }

    .energy-video-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    /* Repair section */
    .repair-section {
        padding: 50px 0;
    }

    .repair-title-bold,
    .repair-title-light {
        font-size: 24px;
    }

    .repair-content {
        flex-direction: column;
        gap: 30px;
    }

    .repair-description {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .repair-btn {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .repair-image {
        max-width: 100%;
    }

    .repair-phone {
        font-size: 22px;
    }

    /* Breadcrumbs */
    .catalog-breadcrumbs {
        font-size: 12px;
        padding: 20px 0;
    }

    /* Контактная страница */
    .contacts-section {
        padding: 50px 0;
    }

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

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 25px;
    }

    /* О компании страницы */
    .about-page-section {
        padding: 50px 0;
    }

    .about-page-title {
        font-size: 28px;
    }

    .about-page-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Страница новостей */
    .news-page-section {
        padding: 50px 0;
    }

    .news-page-title {
        font-size: 28px;
    }

    .news-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Карточка новости на странице */
    .news-card {
        flex-direction: column;
    }

    .news-card-image {
        width: 100%;
        height: 200px;
    }

    .news-card-content {
        padding: 20px;
    }

    .news-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    /* Каталог - совсем маленькие экраны */
    .catalog-title {
        font-size: 24px !important;
    }

    .catalog-download-btn {
        font-size: 12px;
        padding: 12px 14px;
    }

    .catalog-download-btn span {
        display: block;
        text-align: center;
    }

    .catalog-category-title {
        font-size: 10px;
    }

    .catalog-item-title {
        font-size: 10px;
    }

    /* Сервисные страницы */
    .service-title {
        font-size: 24px;
    }

    .fleet-title-bold,
    .fleet-title-light,
    .energy-title-bold,
    .energy-title-light,
    .repair-title-bold,
    .repair-title-light {
        font-size: 20px;
    }

    .service-category {
        height: 200px;
    }
}
