/* ============================================
   CONSULTING SERVICE PAGE - SCOPED STYLES
   BEM Naming Convention: cs (consulting-service)
   Visual Accuracy: 90%+ match to Figma design
   Responsive: Desktop (≥1200px), Tablet (768-1199px), Mobile (≤767px)
   ============================================ */

/* ======================
   HERO SECTION
   ====================== */
.cs-hero {
    position: relative;
    min-height: 703px;
    background: url('../images/banner_service.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left:190px;
}

.cs-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(2.5px);
}

.cs-hero__container {
    position: relative;
    z-index: 1;
    max-width: 531px;
    padding: 0 20px;
}

.cs-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cs-hero__title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.cs-hero__divider {
    background: #e90815;
    height: 4px;
    width: 60px;
}

.cs-hero__description {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.cs-hero__cta {
    font-family: 'Montserrat', sans-serif;
    background: #e90815;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    transition: background 0.3s;
    display: block;
}

.cs-hero__cta:hover {
    background: #c0070f;
}

/* ======================
   FEATURES SECTION
   ====================== */
.cs-features {
    background: #000;
    padding: 71px 48px;
}

.cs-features__container {
    max-width: 1340px;
    margin: 0 auto;
    position: relative;
}

.cs-features__title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    margin: 0 0 72px 0;
    max-width: 467px;
}

.cs-features__title--highlight {
    color: #e90815;
}

.cs-features__grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 0;
    padding: 0 103px;
    position: relative;
}

.cs-features__item {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding-top:77px;
}

.item-feature-media {
    & .cs-features__item {
        padding-top: 35px;
    }
}
.cs-features__item--1 {
    grid-column: 1;
    grid-row: 1;
    padding-right: 40px;
    padding-bottom: 77px;
}

.cs-features__item--2 {
    grid-column: 1;
    grid-row: 2;
    padding-right: 40px;
    padding-top: 77px;
}

.cs-features__item--3 {
    grid-column: 2;
    grid-row: 2;
    padding-left: 40px;
    padding-top: 77px;
}

.cs-features__subtitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}

.cs-features__divider {
    background: #e90815;
    height: 4px;
    width: 60px;
    margin-bottom: 24px;
}

.cs-features__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    white-space: pre-line;
}

.cs-features__media {
    position: relative;
    width: 594px;
    height: 396px;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}

.cs-features__image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 60px 20px 60px 20px;
    display: block;
}

.cs-features__video {
    width: 100%;
    height: 95% !important;
    object-fit: cover;
    border-radius: 20px 20px 20px 20px;
    display: block;
}

.cs-features__media .video-controls {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show controls initially when video is paused */
.cs-features__media video:not([data-playing]) + .video-controls {
    opacity: 1;
}

/* Show controls on hover when video is playing */
.cs-features__media:hover .video-controls {
    opacity: 1;
}

.cs-features__play,
.cs-features__pause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
    z-index: 10;
}

.cs-features__play:hover,
.cs-features__pause:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.cs-features__line {
    border: 1px dashed #fff;
}

.cs-features__line--horizontal {
    height: 1px;
    left: 103px;
    right: 103px;
    top: calc(50% + 36px);
}

.cs-features__line--vertical {
    width: 1px;
    top: calc(50% + 36px);
    bottom: 77px;
    left: calc(103px + 560px);
}

/* ======================
   CHALLENGES SECTION
   ====================== */
.cs-challenges {
    background: #fff;
    padding: 67px 20px;
    position: relative;
}

.cs-challenges__block {
    position: relative;
}


.cs-challenges__container {
    max-width: 1246px;
    margin: 0 auto;
}

.cs-challenges__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #000;
    margin: 0 0 40px;
}

.cs-challenges__title--highlight {
    color: #e90815;
}

.cs-challenges__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cs-challenges__card {
    position: relative;
    background: #fff;
    border: 2px solid #848484;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    & svg.icon-down {
        display:none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

.cs-challenges__card--active {
    background: #000;
    border-color: #e90815;
    position: relative;
}

.cs-challenges__card--active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(-75px - 65px);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-top: 110px solid #fff;
}

