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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --bg: rgb(17, 17, 17);
    --border-black: rgb(52, 52, 52);
    --white: rgb(245, 244, 240);
    --muted: rgba(245, 244, 240, 0.35);
    --dim: rgba(245, 244, 240, 0.08);
    --border: rgba(245, 244, 240, 0.1);
    --dim-text:rgba(245, 244, 240, 0.58);
    --font-display: "Barlow Condensed", sans-serif;
    --font-body: "Barlow", sans-serif;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

#cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #f5f5f0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease;
    mix-blend-mode: difference;
    will-change: left, top;
}

#cursor.big {
    width: 48px;
    height: 48px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 140px;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    /* анімація ховання */
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

nav.nav--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.nav-left-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 40px 22px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    gap: 0;
}

.nav-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.nav-logo-row svg {
    width: 120px;
    height: 46px;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: #f5f5f0;
    line-height: 1;
}

.nav-logo-text small {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    margin-top: 3px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin-bottom: 16px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim-text);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    width: fit-content;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f5f5f0;
    transition: width 0.35s ease;
}

.nav-links a:hover {
    color: #f5f5f0;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: #f5f5f0;
}

.nav-links li.active a::after {
    width: 100%;
}

.nav-btn {
    display: inline-block;
    align-self: flex-start;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #080808;
    background: #f5f5f0;
    padding: 9px 18px;
    text-decoration: none;
    transition: background-colo 0.3s, color 0.3s;
}

.nav-btn:hover {
    background: #333;
    color: #f5f5f0;
}

.nav-right-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    overflow: hidden;
}

.nav-brand-box {
    display: inline-block;
    border: 3px solid #f5f5f0;
    padding: 10px 22px;
    transform: rotate(-6deg);
    user-select: none;
    line-height: 0.88;
}

.nav-brand-box .brand-line1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: 0.02em;
    color: #080808;
    background-color: #f5f5f0;
    display: block;
}

.nav-brand-box .brand-line2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: 0.02em;
    color: #f5f5f0;
    display: block;
    border-top: 3px solid #f5f5f0;
    padding-top: 6px;
    margin-top: 6px;
    text-align: center;
}

/* ── BURGER ── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    padding: 9px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #f5f5f0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-burger.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Мобільне меню */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 28px 32px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.nav-mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-mobile-menu a {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.25s;
    text-align: center;
}

.nav-mobile-menu a:hover {
    color: #f5f5f0;
}

.nav-mobile-menu .nav-btn {
    margin-top: 20px;
    align-self: center;
    font-size: 12px;
    color: #080808 !important;
    background: #f5f5f0;
    font-weight: 800;
    padding: 14px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 160px;
    position: relative;
}

.hero::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 60;
}

.col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 44px 44px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.img-frame {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-height: 54vh;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.15s forwards;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(85%) contrast(1.18) brightness(0.88);
    transition: transform 0.9s ease;
}

.img-frame:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
    transition: 0.4s ease;
}

.img-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.55);
    padding: 4px 10px;
    backdrop-filter: blur(4px);
}

.desc-block {
    padding-top: 30px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

.desc-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dim-text);
    font-weight: 300;
    max-width: 360px;
}

.desc-block strong {
    color: #f5f5f0;
    font-weight: 500;
}

.stats {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: fadeUp 1s ease 0.85s forwards;
}

.stat-val {
    font-family: "Bebas Neue", sans-serif;
    font-size: 38px;
    letter-spacing: 0.03em;
    line-height: 1;
}

.stat-lbl {
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--dim-text);
    margin-top: 5px;
}

.col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 44px 48px 40px 44px;
    position: relative;
    overflow: hidden;
}

