* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'tt';
}

@font-face {
    font-family: 'tt';
    src: url(../fonts/7f986db5bd41c954-s.p.woff2);
}

:root {
    --primary: #ECAF54;
    --primary-hover: #d4a040;
    --dark: #02142c;
    --dark-footer: #01152d;
    --text: #151e34;
    --text-light: rgba(255, 255, 255, 0.7);
    --bg-light: #f9f9f9;
    --white: #fff;
    --shadow: 0 4px 26px 0 rgba(170, 175, 181, 0.24);
    --shadow-hover: 0 8px 40px 0 rgba(170, 175, 181, 0.35);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.distance {
    margin-top: 74px;
}

.title {
    margin-bottom: 36px;
    font-weight: 700;
    font-size: 34px;
    color: var(--text);
    text-align: center;
}

p {
    color: var(--text);
}

/* ===== BUTTONS ===== */
.btn,
.header-btn,
.brand-button,
.btn-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 175, 84, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.header-btn {
    padding: 12px 32px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-size: 16px;
}

.header-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.brand-button {
    padding: 16px 33px;
    background: var(--primary);
    color: var(--white);
    max-width: fit-content;
}

.brand-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-consultation {
    padding: 19px 44px;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
}

.btn-consultation:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 175, 84, 0.4);
}

/* ===== HEADER ===== */
.header {
    background: var(--dark);
    padding: 17px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}


.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 22px;
    height: 14px;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
    top: 0;
}

.burger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-line:nth-child(3) {
    bottom: 0;
}

.burger.active .burger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 33px;
}

.nav-link {
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .header-inner {
        gap: 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

}

/* Планшеты маленькие - бургер меню */
@media (max-width: 1024px) {
    .burger {
        display: block;
    }

    .header-burger-logo {
        display: flex;
        align-items: center;
        gap: 36px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 380px;
        height: 100vh;
        background: var(--dark);
        padding: 100px 30px 40px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-inner {
        gap: 16px;
    }

}

/* Телефоны - компактная шапка */
@media (max-width: 768px) {

    .header-inner {
        gap: 12px;
    }

}


.btn-primary:hover svg path,
.btn-consultation:hover svg path {
    fill: #fff;
}

.btn-outline:hover svg path {
    fill: #fff;
}

.header-btn:hover svg path {
    fill: #fff;
}

.activity-card-text a:hover svg path,
.solution-link:hover svg path,
.news-link:hover svg path {
    fill: var(--white);
}

/* ===== BANNER ===== */
.banner {
    position: relative;
    min-height: 661px;
    display: flex;
    margin-top: 77px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../media/banner.png) center/cover;
    z-index: -1;
}

.banner-content {
    max-width: 700px;
    padding: 85px 0 85px 67px;
}

.banner-title {
    font-weight: 700;
    font-size: 44px;
    color: var(--white);
    margin: 0 0 26px 0;
}

.banner-text {
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
    margin: 0 0 48px 0;
    max-width: 560px;
}

.banner-buttons {
    display: flex;
    gap: 26px;
}

/* ===== CARDS COMMON ===== */
.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* ===== ACTIVITY ===== */
.activity-cards {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.activity-card {
    box-shadow: var(--shadow);
    background: var(--white);
    display: flex;
    gap: 24px;
    border-radius: var(--radius);
    padding: 25px 21px;
}

.activity-card-image {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 52px 0;
}

.activity-card-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: space-between;
}

.activity-card-text a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    width: 38px;
    height: 38px;
    transition: var(--transition);
}

.activity-card-text a:hover {
    background: var(--primary);
}

.activity-card-text a:hover svg {
    fill: var(--white);
}

.activity-card p {
    font-weight: 500;
    font-size: 15px;
    line-height: 146%;
}

.activity-card .activity-card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.solution-image {
    height: 180px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-content {
    padding: 23px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.solution-title {
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 12px 0;
}

.solution-description {
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    margin: 0 0 24px 0;
    flex: 1;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    transition: var(--transition);
    align-self: flex-start;
}

.solution-link:hover {
    background: var(--primary);
}

.solution-link:hover svg {
    fill: var(--white);
}

/* ===== BRANDS ===== */
.brands-featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.brand-card-large {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 36px 60px 36px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.brand-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-logo-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 238px;
    width: 100%;
    height: 82px;
    margin-bottom: 22px;
}

.brand-name {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}

.brand-description {
    font-weight: 500;
    font-size: 16px;
    line-height: 146%;
    margin: 0;
}

.brand-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-equipment-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 280px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand-item {
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    min-height: 118px;
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.brand-item-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== TRUST ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.trust-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 165px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-4px);
}

.trust-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-item:hover .trust-logo {
    filter: grayscale(0%);
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    padding: 25px;
    padding-bottom: 49px;
    justify-content: space-between;
}

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
    z-index: 2;
}