.cs-challenges__card-title {
    font-family: 'Montserrat', sans-serif;
    color: #e90815;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    /* margin: 0 0 12px; */
}

.cs-challenges__card-text {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.cs-challenges__card--active .cs-challenges__card-text {
    color: #fff;
}

.cs-challenges__expanded-content {
    display: none;
}

.cs-challenges__card {
    cursor: pointer;
}

.cs-challenges__block .cs-challenges__card--active  {
    display: flex;
    background: #000;
    border: 2px solid #e90815;
    border-top: none;
    border-radius: 10px;

    & .cs-challenges__subcontent {
        margin-bottom: 20px;
    }
}


.cs-challenges__expanded-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 21px;
}

.cs-challenges__expanded-number {
    font-family: 'Montserrat', sans-serif;
    color: #e90815;
    font-size: 96px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    min-width: 92px;
}

.cs-challenges__expanded-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    word-break: break-word;
}

.cs-challenges__expanded-divider {
    background: #e90815;
    height: 4px;
    width: 60px;
    margin-bottom: 21px;
}

.cs-challenges__expanded-text {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* ======================
   SOLUTIONS SECTION
   ====================== */
.cs-solutions {
    background: #000;
    padding: 127px 20px;
}

.cs-solutions__container {
    max-width: 1377px;
    margin: 0 auto;
}

.cs-solutions__title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 140px;
}

.cs-solutions__title--highlight {
    color: #e90815;
}

.cs-solutions__list {
    display: none;
    gap: 10px;
}

.cs-solutions__card {
    border: 1px solid #e90815;
    border-radius: 20px;
    padding: 0 30px 30px;
    position: relative;
    width: 400px;
}

.cs-solutions__icon {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: auto;
}

.cs-solutions__card:nth-child(2) .cs-solutions__icon {
    top:-90px;
}

.cs-solutions__card:nth-child(3) .cs-solutions__icon {
    top:-110px;
}

.cs-solutions__icon img {
    width: 100px;
    display: block;
}

.cs-solutions__header {
    display: flex;
    align-items: start;
    gap: 24px;
    justify-content: center;
    margin: 48px 0 24px;
}

.cs-solutions__number {
    font-family: 'Montserrat', sans-serif;
    color: #e90815;
    font-size: 96px;
    font-weight: 700;
    width: 60px;
    text-align: right;
}

.cs-solutions__subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.cs-solutions__number::after {
    content:"";
    width: 100%;
    height: 4px;
    display: block;
    background: #e90815;
    margin-top:24px;
}

.cs-solutions__divider {
    background: #e90815;
    height: 4px;
    width: 60px;
    margin: 0 auto 24px;
}

.cs-solutions__text {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: auto;
    display:inline;
}

/* ======================
   SERVICES SECTION
   ====================== */
.cs-services {
    background: #fff;
    padding: 72px 0 0 0;

    @media (max-width: 768px) {
        
    }
}

.cs-services.cs-consulting-service {
   & .cs-services__title {
        margin:0 !important;
   }
}

.cs-services__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 60px;
}

.cs-services__title--highlight {
    color: #e90815;
}

/* Catalog Subsection */
.cs-services__catalog {
    background: #000;
    display: flex;
    align-items: center;
    gap: 0;
}

.cs-services__catalog-content {
    flex: 1 0 50%;
    padding-left:120px;
    padding-right: 96px;
    box-sizing: border-box;
}

.cs-services__catalog-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
}

.cs-services__catalog-divider {
    background: #e90815;
    height: 4px;
    width: 60px;
    margin-bottom: 24px;
}

.cs-services__catalog-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px;
}

.cs-services__catalog-text {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 45px;
}

.cs-services__catalog-btn {
    font-family: 'Montserrat', sans-serif;
    background: #e90815;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 14px 0;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: block;
    margin-bottom: 25px;
    max-width: 330px;
    text-align: center;
}

.cs-services__catalog-btn:last-child {
    margin-bottom: 0;
}

.cs-services__catalog-btn:hover {
    background: #c0070f;
}

