/* ===== RESET & BASE ===== */

@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Thin.eot");
    src: local("Gilroy Thin"), local("Gilroy-Thin"), url("../fonts/Gilroy-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Thin.woff") format("woff"), url("../fonts/Gilroy-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal; }
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-UltraLight.eot");
    src: local("Gilroy UltraLight"), local("Gilroy-UltraLight"), url("../fonts/Gilroy-UltraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-UltraLight.woff") format("woff"), url("../fonts/Gilroy-UltraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal; }
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Light.eot");
    src: local("Gilroy Light"), local("Gilroy-Light"), url("../fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal; }
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Regular.eot");
    src: local("Gilroy Regular"), local("Gilroy-Regular"), url("../fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal; }
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Medium.eot");
    src: local("Gilroy Medium"), local("Gilroy-Medium"), url("../fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal; }
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-SemiBold.eot");
    src: local("Gilroy SemiBold"), local("Gilroy-SemiBold"), url("../fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-SemiBold.woff") format("woff"), url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal; }
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Heavy.eot");
    src: local("Gilroy Heavy"), local("Gilroy-Heavy"), url("../fonts/Gilroy-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-Heavy.woff") format("woff"), url("../fonts/Gilroy-Heavy.ttf") format("truetype");
    font-weight: 900;
    font-style: normal; }
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-ExtraBold.eot");
    src: local("Gilroy ExtraBold"), local("Gilroy-ExtraBold"), url("../fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Gilroy-ExtraBold.woff") format("woff"), url("../fonts/Gilroy-ExtraBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal; }

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

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --c-white: #FFFFFF;
    --c-black: #000000;
    --c-white-80: rgba(255, 255, 255, 0.8);
    --c-teal: #17BBC7;
    --c-teal-dark: #218084;
    --c-teal-light: #38C9D3;
    --c-footer-bg: #EDEDED;

    /* Typography */
    --ff-main: 'Gilroy', sans-serif;

    /* Sizes */
    --container-w: 1920px;
    --content-padding: 375px;
    /* left offset from Figma */

    /* Border radius */
    --br-card: 20px;
    --br-btn: 90px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-main);
    color: var(--c-black);
    background: var(--c-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== HEADER ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
    background: var(--c-white-80);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.header__logo-text {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-right: auto;
    /* centered per Figma: nav at x=775 relative to Frame 1920 */
}

.header__nav-link {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--c-black);
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-teal);
    transition: width 0.3s ease;
}

.header__nav-link:hover {
    color: var(--c-teal);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__btn {
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.238;
    text-align: center;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.header__btn--outline {
    width: 210px;
    height: 40px;
    border: 2px solid var(--c-teal);
    color: var(--c-teal);
    background: transparent;
}

.header__btn--outline:hover {
    background: var(--c-teal);
    color: var(--c-white);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(23, 187, 199, 0.35);
}

/* Header scrolled state */
.header--scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: headerSlideIn 0.4s ease;
}

@keyframes headerSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* subtle dark overlay for text readability */
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.15) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 125px;
    padding-bottom: 91px;
}

.hero__top {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero__title {
    width: 1109px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__title-line {
    display: block;
    font-family: var(--ff-main);
    color: var(--c-white-80);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleIn 1s ease forwards;
}

/* .hero__title-line--main inherits base styles */
.hero__title-line--main {
    font-weight: 900;
    font-size: 128px;
    line-height: 0.8;
    text-align: left;
}

.hero__title-line--sub {
    /* "СВЕЖИХ ФРУКТОВ, ОВОЩЕЙ И ПРОДУКТОВ" */
    font-weight: 900;
    font-size: 53px;
    line-height: 1.262;
    text-align: center;
    margin: 0 auto;
    animation-delay: 0.3s;
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero__tagline {
    font-family: var(--ff-main);
    font-weight: 900;
    font-size: 53px;
    line-height: 1.262;
    color: var(--c-white-80);
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    animation: heroTitleIn 1s ease 0.6s forwards;
    margin-bottom: 32px;
    /* y: 949 - (y: 850 + 67) */
}

.hero__btn {
    width: 270px;
    height: 40px;
    background: var(--c-white);
    border-radius: var(--br-btn);
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.238;
    color: var(--c-teal);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: heroTitleIn 1s ease 0.9s forwards;
    text-transform: uppercase;
}

.hero__btn:hover {
    background: var(--c-teal);
    color: var(--c-white);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(23, 187, 199, 0.5);
}

/* ===== CATALOG / PRODUCT CATEGORIES ===== */
.catalog {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 80px;
}

.catalog__gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 358px;
    background: linear-gradient(180deg, rgba(23, 187, 199, 1) 0%, rgba(215, 252, 255, 1) 55%, rgba(255, 255, 255, 1) 100%);
    z-index: 0;
}

.catalog__container {
    position: relative;
    z-index: 1;
    padding-top: 33px;
}

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

.catalog__card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.catalog__card-img-wrap {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    border-radius: var(--br-card);
    overflow: hidden;
}

.catalog__card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.catalog__card-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--br-card);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.catalog__card:hover .catalog__card-img {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.08);
}

.catalog__card:hover .catalog__card-overlay {
    opacity: 0.7;
}

.catalog__card-title {
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.238;
    text-transform: uppercase;
    color: var(--c-white);
    text-align: center;
    margin-top: 12px;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.catalog__card-desc {
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.238;
    color: var(--c-white);
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.catalog__tagline {
    font-family: var(--ff-main);
    font-weight: 300;
    font-size: 27px;
    line-height: 1.2;
    color: var(--c-black);
    text-transform: uppercase;
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.catalog__tagline.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLL ANIMATIONS ===== */
.catalog__card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.catalog__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.catalog__card:nth-child(2) {
    transition-delay: 0.15s;
}

.catalog__card:nth-child(3) {
    transition-delay: 0.3s;
}

.catalog__card:nth-child(4) {
    transition-delay: 0.1s;
}

.catalog__card:nth-child(5) {
    transition-delay: 0.25s;
}

.catalog__card:nth-child(6) {
    transition-delay: 0.4s;
}

/* ===== PARTNER / FEATURES ===== */
.partner {
    position: relative;
    width: 100%;
    padding-top: 141px;
    overflow: visible;
}

.partner__img {
    margin-bottom: 15px;
}

@media (min-width: 1100px) {
    .partner {
        background-image: url("../images/partner-photo.png");
        background-repeat: no-repeat;
        background-position: calc(100% + 360px) calc(100% + 30px);
    }
    .partner__img {
        display: none;
    }
}
@media (min-width: 1400px) {
    .partner {
        background-position: calc(100% + 260px) calc(100% + 30px);
    }
}

@media (min-width: 1600px) {
    .partner {
        background-position: calc(100% + 165px) calc(100% + 30px);
    }
}
@media (min-width: 1700px) {
    .partner {
        background-position: calc(100% + 65px) calc(100% + 30px);
    }
}

.partner__logo-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1084px;
    height: 141px;
    z-index: 10;
    overflow: hidden;
}

.partner__logo-img {
    width: 100%;
    height: 141px;
    object-fit: cover;
}

.partner__body {
    position: relative;
    padding-top: 22px;
    padding-bottom: 80px;
    min-height: 796px;
}

.partner__info {
    max-width: 470px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.partner__title {
    font-family: var(--ff-main);
    font-weight: 300;
    font-size: 48px;
    line-height: 1.2;
    color: var(--c-black);
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 45px;
}

.partner__desc {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--c-black);
    max-width: 470px;
    margin-bottom: 55px;
}

.partner__features {
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.partner__feature {
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.partner__feature-icon {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner__feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

.partner__feature-title {
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.238;
    color: var(--c-black);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.partner__feature-desc {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--c-black);
    max-width: 370px;
}

.partner__photo {
    position: absolute;
    top: 60px;
    right: -400px;
    width: 1194px;
    z-index: 1;
}

.partner__photo-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Partner section scroll animations */
.partner__feature {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner__feature.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.partner__feature:nth-child(2) {
    transition-delay: 0.15s;
}

.partner__feature:nth-child(3) {
    transition-delay: 0.3s;
}

.partner__feature:nth-child(4) {
    transition-delay: 0.45s;
}

/* ===== ABOUT ===== */
.about {
    position: relative;
    width: 100%;
    min-height: 927px;
    overflow: hidden;
    margin-top: -150px;
}

.about__gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 409px;
    background: linear-gradient(0deg, rgba(33, 128, 132, 1) 4%, rgba(52, 158, 153, 1) 27%, rgba(99, 195, 193, 1) 58%, rgba(255, 255, 255, 1) 100%);
    z-index: 0;
}

.about__container {
    background: #218084;
}

.about__bg-image {
    position: absolute;
    top: -18px;
    left: -37%;
    width: 1236px;
    height: 824px;
    z-index: 1;
    /*opacity: 0.35;*/
}

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

.about__body {
    position: relative;
    z-index: 2;
    padding-top: 200px;
    padding-bottom: 80px;
}

.about__header {
    margin-bottom: 60px;
    text-align: right;
}

.about__title {
    font-family: var(--ff-main);
    font-weight: 900;
    font-size: 89px;
    line-height: 1.56;
    color: var(--c-white-80);
    text-transform: uppercase;
}

.about__subtitle {
    font-family: var(--ff-main);
    font-weight: 300;
    font-size: 40px;
    line-height: 1.2;
    color: var(--c-white);
    margin-top: -30px;
}

.about__block {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__block.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 29px;
    max-width: 470px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.about__block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.about__block-icon {
    flex-shrink: 0;
    width: 70px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__block-icon img {
    max-width: 100%;
    max-height: 100%;
}

.about__block-title {
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.238;
    color: var(--c-white);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.about__block-desc {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--c-white);
    max-width: 370px;
}

/* ===== CLIENTS ===== */
.clients {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.clients__grid {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    gap: 30px;
    justify-content: center;
}

.clients__card {
    position: relative;
    width: 370px;
    height: 370px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.clients__card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clients__card:hover .clients__card-img {
    transform: scale(1.08);
}

.clients__card-title {
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.238;
    color: var(--c-white);
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Clients scroll animations */
.clients__card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clients__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.clients__card:nth-child(2) {
    transition-delay: 0.15s;
}

.clients__card:nth-child(3) {
    transition-delay: 0.3s;
}

.clients__card:nth-child(4) {
    transition-delay: 0.1s;
}

.clients__card:nth-child(5) {
    transition-delay: 0.25s;
}

.clients__card:nth-child(6) {
    transition-delay: 0.4s;
}

/* ===== FRESHNESS (Video Block) ===== */
.freshness {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 0;
    margin-top: -1px;
}

.freshness__gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 567px;
    background: linear-gradient(to bottom, #227f83 0%, #ffffff 100%);
    z-index: 0;
}

.freshness__container {
    position: relative;
    z-index: 2;
    padding-top: 280px;
    padding-bottom: 0;
}

.freshness__header {
    margin-bottom: 122px;
    position: relative;
    z-index: 3;
}

.freshness__title {
    font-family: var(--ff-main);
    font-weight: 900;
    font-size: 80px;
    line-height: 1.26;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.freshness__subtitle {
    font-family: var(--ff-main);
    font-weight: 900;
    font-size: 48px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: -13px;
}

.freshness__video-wrap {
    position: relative;
    width: 100%;
    height: 658px;
    border-radius: 20px;
    overflow: hidden;
}

.freshness__video-wrap video.play {
    cursor: pointer;
}

.freshness__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 83px;
    height: 83px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.freshness__play-btn svg {
    width: 83px;
    height: 83px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.25));
}

.freshness__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.freshness__avocado {
    position: absolute;
    top: 5%;
    transform: translateY(-50%);
    right: 0;
    width: 702px;
    height: 575px;
    z-index: -1;
    pointer-events: none;
}

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

/* ===== CONTACTS ===== */
.contacts {
    position: relative;
    width: 100%;
    padding: 130px 0 100px;
    background: var(--c-white);
}

.contacts__container {
    position: relative;
}

.contacts__title {
    font-family: var(--ff-main);
    font-weight: 900;
    font-size: 96px;
    line-height: 1.26;
    color: #38c9d3;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.contacts__content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contacts__info {
    flex-shrink: 0;
    width: 370px;
    display: flex;
    flex-direction: column;
}

.contacts__group {
    margin-bottom: 12px;
}

.contacts__label {
    display: block;
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: var(--c-teal);
    margin-bottom: 8px;
}

.contacts__value {
    display: block;
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: var(--c-black);
    transition: color 0.3s ease;
}

a.contacts__value:hover {
    color: var(--c-teal);
}

.contacts__socials {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.contacts__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.contacts__social-link:hover {
    transform: scale(1.15);
}

.contacts__social-link img {
    width: 35px;
    height: 35px;
}

.contacts-social__icon img {
    width: 100%;
    height: 100%;
}

.contacts__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 40px;
    background: var(--c-teal);
    border-radius: var(--br-btn);
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.238;
    color: var(--c-white);
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contacts__btn:hover {
    background: var(--c-teal-dark);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(23, 187, 199, 0.35);
}

.contacts__map {
    flex-grow: 1;
    max-width: 770px;
    height: 433px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.contacts__map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-footer-bg);
    width: 100%;
    padding: 0;
}

.footer__container {
    padding-top: 73px;
    padding-bottom: 40px;
}

.footer__top {
    display: flex;
    gap: 30px;
    padding-bottom: 50px;
}

.footer__col {
    width: 270px;
    flex-shrink: 0;
}

.footer__col--logo {
    width: 270px;
    flex-shrink: 0;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 8px;
}

.footer__logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.footer__logo-text {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer__disclaimer {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--c-black);
    margin-top: 7px;
}

.footer__col-heading {
    font-family: var(--ff-main);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--c-black);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer__col-text {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-black);
}

/* ===== SCROLL ANIMATIONS (Reveal on Scroll) ===== */
.reveal-on-scroll {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll[data-animation="fade-up"] {
    transform: translateY(40px);
}

.reveal-on-scroll[data-animation="fade-down"] {
    transform: translateY(-40px);
}

.reveal-on-scroll[data-animation="fade-left"] {
    transform: translateX(40px);
}

.reveal-on-scroll[data-animation="fade-right"] {
    transform: translateX(-40px);
}

.reveal-on-scroll[data-animation="zoom-out"] {
    transform: scale(1.05);
}

.reveal-on-scroll.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__nav-link {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-black);
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--c-teal);
}

.footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 20px;
}

.footer__copyright {
    font-family: var(--ff-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--c-black);
}