/*
Theme Name: Gojshik Intellectual Company
Description: Одностраничный сайт-визитка для Gojshik Intellectual Company
Version: 1.0
Template: twentytwentyfive
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    overflow-x: hidden;
    background: #ffffff;
    position: relative;
}

/* Background Animation Container */
.gojshik-background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gojshik-floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0;
    color: #4a7c59;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    visibility: hidden;
}

.gojshik-floating-icon.animated {
    opacity: 0.35;
    visibility: visible;
}

.gojshik-floating-icon svg {
    width: 100%;
    height: 100%;
}

/* Header Styles */
.gojshik-header {
    position: relative;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 4px 32px;
    display: grid;
    /* Лого слева (1fr), кнопки ближе к правой части (auto), соцсети в самом правом авто-столбце */
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 20px;
    min-height: 60px;
    height: auto;
}

.gojshik-header__left {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-self: end;
    grid-column: 3;
    justify-content: flex-end;
    grid-row: 1;
    align-self: center;
}

.gojshik-header__social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.gojshik-header__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f4f2;
    color: #4a7c59;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gojshik-header__social a:hover {
    background: #4a7c59;
    color: #ffffff;
    transform: translateY(-2px);
}

.gojshik-header__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.gojshik-header__logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

.gojshik-header__right {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.gojshik-header__actions {
    display: flex;
    gap: 10px;
}

.gojshik-header__btn {
    padding: 8px 14px;
    border-radius: 18px;
    border: 1px solid #4a7c59;
    background: #4a7c59;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.gojshik-header__btn--secondary {
    background: transparent;
    color: #4a7c59;
}

.gojshik-header__btn:hover {
    background: #32533e;
    border-color: #32533e;
    color: #fff;
    box-shadow: 0 4px 12px rgba(50, 83, 62, 0.3);
}

/* Primary header button (Изготовителям): white on hover */
.gojshik-header__btn:not(.gojshik-header__btn--secondary):hover {
    background: #ffffff;
    color: #4a7c59;
    border-color: #4a7c59;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.25);
}

.gojshik-header__btn--secondary:hover {
    background: #4a7c59;
    color: #fff;
}

.gojshik-header__burger {
    display: none;
    width: 32px;
    height: 24px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.gojshik-header__burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    background: #4a4a4a;
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.gojshik-header__burger span:nth-child(1) {
    top: 0;
}

.gojshik-header__burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.gojshik-header__burger span:nth-child(3) {
    bottom: 0;
}

.gojshik-header__burger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.gojshik-header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.gojshik-header__burger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.gojshik-header__logo-link {
    display: inline-block;
    text-decoration: none;
}

.gojshik-header__logo-img {
    max-height: 42px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gojshik-header__logo-text {
    max-height: 50px;
    max-width: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: 12px;
}

.gojshik-header__contact {
    display: none;
    align-items: center;
}

.gojshik-header__contact-info {
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gojshik-header__contact-item {
    margin: 0;
    padding: 0;
    color: #4a4a4a;
}

.gojshik-header__contact-item strong {
    color: #2d5a3d;
    font-weight: 600;
}

.gojshik-header__contact-item a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 500;
}

.gojshik-header__contact-item a:hover {
    color: #2d5a3d;
    text-decoration: underline;
}

.gojshik-header__lang {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gojshik-header__lang button {
    padding: 6px 12px;
    border: 1px solid #d0d0d0;
    background: #f5f5f5;
    color: #6c757d;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gojshik-header__lang button:hover {
    background: #e8e8e8;
    border-color: #b0b0b0;
}

.gojshik-header__lang button.active {
    background: #4a7c59;
    color: #ffffff;
    border-color: #4a7c59;
    box-shadow: 0 2px 4px rgba(74, 124, 89, 0.3);
}

/* Language select dropdown */
.gojshik-header__lang select,
.lang-switch-select {
    padding: 6px 12px;
    border: 1px solid #d0d0d0;
    background: #f5f5f5;
    color: #6c757d;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}

.gojshik-header__lang select:hover,
.lang-switch-select:hover {
    background-color: #e8e8e8;
    border-color: #b0b0b0;
}

.gojshik-header__lang select:focus,
.lang-switch-select:focus {
    border-color: #4a7c59;
    box-shadow: 0 2px 4px rgba(74, 124, 89, 0.3);
}

/* Main Content - Single Page Layout */
.gojshik-main {
    margin-top: 0;
    margin-bottom: 0;
    min-height: calc(100vh - 120px);
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 40px 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.gojshik-footer-contact {
    position: relative;
    z-index: 10;
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
}

.gojshik-footer-contact__line {
    margin: 0;
}

.gojshik-footer-contact__line a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 500;
}

.gojshik-footer-contact__line a:hover {
    text-decoration: underline;
}

.gojshik-footer-credit {
    margin: 6px 0 0 0;
    font-size: 11px;
    color: #b0b0b0;
    letter-spacing: 0.06em;
}

.gojshik-footer-credit a {
    color: #a0a0a0;
    text-decoration: none;
    font-weight: 600;
}

.gojshik-footer-credit a:hover {
    color: #8a8a8a;
    text-decoration: underline;
}

/* SVG snake-like decorative lines */
.gojshik-waves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.gojshik-wave-svg {
    position: absolute;
    width: 140%;
    height: 55%;
    left: -20%;
    fill: none;
}

.gojshik-wave-svg--top {
    top: 5%;
    transform-origin: center;
    animation: gojshikSnakeSway1 26s ease-in-out infinite;
}

.gojshik-wave-svg--bottom {
    bottom: 5%;
    transform-origin: center;
    animation: gojshikSnakeSway2 30s ease-in-out infinite;
}

.gojshik-wave-path {
    stroke: #4a7c59;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gojshik-wave-path--2 {
    stroke: #4a7c59;
}

@keyframes gojshikSnakeSway1 {
    0% {
        transform: translateX(0) rotate(-18deg);
    }
    50% {
        transform: translateX(6%) rotate(-10deg);
    }
    100% {
        transform: translateX(0) rotate(-18deg);
    }
}

@keyframes gojshikSnakeSway2 {
    0% {
        transform: translateX(0) rotate(16deg);
    }
    50% {
        transform: translateX(-6%) rotate(10deg);
    }
    100% {
        transform: translateX(0) rotate(16deg);
    }
}

.gojshik-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px 0 0 0;
}

/* Main two-column layout */
.gojshik-main-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 0;
}

.gojshik-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.gojshik-column--left {
    gap: 32px;
}

.gojshik-column--right {
    gap: 28px;
}

/* Hero Section */
.gojshik-hero {
    text-align: left;
    margin-bottom: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gojshik-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.gojshik-hero::after {
    display: none;
}

.gojshik-hero h1 {
    font-family: "Times New Roman", Times, serif;
    font-size: 48px;
    font-weight: bold;
    font-style: italic;
    color: #273E59;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.gojshik-hero p {
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    color: #2d5a3d;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-weight: bold;
}

/* Text reveal animation */
.gojshik-text-reveal {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.gojshik-text-reveal.animate {
    animation: textFadeIn 1.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.gojshik-services {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 20px 30px 20px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.gojshik-services::before {
    content: '';
    position: absolute;
    top: -35px;
    left: -35px;
    width: 200px;
    height: 200px;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
}

.gojshik-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image: url('images/truck.png');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.27;
    border-radius: 0 0 20px 20px;
    z-index: 0;
    pointer-events: none;
}

.gojshik-services-bg--second {
    position: absolute;
    top: 60%; /* сразу под первым фоном с truck.png (его высота 60%) */
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('images/truck_2.png');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    border-radius: 20px; /* скругляем и верхние, и нижние края */
    z-index: 0;
    pointer-events: none;
    /* Прозрачность: сверху 27% видимости, к низу плавно уходит до полной прозрачности */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.27) 0%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.27) 0%, rgba(0,0,0,0) 100%);
}

/* Все h2 заголовки - общие стили */
.gojshik-services h2 {
    font-family: "Aptos", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 20px;
    font-weight: 700; /* полужирный (Bold) */
    color: #163e64;
    line-height: 1;
    margin-top: -10px;
    margin-bottom: -15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Первый заголовок каждого языка (1-й, 2-й, 3-й h2 в DOM) - специальные отступы */
.gojshik-services h2:nth-of-type(1),
.gojshik-services h2:nth-of-type(2),
.gojshik-services h2:nth-of-type(3) {
    margin-top: 10px !important;
    margin-bottom: -15px;
}

.gojshik-services__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: -10px;
    padding: 0;
    flex: 1;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.gojshik-service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 10px;
    transition: none;
    position: relative;
    overflow: hidden;
}

.gojshik-service-item::before {
    display: none;
}

.gojshik-service-item:hover {
    transform: none;
    box-shadow: none;
}

.gojshik-service-item__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: none;
}

.gojshik-service-item__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.gojshik-service-item__content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 42px;
}

.gojshik-service-item__content p {
    margin: 0;
    font-family: "Aptos", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #0d3512;
}

/* Производители - зеленый стиль */
.gojshik-service-item--manufacturers {
    background: linear-gradient(135deg, #f0f7f2 0%, #e8f4ed 100%);
}


.gojshik-service-item--manufacturers .gojshik-service-item__icon {
    background: linear-gradient(135deg, #4a7c59 0%, #5a8a6a 100%);
    color: #ffffff;
}

.gojshik-service-item--manufacturers:hover {
    background: linear-gradient(135deg, #f0f7f2 0%, #e8f4ed 100%);
}

.gojshik-service-item--manufacturers:hover .gojshik-service-item__icon {
    transform: none;
}

/* Оптовики - оранжевый/коричневый стиль */
.gojshik-service-item--wholesale {
    background: linear-gradient(135deg, #faf5f0 0%, #f5ede3 100%);
}


.gojshik-service-item--wholesale .gojshik-service-item__icon {
    background: linear-gradient(135deg, #d4a574 0%, #c49564 100%);
    color: #ffffff;
}

.gojshik-service-item--wholesale:hover {
    background: linear-gradient(135deg, #faf5f0 0%, #f5ede3 100%);
}

.gojshik-service-item--wholesale:hover .gojshik-service-item__icon {
    transform: none;
}

/* Ритейлеры - синий стиль */
.gojshik-service-item--retail {
    background: linear-gradient(135deg, #f0f4f7 0%, #e8eff5 100%);
}


.gojshik-service-item--retail .gojshik-service-item__icon {
    background: linear-gradient(135deg, #6b8eb8 0%, #5a7da8 100%);
    color: #ffffff;
}

.gojshik-service-item--retail:hover {
    background: linear-gradient(135deg, #f0f4f7 0%, #e8eff5 100%);
}

.gojshik-service-item--retail:hover .gojshik-service-item__icon {
    transform: none;
}

/* Advantages Section - теперь часть gojshik-services */
.gojshik-advantages {
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
    overflow: visible;
}

.gojshik-advantages::before {
    display: none;
}

.gojshik-services h2:not(:first-child) {
    margin-top: 180px;
    margin-bottom: -10px;
}

.gojshik-advantages__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 14px;
    margin-top: 15px;
    margin-bottom: 0;
    padding: 0 0 0 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Advantages photo stack */
.gojshik-advantages-image {
    position: relative;
    border-radius: 0;
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile: advantages text on top, image below the list */
@media (max-width: 768px) {
    .gojshik-advantages-image {
        justify-content: center;
        overflow: visible;
    }

    .gojshik-advantages-image__inner {
        margin-left: auto;
        margin-right: auto;
        padding: 20px 15px 80px 15px;
        overflow: visible;
        min-width: auto;
        max-width: 100%;
        min-height: auto;
    }
    
    .gojshik-photo-stack {
        overflow: visible;
        min-width: auto;
        max-width: 280px;
        min-height: 300px;
        width: 100%;
    }
}

.gojshik-advantages-image__inner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 150px;
    min-width: 180px;
    max-width: 200px;
    margin-left: 30px; /* Сдвигаем контейнер правее */
    margin-right: auto;
    margin-top: -20px; /* Поднимаем контейнер немного выше */
    padding: 100px 120px 120px 100px; /* Увеличенный padding для еще более раздвинутых карточек */
    overflow: visible; /* На ПК разрешаем выход за края */
}

/* Photo stack effect - фотокарточки наложенные друг на друга */
.gojshik-photo-stack {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 160px;
    min-width: 180px;
    max-width: 200px;
    margin: 0 auto;
    overflow: visible;
    transform: translate(80px, -10px);
}

.gojshik-photo-card {
    position: absolute;
    width: 100%;
    min-width: 160px;
    height: 100%;
    min-height: 140px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
    transition: transform 0.3s ease, z-index 0.3s ease, opacity 0.3s ease;
}

/* Центральная карточка - больше размером и под остальными */
.gojshik-photo-card--5 {
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 1;
    width: 140%;
    height: 140%;
    min-width: 260px;
    min-height: 230px;
    left: 50%;
    top: 50%;
}

/* 1. Верхний левый угол - бокал вина */
.gojshik-photo-card--1 {
    transform: translate(-50%, -50%) translate(-170px, -90px);
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
}

/* 2. Верхний правый угол - виски и пшеничное поле */
.gojshik-photo-card--2 {
    transform: translate(-50%, -50%) translate(170px, -90px);
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
}

/* 3. Нижний левый угол - кофе и выпечка */
.gojshik-photo-card--3 {
    transform: translate(-50%, -50%) translate(-170px, 130px);
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
}

/* 4. Нижний правый угол - оливки и оливковое масло */
.gojshik-photo-card--4 {
    transform: translate(-50%, -50%) translate(170px, 130px);
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
}

/* Информационный текст между нижними карточками */
.gojshik-photo-stack__info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(150px);
    z-index: 3;
    text-align: center;
    color: #273E59;
    font-family: "Aptos", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.6;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.gojshik-photo-stack__info p {
    margin: 0;
    padding: 0;
}

.gojshik-photo-stack__info a {
    color: #568390;
    text-decoration: none;
}

.gojshik-photo-stack__info a:hover {
    text-decoration: underline;
}

/* Hover эффект - поднимаем угловые карточки */
.gojshik-photo-stack:hover .gojshik-photo-card--1 {
    transform: translate(-50%, -50%) translate(-170px, -90px) translateY(-5px);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gojshik-photo-stack:hover .gojshik-photo-card--2 {
    transform: translate(-50%, -50%) translate(170px, -90px) translateY(-5px);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gojshik-photo-stack:hover .gojshik-photo-card--3 {
    transform: translate(-50%, -50%) translate(-170px, 130px) translateY(-5px);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gojshik-photo-stack:hover .gojshik-photo-card--4 {
    transform: translate(-50%, -50%) translate(170px, 130px) translateY(-5px);
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* -------------------------------------------------- */
/* Simplified text lists in left column (PC)          */
/* -------------------------------------------------- */

/* Services and advantages as simple bullet lists */
.gojshik-column--left .gojshik-services__list,
.gojshik-column--left .gojshik-advantages__list {
    list-style: disc !important;
    list-style-type: disc !important;
    list-style-position: outside !important;
    display: block !important;
    margin: 8px 0 0 0 !important;
    padding-left: 25px !important;
    gap: 0 !important;
    flex-direction: unset !important;
}

.gojshik-column--left .gojshik-service-item,
.gojshik-column--left .gojshik-advantage-item {
    display: list-item !important;
    padding: 3px 0 !important;
    margin: 0 !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    gap: 0 !important;
    height: auto !important;
    align-items: unset !important;
    flex-direction: unset !important;
    overflow: visible !important;
    position: static !important;
}

.gojshik-column--left .gojshik-service-item::before,
.gojshik-column--left .gojshik-advantage-item::before {
    display: none !important;
}

.gojshik-column--left .gojshik-service-item__icon,
.gojshik-column--left .gojshik-advantage-item__icon {
    display: none;
}

.gojshik-column--left .gojshik-service-item__content,
.gojshik-column--left .gojshik-advantage-item__content {
    display: inline;
    min-height: auto;
}

.gojshik-column--left .gojshik-service-item__content p,
.gojshik-column--left .gojshik-advantage-item__content p {
    display: inline;
    font-size: 18px;
    font-family: "Aptos", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: #0d3512;
}

/* Полностью отключаем hover-эффекты у advantages в левой колонке */
.gojshik-column--left .gojshik-advantage-item:hover,
.gojshik-column--left .gojshik-advantage-item--analysis:hover,
.gojshik-column--left .gojshik-advantage-item--selection:hover,
.gojshik-column--left .gojshik-advantage-item--verification:hover,
.gojshik-column--left .gojshik-advantage-item--organization:hover,
.gojshik-column--left .gojshik-advantage-item--communication:hover {
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
}


/* Первые 3 элемента занимают колонки 1-2, 3-4, 5-6 */
.gojshik-advantages__list li:nth-child(1) {
    grid-column: 1 / 3;
}

.gojshik-advantages__list li:nth-child(2) {
    grid-column: 3 / 5;
}

.gojshik-advantages__list li:nth-child(3) {
    grid-column: 5 / 7;
}

/* Элементы 4 и 5 центрированы - занимают колонки 2-3 и 4-5 */
.gojshik-advantages__list li:nth-child(4) {
    grid-column: 2 / 4;
}

.gojshik-advantages__list li:nth-child(5) {
    grid-column: 4 / 6;
}


.gojshik-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 100%;
}

.gojshik-advantages__list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.gojshik-advantage-item:hover {
    /* убираем hover-эффект */
    transform: none;
    box-shadow: none;
}

.gojshik-advantage-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gojshik-advantage-item__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.gojshik-advantage-item__content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.gojshik-advantage-item__content p {
    margin: 0;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 800;
    color: #2d5a3d;
}

/* Анализ - фиолетовый стиль */
.gojshik-advantage-item--analysis {
    background: linear-gradient(135deg, #f5f0f8 0%, #ede5f5 100%);
}

.gojshik-advantage-item--analysis .gojshik-advantage-item__icon {
    background: linear-gradient(135deg, #8b6fa8 0%, #7a5f97 100%);
    color: #ffffff;
}

.gojshik-advantage-item--analysis:hover {
    background: linear-gradient(135deg, #f5f0f8 0%, #ede5f5 100%);
}

.gojshik-advantage-item--analysis:hover .gojshik-advantage-item__icon {
    transform: none;
}

/* Подбор - оранжевый стиль */
.gojshik-advantage-item--selection {
    background: linear-gradient(135deg, #fff5e8 0%, #ffe8d1 100%);
}

.gojshik-advantage-item--selection .gojshik-advantage-item__icon {
    background: linear-gradient(135deg, #e89f4a 0%, #d88f3a 100%);
    color: #ffffff;
}

.gojshik-advantage-item--selection:hover {
    background: linear-gradient(135deg, #fff5e8 0%, #ffe8d1 100%);
}

.gojshik-advantage-item--selection:hover .gojshik-advantage-item__icon {
    transform: none;
}

/* Верификация - синий стиль */
.gojshik-advantage-item--verification {
    background: linear-gradient(135deg, #e8f2f8 0%, #daeaf5 100%);
}

.gojshik-advantage-item--verification .gojshik-advantage-item__icon {
    background: linear-gradient(135deg, #4a90c2 0%, #3a80b2 100%);
    color: #ffffff;
}

.gojshik-advantage-item--verification:hover {
    background: linear-gradient(135deg, #e8f2f8 0%, #daeaf5 100%);
}

.gojshik-advantage-item--verification:hover .gojshik-advantage-item__icon {
    transform: none;
}

/* Организация - бирюзовый стиль */
.gojshik-advantage-item--organization {
    background: linear-gradient(135deg, #e8f5f3 0%, #daf0ec 100%);
}

.gojshik-advantage-item--organization .gojshik-advantage-item__icon {
    background: linear-gradient(135deg, #4fb3a8 0%, #3fa398 100%);
    color: #ffffff;
}

.gojshik-advantage-item--organization:hover {
    background: linear-gradient(135deg, #e8f5f3 0%, #daf0ec 100%);
}

.gojshik-advantage-item--organization:hover .gojshik-advantage-item__icon {
    transform: none;
}

/* Коммуникация - розовый стиль */
.gojshik-advantage-item--communication {
    background: linear-gradient(135deg, #fce8f0 0%, #f8dae8 100%);
}

.gojshik-advantage-item--communication .gojshik-advantage-item__icon {
    background: linear-gradient(135deg, #d47a9e 0%, #c46a8e 100%);
    color: #ffffff;
}

.gojshik-advantage-item--communication:hover {
    background: linear-gradient(135deg, #fce8f0 0%, #f8dae8 100%);
}

.gojshik-advantage-item--communication:hover .gojshik-advantage-item__icon {
    transform: none;
}



/* Language switching */
/* Видимость элементов с data-lang управляется JavaScript через inline стили */

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .gojshik-main-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gojshik-column {
        gap: 24px;
    }

    .gojshik-advantages__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }
    
    .gojshik-advantages__list li {
        grid-column: auto;
    }
}

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

    .gojshik-column {
        gap: 20px;
    }
    
    .gojshik-header {
        padding: 8px 16px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* В шапке на мобиле: слева соцсети, по центру лого, справа бургер */
    .gojshik-header__left {
        display: flex;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        margin-bottom: 0;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .gojshik-header__contact {
        display: none;
    }
    
    .gojshik-header__logo {
        margin: 0;
    }
    
    .gojshik-header__right {
        display: none;
    }
    
    .gojshik-header__burger {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Выпадающее меню бургера, привязанное к нижнему краю хедера */
    .gojshik-header__right.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 16px 16px 16px;
        background: #faf8f3;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        flex-direction: column;
        gap: 12px;
        z-index: 2500;
    }
    
    .gojshik-header__actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .gojshik-header__lang {
        justify-content: center;
        z-index: 2501;
        position: relative;
    }
    
    .gojshik-header__lang button {
        pointer-events: auto !important;
        z-index: 2502 !important;
        position: relative;
    }
    
    .gojshik-header__logo-img {
        max-height: 50px;
        max-width: 180px;
    }
    
    .gojshik-header__logo-text {
        display: none; /* Скрываем текст логотипа на мобильных */
    }
    
    .gojshik-header__social a {
        width: 38px;
        height: 38px;
    }
    
    .gojshik-header__social svg {
        width: 20px;
        height: 20px;
    }
    
    .gojshik-header__contact-info {
        font-size: 13px;
    }
    
    .gojshik-header__lang button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .gojshik-header__lang select,
    .lang-switch-select {
        padding: 6px 12px;
        padding-right: 30px;
        font-size: 12px;
        pointer-events: auto !important;
        z-index: 2502 !important;
    }
    
    .gojshik-main {
        margin-top: 0;
        margin-bottom: 0;
        padding: 15px 15px;
        min-height: calc(100vh - 70px);
        height: auto;
        overflow: visible;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    }
    
    .gojshik-content {
        min-height: auto;
        height: auto;
    }
    
    .gojshik-advantages {
        margin-bottom: 30px;
    }
    
    .gojshik-hero {
        padding: 20px;
        border-radius: 12px;
    }
    
    .gojshik-hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .gojshik-hero p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .gojshik-services h2,
    .gojshik-advantages h2 {
        font-size: 24px;
    }
    
    .gojshik-advantages {
        padding: 22px 16px;
        border-radius: 16px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    }
    
    .gojshik-advantages::before {
        width: 170px;
        height: 170px;
        top: -30px;
        right: -30px;
    }
    
    .gojshik-top-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gojshik-hero {
        text-align: center;
    }
    
    .gojshik-hero p {
        text-align: left;
    }
    
    .gojshik-hero,
    .gojshik-services,
    .gojshik-advantages {
        border-radius: 16px;
    }
    
    .gojshik-services {
        padding: 22px 16px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    }
    
    .gojshik-services::before {
        width: 170px;
        height: 170px;
        top: -25px;
        left: -25px;
    }
    
    .gojshik-services h2 {
        text-align: center;
    }
    
    /* Одинаковые отступы для первого заголовка "Наши услуги" на всех языках на мобильных */
    .gojshik-services h2:nth-of-type(1),
    .gojshik-services h2:nth-of-type(2),
    .gojshik-services h2:nth-of-type(3) {
        margin-top: 10px !important;
        margin-bottom: -15px !important;
    }
    
    /* Уменьшенные отступы для второго заголовка "Наше преимущество" на мобильных */
    .gojshik-services h2:nth-of-type(2),
    .gojshik-services h2:nth-of-type(3),
    .gojshik-services h2:nth-of-type(4),
    .gojshik-services h2:not(:first-of-type) {
        margin-top: 50px !important;
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    
    /* Уменьшенный отступ списка после заголовка "Наше преимущество" на мобильных */
    .gojshik-services .gojshik-advantages__list {
        margin-top: 4px !important;
    }
    
    /* Исправление выравнивания списка на мобильных - используем стандартные точки как во втором списке */
    .gojshik-services__list {
        list-style: disc !important;
        list-style-type: disc !important;
        list-style-position: outside !important;
        display: block !important;
        margin: 0 !important;
        padding-left: 25px !important;
        gap: 0 !important;
        flex-direction: unset !important;
    }
    
    .gojshik-service-item {
        display: list-item !important;
        padding: 3px 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
        background: none !important;
        border-radius: 0 !important;
        border: none !important;
        height: auto !important;
        align-items: unset !important;
        flex-direction: unset !important;
        position: static !important;
        overflow: visible !important;
        animation: none !important;
        will-change: auto !important;
    }
    
    /* Убираем псевдоэлемент ::before на мобильных */
    .gojshik-services__list .gojshik-service-item::before {
        display: none !important;
    }
    
    /* Скрываем иконки и делаем контент inline как во втором списке */
    .gojshik-services__list .gojshik-service-item__icon {
        display: none !important;
    }
    
    .gojshik-services__list .gojshik-service-item__content {
        display: inline !important;
        min-height: auto !important;
    }
    
    .gojshik-services__list .gojshik-service-item__content p {
        display: inline !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Отключаем AOS анимации для элементов списка на мобильных */
    .gojshik-services__list [data-aos],
    .gojshik-services__list .gojshik-service-item[data-aos] {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    /* Полностью отключаем ВСЕ hover и active эффекты для service-item на мобильных */
    .gojshik-services__list .gojshik-service-item,
    .gojshik-services__list .gojshik-service-item:hover,
    .gojshik-services__list .gojshik-service-item:active,
    .gojshik-services__list .gojshik-service-item:focus,
    .gojshik-services__list .gojshik-service-item:visited {
        transform: none !important;
        box-shadow: none !important;
        transition: none !important;
    }
    
    /* Убираем все разноцветные фоны на мобильных - делаем все элементы одинаковыми */
    .gojshik-services__list .gojshik-service-item,
    .gojshik-services__list .gojshik-service-item--manufacturers,
    .gojshik-services__list .gojshik-service-item--manufacturers:hover,
    .gojshik-services__list .gojshik-service-item--manufacturers:active,
    .gojshik-services__list .gojshik-service-item--manufacturers:focus,
    .gojshik-services__list .gojshik-service-item--wholesale,
    .gojshik-services__list .gojshik-service-item--wholesale:hover,
    .gojshik-services__list .gojshik-service-item--wholesale:active,
    .gojshik-services__list .gojshik-service-item--wholesale:focus,
    .gojshik-services__list .gojshik-service-item--retail,
    .gojshik-services__list .gojshik-service-item--retail:hover,
    .gojshik-services__list .gojshik-service-item--retail:active,
    .gojshik-services__list .gojshik-service-item--retail:focus {
        background: transparent !important;
        transform: none !important;
    }
    
    .gojshik-services__list .gojshik-service-item--manufacturers .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--manufacturers:hover .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--manufacturers:active .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--manufacturers:focus .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--wholesale .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--wholesale:hover .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--wholesale:active .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--wholesale:focus .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--retail .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--retail:hover .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--retail:active .gojshik-service-item__icon,
    .gojshik-services__list .gojshik-service-item--retail:focus .gojshik-service-item__icon {
        transform: none !important;
        transition: none !important;
        background: transparent !important;
    }
    
    .gojshik-service-item__icon {
        width: 38px !important;
        height: 38px !important;
        transition: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        transform: none !important;
        animation: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .gojshik-service-item__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .gojshik-service-item__content {
        min-height: 38px !important;
        display: block !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Элементы p внутри content должны быть блочными, но уважаем inline стили от JavaScript */
    .gojshik-service-item__content p[data-lang]:not([style*="display: none"]):not([style*="display:none"]) {
        display: block !important;
    }
    
    .gojshik-service-item__content p {
        font-size: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.5 !important;
    }
    
    /* Убеждаемся, что inline стили от JavaScript имеют приоритет на мобильных - скрываем элементы с display: none */
    .gojshik-service-item__content p[data-lang][style*="display: none"],
    .gojshik-service-item__content p[data-lang][style*="display:none"] {
        display: none !important;
    }
    
    /* По умолчанию скрываем все языки кроме ru, если нет inline стиля */
    .gojshik-service-item__content p[data-lang="lv"]:not([style]),
    .gojshik-service-item__content p[data-lang="en"]:not([style]) {
        display: none !important;
    }
    
    /* Для заголовков */
    .gojshik-services h2[data-lang][style*="display: none"],
    .gojshik-services h2[data-lang][style*="display:none"] {
        display: none !important;
    }
    
    .gojshik-services h2[data-lang="lv"]:not([style]),
    .gojshik-services h2[data-lang="en"]:not([style]) {
        display: none !important;
    }
    
    /* Для элементов преимуществ */
    .gojshik-advantage-item__content p[data-lang][style*="display: none"],
    .gojshik-advantage-item__content p[data-lang][style*="display:none"] {
        display: none !important;
    }
    
    .gojshik-advantage-item__content p[data-lang="lv"]:not([style]),
    .gojshik-advantage-item__content p[data-lang="en"]:not([style]) {
        display: none !important;
    }
    
    /* Исправление выравнивания для второго списка (преимуществ) на мобильных */
    .gojshik-advantage-item {
        padding: 14px !important;
        gap: 12px !important;
        transition: none !important;
        transform: none !important;
        box-shadow: none !important;
        align-items: center !important;
        display: flex !important;
        position: static !important;
        overflow: visible !important;
        animation: none !important;
        will-change: auto !important;
        height: auto !important;
    }
    
    /* Отключаем все hover и active эффекты для advantage-item на мобильных */
    .gojshik-advantages__list .gojshik-advantage-item,
    .gojshik-advantages__list .gojshik-advantage-item:hover,
    .gojshik-advantages__list .gojshik-advantage-item:active,
    .gojshik-advantages__list .gojshik-advantage-item:focus {
        transform: none !important;
        box-shadow: none !important;
        transition: none !important;
        background: transparent !important;
    }
    
    .gojshik-advantages__list .gojshik-advantage-item--analysis,
    .gojshik-advantages__list .gojshik-advantage-item--analysis:hover,
    .gojshik-advantages__list .gojshik-advantage-item--analysis:active,
    .gojshik-advantages__list .gojshik-advantage-item--analysis:focus,
    .gojshik-advantages__list .gojshik-advantage-item--selection,
    .gojshik-advantages__list .gojshik-advantage-item--selection:hover,
    .gojshik-advantages__list .gojshik-advantage-item--selection:active,
    .gojshik-advantages__list .gojshik-advantage-item--selection:focus,
    .gojshik-advantages__list .gojshik-advantage-item--verification,
    .gojshik-advantages__list .gojshik-advantage-item--verification:hover,
    .gojshik-advantages__list .gojshik-advantage-item--verification:active,
    .gojshik-advantages__list .gojshik-advantage-item--verification:focus,
    .gojshik-advantages__list .gojshik-advantage-item--organization,
    .gojshik-advantages__list .gojshik-advantage-item--organization:hover,
    .gojshik-advantages__list .gojshik-advantage-item--organization:active,
    .gojshik-advantages__list .gojshik-advantage-item--organization:focus,
    .gojshik-advantages__list .gojshik-advantage-item--communication,
    .gojshik-advantages__list .gojshik-advantage-item--communication:hover,
    .gojshik-advantages__list .gojshik-advantage-item--communication:active,
    .gojshik-advantages__list .gojshik-advantage-item--communication:focus {
        background: transparent !important;
        transform: none !important;
    }
    
    .gojshik-advantages__list .gojshik-advantage-item--analysis .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--analysis:hover .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--analysis:active .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--analysis:focus .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--selection .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--selection:hover .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--selection:active .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--selection:focus .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--verification .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--verification:hover .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--verification:active .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--verification:focus .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--organization .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--organization:hover .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--organization:active .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--organization:focus .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--communication .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--communication:hover .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--communication:active .gojshik-advantage-item__icon,
    .gojshik-advantages__list .gojshik-advantage-item--communication:focus .gojshik-advantage-item__icon {
        transform: none !important;
        transition: none !important;
        background: transparent !important;
    }
    
    .gojshik-advantage-item__icon {
        width: 40px !important;
        height: 40px !important;
        transition: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        transform: none !important;
        animation: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .gojshik-advantage-item__icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .gojshik-advantage-item__content {
        min-height: 40px !important;
        display: block !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Элементы p внутри content должны быть блочными, но уважаем inline стили от JavaScript */
    .gojshik-advantage-item__content p[data-lang]:not([style*="display: none"]):not([style*="display:none"]) {
        display: block !important;
    }
    
    .gojshik-advantage-item__content p {
        font-size: 15px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.5 !important;
    }
    
    /* Отключаем AOS анимации для элементов списка преимуществ на мобильных */
    .gojshik-advantages__list [data-aos],
    .gojshik-advantages__list .gojshik-advantage-item[data-aos] {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    .gojshik-advantage-item__icon {
        width: 48px;
        height: 48px;
    }
    
    .gojshik-advantage-item__icon svg {
        width: 26px;
        height: 26px;
    }
    
    .gojshik-advantage-item__content p {
        font-size: 15px;
    }
    
    .gojshik-advantages__list {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }
    
    .gojshik-advantages__list li {
        grid-column: auto;
    }
    
    .gojshik-services__list {
        grid-template-columns: 1fr;
    }
}

.gojshik-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.gojshik-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.gojshik-modal__overlay {
    position: absolute;
    inset: 0;
}

.gojshik-modal__dialog {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 1;
}

.gojshik-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    color: #333;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.gojshik-modal__close:hover {
    background: rgba(0,0,0,0.15);
}

.gojshik-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

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

.gojshik-form__group label {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
}

.gojshik-form__group input,
.gojshik-form__group textarea {
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    background: #fefefe;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.gojshik-form__group input:focus,
.gojshik-form__group textarea:focus {
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
    outline: none;
}

.gojshik-form__submit {
    border: none;
    border-radius: 18px;
    padding: 12px 18px;
    background: #4a7c59;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 769px) {
    .gojshik-form__submit {
        align-self: center;
        max-width: 220px;
    }
}

.gojshik-form__submit:hover {
    background: #32533e;
    box-shadow: 0 8px 18px rgba(50,83,62,0.25);
}

body.modal-open {
    overflow: hidden;
}

body.header-menu-open {
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width: 575px) {
    .gojshik-modal__dialog {
        padding: 24px 18px;
    }
    
    .gojshik-form__group input,
    .gojshik-form__group textarea {
        font-size: 13px;
    }
}

/* ============================
   FULL RESET ADVANTAGES LAYOUT FOR TABLETS & MOBILES
   (DESKTOP (>=1025px) остаётся как есть: 3 сверху + 2 снизу)
   ============================ */

@media (max-width: 1024px) {
    .gojshik-advantages {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .gojshik-advantages__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        max-width: 100%;
        margin-top: 14px;
    }

    .gojshik-advantages__list li {
        grid-column: auto !important;
    }

    .gojshik-advantage-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        min-height: 0;
        gap: 10px;
    }

    .gojshik-advantage-item__content {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .gojshik-advantages__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gojshik-advantages {
        padding: 18px 12px;
        border-radius: 14px;
    }
    
    .gojshik-advantages h2 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .gojshik-advantages__list {
        gap: 12px;
    }
    
    .gojshik-advantage-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .gojshik-advantage-item__icon {
        width: 42px;
        height: 42px;
    }
    
    .gojshik-advantage-item__content {
        min-height: auto;
    }
    
    .gojshik-services {
        padding: 18px 12px;
        border-radius: 14px;
    }
    
    .gojshik-services::before {
        width: 140px;
        height: 140px;
    }
}

/* Ensure content fits viewport */
html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body.gojshik-homepage {
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    body.gojshik-homepage {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .gojshik-main {
        margin-top: 70px;
        margin-bottom: 0;
        padding: 30px 20px;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    }
    
    /* Улучшенная типографика для мобильных */
    .gojshik-hero h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        white-space: normal !important;
        word-wrap: break-word;
        margin-bottom: 16px !important;
    }
    
    .gojshik-hero p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: left;
    }
    
    /* Улучшенные отступы для секций */
    .gojshik-content {
        gap: 24px;
    }
    
    .gojshik-column {
        gap: 20px;
    }
    
    /* Улучшенный хедер на мобильных */
    .gojshik-header {
        padding: 10px 16px !important;
        min-height: 65px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .gojshik-header__logo-img {
        max-height: 45px !important;
        max-width: 160px !important;
    }
    
    .gojshik-header__social a {
        width: 40px !important;
        height: 40px !important;
    }
    
    .gojshik-header__social svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    /* Улучшенное выпадающее меню */
    .gojshik-header__right.is-open {
        padding: 16px !important;
        gap: 14px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        border-radius: 0 0 12px 12px;
    }
    
    .gojshik-header__btn {
        padding: 10px 16px !important;
        font-size: 14px !important;
        width: 100%;
        justify-content: center;
    }
    
    .gojshik-header__actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    /* Улучшенные сервисы */
    .gojshik-services {
        padding: 20px 14px !important;
        border-radius: 18px !important;
    }
    
    .gojshik-services h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-top: 8px !important;
        margin-bottom: 16px !important;
    }
    
    .gojshik-service-item {
        padding: 14px !important;
        gap: 12px !important;
        border-radius: 12px;
    }
    
    .gojshik-service-item__icon {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0;
    }
    
    .gojshik-service-item__icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .gojshik-service-item__content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    /* Улучшенные преимущества */
    .gojshik-advantages {
        padding: 20px 14px !important;
        border-radius: 18px !important;
    }
    
    .gojshik-advantages h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-top: 24px !important;
        margin-bottom: 16px !important;
    }
    
    .gojshik-advantages h2:first-of-type {
        margin-top: 8px !important;
    }
    
    .gojshik-advantage-item {
        padding: 16px !important;
        gap: 12px !important;
        border-radius: 12px;
    }
    
    .gojshik-advantage-item__icon {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0;
    }
    
    .gojshik-advantage-item__icon svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .gojshik-advantage-item__content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        font-weight: 600 !important;
    }
    
    /* Улучшенный фото-стек для мобильных */
    .gojshik-advantages-image {
        margin-top: 12px !important;
        margin-bottom: 10px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gojshik-advantages-image__inner {
        padding: 10px 15px 60px 15px !important;
        max-width: 100% !important;
        min-width: auto !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 0 !important;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .gojshik-photo-stack {
        transform: translate(0, 0) !important;
        max-width: 360px !important;
        width: 100% !important;
        min-width: auto !important;
        min-height: 300px !important;
        height: auto !important;
        position: relative;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Центрируем все карточки на мобильных - увеличенные размеры и выше */
    .gojshik-photo-card {
        position: absolute !important;
        left: 50% !important;
        top: 40% !important;
        transform: translate(-50%, -50%) !important;
        width: 160px !important;
        height: 125px !important;
        min-width: 160px !important;
        min-height: 125px !important;
        max-width: 160px !important;
        max-height: 125px !important;
        border-radius: 8px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
        opacity: 0.85 !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Центральная карточка - под остальными на мобильных */
    .gojshik-photo-card--5 {
        width: 190px !important;
        height: 150px !important;
        min-width: 190px !important;
        min-height: 150px !important;
        max-width: 190px !important;
        max-height: 150px !important;
        z-index: 1 !important;
        opacity: 1 !important;
        transform: translate(-50%, -50%) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* Угловые карточки - поверх центральной, увеличенное расстояние */
    .gojshik-photo-card--1 {
        transform: translate(-50%, -50%) translate(-110px, -85px) rotate(-3deg) !important;
        z-index: 2 !important;
    }
    
    .gojshik-photo-card--2 {
        transform: translate(-50%, -50%) translate(110px, -85px) rotate(3deg) !important;
        z-index: 3 !important;
    }
    
    .gojshik-photo-card--3 {
        transform: translate(-50%, -50%) translate(-110px, 85px) rotate(-2deg) !important;
        z-index: 4 !important;
    }
    
    .gojshik-photo-card--4 {
        transform: translate(-50%, -50%) translate(110px, 85px) rotate(2deg) !important;
        z-index: 5 !important;
    }
    
    /* Информационный текст - опущен ниже на мобильных */
    .gojshik-photo-stack__info {
        font-size: 11px !important;
        transform: translate(-50%, -50%) translateY(160px) !important;
        position: absolute !important;
        left: 50% !important;
        top: 45% !important;
        z-index: 10 !important;
        width: 100% !important;
        max-width: 200px !important;
    }
    
    /* Улучшенный футер */
    .gojshik-footer-contact {
        margin-top: 24px;
        padding: 0 20px 20px;
        font-size: 12px;
    }
    
    .gojshik-footer-credit {
        font-size: 10px !important;
        margin-top: 8px;
    }
    
    /* Улучшенные модальные окна */
    .gojshik-modal__dialog {
        padding: 24px 18px !important;
        border-radius: 18px !important;
        margin: 20px;
        max-height: 85vh;
    }
    
    .gojshik-modal__close {
        width: 32px !important;
        height: 32px !important;
        top: 12px !important;
        right: 12px !important;
        font-size: 22px !important;
    }
    
    .gojshik-form {
        gap: 14px !important;
    }
    
    .gojshik-form__group label {
        font-size: 13px !important;
    }
    
    .gojshik-form__group input,
    .gojshik-form__group textarea {
        padding: 12px 14px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }
    
    .gojshik-form__submit {
        padding: 14px 20px !important;
        font-size: 15px !important;
        width: 100%;
        border-radius: 12px !important;
    }
    
    /* Улучшенные фоновые изображения */
    .gojshik-services-bg {
        opacity: 0.2 !important;
    }
    
    .gojshik-services-bg--second {
        opacity: 0.15 !important;
    }
    
    /* Улучшенные отступы между элементами списка */
    .gojshik-services__list {
        gap: 10px !important;
    }
    
    .gojshik-advantages__list {
        gap: 12px !important;
    }
}

/* Дополнительные улучшения для очень маленьких экранов */
@media (max-width: 480px) {
    .gojshik-main {
        padding: 20px 14px !important;
        margin-top: 60px !important;
        border-radius: 14px !important;
    }
    
    .gojshik-hero h1 {
        font-size: 24px !important;
    }
    
    .gojshik-hero p {
        font-size: 14px !important;
    }
    
    .gojshik-services,
    .gojshik-advantages {
        padding: 16px 12px !important;
        border-radius: 14px !important;
    }
    
    .gojshik-services h2,
    .gojshik-advantages h2 {
        font-size: 20px !important;
    }
    
    .gojshik-service-item,
    .gojshik-advantage-item {
        padding: 12px !important;
    }
    
    .gojshik-service-item__content p,
    .gojshik-advantage-item__content p {
        font-size: 14px !important;
    }
    
    .gojshik-header {
        padding: 8px 12px !important;
        min-height: 60px !important;
    }
    
    .gojshik-header__logo-img {
        max-height: 40px !important;
        max-width: 140px !important;
    }
    
    .gojshik-header__social a {
        width: 36px !important;
        height: 36px !important;
    }
    
    .gojshik-header__social svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .gojshik-modal__dialog {
        padding: 20px 14px !important;
        margin: 10px;
    }
    
    .gojshik-advantages-image {
        margin-top: 8px !important;
        margin-bottom: 6px !important;
    }
    
    .gojshik-advantages-image__inner {
        padding: 8px 10px 50px 10px !important;
    }
    
    .gojshik-photo-stack {
        max-width: 320px !important;
        min-height: 260px !important;
    }
    
    .gojshik-photo-card {
        width: 135px !important;
        height: 105px !important;
        min-width: 135px !important;
        min-height: 105px !important;
        max-width: 135px !important;
        max-height: 105px !important;
        top: 40% !important;
    }
    
    .gojshik-photo-card--5 {
        width: 160px !important;
        height: 125px !important;
        min-width: 160px !important;
        min-height: 125px !important;
        max-width: 160px !important;
        max-height: 125px !important;
    }
    
    /* Увеличенные смещения для большего расстояния на маленьких экранах */
    .gojshik-photo-card--1 {
        transform: translate(-50%, -50%) translate(-90px, -70px) rotate(-3deg) !important;
    }
    
    .gojshik-photo-card--2 {
        transform: translate(-50%, -50%) translate(90px, -70px) rotate(3deg) !important;
    }
    
    .gojshik-photo-card--3 {
        transform: translate(-50%, -50%) translate(-90px, 70px) rotate(-2deg) !important;
    }
    
    .gojshik-photo-card--4 {
        transform: translate(-50%, -50%) translate(90px, 70px) rotate(2deg) !important;
    }
    
    .gojshik-photo-stack__info {
        transform: translate(-50%, -50%) translateY(145px) !important;
        max-width: 180px !important;
        font-size: 10px !important;
        top: 45% !important;
    }
}

/* Горизонтальная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .gojshik-main {
        padding: 20px 16px !important;
    }
    
    .gojshik-hero h1 {
        font-size: 26px !important;
        margin-bottom: 12px !important;
    }
    
    .gojshik-hero p {
        font-size: 14px !important;
    }
    
    .gojshik-services,
    .gojshik-advantages {
        padding: 18px 14px !important;
    }
}