.cs-services__catalog-media {
    flex:1 0 50%;

    & img {
        width: 100%;
        max-height: 550px;
        object-fit: cover;
    }
}

.cs-services__catalog-image {
    object-fit: cover;
    display: block;
}

/* Services Grid Subsection */
.cs-services__grid-section {
    padding: 85px 118px 120px;
    max-width: 1180px;
    margin:0 auto;
}

.cs-services__header {
    margin-bottom: 64px;
}

.cs-services__grid-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 15px;
}

.cs-services__grid-title--highlight {
    color: #e90815;
}

.cs-services__grid-divider {
    background: #e90815;
    height: 5px;
    width: 100px;
    margin-bottom: 30px;
}

.cs-services__grid-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    max-width: 600px;
    margin: 0;
}

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

.cs-services__flex {
    display: flex;
    flex-direction: column;
}

.item-feature-media {
    display: flex;
    gap:34px;

    & > * {
        flex:1 0 50%;
    }
    padding-bottom: 65px;
    border-bottom: 1px dashed #D9D9D9;
}

.no-border {
    border: none !important;
}

.cs-features__flex--extra {
    & .item-feature-media {
        border:none !important
    }

    & .feature-subtitle {
        display: block !important;
        /* margin-bottom: 30px; */
        margin-top: 30px;
    }
}

.feature-subtitle {
    font-size:32px;
    color:#fff;
    font-weight: 700;
    color:#e90815;
    display: none;
}

.item-feature-text {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.item-feature-text .cs-features__item {
    flex: 0 0 45%;
    padding: 30px;
    position: relative;
}

/* Vertical line between columns - add to odd items (left column) */
.item-feature-text .cs-features__item:nth-child(odd):not(:last-child) {
    border-right: 1px dashed #fff;
    padding-left: 0;
}

/* Horizontal line between rows - add to items not in last row */
.item-feature-text .cs-features__item:not(:nth-last-child(-n+2)) {
    border-bottom: 1px dashed #fff;
}

/* If last row has only 1 item, still add bottom border to second-to-last item */
.item-feature-text .cs-features__item:nth-last-child(2):nth-child(even) {
    border-bottom: 1px dashed #000;
}

/* Remove padding-bottom from last row items */
.item-feature-text .cs-features__item:nth-last-child(-n+2) {
    padding-bottom: 0;
}

/* Service Box Component */
.cs-service-box {
    background: transparent;
    border: 1px solid #848484;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 97px;
    position: relative;
    margin: 0;

    & .cs-service-box__description, .cs-service-box__link {
        display: none;
    }
}

.cs-service-box.cs-service-box--featured {
    & .cs-service-box__title {
        color: #e90815;
        margin-bottom: 26px;
        padding: 0;
    }
    & .cs-service-box__description, .cs-service-box__link {
        display: block;
        
        @media (max-width: 767px) {
            text-align: center;
            width: 100%;
        }
    }
}

.cs-service-box__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0;
    padding: 0 30px 0 38px;
}

/* Service Box Modifiers */
.cs-service-box--tall {
    min-height: 178px;
    align-items: center;
}

.cs-service-box--featured {
    background: #f8f8f8;
    border: 2px solid #e90815;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px 36px;
    min-height: 178px;
}

.cs-service-box__title--featured {
    color: #e90815;
    margin-bottom: 26px;
    padding: 0;
}

.cs-service-box__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin: 0 0 16px;
}

.cs-service-box__link {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: #e90815;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cs-service-box__link:hover {
    opacity: 0.8;
}

.cs-service-box--wide {
    grid-column: 1 / -1;
}

.cs-service-box--featured::before,
.cs-service-box--featured::after {
    border-color: #e90815;
    border-width: 2px;
    width: 15px;
    height: 15px;
}

.cs-service-box--featured::before {
    top: -2px;
    left: -2px;
}

.cs-service-box--featured::after {
    bottom: -2px;
    right: -2px;
}


/* ======================
   CONTACT SECTION
   ====================== */
.cs-contact {
    background: #f6f6f6;
    padding: 50px 20px;
}

