footer {
    margin-top: 0 !important;
}

/* ===== HERO SECTION ===== */
.about {
    height: 400px;
    overflow: hidden;
    color: var(--color-text-secondary);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(10, 58, 58, 0.8) 0%, rgb(10, 58, 58, 0.6) 100%),
        url('../img/about/aboutus-sec1.png') center/cover no-repeat;
    z-index: -2;
}

.about::after {
    /* тёмный фильтр */
    content: "";
    position: absolute;
    inset: 0;
    background: #02110e;
    opacity: 0.6;
    z-index: -1;
}

.about .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.about-left h2 {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-transform: none;
    color: #ffffff;
    margin-bottom: 22px;
}

.about-left h2 span {
    color: var(--color-text-light-green);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    vertical-align: middle;
}

.about-left h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--color-text-light-green);
    margin-bottom: 16px;
}

.about-left p {
    max-width: 665px;
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;

}

.about-right {
    width: 392px;
    height: 265px;
    background: url('../img/sign.svg') no-repeat center center/cover;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 45px;
    position: absolute;
    bottom: 0;
    right: 0;

}

.about-slogan {
    color: var(--color-text-light-green);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;

}

/* === OUR STORY === */
.story {
    padding: 120px 0;
}

.story-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-image {
    flex: 0 0 46%;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.story-content {
    min-height: 100%;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.story-title {
    color: var(--color-text-dark-green) !important;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
}

.story-heading {
    color: var(--color-text-dark-green) !important;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;

}

.story-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
}

/* === GEOGRAPHY OF ACTIVITY === */
.geography {
    padding-bottom: 120px;
}

.geography-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.geography-title {
    color: var(--color-text-dark-green);
    font-weight: 500;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-transform: uppercase;
}

.geography-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    margin-bottom: 35px;
    color: rgba(61, 61, 61, 1);
}

.geo-cards {
    margin-top: 35px;
    /* display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.geo-card {
    background: linear-gradient(141.91deg, #046756 6.1%, #02110E 96.6%);
    width: 100%;
    /* max-width: 267px; */
    height: 138px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 30px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.geo-card span {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--color-text-light-green) !important;
}

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

/* === MISSION & VALUES === */
.mission-values {
    padding: 50px 0;
    background: linear-gradient(180deg, #016c58 0%, #033026 100%);
    color: #fff;
}

.mission-values-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-values-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-text-light-green);
}

.mission-values-text {
    margin-bottom: 35px;
    width: 736px;
    text-align: center;
    align-self: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.value-card {
    position: relative;
    background: #ffffff;
    color: var(--color-text-primary);
    padding: 40px 140px 40px 40px;
    width: 32%;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card img {
    width: 48px;
    height: 48px;
}

.value-card h3 {
    color: var(--color-text-dark-green);
    font-weight: 600;
    font-size: 18px;
}

.value-card p {
    font-size: 14px;
    line-height: 150%;
}

.value-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 89px;
    height: 67px;
    background: url('../img/icons/berg.svg') no-repeat bottom right / contain;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* === SOCIAL RESPONSIBILITY === */
.social-responsibility {
    padding: 100px 0;
    background: #f3f9fd;
}

.sr-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sr-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: start;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-text-dark-green);
}

.sr-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--color-text-primary);
    margin-bottom: 35px;
}

.sr-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sr-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    height: 343px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sr-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sr-content {
    height: 163px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.sr-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark-green);
}

.sr-content p {
    font-size: 14px;
    line-height: 150%;
    color: var(--color-text-primary);
}

.sr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* ======================= RESPONSIVE ======================= */
/* Large tablets / small desktops */
@media (max-width: 1199px) {
    .about {
        height: 340px;
    }

    .about .container {
        gap: 40px;
    }

    .about-left h1 {
        font-size: 32px;
    }

    .about-left p {
        font-size: 18px;
    }

    .about-right {
        width: 300px;
        height: 200px;
        padding-bottom: 32px;
    }

    .story {
        padding: 80px 0;
    }

	.values-grid {
		gap: 10px;
	}

    .value-card{
        width: 49%;
    }
}

@media (max-width: 1130px) {
    .geo-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .geo-card {
        max-width: 100%;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .mission-values {
        padding: 80px 0;
    }

    .about-right {
        /* удерживаем внизу справа даже на мобильных */
        position: absolute;
        bottom: 0;
        right: 0;
        margin-top: 0;
        z-index: -1;
    }

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


/* Mobile landscape */
@media (max-width: 768px) {
    .about {
        height: auto;
        padding: 60px 0 80px;
    }

    .about .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-slogan {
        font-size: 18px;
    }

    .story-inner {
        flex-direction: column;
    }

    .story-image {
        flex: 1 1 100%;
    }

    .geo-cards {
        gap: 20px;
    }

    .values-grid {
        gap: 16px;
    }

    .value-card {
        width: 100%;
        padding: 32px 24px 48px;
        height: auto;
    }

    .sr-card {
        width: 100%;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .value-card {
        padding: 32px 24px 48px;
    }

    /* HERO */
    .about-left h1 {
        font-size: 28px;
    }

    .about-left p {
        font-size: 16px;
        line-height: 22px;
    }

    .geo-card {
        width: 100%;
        height: 120px;
        padding: 24px;
    }

    .mission-values-text {
        width: 100%;
    }

    .sr-content {
        padding: 16px;
    }

	.sr-cards {
		grid-template-columns: repeat(1, 1fr);
	}

    .sr-card {
        height: auto;
    }

    .value-card {
        padding: 24px 20px 56px;
    }

    .geo-cards {
        grid-template-columns: repeat(1, 1fr);
    }
}