/*
Theme Name: GK Cargo Custom
Theme URI: https://gkcargo.lv
Author: GK Cargo
Description: Custom WordPress theme for GK Cargo.
Version: 1.0.0
Text Domain: gkcargo
*/

/* =========================
   VARIABLES + BASE
========================= */

:root {
    --black: #1f1f1f;
    --blue: #174ba8;
    --light: #e9ece8;
    --white: #ffffff;
    --content-width: 1220px;
    --section-padding-y: 72px;
    --section-padding-x: 40px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Satoshi', Arial, sans-serif;
    background: var(--light);
    color: var(--black);
}

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

main {
    min-height: 60vh;
    padding: 80px 40px;
}

.gk-eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.gk-section-heading,
.gk-services h2,
.gk-gallery h2 {
    margin: 0;
    color: #071b33;
    font-size: clamp(44px, 4.2vw, 58px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.gk-section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.gk-section-link span {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.gk-section-link:hover span {
    transform: translateX(5px);
}


/* =========================
   GLOBAL HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 74px;
    min-height: 74px;

    display: grid;
    grid-template-columns: 190px 1fr 228px 180px;
    align-items: stretch;

    padding: 0;

    background: var(--black);
    color: var(--white);
}


/* LOGO */

.site-header__logo {
    position: relative;
    z-index: 4;

    height: 74px;

    display: flex;
    align-items: center;

    padding-left: 22px;

    background: var(--black);
}

.site-header__logo::after {
    content: "";

    position: absolute;
    top: 0;
    right: -36px;

    width: 72px;
    height: 74px;

    background: var(--black);

    transform: skewX(-30deg);

    box-shadow: 8px 7px 7px rgba(0, 0, 0, 0.42);

    z-index: -1;
}

.site-header__logo a {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
}

.site-header__logo img {
    display: block;

    width: auto;
    height: 44px;

    object-fit: contain;
}


/* BLUE LOGO ACCENT */

.site-header__logo a::after {
    content: "";

    position: absolute;

    right: -37px;
    top: -3px;

    width: 2px;
    height: 48px;

    background: var(--blue);

    transform: rotate(28deg);
}


/* NAVIGATION */

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;

    padding-left: 46px;
}

.site-header__nav ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0;
}

.site-header__nav li {
    position: relative;

    margin: 0;
    padding: 0 13px;
}

.site-header__nav li:not(:last-child)::after {
    content: "";

    position: absolute;

    right: -1px;
    top: 50%;

    width: 3px;
    height: 11px;

    background: var(--blue);

    transform: translateY(-50%);
}

.site-header__nav a {
    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0;
    text-transform: uppercase;

    white-space: nowrap;

    transition: opacity 0.2s ease;
}

.site-header__nav a:hover {
    opacity: 0.62;
}


/* PHONE */

.site-header__phone {
    position: relative;

    min-width: 0;
    padding: 0 20px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #326bdf;
    color: var(--white);
}

.site-header__phone::before {
    content: "";

    position: absolute;

    left: -29px;
    top: 0;

    width: 58px;
    height: 74px;

    background: #326bdf;

    transform: skewX(-30deg);

    z-index: -1;
}

.site-header__phone svg {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header__phone-copy {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.site-header__phone-copy strong {
    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}

.site-header__phone-copy small {
    margin-top: 3px;

    font-size: 8px;
    font-weight: 700;

    text-transform: uppercase;
    white-space: nowrap;
}


/* EMAIL */

.site-header__email {
    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    background: var(--light);
    color: var(--black);

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}

.site-header__email svg {
    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================
   HEADER — TABLET / MOBILE
========================= */

.site-header__menu-toggle,
.site-header__mobile-menu {
    display: none;
}

@media (max-width: 1100px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        height: 72px;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        background: var(--black);
    }

    .site-header__logo {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
        width: 154px;
        height: 78px;
        padding-left: 16px;
        display: flex;
        align-items: center;
        background: var(--black);
        box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.34);
    }

    .site-header__logo::after {
        content: "";
        position: absolute;
        top: 0;
        right: -31px;
        width: 62px;
        height: 78px;
        background: var(--black);
        transform: skewX(-28deg);
        z-index: -1;
    }

    .site-header__logo img {
        width: auto;
        height: 39px;
    }

    .site-header__logo a::after {
        right: -32px;
        top: -4px;
        width: 2px;
        height: 45px;
    }

    .site-header__nav,
    .site-header__phone,
    .site-header__email {
        display: none;
    }

    .site-header__menu-toggle {
        position: relative;
        z-index: 6;
        width: 72px;
        height: 72px;
        padding: 0;
        border: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: transparent;
        cursor: pointer;
    }

    .site-header__menu-toggle span {
        width: 26px;
        height: 2px;
        display: block;
        background: var(--white);
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .site-header.is-menu-open .site-header__menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.is-menu-open .site-header__menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .site-header__menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-header__mobile-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 4;
        display: block;
        padding: 44px var(--section-padding-x) 40px;
        background: var(--black);
        color: var(--white);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }

    .site-header.is-menu-open .site-header__mobile-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-header__mobile-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-header__mobile-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .site-header__mobile-nav a {
        min-height: 58px;
        display: flex;
        align-items: center;
        color: var(--white);
        font-size: 22px;
        font-weight: 800;
        letter-spacing: -0.035em;
        text-transform: uppercase;
    }

    .site-header__mobile-contacts {
        margin-top: 38px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .site-header__mobile-contacts a {
        display: flex;
        flex-direction: column;
    }

    .site-header__mobile-contacts span {
        margin-bottom: 6px;
        color: rgba(255, 255, 255, 0.55);
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .site-header__mobile-contacts strong {
        color: var(--white);
        font-size: 15px;
        font-weight: 800;
    }

    .site-header__mobile-contacts small {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.65);
        font-size: 9px;
        font-weight: 600;
        text-transform: uppercase;
    }
}

@media (max-width: 520px) {
    .site-header__mobile-contacts {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HOMEPAGE HERO
========================= */

.gk-hero {
    position: relative;
    min-height: 620px;
    height: calc(100vh - 84px);
    max-height: 820px;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background-image:
        linear-gradient(
            90deg,
            rgba(15, 15, 15, 0.68) 0%,
            rgba(15, 15, 15, 0.38) 48%,
            rgba(15, 15, 15, 0.08) 100%
        ),
        url('https://www.gkcargo.lv/wp-content/uploads/2026/07/image_2026-07-05_164117817.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gk-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(72px, 6vw, 108px);
    z-index: 2;

    background: var(--light);

    clip-path: polygon(
        0 100%,
        0 62%,
        100% 0,
        100% 100%
    );

    transform: none;
}

.gk-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 16, 0.08);
}

.gk-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 860px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 96px;
    padding-bottom: 40px;
}

.gk-hero .gk-hero__content h1 {
    margin: 0;
    color: var(--white);
    font-size: 78px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.gk-hero__content p {
    margin: 26px 0 0;
    color: var(--white);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.12;
}

.gk-hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 34px;
}

.gk-hero__primary {
    min-height: 58px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gk-hero__primary:hover {
    background: #103f91;
    transform: translateY(-2px);
}

.gk-hero__secondary {
    position: relative;
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    transition: opacity 0.2s ease;
}

.gk-hero__secondary::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--blue);
}

.gk-hero__secondary:hover {
    opacity: 0.7;
}


/* =========================
   HOMEPAGE SERVICES
========================= */

.gk-services {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--light);
}

.gk-services__inner {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 64px;
    align-items: start;
}

.gk-services h2 {
    max-width: 620px;
    margin-bottom: 46px;
}

.gk-services__list {
    border-top: 1px solid rgba(7, 27, 51, 0.16);
}

.gk-service-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 34px;
    padding: 27px 0 29px;
    border-bottom: 1px solid rgba(7, 27, 51, 0.16);
}