.news-card-content {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--text);
    margin-bottom: 12px;
}

.news-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--text);
    margin-bottom: 26px;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    transition: var(--transition);
    align-self: flex-start;
}

.news-link:hover {
    background: var(--primary);
}

.news-link:hover svg {
    fill: var(--white);
}

/* ===== FAQ ===== */
.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 20px 11px 28px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question-text {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--text);
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 24px 28px;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: var(--text);
}

.show-all-answers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
}

.show-all-answers:hover {
    opacity: 0.8;
}

.show-all-answers svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.show-all-answers.active svg {
    transform: rotate(180deg);
}

/* ===== ABOUT MAES ===== */
.about-maes-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 60px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.about-maes-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.about-maes-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-maes-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-maes-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 156%;
    margin: 0;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--primary);
    transition: var(--transition);
}

.read-more-link:hover {
    gap: 18px;
}

/* ===== CONSULTATION CTA ===== */
.consultation-cta {
    position: relative;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    min-height: 524px;
}

.consultation-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../media/project.png) center/cover;
    z-index: -1;
}

.consultation-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.consultation-cta-content {
    padding-left: 64px;
}

.consultation-cta-title {
    font-weight: 700;
    font-size: 34px;
    color: var(--white);
    margin: 0 0 18px 0;
}

.consultation-cta-text {
    font-size: 18px;
    line-height: 140%;
    color: var(--white);
    margin: 0 0 50px 0;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 110px;
    background: var(--dark-footer);
    padding: 88px 0 32px;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 100px;
}

.footer-col-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-desc {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--white);
    opacity: 0.54;
    max-width: 282px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    width: 38px;
    height: 38px;
    transition: var(--transition);
}

.footer-social:hover {
    background: rgba(236, 175, 84, 0.1);
    transform: translateY(-2px);
}

.footer-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary);
    margin: 0 0 14px 0;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    display: inline-block;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--primary);
}

.footer-divider {
    max-width: 100%;
    height: 1px;
    background: #d9d9d9;
    opacity: 0.1;
    margin: 0 auto 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright,
.footer-privacy {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
}

.footer-privacy:hover {
    color: var(--primary);
}


.section-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.section-title-row .title {
    margin-bottom: 0;
    text-align: left;
}

.slider-nav {
    display: none;
    gap: 8px;
    flex-shrink: 0;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--primary-hover);
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.slider-arrow svg {
    width: 22px;
    height: 22px;
    display: block;
}

.slider-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E4E4E4;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    border: none;
    flex-shrink: 0;
}

.slider-dot.active {
    background: var(--primary);
}

@media (max-width: 1430px) {
    .activity-cards {
        flex-wrap: wrap;
    }

    .activity-card {
        width: 100%;
    }

    .activity-card-text {
        justify-content: center;
    }
}