.cs-contact__container {
    max-width: 1222px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cs-contact__title {
    font-family: 'Montserrat', sans-serif;
    color: #4f4f4f;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 40px;
}

.cs-contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cs-contact__field {
    position: relative;
}

.cs-contact__label {
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.cs-contact__input,
.cs-contact__select,
.cs-contact__textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    padding: 20px 14px;
    border: 1px solid #000;
    border-radius: 10px;
    background: rgba(251, 252, 253, 0.94);
    font-size: 16px;
}

.cs-contact__input::placeholder,
.cs-contact__textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.cs-contact__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 24px;
    padding-right: 48px;
}

.cs-contact__textarea {
    min-height: 118px;
    resize: vertical;
}

.cs-contact__char-count {
    font-family: 'Montserrat', sans-serif;
    display: block;
    text-align: right;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
    margin-top: 4px;
}

.cs-contact__submit {
    font-family: 'Montserrat', sans-serif;
    background: #e90815;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 40px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    align-self: center;
    transition: background 0.3s;
}

.cs-contact__submit:hover {
    background: #c0070f;
}

.cs-contact__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 8px;
}

.cs-contact__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-contact__images img:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 352px;
}

.cs-contact__images img:nth-child(2) {
    height: 194px;
}

.cs-contact__images img:nth-child(3),
.cs-contact__images img:nth-child(4),
.cs-contact__images img:nth-child(5) {
    height: 197px;
}

.cs-contact__images img:nth-child(6) {
    grid-column: 2 / 4;
    height: 192px;
}

/* ======================
   RESPONSIVE: TABLET
   (768px - 1199px)
   ====================== */
@media (min-width: 768px) and (max-width: 1199px) {
    .cs-features__grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .cs-features__item--1,
    .cs-features__item--2,
    .cs-features__item--3 {
        grid-column: 1;
        padding: 0 0 40px;
    }
    
    .cs-features__media {
        grid-column: 1;
        width: 100%;
        max-width: 594px;
        height: auto;
        aspect-ratio: 594 / 396;
    }
    
    .cs-features__line {
        display: none;
    }
    
    .cs-solutions__list {
        grid-template-columns: 1fr;
    }
    
    .cs-challenges__list {
        grid-template-columns: 1fr;

        & .cs-challenges__card--active {
            background: #fff !important;


        }
    }
    
    .cs-services__catalog {
        flex-direction: column-reverse;
        padding:0;
    }
    
    .cs-services__catalog-image {
        width: 100%;
        height: auto;
    }
    
    .cs-services__grid-section {
        padding: 50px 40px;
    }
    
    .cs-services__grid {
        grid-template-columns: 1fr;
    }
    
    .cs-contact__container {
        grid-template-columns: 1fr;
    }
}

/* ======================
   RESPONSIVE: MOBILE
   (≤767px)
   ====================== */