.gk-service-item span {
    padding-top: 5px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.gk-service-item h3 {
    margin: 0 0 9px;
    color: #06182e;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.055em;
}

.gk-service-item p {
    max-width: 520px;
    margin: 0;
    color: rgba(6, 24, 46, 0.72);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.48;
}

.gk-services__image {
    width: 92%;
    height: 620px;
    margin-top: 18px;
    justify-self: end;
    overflow: hidden;
    border-radius: 14px;
    background: #d7dde5;
}

.gk-services__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.gk-services__footer {
    margin-top: 28px;
}


/* =========================
   HOMEPAGE BENEFITS STRIP
========================= */

.gk-benefits {
    padding: 34px var(--section-padding-x) 36px;
    background: var(--black);
    color: var(--white);
}

.gk-benefits__inner {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
}

.gk-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gk-benefit__icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
}

.gk-benefit__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--white);
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gk-benefit__text {
    display: flex;
    flex-direction: column;
}

.gk-benefit__text strong {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
}

.gk-benefit__text span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}


/* =========================
   HOMEPAGE GALLERY
========================= */

.gk-gallery {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--light);
}

.gk-gallery__inner {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
}

.gk-gallery__heading {
    margin-bottom: 30px;
}

.gk-gallery__heading .gk-eyebrow {
    margin-bottom: 12px;
    color: var(--blue);
}