@media (max-width: 1200px) {

    .solutions-grid,
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-col-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .brand-card-large {
        flex-direction: column;
    }

    .brand-button {
        width: 100%;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-maes-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .about-maes-content {
        order: 1;
    }

    .about-maes-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .distance {
        margin-top: 50px;
    }

    .title {
        text-align: start;
    }

    .banner {
        min-height: 482px;
        margin-top: 0;
        padding-top: 42px;
    }

    .banner-bg {
        background: url(../media/banner-tablet.png) center / cover;
    }

    .banner-content {
        padding: 60px 20px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-text {
        max-width: 292px;
    }

    .banner-buttons a {
        width: 100%;
    }

    .section-title-row {
        justify-content: space-between;
    }

    .activity-card-image {
        padding: 21px 0;
    }

    /* --- Слайдеры: стрелки и точки становятся видимыми --- */
    .slider-nav,
    .slider-dots {
        display: flex;
    }

    .section-title-row {
        margin-bottom: 24px;
    }

    .section-title-row .title {
        margin-bottom: 0;
    }

    /* --- Что мы делаем: слайдер, 1 карточка на экран --- */
    .activity-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding-bottom: 24px;
    }

    .activity-cards::-webkit-scrollbar {
        display: none;
    }

    .activity-card {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
    }

    /* --- Решения по отраслям: слайдер, 3 карточки на экран --- */
    .solutions-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding-bottom: 24px;
    }

    .solutions-grid::-webkit-scrollbar {
        display: none;
    }

    .solution-card {
        flex: 0 0 calc((100% - 32px) / 3);
        scroll-snap-align: start;
    }

    /* --- Нам доверяют: слайдер, 3 карточки на экран --- */
    .trust-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
    }

    .trust-grid::-webkit-scrollbar {
        display: none;
    }

    .trust-item {
        flex: 0 0 calc((100% - 32px) / 3);
        scroll-snap-align: start;
    }

    /* --- Новости и блог: слайдер, 2 карточки на экран --- */
    .news-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        padding-bottom: 24px;
    }

    .news-grid::-webkit-scrollbar {
        display: none;
    }

    .news-card {
        flex: 0 0 calc((100% - 16px) / 2);
        scroll-snap-align: start;
    }

    .consultation-cta {
        min-height: auto;
        padding: 60px 0;
    }

    .faq-question {
        padding: 25px 20px 25px 28px;
    }

    .consultation-cta-bg {
        background: url(../media/project-tablet.png) center / cover;
    }

    .consultation-cta-content {
        max-width: 371px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
        column-gap: 16px;
        margin-bottom: 40px;
    }

    .footer-col-logo {
        grid-column: 1 / -1;
        order: 0;
    }

    /* Решения */
    .footer-top .footer-col:nth-child(2) {
        order: 2;
    }

    /* Услуги */
    .footer-top .footer-col:nth-child(3) {
        order: 3;
    }

    /* Компания */
    .footer-top .footer-col:nth-child(4) {
        order: 1;
    }

    .footer-col-contacts {
        order: 4;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-col-logo {
        flex-direction: row;
        gap: 34px;
        align-items: flex-end;
        padding-bottom: 30px;
        border-bottom: 1px solid #17293F;
    }

    .footer-desc {
        max-width: 424px;
    }
}

@media (max-width:700px) {
    .brands-featured {
        grid-template-columns: repeat(1, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-maes-text-hidden {
    display: inline;
}

@media (max-width: 480px) {
    .about-maes-text-hidden {
        display: none;
    }

    .about-maes-content.expanded .about-maes-text-hidden {
        display: inline;
    }

    .about-maes-content.expanded .read-more-link svg {
        transform: rotate(180deg);
    }

    .consultation-cta {
        min-height: auto;
        padding: 60px 0;
        height: 384px;
    }

    .consultation-cta-title {
        font-size: 24px;
    }

    .title {
        font-size: 24px;
    }

    .solution-image {
        height: 200px;
    }

    .about-maes-wrapper {
        padding: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }

    .footer-col-logo {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .consultation-cta-bg {
        background: url(../media/project-mobile.png) center / cover;
    }

    .container {
        padding: 0 14px;
    }

    .consultation-cta-content {
        padding-left: 18px;
        max-width: 278px;
    }

    .btn-consultation {
        padding: 19px 15px;
        font-size: 16px;
    }

    .footer-logo img {
        max-width: 312px;
    }

    .footer {
        margin-top: 86px;
    }

    .activity-card-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .activity-card {
        flex-direction: column;
    }

    .slider-dots {
        margin-top: 0;
    }

    .trust-grid {
        padding-bottom: 24px;
    }

    .banner-buttons {
        flex-wrap: wrap;
        gap: 16px;
    }

    .header-inner {
        gap: 16px;
        flex-wrap: wrap;
    }

    .logo img {
        max-width: 234px;
    }

    .header-burger-logo {
        gap: 28px;
    }

    .header-btn {
        width: 100%;
    }

    .banner-bg {
        background: url(../media/banner-mobile.png) center / cover;
    }

    .banner-title {
        font-size: 24px;
        margin: 0 0 18px 0;
    }

    .banner-content {
        padding: 20px 0px 100px 0px;
    }

    .banner {
        min-height: 482px;
        padding-top: 126px;
    }

    .banner-text {
        margin: 0 0 194px 0;
        font-size: 16px;
    }
}