.headline {
    font-size: clamp(63px, 7.5vw, 105px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    color: #f5f5f0;
    position: relative;
    margin-top: 18px;
    z-index: 2;
}

.word {
    display: block;
    overflow: hidden;
}

.word>span {
    display: block;
    transform: translateY(112%);
    opacity: 0;
}

.word:nth-child(1)>span {
    animation: slideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.word:nth-child(2)>span {
    animation: slideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

.word:nth-child(3)>span {
    animation: slideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.31s forwards;
}

.word:nth-child(4)>span {
    animation: slideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.44s forwards;
}

.inline-img {
    display: inline-block;
    width: clamp(110px, 13vw, 140px);
    height: clamp(72px, 8.5vw, 80px);
    overflow: hidden;
    vertical-align: middle;
    margin: 0 6px;
    position: relative;
    top: -4px;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.95s forwards;
}

.inline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(85%) contrast(1.12);
    padding-bottom: 20px;
}

.sub-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 26px 0;
    z-index: 2;
    position: relative;
    animation: fadeUp 1s ease 1.05s forwards;
}

.sub-row p {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dim-text);
    white-space: nowrap;
}

.sub-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* scroll-hint — тепер <button> */
.scroll-hint {
    position: absolute;
    bottom: 38px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1.5s ease 1.5s forwards;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 0;
    transition: color 0.3s;
}

.scroll-hint:hover {
    color: rgba(255, 255, 255, 0.65);
}

.arrow-box {
    width: 18px;
    height: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    transform: rotate(45deg);
    animation: arrowBounce 2s ease infinite;
    transition: border-color 0.3s;
}

.scroll-hint:hover .arrow-box {
    border-color: rgba(255, 255, 255, 0.65);
}

/* ── TICKER ── */
.ticker-bar {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: tickerRun 66s linear infinite;
}

.ticker-inner em {
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.28);
    padding: 0 44px;
}

.ticker-inner em.sep {
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    font-size: 10px;
}