@media (max-width: 767px) {
    .cs-hero {
        justify-content: center;
        padding:0;
    }
    
    .cs-hero__title {
        font-size: 48px;
        text-align: center;
    }

    .cs-hero__divider {
        margin:0 auto;
        width: 158px;
    }
    
    .cs-hero__description {
        font-size: 24px;
        text-align: center;
    }
    
    .cs-hero__cta {
        font-size: 20px;
        padding: 20px;
    }
    
    .cs-features {
        padding: 33px 30px;

        & .cs-features__container {

            & .cs-features__flex {
                & .item-feature-media {
                    flex-direction: column-reverse;
                    border-bottom: none;
                    padding: 0;
                }

                & .item-feature-text {
                    flex-direction: column;
                    gap:0;
                }

                & .cs-features__item {
                    padding:17px 0;
                }

                & .cs-features__item:not(:last-child) {
                    border-bottom: 1px dashed #fff;
                    border-right: none;
                }
            }
        }
    }
    
    .cs-features__title {
        font-size: 24px;
        margin: 0 auto 40px;
        text-align: center;
        max-width: 300px;
    }
    
    .cs-features__grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .cs-features__item--1,
    .cs-features__item--2,
    .cs-features__item--3 {
        grid-column: 1;
        padding: 0 0 40px;
    }
    
    .cs-features__media {
        grid-column: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 594 / 396;
    }
    
    .cs-features__line {
        display: none;
    }
    
    .cs-features__subtitle {
        font-size: 24px;
    }
    
    .cs-features__text {
        font-size: 16px;
    }
    
    .cs-challenges {
        padding: 50px 20px;
        background: #000;
    }

    .cs-challenges__card--active::after {
        content:none;
    }
    
    .cs-challenges__title {
        font-size: 32px;
        color:#fff;
    }
    
    .cs-challenges__list {
        grid-template-columns: 1fr;
        gap:30px;

        & .cs-challenges__card--active {
            background: #fff;
            border: none;

            & .cs-challenges__card-text {
                color:#000;
            }
        }

        & .cs-challenges__card {
            & svg.icon-down {
                display: block;
            }
        }

        .cs-challenges__block .cs-challenges__card--active + .cs-challenges__expanded-content {
            display: block;
        }

        .cs-challenges__block .cs-challenges__expanded-content {
                display: none;
                background: #000;
                border: 2px solid #e90815;
                border-top: none;
                border-radius: 10px;
                padding:60px 20px 20px;
                margin-top: -10px;

                & .cs-challenges__subcontent {
                    margin-bottom: 20px;
                }
            }
    }

    .cs-challenges__expanded-header {
        gap: 0 !important;
        margin-bottom: 21px;
    }

    .cs-challenges__expanded-number {
        font-size: 96px;
        min-width: 92px;
    }

    .cs-challenges__expanded-title {
        font-size: 36px;
    }

    .cs-challenges__expanded-divider {
        margin-bottom: 21px;
    }

    .cs-challenges__expanded-text {
        font-size: 24px;
    }
    
    .cs-solutions {
        display: none;
        padding: 80px 20px;
    }
    
    .cs-solutions__title {
        font-size: 24px;
        margin-bottom: 60px;
    }
    
    .cs-solutions__list {
        grid-template-columns: 1fr;
    }
    
    .cs-solutions__number {
        font-size: 72px;
    }
    
    .cs-solutions__subtitle {
        font-size: 36px;
    }
    
    .cs-solutions__text {
        font-size: 18px;
    }
    
    .cs-services {
        padding: 50px 0;
    }
    
    .cs-services__title {
        font-size: 28px;
    }
    
    .cs-services__catalog {
        flex-direction: column-reverse;
        padding: 0;

        & .cs-services__catalog-content {
            padding:54px 40px;

            & .cs-services__catalog-btn {
                /* font-size:24px; */
                padding: 14px 0 !important;
                width: 100%;
                max-width: 500px;
                display: block;
                text-align: center;;
            }

            & .cs-services__catalog-btn:last-child {
                margin-bottom: 0;
            }
        }
    }
    
    .cs-services__catalog-title {
        font-size: 24px;
    }
    
    .cs-services__catalog-btn {
        font-size: 18px;
        max-width: 100%;
    }
    
    .cs-services__catalog-image {
        width: 100%;
        height: auto;
    }
    
    .cs-services__grid-section {
        padding: 40px 20px;
    }
    
    .cs-services__grid {
        grid-template-columns: 1fr;
    }
    
    .cs-service-box {
        padding: 25px 20px;
        min-height: 44px;
        text-align: center;
    }
    
    .cs-service-box--tall {
        /* min-height: 150px; */

        & > *:not(span) {
            text-align: center;
            display: block;
            width: 100%;
            padding:0 5px;
        }
    }
    
    .cs-service-box__title {
        padding:0;
        text-align: center;
        font-size:16px;
        width: 100%;
    }
    
    .cs-contact {
        padding: 40px 20px;
    }
    
    .cs-contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cs-contact__title {
        font-size: 24px;
    }
    
    .cs-contact__images {
        grid-template-columns: 1fr;
    }
    
    .cs-contact__images img:nth-child(1) {
        grid-column: 1;
    }
    
    .cs-contact__images img:nth-child(6) {
        grid-column: 1;
    }
    
    .cs-contact__images img {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
}

/* ======================
   DESKTOP LARGE
   (≥1200px)
   ====================== */
@media (min-width: 1200px) {
    /* All default styles apply */
}