.gk-gallery h2 {
    text-transform: none;
}

.gk-gallery__grid {
    height: 600px;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 10px;
}

.gk-gallery__column {
    min-height: 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gk-gallery__image {
    min-height: 0;
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}

.gk-gallery__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gk-gallery__image:hover img {
    transform: scale(1.025);
}

.gk-gallery__image--tall {
    height: 100%;
}

.gk-gallery__footer {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.gk-gallery__footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.gk-gallery__footer span {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.gk-gallery__footer a:hover span {
    transform: translateX(5px);
}


/* =========================
   IMAGE LIGHTBOX
========================= */

.gk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 10, 16, 0.82);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    cursor: zoom-out;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.gk-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gk-lightbox__image {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    cursor: default;
    transform: scale(0.97);
    transition: transform 0.22s ease;
}

.gk-lightbox.is-open .gk-lightbox__image {
    transform: scale(1);
}

.gk-lightbox__close {
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 3;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font-family: inherit;
    font-size: 46px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}


/* =========================
   GLOBAL FOOTER
========================= */

.site-footer {
    background: var(--black);
    color: var(--white);
}

.site-footer__cta {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 74px 40px 148px;
    background: var(--blue);
}

.site-footer__cta::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -112px;
    width: 120%;
    height: 210px;
    z-index: 1;
    background: var(--black);
    transform: rotate(-4.5deg);
    transform-origin: center center;
}

.site-footer__cta-inner {
    position: relative;
    z-index: 2;
    width: min(var(--content-width), 100%);
    margin: 0 auto;
}

.site-footer__cta h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.site-footer__cta p {
    margin: 10px 0 0;
    font-size: 17px;
    font-weight: 500;
}

.site-footer__cta-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
}