/* ── KEYFRAMES ── */
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes tickerRun {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        transform: rotate(45deg) translate(3px, 3px);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 880px) {

    /* hero — стовпець, центрування */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 90px;
    }

    .col-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 32px 24px;
        align-items: center;
        text-align: center;
    }

    .col-right {
        padding: 32px 24px;
        align-items: center;
        text-align: center;
    }

    .desc-block p {
        max-width: 100%;
    }

    .stats {
        justify-content: center;
    }

    .sub-row {
        justify-content: center;
    }

    .scroll-hint {
        display: none;
    }
}

    /* nav — бургер */
    @media (max-width: 880px) {
        nav {
            grid-template-columns: 1fr;
            min-height: 72px;
            width: 100%;
            max-width: 100vw;
            left: 0;
            right: 0;
            box-sizing: border-box;
        }

        .nav-right-cell {
            display: none;
        }

        .nav-left-cell {
            padding: 14px 24px;
            flex-direction: row;
            align-items: center;
        }

        .nav-links {
            display: none;
        }

        .nav-btn.nav-btn--desktop {
            display: none;
        }

        .nav-burger {
            display: flex;
        }

        .nav-mobile-menu {
            display: flex;
        }
    }

    @media (max-width: 560px) {
        .stats {
            flex-wrap: wrap;
            gap: 20px;
        }
    }

    .nav-logo img {
        height: 50px;
    }

    /* ── СЕКЦІЯ ПЕРЕВАГИ ── */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 20px;
    }

    .cargo {
        position: relative;
        overflow: hidden;
    }

    .cargo__bg {
        position: absolute;
        inset: 0;
        background: url("https://images.pexels.com/photos/16242030/pexels-photo-16242030.jpeg") center/cover no-repeat;
        opacity: 0.25;
        z-index: -10;
    }

    .cargo__grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cargo__item {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
        transition: all 0.3s ease;
    }

    .cargo__item:hover {
        border-top: 1px solid #fff;
    }

    .cargo__item h2 {
        font-size: 28px;
        margin-bottom: 15px;
        font-weight: 600;
        transition: 0.3s;
    }

    .cargo__item:hover h2 {
        transform: translateX(5px);
    }

    .cargo__item p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 400px;
        opacity: 0.8;
        text-align: justify;
        transition: 0.3s;
    }

    .cargo__item:hover p {
        opacity: 1;
    }

    .cargo__item img {
        margin-top: 20px;
        width: 160px;
        max-width: 180px;
        max-height: 180px;
        border-radius: 6px;
        filter: grayscale(100%);
        transition: 0.4s ease;
    }

    .cargo__item:hover img {
        transform: scale(1.08);
        filter: grayscale(0%);
    }

    .cargo-title {
        font-size: clamp(53px, 7.5vw, 105px);
        font-weight: 500;
        line-height: 0.9;
        letter-spacing: -0.01em;
        margin-bottom: 70px;
        text-align: center;
        text-transform: uppercase;
    }

    @media (max-width: 768px) {
        .cargo__grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .cargo__item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .cargo__item p {
            text-align: center;
            max-width: 100%;
        }

        .container {
            padding: 60px 20px;
        }
    }

    /* ── ПОСЛУГИ ── */
    .services-section {
        position: relative;
    }

    .service-slide {
        position: relative;
        min-height: 100svh;
        display: flex;
        align-items: center;
        overflow: hidden;
        border-bottom: 1px solid var(--border);
    }

    .slide__bg-text {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        pointer-events: none;
        user-select: none;
        overflow: hidden;
        padding: 0 2vw;
    }

    .slide__bg-text span {
        display: block;
        font-family: var(--font-display);
        font-weight: 900;
        font-size: clamp(12vw, 18vw, 22vw);
        line-height: 0.88;
        letter-spacing: -0.01em;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px rgba(245, 244, 240, 0.07);
        white-space: nowrap;
        transform: translateX(0);
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-slide:hover .slide__bg-text span:nth-child(odd) {
        transform: translateX(-1.5%);
    }

    .service-slide:hover .slide__bg-text span:nth-child(even) {
        transform: translateX(1.5%);
    }

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

    .slide__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%) brightness(0.22);
        transition: filter 0.8s ease, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: scale(1.04);
    }

    .service-slide:hover .slide__img img {
        filter: grayscale(100%) brightness(0.32);
        transform: scale(1);
    }

    .slide__overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(105deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.4) 55%, rgba(10, 10, 10, 0.12) 100%);
    }

    .slide__content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: end;
        gap: 40px;
        min-height: 100svh;
    }

    .slide__left {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 80px;
    }

    .slide__num {
        font-family: var(--font-display);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--dim-text);
        margin-bottom: 32px;
    }

    .slide__title {
        font-family: var(--font-display);
        font-weight: 900;
        font-size: clamp(3.5rem, 7vw, 7.5rem);
        line-height: 0.92;
        letter-spacing: -0.01em;
        text-transform: uppercase;
        color: var(--white);
    }

    .slide__title em {
        display: block;
        font-style: normal;
        color: var(--muted);
    }

    .slide__right {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 80px;
        border-left: 1px solid var(--border);
        padding-left: 60px;
        gap: 32px;
    }

    .slide__desc {
        font-size: clamp(0.95rem, 1.2vw, 1.05rem);
        font-weight: 300;
        line-height: 1.75;
        color: rgba(245, 244, 240, 0.6);
        max-width: 420px;
    }

    .slide__details {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .slide__detail {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 0.82rem;
        font-weight: 400;
        color: var(--muted);
        letter-spacing: 0.04em;
    }

    .slide__detail::before {
        content: "";
        display: block;
        width: 20px;
        height: 1px;
        background: rgba(245, 244, 240, 0.3);
        flex-shrink: 0;
    }

    .slide__cta {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        background: transparent;
        border: 1px solid rgba(245, 244, 240, 0.25);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 14px 24px 14px 20px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.3s ease, border-color 0.3s ease;
        align-self: flex-start;
    }

    .slide__cta:hover {
        background: rgba(245, 244, 240, 0.08);
        border-color: rgba(245, 244, 240, 0.5);
    }

    .slide__cta-arrow {
        width: 20px;
        height: 1px;
        background: currentColor;
        position: relative;
        transition: width 0.3s ease;
    }

    .slide__cta-arrow::after {
        content: "";
        position: absolute;
        right: 0;
        top: -3px;
        width: 6px;
        height: 6px;
        border-right: 1px solid currentColor;
        border-top: 1px solid currentColor;
        transform: rotate(45deg);
    }

    .slide__cta:hover .slide__cta-arrow {
        width: 32px;
    }

    .services-header {
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid var(--border);
        padding: 80px 60px 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .services-header__label {
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--dim-text);
        margin-bottom: 20px;
    }

    .services-header__title {
            font-size: clamp(2.87rem, 7.5vw, 6.3rem);
        line-height: 0.9;
        letter-spacing: -0.01em;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
    }

    .services-header__meta {
        margin-top: 28px;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .meta-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .meta-item__val {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: var(--white);
        line-height: 1;
    }

    .meta-item__label {
        font-size: 0.72rem;
        color: var(--dim-text);
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .meta-divider {
        width: 1px;
        height: 40px;
        background: var(--border);
    }

    .slide__progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        background: rgba(245, 244, 240, 0.5);
        width: 0%;
        z-index: 10;
        transition: width 0.4s ease;
    }

    @media (max-width: 900px) {
        .slide__content {
            grid-template-columns: 1fr;
            padding: 40px 28px;
            gap: 28px;
            align-items: center;
            justify-items: center;
            text-align: center;
        }

        .slide__left {
            padding-bottom: 0;
            align-items: center;
        }

        .slide__right {
            border-left: none;
            padding-left: 0;
            border-top: 1px solid var(--border);
            padding-top: 28px;
            padding-bottom: 60px;
            align-items: center;
        }

        .slide__cta {
            align-self: center;
        }

        .slide__detail {
            justify-content: center;
        }

        .services-header {
            padding: 60px 28px 40px;
        }

        .services-header__meta {
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }
    }

    @media (max-width: 600px) {
        .slide__bg-text span {
            font-size: 22vw;
        }

        .slide__title {
            font-size: 3rem;
        }
    }

    /* ── БІГУЧА СТРІЧКА ── */
    .marquee-section {
        background: var(--white);
        border-top: 1px solid rgba(10, 10, 10, 0.12);
        border-bottom: 1px solid rgba(10, 10, 10, 0.12);
        overflow: hidden;
        height: 52px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .marquee-track {
        display: flex;
        align-items: center;
        white-space: nowrap;
        animation: marquee 28s linear infinite;
    }

    .marquee-section:hover .marquee-track {
        animation-play-state: paused;
    }

    .marquee-item {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        padding: 0 32px;
        font-family: "Barlow Condensed", sans-serif;
        font-weight: 700;
        font-size: 15px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #0a0a0a;
        flex-shrink: 0;
    }

    .marquee-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #0a0a0a;
        opacity: 0.3;
        flex-shrink: 0;
    }

    .marquee-tag {
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        color: var(--border-black);
        border: 1px solid var(--border-black);
        padding: 2px 7px;
        border-radius: 2px;
    }

    .marquee-fade-l,
    .marquee-fade-r {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        z-index: 2;
        pointer-events: none;
    }

    .marquee-fade-l {
        left: 0;
        background: linear-gradient(to right, #f5f4f0, transparent);
    }

    .marquee-fade-r {
        right: 0;
        background: linear-gradient(to left, #f5f4f0, transparent);
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ── FOOTER ── */
    .footer {
        background: #080808;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 72px 48px 36px;
    }

    .footer__top {
        display: grid;
        grid-template-columns: 260px 1fr auto;
        gap: 60px;
        align-items: start;
        max-width: 1400px;
        margin: 0 auto 56px;
    }

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

    .footer__logo img {
        height: 44px;
        width: auto;
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .footer__logo:hover img {
        opacity: 1;
    }

    .footer__tagline {
        font-size: 13px;
        font-weight: 300;
        line-height: 1.75;
        color: var(--dim-text);
        letter-spacing: 0.02em;
    }

    .footer__nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

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

    .footer__nav-title {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 4px;
    }

    .footer__nav-col a {
        font-size: 13px;
        font-weight: 300;
        color: var(--dim-text);
        text-decoration: none;
        letter-spacing: 0.03em;
        transition: color 0.25s;
        width: fit-content;
        position: relative;
    }

    .footer__nav-col a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.4);
        transition: width 0.3s ease;
    }

    .footer__nav-col a:hover {
        color: var(--white);
    }

    .footer__nav-col a:hover::after {
        width: 100%;
    }

    .footer__social {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer__social-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer__social-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--dim-text);
        text-decoration: none;
        border: 1px solid var(--muted);
        padding: 5px 8px;
        transition: color 0.25s, border-color 0.25s, background 0.25s;
        white-space: nowrap;
    }

    .footer__social-btn:hover {
        color: var(--white);
        border-color: var(--white);
        background: var(--border-black);
    }

    .footer__divider {
        max-width: 1400px;
        margin: 0 auto 32px;
        height: 1px;
        background: rgba(255, 255, 255, 0.07);
    }

    .footer__bottom {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer__copy {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
        letter-spacing: 0.06em;
    }

    .footer__legal {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

    .footer__legal a {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
        text-decoration: none;
        letter-spacing: 0.04em;
        transition: color 0.25s;
    }

    .footer__legal a:hover {
        color: rgba(255, 255, 255, 0.5);
    }

    .footer__made {
        font-family: "Bebas Neue", sans-serif;
        font-size: 13px;
        letter-spacing: 0.18em;
        color: rgba(255, 255, 255, 0.15);
    }

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

        .footer__social {
            grid-column: 1/-1;
            flex-direction: row;
            align-items: center;
            gap: 32px;
        }

        .footer__social-links {
            flex-direction: row;
        }
    }

    @media (max-width: 768px) {
        .footer {
            padding: 52px 24px 28px;
        }

        .footer__top {
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            text-align: center;
            justify-content: center;
        }

        .footer__brand {
            align-items: center;
        }

        .footer__nav {
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            justify-items: center;
        }

        .footer__nav-col {
            align-items: center;
        }

        .footer__social {
            grid-column: 1/-1;
            flex-direction: row;
            align-items: center;
            gap: 32px;
        }

        .footer__social-links {
            flex-direction: row;
        }

        .footer__bottom {
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        .footer__legal {
            justify-content: center;
        }
    }

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

    ;

    /* MAP FUNCTIONS */

    /* ІКОНКА */
    .map-icon {
        font-size: 24px;
        cursor: pointer;
        color: #fff;
        transition: 0.3s;
    }

    .map-icon:hover {
        transform: scale(1.2);
        opacity: 0.7;
    }

    /* МОДАЛКА */
    .map-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;
        z-index: 999;
    }

    /* АКТИВНА */
    .map-modal.active {
        opacity: 1;
        visibility: visible;
    }

    /* КОНТЕНТ */
    .map-content {
        position: relative;
        width: 80%;
        max-width: 900px;
        height: 500px;
        transform: scale(0.8);
        transition: 0.4s ease;
    }

    /* Анімація появи */
    .map-modal.active .map-content {
        transform: scale(1);
    }

    /* КАРТА */
    .map-content iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(30%);
    }

    /* КНОПКА ЗАКРИТИ */
    .map-close {
        position: absolute;
        top: -40px;
        right: 0;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

    .map-close:hover {
        transform: rotate(90deg);
        opacity: 0.7;
    }

    /* КНОПКА ДАЛІ */
    .next-page-btn {
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.4s;
        z-index: 999;
    }

    /* текст */
    .next-page-btn span {
        color: #fff;
        font-size: 12px;
        text-align: center;
        line-height: 1.2;
    }

    /* hover */
    .next-page-btn:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.5);
    }

    /* анімація зникнення */
    body.fade-out {
        opacity: 0;
        transition: opacity 0.5s ease;
    }