.site-footer__cta-primary {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__cta-primary:hover {
    transform: translateY(-2px);
}

.site-footer__cta-secondary {
    position: relative;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-footer__cta-secondary::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: var(--white);
}

.site-footer__contacts {
    position: relative;
    z-index: 3;
    margin-top: -96px;
    padding: 0 40px 54px;
    background: transparent;
}

.site-footer__contacts-inner {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
    gap: 96px;
    align-items: end;
}

.site-footer__trust {
    padding-top: 150px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.site-footer__trust-item {
    min-height: 178px;
    padding: 0 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer__trust-item:first-child {
    padding-left: 0;
}

.site-footer__trust-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.site-footer__trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: var(--blue);
}

.site-footer__trust-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__trust-item strong {
    display: block;
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.site-footer__trust-item span {
    display: block;
    max-width: 190px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.38;
}

.site-footer__contact-panel {
    padding-top: 42px;
}

.site-footer__contact-panel h3 {
    position: relative;
    margin: 0 0 46px;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.site-footer__contact-panel h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 48px;
    height: 3px;
    background: var(--blue);
}

.site-footer__contact-list {
    display: grid;
    gap: 0;
}

.site-footer__contact-item {
    min-height: 112px;
    padding: 0;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 24px;
    align-items: center;
}

.site-footer__contact-item + .site-footer__contact-item {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer__contact-icon {
    width: 46px;
    height: 46px;
    color: var(--blue);
}

.site-footer__contact-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__contact-item span {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-footer__contact-item a {
    display: inline-block;
    color: var(--white);
    font-size: clamp(23px, 1.9vw, 29px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.site-footer__bottom-inner {
    width: min(var(--content-width), 100%);
    min-height: 78px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.site-footer__logo {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.site-footer__logo span {
    font-size: 14px;
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-footer__social {
    width: 25px;
    height: 25px;
    display: block;
}

.site-footer__social svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__social:last-child svg {
    fill: var(--white);
    stroke: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .gk-services {
        padding: 58px var(--section-padding-x) var(--section-padding-y);
    }

    .gk-services__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gk-services h2 {
        margin-bottom: 34px;
        font-size: clamp(40px, 11vw, 56px);
    }

    .gk-service-item {
        grid-template-columns: 42px 1fr;
        gap: 20px;
        padding: 23px 0 25px;
    }

    .gk-service-item h3 {
        font-size: 22px;
    }

    .gk-services__image {
        width: 100%;
        height: min(520px, 72vw);
        margin-top: 0;
        justify-self: stretch;
    }

    .gk-benefits {
        padding: 38px 22px;
    }

    .gk-benefits__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }

    .gk-benefit {
        justify-content: flex-start;
    }

    .gk-benefit__icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .gk-gallery {
        padding: var(--section-padding-y) var(--section-padding-x);
    }

    .gk-gallery__grid {
        height: auto;
        grid-template-columns: 1fr 1fr;
    }

    .gk-gallery__column {
        grid-template-rows: repeat(2, 240px);
    }

    .gk-gallery__image--tall {
        height: 490px;
    }

    .gk-gallery__column:last-child {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px;
    }

    .site-footer__cta {
        padding: 62px 22px 104px;
    }

    .site-footer__contacts {
        padding: 18px 22px 40px;
    }

    .site-footer__contacts-inner {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }

    .site-footer__contact-address {
        text-align: left;
    }

    .site-footer__bottom-inner {
        padding: 22px;
        grid-template-columns: 1fr auto;
    }

    .site-footer__bottom p {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 1100px) {
    .gk-hero {
        min-height: 560px;
        height: auto;
        padding: 86px var(--section-padding-x) 128px;
        background-position: 60% center;
    }
	
	.gk-hero::after {
    height: 110px;

    clip-path: polygon(
        0 100%,
        0 68%,
        100% 18%,
        100% 100%
    );
}

    .gk-hero__content {
        max-width: 100%;
        padding-left: 0;
        padding-bottom: 20px;
    }

    .gk-hero .gk-hero__content h1 {
        font-size: clamp(46px, 12vw, 68px);
        line-height: 0.96;
        letter-spacing: -0.055em;
    }

    .gk-hero__content p {
        margin-top: 26px;
        font-size: 21px;
        line-height: 1.15;
    }

    .gk-hero__actions {
        gap: 26px;
        margin-top: 32px;
    }

    .gk-hero__primary {
        min-height: 54px;
        padding: 0 20px;
        font-size: 13px;
    }

    .gk-hero__secondary {
        font-size: 13px;
    }
}


@media (max-width: 720px) {
    .gk-gallery__grid {
        grid-template-columns: 1fr;
    }

    .gk-gallery__column,
    .gk-gallery__column:last-child {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 220px);
    }

    .gk-gallery__image--tall {
        height: 420px;
    }

    .gk-benefits__inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px 18px;
    }

    .gk-benefit {
        gap: 14px;
    }

    .gk-benefit__icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 600px) {
    .gk-lightbox {
        padding: 20px;
    }

    .gk-lightbox__close {
        top: 18px;
        right: 20px;
    }
}

@media (max-width: 560px) {
    .gk-gallery__grid {
        grid-template-columns: 1fr;
    }

    .gk-gallery__column,
    .gk-gallery__column:last-child {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 220px);
    }

    .gk-gallery__image--tall {
        height: 420px;
    }
}

@media (max-width: 520px) {
    .gk-benefits__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__contacts-inner {
        grid-template-columns: 1fr;
    }

    .site-footer__cta-actions {
        flex-wrap: wrap;
    }
}


/* =========================
   MOBILE LAYOUT — FINAL
========================= */

@media (max-width: 720px) {
    :root {
        --section-padding-y: 52px;
        --section-padding-x: 24px;
    }

    body.gk-menu-open {
        overflow: hidden;
    }

    .site-header {
        height: 76px;
        min-height: 76px;
    }

    .site-header__logo {
        width: 176px;
        height: 84px;
        padding-left: 20px;
    }

    .site-header__logo::after {
        right: -34px;
        width: 68px;
        height: 84px;
    }

    .site-header__logo img {
        height: 48px;
        max-width: 138px;
    }

    .site-header__logo a::after {
        right: -38px;
        height: 50px;
    }

    .site-header__menu-toggle {
        width: 76px;
        height: 76px;
    }

    .site-header__menu-toggle span {
        width: 30px;
        height: 3px;
    }

    .site-header__mobile-menu {
        top: 76px;
        height: calc(100dvh - 76px);
        overflow-y: auto;
        padding: 34px 24px 42px;
    }

    .site-header__mobile-nav a {
        min-height: 56px;
        font-size: 21px;
    }

    .site-header__mobile-contacts {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gk-hero {
        min-height: 560px;
        padding: 78px 24px 112px;
        background-position: 58% center;
    }

    .gk-hero .gk-hero__content h1 {
        font-size: clamp(44px, 12.5vw, 60px);
        line-height: 0.94;
    }

    .gk-hero__content p {
        font-size: 19px;
    }

    .gk-services {
        padding: 52px 24px;
    }

    .gk-services__inner {
        display: block;
    }

    .gk-services h2,
    .gk-gallery h2 {
        font-size: clamp(42px, 12vw, 56px);
    }

    .gk-services h2 {
        margin-bottom: 30px;
    }

    .gk-service-item {
        grid-template-columns: 38px 1fr;
        gap: 16px;
        padding: 22px 0 24px;
    }

    .gk-service-item h3 {
        font-size: 21px;
    }

    .gk-service-item p {
        font-size: 15px;
        line-height: 1.4;
    }

    .gk-services__footer {
        margin-top: 28px;
    }

    .gk-services__image {
        width: 100%;
        height: 420px;
        margin-top: 38px;
    }

    .gk-benefits {
        padding: 42px 24px;
    }

    .gk-benefits__inner {
        grid-template-columns: 1fr 1fr;
        gap: 34px 18px;
    }

    .gk-benefit {
        justify-content: flex-start;
        gap: 13px;
    }

    .gk-benefit__icon {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .gk-benefit__text strong {
        font-size: 17px;
    }

    .gk-benefit__text span {
        font-size: 11px;
    }

    .gk-gallery {
        padding: 52px 24px;
    }

    .site-footer__cta {
        padding: 58px 24px 92px;
    }

    .site-footer__cta h2 {
        font-size: clamp(42px, 12vw, 58px);
    }

    .site-footer__cta-actions {
        gap: 24px;
    }

    .site-footer__cta::after {
        bottom: -78px;
        height: 128px;
        transform: rotate(-4deg);
    }

    .site-footer__contacts {
        margin-top: -18px;
        padding: 0 24px 42px;
    }

    .site-footer__contacts-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px 24px;
    }

    .site-footer__contact-item {
        padding-top: 28px;
    }

    .site-footer__contact-address {
        grid-column: 1 / -1;
        padding-top: 10px;
        text-align: left;
    }

    .site-footer__contact-address h3 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .site-footer__bottom-inner {
        min-height: auto;
        padding: 24px;
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .site-footer__bottom p {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 430px) {
    .gk-benefits__inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px 12px;
    }

    .gk-benefit {
        gap: 10px;
    }

    .gk-benefit__icon {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
    }

    .gk-benefit__text strong {
        font-size: 15px;
    }

    .gk-benefit__text span {
        font-size: 10px;
    }

    .site-footer__contacts-inner {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__contact-item:last-of-type {
        grid-column: 1 / -1;
    }
}


/* =========================
   FOOTER BRAND + SOCIALS
========================= */

.site-footer__logo {
    display: inline-flex;
    align-items: center;
}

.site-footer__logo img {
    display: block;
    width: auto;
    height: 38px;
    object-fit: contain;
}

.site-footer__socials {
    gap: 18px;
}

.site-footer__social {
    width: 27px;
    height: 27px;
}

.site-footer__social img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 720px) {
    .site-footer__logo img {
        height: 34px;
    }

    .site-footer__socials {
        gap: 16px;
    }
}

.site-header__phone-copy strong {
    font-size: 15px !important;
    line-height: 1.05 !important;
}

.site-header__phone-copy small {
    margin-top: 4px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
}

.site-header__email {
    font-size: 13px !important;
}

.site-header__email span {
    font-size: 13px !important;
}

/* =========================
   INNER PAGES — CLEAN FINAL
========================= */

body .gk-page {
    margin: -80px -40px 0;
    background: var(--light);
    color: var(--black);
    overflow-x: hidden;
}

.gk-page-hero {
    padding: 58px var(--section-padding-x) 34px;
    background: var(--light);
}

.gk-page-hero__inner,
.gk-page-services-grid__inner,
.gk-page-gallery-grid__inner,
.gk-about-page-content__inner,
.gk-contact-page__inner,
.gk-requisites__inner,
.gk-fleet-grid__inner {
    width: min(var(--content-width), 100%);
    margin: 0 auto;
}

.gk-page-hero h1 {
    max-width: 900px;
    margin: 0;

    color: #071b33;

    font-size: clamp(52px, 6vw, 92px);
    font-weight: 900;

    line-height: 0.92;
    letter-spacing: -0.075em;
}

.gk-page-hero p:not(.gk-eyebrow) {
    max-width: 620px;
    margin: 22px 0 0;

    color: rgba(7, 27, 51, 0.72);

    font-size: 20px;
    font-weight: 500;
    line-height: 1.42;
}


/* =========================
   SERVICES PAGE
========================= */

.gk-page-services-grid {
    padding: 18px var(--section-padding-x) 86px;
}

.gk-page-services-grid__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.gk-page-service-card {
    width: 100%;
    min-width: 0;
    min-height: 430px;

    display: grid;
    grid-template-rows: 210px 1fr;

    padding: 28px;

    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(7, 27, 51, 0.14);

    overflow: hidden;
}

.gk-page-service-card__image {
    width: 100%;
    height: 210px;

    overflow: hidden;

    background: #d7dde5;
}

.gk-page-service-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.gk-page-service-card__content {
    min-width: 0;
    padding-top: 26px;
}

.gk-page-service-card__content span,
.gk-page-service-card > span {
    display: block;

    margin: 0 0 20px;

    color: var(--blue);

    font-size: 15px;
    font-weight: 900;
}

.gk-page-service-card h2 {
    margin: 0 0 10px;

    color: #06182e;

    font-size: clamp(30px, 3.1vw, 44px);
    font-weight: 900;

    line-height: 0.98;
    letter-spacing: -0.06em;

    overflow-wrap: anywhere;
}

.gk-page-service-card p {
    max-width: 520px;
    margin: 0;

    color: rgba(6, 24, 46, 0.72);

    font-size: 16px;
    font-weight: 500;
    line-height: 1.48;
}


/* =========================
   FLEET PAGE
========================= */

.gk-fleet-grid {
    padding: 18px var(--section-padding-x) 86px;
}

.gk-fleet-grid__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.gk-fleet-card {
    width: 100%;
    min-width: 0;

    display: grid;
    grid-template-rows: 270px 1fr;

    padding: 28px;

    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(7, 27, 51, 0.14);

    overflow: hidden;
}

.gk-fleet-card__visual {
    position: relative;

    width: 100%;
    height: 270px;

    overflow: hidden;

    background:
        linear-gradient(rgba(23, 75, 168, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 75, 168, 0.12) 1px, transparent 1px),
        #dfe5e8;

    background-size: 32px 32px;
}

.gk-fleet-card__visual img {
    position: absolute;
    inset: 8%;

    width: 84%;
    height: 84%;

    display: block;

    object-fit: contain;
    object-position: center;

    filter: saturate(0.85) contrast(0.95);
}

.gk-fleet-card__blueprint,
.gk-fleet-card__blueprint *,
.gk-fleet-card .line,
.gk-fleet-card .measure {
    display: none;
}

.gk-fleet-card__content {
    min-width: 0;
    padding-top: 26px;
}

.gk-fleet-card__content h2 {
    margin: 0 0 12px;

    color: #06182e;

    font-size: clamp(30px, 3.1vw, 44px);
    font-weight: 900;

    line-height: 0.96;
    letter-spacing: -0.065em;

    overflow-wrap: anywhere;
}

.gk-fleet-card__content p {
    max-width: 520px;
    margin: 0 0 28px;

    color: rgba(6, 24, 46, 0.72);

    font-size: 16px;
    line-height: 1.48;
}

.gk-fleet-card__content dl {
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1px;

    background: rgba(7, 27, 51, 0.16);
}

.gk-fleet-card__content dl div {
    padding: 16px;
    background: var(--light);
}

.gk-fleet-card__content dt {
    margin-bottom: 6px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.gk-fleet-card__content dd {
    margin: 0;

    color: #06182e;

    font-size: 18px;
    font-weight: 900;
}


/* =========================
   GALLERY PAGE
========================= */

.gk-page-gallery-grid {
    padding: 18px var(--section-padding-x) 86px;
}

.gk-page-gallery-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 12px;
}

.gk-page-gallery-item {
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}

.gk-page-gallery-item.is-tall {
    grid-row: span 2;
}

.gk-page-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.gk-page-gallery-item:hover img {
    transform: scale(1.025);
}


/* =========================
   ABOUT PAGE
========================= */

.gk-page-hero__inner--split {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 70px;
    align-items: end;
}

.gk-page-hero__logo-card {
    min-height: 180px;
    padding: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);
}

.gk-page-hero__logo-card img {
    width: min(260px, 100%);
    height: auto;

    display: block;
}

.gk-about-page-content {
    padding: 18px var(--section-padding-x) 86px;
}

.gk-about-page-content__inner {
    display: grid;
    grid-template-columns: 1fr 0.45fr;
    gap: 90px;
    align-items: start;
}

.gk-about-lead {
    margin-top: 0 !important;

    color: #071b33 !important;

    font-size: clamp(30px, 4vw, 52px) !important;
    font-weight: 800 !important;

    line-height: 1.02 !important;
    letter-spacing: -0.06em !important;
}

.gk-about-page-content__main p {
    max-width: 760px;

    color: rgba(7, 27, 51, 0.72);

    font-size: 19px;
    line-height: 1.58;
}

.gk-about-page-content__facts {
    display: grid;
    gap: 12px;
}

.gk-about-page-content__facts div {
    padding: 28px;

    background: var(--black);
    color: var(--white);
}

.gk-about-page-content__facts strong {
    display: block;

    font-size: 36px;
    font-weight: 900;

    letter-spacing: -0.05em;
}

.gk-about-page-content__facts span {
    display: block;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    text-transform: uppercase;
}


/* =========================
   CONTACTS + REQUISITES
========================= */

.gk-contact-page {
    padding: 18px var(--section-padding-x) 42px;
}

.gk-contact-page__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.gk-contact-card {
    min-height: 150px;

    padding: 26px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--black);
    color: var(--white);
}

.gk-contact-card--address {
    grid-column: 1 / -1;
    min-height: 120px;
}

.gk-contact-card span {
    display: block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.gk-contact-card a,
.gk-contact-card p {
    margin: 0;

    color: var(--white);

    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.gk-contact-card--address p {
    max-width: 720px;
}

.gk-requisites {
    padding: 42px var(--section-padding-x) 86px;
}

.gk-requisites__inner {
    padding-top: 38px;
    border-top: 1px solid rgba(7, 27, 51, 0.16);
}

.gk-requisites h2 {
    margin: 0 0 36px;

    color: #071b33;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;

    line-height: 0.96;
    letter-spacing: -0.06em;
}

.gk-requisites dl {
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid rgba(7, 27, 51, 0.16);
}

.gk-requisites dl div {
    padding: 24px 0;
    border-bottom: 1px solid rgba(7, 27, 51, 0.16);
}

.gk-requisites dt {
    margin-bottom: 8px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.gk-requisites dd {
    margin: 0;

    color: #06182e;

    font-size: 22px;
    font-weight: 800;
}


/* =========================
   INNER PAGES MOBILE
========================= */

@media (max-width: 900px) {
    body .gk-page {
        margin: -80px -40px 0;
    }

    .gk-page-hero {
        padding: 54px 48px 34px;
    }

    .gk-page-hero h1 {
        font-size: clamp(44px, 11.4vw, 72px);
    }

    .gk-page-hero p:not(.gk-eyebrow) {
        max-width: 640px;
        font-size: 18px;
    }

    .gk-page-services-grid,
    .gk-fleet-grid,
    .gk-page-gallery-grid,
    .gk-about-page-content,
    .gk-contact-page,
    .gk-requisites {
        padding-left: 48px;
        padding-right: 48px;
        padding-bottom: 64px;
    }

    .gk-page-services-grid__inner,
    .gk-fleet-grid__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .gk-page-service-card,
    .gk-fleet-card {
        padding: 18px;
    }

    .gk-page-service-card {
        min-height: 0;
        grid-template-rows: 150px 1fr;
    }

    .gk-page-service-card__image {
        height: 150px;
    }

    .gk-page-service-card__content,
    .gk-fleet-card__content {
        padding-top: 18px;
    }

    .gk-page-service-card__content span,
    .gk-page-service-card > span {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .gk-page-service-card h2,
    .gk-fleet-card__content h2 {
        font-size: clamp(25px, 5.1vw, 34px);
    }

    .gk-page-service-card p,
    .gk-fleet-card__content p {
        font-size: 14px;
        line-height: 1.38;
    }

    .gk-fleet-card {
        grid-template-rows: 175px 1fr;
    }

    .gk-fleet-card__visual {
        height: 175px;
    }

    .gk-fleet-card__content dl {
        grid-template-columns: 1fr;
    }

    .gk-page-gallery-grid__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .gk-page-hero__inner--split,
    .gk-about-page-content__inner,
    .gk-contact-page__inner {
        grid-template-columns: 1fr;
    }

    .gk-page-hero__logo-card {
        min-height: 140px;
        justify-content: flex-start;
    }

    .gk-contact-card--address {
        grid-column: auto;
    }

    .gk-requisites dl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body .gk-page {
        margin: -80px -40px 0;
    }

    .gk-page-hero {
        padding: 48px 28px 30px;
    }

    .gk-page-hero h1 {
        max-width: none;
        font-size: clamp(44px, 13.2vw, 66px);
    }

    .gk-page-hero p:not(.gk-eyebrow) {
        max-width: none;
        font-size: 18px;
        line-height: 1.42;
    }

    .gk-page-services-grid,
    .gk-fleet-grid,
    .gk-page-gallery-grid,
    .gk-about-page-content,
    .gk-contact-page,
    .gk-requisites {
        padding-left: 28px;
        padding-right: 28px;
    }

    .gk-page-services-grid__inner,
    .gk-fleet-grid__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .gk-page-service-card,
    .gk-fleet-card {
        padding: 14px;
    }

    .gk-page-service-card {
        grid-template-rows: 132px 1fr;
    }

    .gk-page-service-card__image {
        height: 132px;
    }

    .gk-page-service-card h2,
    .gk-fleet-card__content h2 {
        font-size: clamp(24px, 6.2vw, 31px);
    }

    .gk-page-service-card p,
    .gk-fleet-card__content p {
        font-size: 13px;
        line-height: 1.35;
    }

    .gk-fleet-card {
        grid-template-rows: 150px 1fr;
    }

    .gk-fleet-card__visual {
        height: 150px;
    }

    .gk-page-gallery-grid__inner {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gk-page-gallery-item.is-tall {
        grid-row: span 1;
    }
}

@media (max-width: 420px) {
    .gk-page-hero {
        padding-left: 24px;
        padding-right: 24px;
    }

    .gk-page-services-grid,
    .gk-fleet-grid,
    .gk-page-gallery-grid,
    .gk-about-page-content,
    .gk-contact-page,
    .gk-requisites {
        padding-left: 24px;
        padding-right: 24px;
    }

    .gk-page-services-grid__inner,
    .gk-fleet-grid__inner {
        gap: 14px;
    }

    .gk-page-service-card,
    .gk-fleet-card {
        padding: 12px;
    }

    .gk-page-service-card {
        grid-template-rows: 124px 1fr;
    }

    .gk-page-service-card__image {
        height: 124px;
    }

    .gk-page-service-card h2,
    .gk-fleet-card__content h2 {
        font-size: 24px;
        letter-spacing: -0.055em;
    }

    .gk-page-service-card p,
    .gk-fleet-card__content p {
        font-size: 12.5px;
    }

    .gk-fleet-card {
        grid-template-rows: 140px 1fr;
    }

    .gk-fleet-card__visual {
        height: 140px;
    }
}

/* =========================
   FOOTER — RESPONSIVE RESET FOR NEW LAYOUT
========================= */

@media (max-width: 1100px) {
    .site-footer__contacts-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: start;
    }

    .site-footer__trust {
        padding-top: 112px;
    }

    .site-footer__contact-panel {
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        padding-top: 0;
    }
}

@media (max-width: 720px) {
    .site-footer__cta {
        padding: 58px 24px 104px;
    }

    .site-footer__contacts {
        margin-top: -46px;
        padding: 0 24px 42px;
    }

    .site-footer__contacts-inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 34px;
    }

    .site-footer__contact-panel {
        max-width: none;
        margin-left: 0;
        padding-top: 28px;
    }

    .site-footer__contact-panel h3 {
        margin-bottom: 36px;
        font-size: 28px;
    }

    .site-footer__contact-item {
        min-height: 96px;
        grid-template-columns: 54px 1fr;
        gap: 18px;
    }

    .site-footer__contact-icon {
        width: 42px;
        height: 42px;
    }

    .site-footer__contact-item a {
        font-size: clamp(22px, 7vw, 30px);
    }

    .site-footer__trust {
        padding-top: 0;
        grid-template-columns: 1fr;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .site-footer__trust-item,
    .site-footer__trust-item:first-child,
    .site-footer__trust-item:last-child {
        min-height: 0;
        padding: 24px 0;
        display: grid;
        grid-template-columns: 44px 1fr;
        column-gap: 18px;
        align-items: center;
        justify-items: start;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .site-footer__trust-item:last-child {
        border-bottom: 0;
    }

    .site-footer__trust-icon {
        grid-row: span 2;
        width: 42px;
        height: 42px;
        margin: 0;
    }

    .site-footer__trust-item strong {
        margin-bottom: 4px;
        font-size: 15px;
    }

    .site-footer__trust-item span {
        max-width: none;
        font-size: 13px;
    }
}

@media (max-width: 430px) {
    .site-footer__contact-item {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .site-footer__contact-icon {
        width: 36px;
        height: 36px;
    }

    .site-footer__contact-item span {
        font-size: 12px;
    }

    .site-footer__contact-item a {
        font-size: 22px;
    }
}
