        /* ============================================================
   GEO-MENTOR — стилі головної сторінки.
   ============================================================ */
        *,
        *::before,
        *::after {
            box-sizing: border-box
        }

        /* ---- ПОЯВА БЛОКІВ ПРИ СКРОЛІ ---- */
        :root {
            --reveal-ease: cubic-bezier(.16, 1, .3, 1);
            --reveal-dur: 820ms;
        }

   html:not(.js) .reveal {
            opacity: 1 !important;
            transform: none !important
        } 

        .reveal {
            opacity: 0;
            transform: translateY(14px);
            transition: opacity var(--reveal-dur) var(--reveal-ease), transform var(--reveal-dur) var(--reveal-ease);
            backface-visibility: hidden;
        }

        .reveal.reveal--group {
            transform: none
        }

        .reveal.is-visible {
            opacity: 1;
            transform: none
        }

        .ico-arrow {
            width: 18px;
            height: 18px;
            display: inline-block;
            flex: 0 0 auto;
            vertical-align: middle
        }

        .ico-arrow path {
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

        .post__more .ico-arrow {
            width: 16px;
            height: 16px
        }

        a:-webkit-any-link {
            text-decoration: none;
        }


        /* =========================================================
   СЕКЦІЯ: ОФІЦІЙНІ ПАРТНЕРИ
   ========================================================= */
        .blk-partners {
            position: relative;
            overflow: hidden;
            padding: clamp(18px, 2.6vw, 30px) 0;
            font-family: var(--font);
            background:
                radial-gradient(1100px 240px at 50% -40%, rgba(221, 51, 51, .06), transparent 62%),
                linear-gradient(180deg, #f6f7f9, #fbfcfd);
            border-top: 1px solid rgba(0, 0, 0, .05);
            border-bottom: 1px solid rgba(0, 0, 0, .06);
        }

        .partners__sheen {
            position: absolute;
            top: 0;
            bottom: 0;
            left: -25%;
            width: 18%;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .9), rgba(221, 51, 51, .10), transparent);
            transform: skewX(-16deg);
            filter: blur(3px);
            animation: partnersSheen 8.5s var(--anim) infinite;
            will-change: transform, opacity;
        }

        @keyframes partnersSheen {
            0% {
                left: -25%;
                opacity: 0
            }

            8% {
                opacity: .95
            }

            58% {
                opacity: .95
            }

            74% {
                left: 120%;
                opacity: 0
            }

            100% {
                left: 120%;
                opacity: 0
            }
        }

        .partners {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: clamp(18px, 3vw, 42px);
        }

        .partners__label {
            flex: 0 0 auto;
            display: inline-flex;
            flex-direction: column;
            gap: 7px;
            padding-right: clamp(18px, 2.4vw, 32px);
            border-right: 1px solid rgba(0, 0, 0, .10);
        }

        .partners__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .7px;
            text-transform: uppercase;
            color: var(--red);
        }

        .partners__eyebrow::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 99px;
            background: var(--red);
            box-shadow: 0 0 0 4px rgba(221, 51, 51, .16);
        }

        .partners__title {
            margin: 0;
            font-weight: 900;
            line-height: 1.04;
            letter-spacing: .3px;
            text-transform: uppercase;
            color: rgba(0, 0, 0, .92);
            font-size: clamp(16px, 1.5vw, 22px);
            white-space: nowrap;
        }

        .partners__marquee {
            position: relative;
            flex: 1 1 auto;
            min-width: 0;
   
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
        }

        .partners__track {
            display: inline-flex;
            align-items: center;
            width: max-content;
            animation: partnersScroll 32s linear infinite;
            will-change: transform;
        }

        .partners__marquee:hover .partners__track {
            animation-play-state: paused
        }

        .partners__group {
            display: inline-flex;
            align-items: center;
            gap: clamp(30px, 4vw, 58px);
            padding-right: clamp(30px, 4vw, 58px);
        }

        @keyframes partnersScroll {
            from {
                transform: translate3d(0, 0, 0)
            }

            to {
                transform: translate3d(-50%, 0, 0)
            }
        }

        .partners__item {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: clamp(12px, 1.6vw, 18px);
            cursor: default;
            user-select: none;
            white-space: nowrap;
            font-weight: 700;
            letter-spacing: .2px;
            line-height: 1;
            font-size: clamp(18px, 2vw, 21px);
            color: rgba(0, 0, 0, .55);
            transition: color var(--anim), transform var(--anim), text-shadow var(--anim);
        }

        .partners__item::before {
            content: "";
            flex: 0 0 auto;
            width: 5px;
            height: 5px;
            border-radius: 99px;
            background: rgba(221, 51, 51, .45);
            transition: background var(--anim), transform var(--anim);
        }

        .partners__item:hover {
            color: var(--red);
            transform: translateY(-2px);
        }

        .partners__item:hover::before {
            background: var(--red);
            transform: scale(1.25)
        }

        /* =========================================================
   АДАПТАЦІЯ — ОФІЦІЙНІ ПАРТНЕРИ
   ========================================================= */
        @media (max-width:900px) {
            .partners__group {
                gap: clamp(22px, 6vw, 40px);
                padding-right: clamp(22px, 6vw, 40px)
            }
        }

        @media (max-width:767px) {
            .partners {
                flex-direction: column;
                align-items: stretch;
                gap: 12px
            }

            .partners__label {
                padding-right: 0;
                padding-bottom: 10px;
                border-right: 0;
                border-bottom: 1px solid rgba(0, 0, 0, .10);
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
            }

            .partners__title {
                font-size: 16px
            }

            .partners__track {
                animation-duration: 22s
            }
        }

        /* =========================================================
   УНІВЕРСАЛЬНА КАРУСЕЛЬ
   ========================================================= */
        .carousel {
            position: relative;
        }

        .carousel__track {
            scroll-behavior: smooth;
        }

        .carousel__nav {
            display: none;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
        }

        .carousel.has-overflow .carousel__nav {
            display: flex;
        }

        .carousel__btn {
            appearance: none;
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            border: 1px solid rgba(0, 0, 0, .12);
            background: #fff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
            cursor: pointer;
            transition: transform var(--anim), background var(--anim), border-color var(--anim), box-shadow var(--anim), opacity var(--anim);
        }

        .carousel__btn:hover {
            border-color: rgba(221, 51, 51, .35);
            background: rgba(221, 51, 51, .05);
            box-shadow: 0 14px 30px rgba(221, 51, 51, .20);
            transform: translateY(-2px);
        }

        .carousel__btn:active {
            transform: translateY(0) scale(.97);
        }

        .carousel__btn:disabled {
            opacity: .35;
            pointer-events: none;
            box-shadow: none;
        }

        .carousel__btn::before {
            content: "";
            width: 11px;
            height: 11px;
            border-right: 2px solid rgba(0, 0, 0, .72);
            border-top: 2px solid rgba(0, 0, 0, .72);
        }

        .carousel__btn--prev::before {
            transform: rotate(225deg);
            margin-left: 4px;
        }

        .carousel__btn--next::before {
            transform: rotate(45deg);
            margin-right: 4px;
        }

        .carousel__btn:hover::before {
            border-color: var(--red);
        }

        /* =========================================================
   СЕКЦІЯ: ПОСЛУГИ
   ========================================================= */
        .blk-services {
            padding: clamp(34px, 5vw, 64px) 0;
            background: #fff;
            font-family: var(--font);
        }

        .services__track {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 26px;
        }

        .svc {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: clamp(18px, 2.2vw, 24px);
            border: 1px solid rgba(0, 0, 0, .08);
            border-radius: calc(var(--radius) + 4px);
            background: linear-gradient(180deg, #fff, #fcfcfd);
            box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
            overflow: hidden;
            cursor: pointer;
            transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim), background var(--anim);
        }

        .svc:focus-visible {
            box-shadow: 0 0 0 3px rgba(221, 51, 51, .30);
        }

        .svc::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--red), #fff3f3);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--anim);
        }

        .svc:hover {
            transform: translateY(-8px);
            box-shadow: 0 26px 56px rgba(0, 0, 0, .14);
            border-color: rgba(221, 51, 51, .35);
            background: linear-gradient(180deg, #fff, rgba(221, 51, 51, .04));
        }

        .svc:hover::after {
            transform: scaleX(1);
        }

        .svc__icon {
            display: grid;
            place-items: center;
            width: 56px;
            height: 56px;
            margin-bottom: 16px;
            border-radius: 16px;
            color: rgba(0, 0, 0, .82);
            background: rgba(221, 51, 51, .07);
            border: 1px solid rgba(221, 51, 51, .16);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
            transition: background var(--anim), border-color var(--anim), transform var(--anim);
        }

        .svc:hover .svc__icon {
            background: rgba(221, 51, 51, .12);
            border-color: rgba(221, 51, 51, .30);
            transform: translateY(-2px);
        }

        .svc__icon svg {
            width: 32px;
            height: 32px;
            fill: none;
            display: block;
        }

        .svc__icon svg :where(path, circle, rect, line, polyline, polygon) {
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .svc__icon svg .acc {
            stroke: var(--red);
        }

        .svc__icon svg .fillacc {
            fill: var(--red);
            stroke: none;
        }

        .svc__title {
            margin: 0 0 8px;
            font-weight: 700;
            letter-spacing: .15px;
            line-height: 1.22;
            color: rgba(0, 0, 0, .90);
            font-size: clamp(18px, 1.6vw, 20px);
        }

        .svc__desc {
            margin: 0;
            font-weight: 500;
            line-height: 1.55;
            color: rgba(0, 0, 0, .66);
            font-size: 14.5px;
        }

        /* =========================================================
   АДАПТАЦІЯ
   ========================================================= */
        @media (max-width:980px) {
            .services__track {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width:767px) {

            .services__track {
                display: flex;
                gap: 14px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-padding-inline: 4px;
                padding: 2px 4px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .services__track::-webkit-scrollbar {
                display: none;
            }

            .svc {
                flex: 0 0 84%;
                scroll-snap-align: center;
            }

            .svc {
                box-shadow: none;
                border-color: rgba(0, 0, 0, .12);
            }

            .svc:hover {
                transform: none;
                box-shadow: none;
                border-color: rgba(221, 51, 51, .22);
            }

            .svc.reveal {
                transition-delay: 0s !important;
            }
        }

        /* =========================================================
   СЕКЦІЯ: ВЕНДОРИ ТА РІШЕННЯ
   ========================================================= */
        .blk-vendors {
            padding: clamp(40px, 5.5vw, 72px) 0;
            font-family: var(--font);
        }

        .vendors__panel {
            position: relative;
            border: 1px solid rgba(0, 0, 0, .08);
            border-radius: calc(var(--radius) + 12px);
            background: linear-gradient(180deg, #ffffff, #fcfcfe);
            box-shadow: 0 24px 60px rgba(15, 18, 24, .10);
            padding: clamp(22px, 3vw, 40px) clamp(10px, 2.4vw, 34px) clamp(24px, 3vw, 38px);
            overflow: hidden;
        }

        .vendors__panel::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(820px 300px at 8% 0%, rgba(221, 51, 51, .08), transparent 58%),
                radial-gradient(680px 280px at 96% 8%, rgba(15, 18, 24, .05), transparent 60%);
        }

        .vendors__panel::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 3px;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(90deg, rgba(221, 51, 51, .9), rgba(221, 51, 51, .22), transparent);
        }

        .vendors__panel>* {
            position: relative;
            z-index: 2;
        }

        .vendors__panel .section-head {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 8px;
        }

        .vendors__panel .section-head__sub {
            margin-inline: auto;
        }

        .vendors__track {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin-top: 26px;
        }

        .vendor {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: clamp(14px, 1.9vw, 24px);
            border: 1px solid rgba(0, 0, 0, .08);
            border-radius: calc(var(--radius) + 4px);
            background: #fff;
            box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
            overflow: hidden;
            cursor: pointer;
            transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim), background var(--anim);
        }

        .vendor:focus-visible {
            box-shadow: 0 0 0 3px rgba(221, 51, 51, .30);
        }

        .vendor::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--red), transparent);
            opacity: 0;
            transition: opacity var(--anim);
        }

        .vendor:hover {
            transform: translateY(-8px);
            box-shadow: 0 26px 56px rgba(0, 0, 0, .14);
            border-color: rgba(221, 51, 51, .35);
            background: linear-gradient(180deg, #fff, rgba(221, 51, 51, .035));
        }

        .vendor:hover::before {
            opacity: 1;
        }

        .vendor__logo {
            position: relative;
            width: 120px;
            height: 60px;
            flex: 0 0 auto;
            margin: 0 auto 16px;
            border-radius: 14px;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, .08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
            overflow: hidden;
            transition: border-color var(--anim);
        }

        .vendor:hover .vendor__logo {
            border-color: rgba(221, 51, 51, .18);
        }

        .vendor__logo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
            display: none;
        }

        .vendor__logo.has-img img {
            display: block;
        }

        .vendor__logo.has-img .vendor-badge {
            display: none;
        }

        .vendor-badge {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            border-radius: 14px;
            color: #fff;
            font-weight: 900;
            letter-spacing: .6px;
            line-height: 1;
            font-size: 22px;
            text-transform: uppercase;
            text-shadow: 0 1px 2px rgba(0, 0, 0, .18);
        }

        .vendor__name {
            margin: 0 0 6px;
            font-weight: 700;
            letter-spacing: .15px;
            line-height: 1.2;
            color: rgba(0, 0, 0, .90);
            font-size: clamp(16px, 1.5vw, 19px);
        }

        .vendor__desc {
            margin: 0 0 16px;
            font-weight: 500;
            line-height: 1.5;
            color: rgba(0, 0, 0, .62);
            font-size: 13.5px;
        }

        .vendor__tag {
            margin-top: auto;
            align-self: center;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 13px 7px 9px;
            border-radius: 999px;
            background: linear-gradient(180deg, #ffffff, #f4f5f8);
            border: 1px solid rgba(0, 0, 0, .10);
            box-shadow: 0 2px 8px rgba(15, 18, 24, .06), inset 0 1px 0 rgba(255, 255, 255, .85);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .6px;
            text-transform: uppercase;
            color: rgba(0, 0, 0, .62);
            transition: border-color var(--anim), box-shadow var(--anim), transform var(--anim);
        }

        .vendor:hover .vendor__tag {
            border-color: rgba(221, 51, 51, .22);
            box-shadow: 0 6px 16px rgba(221, 51, 51, .12), inset 0 1px 0 rgba(255, 255, 255, .85);
        }

        .vendor__tag-ic {
            width: 16px;
            height: 16px;
            flex: 0 0 auto;
            display: block;
        }

        .vendor__tag-ic .seal {
            fill: var(--red);
        }

        .vendor__tag-ic .ring {
            fill: none;
            stroke: rgba(255, 255, 255, .45);
            stroke-width: 1;
        }

        .vendor__tag-ic .chk {
            fill: none;
            stroke: #fff;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* =========================================================
   АДАПТАЦІЯ
   ========================================================= */
        @media (max-width:1100px) {
            .vendors__track {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width:767px) {
            .vendors__track {
                display: flex;
                gap: 14px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-padding-inline: 4px;
                padding: 2px 4px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .vendors__track::-webkit-scrollbar {
                display: none;
            }

            .vendor {
                flex: 0 0 80%;
                scroll-snap-align: center;
            }

            .vendor {
                box-shadow: none;
                border-color: rgba(0, 0, 0, .12);
            }

            .vendor:hover {
                transform: none;
                box-shadow: none;
                border-color: rgba(221, 51, 51, .22);
            }

            .vendor.reveal {
                transition-delay: 0s !important;
            }
        }

        /* =========================================================
   СЕКЦІЯ: ГАЛУЗІ
   ========================================================= */
        .blk-industries {
            padding: clamp(34px, 5vw, 64px) 0;
            background: #fff;
            font-family: var(--font);
        }

        .industries__grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            margin-top: 26px;
        }

        .industry {
            position: relative;
            display: flex;
            flex-direction: column;
            padding: 18px;
            border: 1px solid rgba(0, 0, 0, .08);
            border-radius: calc(var(--radius) + 2px);
            background: #fff;
            box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
            overflow: hidden;
            cursor: pointer;
            transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim), background var(--anim);
        }

        .industry:hover {
            transform: translateY(-4px);
            border-color: rgba(221, 51, 51, .30);
            background: linear-gradient(180deg, #fff, rgba(221, 51, 51, .035));
            box-shadow: 0 18px 40px rgba(221, 51, 51, .10);
        }

        .industry:focus-visible {
            box-shadow: 0 0 0 3px rgba(221, 51, 51, .30);
        }

        .industry__top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
        }

        .industry__icon {
            display: grid;
            place-items: center;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            color: rgba(0, 0, 0, .82);
            background: rgba(221, 51, 51, .07);
            border: 1px solid rgba(221, 51, 51, .16);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
            transition: background var(--anim), border-color var(--anim), transform var(--anim);
        }

        .industry:hover .industry__icon {
            background: rgba(221, 51, 51, .12);
            border-color: rgba(221, 51, 51, .30);
            transform: translateY(-1px);
        }

        .industry__icon svg {
            width: 30px;
            height: 30px;
            fill: none;
            display: block;
        }

        .industry__icon svg :where(path, circle, rect, line, polyline, polygon) {
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .industry__icon svg .acc {
            stroke: var(--red);
        }

        .industry__icon svg .fillacc {
            fill: var(--red);
            stroke: none;
        }

        .industry__go {
            display: grid;
            place-items: center;
            width: 34px;
            height: 34px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, .14);
            color: rgba(0, 0, 0, .5);
            background: #fff;
            transition: background var(--anim), border-color var(--anim), color var(--anim), transform var(--anim);
        }

        .industry__go svg {
            width: 16px;
            height: 16px;
            fill: none;
            display: block;
        }

        .industry__go svg path {
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .industry:hover .industry__go {
            background: var(--red);
            border-color: var(--red);
            color: #fff;
            transform: rotate(0deg);
        }

        .industry:hover .industry__go svg {
            transform: translate(1px, -1px);
        }

        .industry__name {
            margin: 0 0 4px;
            font-weight: 700;
            letter-spacing: .1px;
            line-height: 1.22;
            color: rgba(0, 0, 0, .90);
            font-size: clamp(18px, 1.4vw, 18px);
        }

        .industry__cap {
            margin: 0;
            font-weight: 500;
            line-height: 1.45;
            color: rgba(0, 0, 0, .6);
            font-size: 13px;
        }

        /* =========================================================
   АДАПТАЦІЯ
   ========================================================= */
        @media (max-width:1024px) {
            .industries__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

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

            .industry.reveal {
                transition-delay: 0s !important;
            }
        }

        /* =========================================================
   СЕКЦІЯ: ЧОМУ GEO-MENTOR
   ========================================================= */
        .blk-why {
            position: relative;
            overflow: hidden;
            padding: clamp(48px, 7vw, 96px) 0;
            color: #fff;
            font-family: var(--font);
            background:
                radial-gradient(1100px 520px at 10% -8%, rgba(221, 51, 51, .22), transparent 55%),
                radial-gradient(960px 620px at 102% 112%, rgba(64, 96, 228, .20), transparent 55%),
                linear-gradient(158deg, #0c1018 0%, #0f1426 52%, #0b1322 100%);
        }

        .why__decor {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .why__decor--1 {
            width: 560px;
            height: 560px;
            top: -180px;
            right: -130px;
            border: 1px solid rgba(255, 255, 255, .06);
        }

        .why__decor--2 {
            width: 330px;
            height: 330px;
            top: -60px;
            right: 30px;
            border: 1px solid rgba(221, 51, 51, .16);
        }

        .why__decor--3 {
            width: 720px;
            height: 720px;
            bottom: -340px;
            left: -220px;
            border: 1px solid rgba(255, 255, 255, .05);
        }

        .why__decor--4 {
            width: 180px;
            height: 180px;
            bottom: 60px;
            left: 46%;
            border: 1px dashed rgba(255, 255, 255, .10);
        }

        .why__decor--glow {
            width: 420px;
            height: 420px;
            top: 8%;
            left: -80px;
            border: 0;
            background: radial-gradient(circle, rgba(221, 51, 51, .18), transparent 65%);
            filter: blur(8px);
        }

        .why__grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: clamp(30px, 5vw, 68px);
            align-items: start;
        }

        .why__kicker {
            color: #fff;
        }


        .why__title {
            margin: 16px 0 12px;
            font-size: clamp(26px, 3.3vw, 42px);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -.6px;
            color: #fff;
            max-width: 560px;
        }

        .why__title span {
            background: linear-gradient(90deg, #ff7a7a, #ff4d4d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .why__intro {
            margin: 0 0 30px;
            max-width: 520px;
            color: rgba(255, 255, 255, .72);
            font-weight: 500;
            line-height: 1.62;
            font-size: 15px;
        }

        .why__stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 30px;
        }

        .why_stat {
            padding: 18px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .10);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
            transition: transform var(--anim), border-color var(--anim), background var(--anim);
        }

        .why_stat:hover {
            transform: translateY(-3px);
            border-color: rgba(221, 51, 51, .40);
            background: rgba(255, 255, 255, .06);
        }

        .why_stat__num {
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 900;
            line-height: 1;
            letter-spacing: -.5px;
            background: linear-gradient(180deg, #ffffff, #ffb0b0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .why_stat__label {
            margin-top: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .4px;
            color: rgba(255, 255, 255, .58);
            text-transform: uppercase;
        }

        .why__cta {
            box-shadow: 0 16px 34px rgba(221, 51, 51, .36);
        }

        .why__cta-arrow {
            transition: transform var(--anim);
            display: inline-block;
        }

        .why__cta:hover .why__cta-arrow {
            transform: translateX(3px);
        }

        .why__list {
            display: grid;
            gap: 2px;
        }

        .adv {
            position: relative;
            display: grid;
            grid-template-columns: 58px 1fr;
            gap: 16px;
            align-items: start;
            padding: 18px 16px;
            border-radius: 14px;
            transition: background var(--anim), transform var(--anim);
        }

        .adv:not(:last-child)::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 0;
            height: 1px;
            background: rgba(255, 255, 255, .09);
        }

        .adv:hover {
            background: rgba(255, 255, 255, .045);
            transform: translateX(4px);
        }

        .adv__num {
            font-size: 32px;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -1px;
            background: linear-gradient(180deg, #ff7a7a, #dd3333);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .adv__title {
            margin: 2px 0 6px;
            font-size: clamp(16px, 1.5vw, 18px);
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
        }

        .adv__desc {
            margin: 0;
            font-size: 13.5px;
            font-weight: 500;
            line-height: 1.55;
            color: rgba(255, 255, 255, .66);
        }

        /* =========================================================
   АДАПТАЦІЯ
   ========================================================= */
        @media (max-width:900px) {
            .why__grid {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .why__title {
                max-width: none;
            }
        }

        @media (max-width:560px) {
            .why__stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .why__cta {
                width: 100%;
            }

            .adv {
                grid-template-columns: 46px 1fr;
                gap: 12px;
            }

            .adv__num {
                font-size: 26px;
            }
        }

        /* =========================================================
   СЕКЦІЯ: БЛОГ
   ========================================================= */
        .blk-blog {
            padding: clamp(34px, 5vw, 64px) 0;
            background: #fff;
            font-family: var(--font);
        }

        .blog__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-top: 26px;
        }

        .post {
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, .08);
            border-radius: calc(var(--radius) + 4px);
            background: #fff;
            box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
            overflow: hidden;
            transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
        }

        .post:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 52px rgba(0, 0, 0, .12);
            border-color: rgba(221, 51, 51, .20);
        }


        .post__cover {
            position: relative;
            display: block;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: linear-gradient(135deg, #0f1426, #1b2236 60%, #3a1620);
        }

        .post__cover img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 420ms var(--anim);
        }

        .post:hover .post__cover img {
            transform: scale(1.06);
        }

        .post__cover::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(0, 0, 0, .28), transparent 32%, transparent 70%, rgba(0, 0, 0, .18));
        }

        .post__cat {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 6px 11px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: .5px;
            text-transform: uppercase;
            color: #fff;
            background: rgba(15, 18, 24, .55);
            border: 1px solid rgba(255, 255, 255, .18);
            backdrop-filter: blur(8px);
        }

        .post__cat::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 99px;
            background: var(--red);
            box-shadow: 0 0 0 3px rgba(221, 51, 51, .30);
        }

        .post__body {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: clamp(16px, 1.8vw, 20px);
        }

        .post__meta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: .2px;
            color: rgba(0, 0, 0, .5);
        }

        .post__meta::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 99px;
            background: rgba(221, 51, 51, .7);
        }

        .post__title {
            margin: 0 0 8px;
            font-weight: 700;
            line-height: 1.28;
            font-size: clamp(17px, 1.5vw, 19px);
        }

        .post__title a {
            color: rgba(0, 0, 0, .90);
            transition: color var(--anim);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post:hover .post__title a,
        .post__title a:hover {
            color: var(--red);
        }

        .post__excerpt {
            margin: 0 0 16px;
            font-weight: 500;
            line-height: 1.55;
            color: rgba(0, 0, 0, .62);
            font-size: 13.5px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .post__more {
            margin-top: auto;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .2px;
            color: var(--red);
            padding-top: 4px;
        }

        .post__more .post-arrow {
            transition: transform var(--anim);
        }

        .post:hover .post__more .post-arrow,
        .post__more:hover .post-arrow {
            transform: translateX(4px);
        }

        .blog__cta {
            display: flex;
            justify-content: center;
            margin-top: clamp(26px, 3vw, 38px);
        }

        .blog__btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 14px;
            font-weight: 800;
            font-size: 15px;
            letter-spacing: .2px;
            color: rgba(0, 0, 0, .86);
            background: #fff;
            border: 1.5px solid rgba(0, 0, 0, .14);
            box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
            transition: transform var(--anim), background var(--anim), border-color var(--anim), color var(--anim), box-shadow var(--anim);
        }

        .blog__btn .post-arrow {
            transition: transform var(--anim);
        }

        .blog__btn:hover {
            background: var(--red);
            border-color: var(--red);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 16px 32px rgba(221, 51, 51, .28);
        }

        .blog__btn:hover .post-arrow {
            transform: translateX(4px);
        }

        .blog__btn:focus-visible {
            box-shadow: 0 0 0 3px rgba(221, 51, 51, .30);
        }

        /* =========================================================
   АДАПТАЦІЯ
   ========================================================= */
        @media (max-width:980px) {
            .blog__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

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

            .post.reveal {
                transition-delay: 0s !important;
            }

            .blog__btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* =========================================================
   СЕКЦІЯ: FAQ
   ========================================================= */
        .blk-faq {
            padding: clamp(34px, 5vw, 64px) 0;
            background: #fff;
            font-family: var(--font);
        }

        .faq__grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: clamp(28px, 5vw, 60px);
            align-items: start;
        }

        .faq__left {
            position: sticky;
            top: 24px;
        }

        .faq__title {
            margin: 14px 0 12px;
            font-weight: 700;
            letter-spacing: -.3px;
            color: rgba(0, 0, 0, .92);
            font-size: clamp(24px, 3vw, 38px);
            line-height: 1.1;
        }

        .faq__intro {
            margin: 0 0 26px;
            color: rgba(0, 0, 0, .62);
            font-weight: 550;
            line-height: 1.6;
            font-size: 15px;
            max-width: 420px;
        }

        .faq__cta-arrow {
            display: block;
            width: 18px;
            height: 18px;
        }

        .faq__cta-arrow path {
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .btn-cta:hover .faq__cta-arrow {
            transform: translateX(3px);
            transition: transform var(--anim);
        }

        .faq__list {
            display: grid;
            gap: 12px;
        }

        .faq__item {
            border: 1px solid rgba(0, 0, 0, .10);
            border-radius: 14px;
            background: #fff;
            overflow: hidden;
            transition: border-color var(--anim), box-shadow var(--anim), background var(--anim);
        }

        .faq__item:hover {
            background: rgba(15, 18, 24, .015);
        }

        .faq__item.is-open {
            border-color: rgba(221, 51, 51, .32);
            box-shadow: 0 14px 32px rgba(221, 51, 51, .08);
            background: #fff;
        }

        .faq__q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 18px;
            background: none;
            border: 0;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
        }

        .faq__q h3 {
            margin: 0;
            font-weight: 700;
            line-height: 1.35;
            letter-spacing: .1px;
            color: rgba(0, 0, 0, .88);
            font-size: clamp(15px, 1.4vw, 17px);
            transition: color var(--anim);
        }

        .faq__item.is-open .faq__q h3 {
            color: var(--red);
        }

        .faq__q:hover h3 {
            color: var(--red);
        }

        .faq__icon {
            flex: 0 0 auto;
            width: 34px;
            height: 34px;
            display: grid;
            place-items: center;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, .14);
            color: rgba(0, 0, 0, .55);
            background: #fff;
            transition: transform .38s var(--anim), background var(--anim), color var(--anim), border-color var(--anim);
        }

        .faq__icon svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        .faq__icon svg line {
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
        }

        .faq__q:hover .faq__icon {
            border-color: rgba(221, 51, 51, .4);
            color: var(--red);
        }

        .faq__item.is-open .faq__icon {
            transform: rotate(45deg);
            background: var(--red);
            border-color: var(--red);
            color: #fff;
        }

        .faq__panel {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows .38s var(--anim);
        }

        .faq__item.is-open .faq__panel {
            grid-template-rows: 1fr;
        }

        .faq__panel>div {
            overflow: hidden;
            min-height: 0;
        }

        .faq__a {
            margin: 0;
            padding: 0 18px 20px;
            color: rgba(0, 0, 0, .64);
            line-height: 1.62;
            font-size: 14px;
            font-weight: 500;
        }

        /* =========================================================
   АДАПТАЦІЯ
   ========================================================= */
        @media (max-width:880px) {
            .faq__grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .faq__left {
                position: static;
            }

            .faq__intro {
                max-width: none;
            }
        }

        @media (max-width:560px) {
            .faq__item.reveal {
                transition-delay: 0s !important;
            }
        }

        /* =========================================================
   СЕКЦІЯ: ЗГОРТУВАНИЙ SEO-ТЕКСТ
   ========================================================= */
        .blk-seo {
            position: relative;
            overflow: hidden;
            padding: clamp(36px, 5vw, 64px) 0;
            font-family: var(--font);
            background:
                radial-gradient(1000px 560px at 50% 140%, rgba(221, 51, 51, .45), transparent 60%),
                #ffffff;
        }

        .seo__decor {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .seo__decor--ring1 {
            width: 560px;
            height: 560px;
            right: -180px;
            bottom: -260px;
            border: 1px solid rgba(221, 51, 51, .10);
        }

        .seo__decor--ring2 {
            width: 360px;
            height: 360px;
            right: -70px;
            bottom: -150px;
            border: 1px solid rgba(221, 51, 51, .07);
        }

        .seo__wrap {
            position: relative;
            z-index: 1;
        }

        .seo__title {
            margin: 14px 0 18px;
            font-weight: 700;
            letter-spacing: -.3px;
            color: rgba(0, 0, 0, .92);
            font-size: clamp(22px, 2.6vw, 32px);
            line-height: 1.16;
            max-width: 1000px;
        }

        .seo__content {
            position: relative;
            overflow: hidden;
            max-height: 300px;
            transition: max-height .5s var(--anim);
            -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
        }

        .seo__wrap.is-open .seo__content {
            -webkit-mask-image: none;
            mask-image: none;
        }

        .seo__content h3 {
            margin: 22px 0 8px;
            font-weight: 700;
            letter-spacing: .1px;
            color: rgba(0, 0, 0, .9);
            font-size: clamp(17px, 1.7vw, 20px);
            line-height: 1.3;
        }

        .seo__content h3:first-child {
            margin-top: 0;
        }

        .seo__content p {
            margin: 0 0 14px;
            font-weight: 500;
            line-height: 1.7;
            color: rgba(0, 0, 0, .66);
            font-size: 15px;
        }

        .seo__content strong {
            color: rgba(0, 0, 0, .82);
            font-weight: 700;
        }

        .seo__content a {
            color: var(--red);
            font-weight: 600;
        }

        .seo__content a:hover {
            text-decoration: underline;
        }

        .seo__toggle-wrap {
            display: flex;
            justify-content: center;
            margin-top: 24px;
        }

        .seo__toggle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            appearance: none;
            cursor: pointer;
            padding: 12px 24px;
            border-radius: 12px;
            font-family: inherit;
            font-weight: 800;
            font-size: 14px;
            letter-spacing: .2px;
            color: rgba(0, 0, 0, .84);
            background: #fff;
            border: 1.5px solid rgba(0, 0, 0, .14);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
            transition: transform var(--anim), background var(--anim), border-color var(--anim), color var(--anim), box-shadow var(--anim);
        }

        .seo__toggle:hover {
            border-color: rgba(221, 51, 51, .4);
            color: var(--red);
            background: rgba(221, 51, 51, .04);
            transform: translateY(-1px);
            box-shadow: 0 14px 30px rgba(221, 51, 51, .14);
        }

        .seo__toggle:focus-visible {
            box-shadow: 0 0 0 3px rgba(221, 51, 51, .30);
        }

        .seo__toggle-ic {
            width: 16px;
            height: 16px;
            display: block;
            transition: transform .35s var(--anim);
        }

        .seo__toggle-ic path {
            stroke: currentColor;
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .seo__wrap.is-open .seo__toggle-ic {
            transform: rotate(180deg);
        }

        /* =========================================================
   ФУТЕР
   ========================================================= */
        .site-footer {
            position: relative;
            color: rgba(255, 255, 255, .7);
            font-family: var(--font);
            background:
                radial-gradient(900px 420px at 8% -20%, rgba(221, 51, 51, .12), transparent 60%),
                linear-gradient(180deg, #0e1322, #0b101c);
        }

        .site-footer::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--red), rgba(221, 51, 51, .25), transparent);
        }

        .footer__top {
            display: grid;
            grid-template-columns: 1.9fr 1fr 1fr 1.1fr;
            gap: clamp(24px, 4vw, 45px);
            padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 3vw, 40px);
        }

        .footer__logo {
            display: inline-flex;
            align-items: center;
            padding-right: 40px;
        }

        .footer__logo img {
            height: 225px;
            width: auto;
            display: block;
        }

        .footer__brand-content {
            min-width: 350px;
        }

        .footer__logo-text {
            font-weight: 900;
            font-size: 22px;
            letter-spacing: .5px;
            color: #fff;
        }

        .footer__about {
            margin: 0 0 22px;
            max-width: 360px;
            line-height: 1.6;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, .62);
        }

        .footer__contacts {
            display: grid;
            gap: 10px;
            margin-bottom: 22px;
        }

        .footer__contact {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, .78);
            transition: color var(--anim);
        }

        .footer__contact svg {
            width: 18px;
            height: 18px;
            flex: 0 0 auto;
            fill: none;
            stroke: var(--red);
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        a.footer__contact:hover {
            color: #fff;
        }

        .footer__social {
            display: inline-flex;
            gap: 10px;
        }

        .footer__social a {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            border-radius: 11px;
            color: rgba(255, 255, 255, .72);
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .12);
            transition: transform var(--anim), background var(--anim), color var(--anim), border-color var(--anim), box-shadow var(--anim);
        }

        .footer__social svg {
            width: 19px;
            height: 19px;
            fill: currentColor;
            display: block;
        }

        .footer__social a:hover {
            background: var(--red);
            border-color: var(--red);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(221, 51, 51, .30);
        }

        .footer__brand {
            display: flex;
        }

        .footer__brand,
        .footer__col {
            position: relative;
            padding-right: 40px;
        }

        .footer__brand::after,
        .footer__col::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            background: rgba(255, 255, 255, 0.5);
        }

        .footer__col:last-child::after {
            display: none;
        }

        .footer__col-title {
            margin: 0 0 16px;
            font-size: 13px;
            font-weight: 900;
            letter-spacing: .6px;
            text-transform: uppercase;
            color: #fff;
        }

        .footer__links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 11px;
        }

        .footer__links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, .62);
            transition: color var(--anim), transform var(--anim);
        }

        .footer__links a::before {
            position: absolute;
            left: -18px;
            content: "";
            width: 0;
            height: 1px;
            background: var(--red);
            transition: width var(--anim);
        }

        .footer__links a:hover {
            color: #fff;
            transform: translateX(2px);
        }

        .footer__links a:hover::before {
            width: 12px;
        }

        .footer__bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding: 20px 0 26px;
            border-top: 1px solid rgba(255, 255, 255, .10);
        }

        .footer__copy {
            margin: 0;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, .5);
        }

        .footer__policy {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, .62);
            transition: color var(--anim);
        }

        .footer__policy:hover {
            color: #fff;
            text-decoration: underline;
        }

        /* =========================================================
   АДАПТАЦІЯ
   ========================================================= */
        @media (max-width:1199px) {
            .footer__brand-content {
                min-width: 230px;
            }

            .footer__logo img {
                height: 175px;
            }
        }

        @media (max-width:1100px) {
            .footer__brand-content {
                min-width: 350px;
            }

            .footer__top {
                grid-template-columns: 1fr 1fr;
            }

            .footer__brand::after,
            .footer__col::after {
                display: none
            }
        }

        @media (max-width:900px) {
            .footer__logo {
                padding-right: 0px;
                padding-bottom: 15px;
            }

            .footer__brand {
                display: flex;
                flex-direction: column;
            }

        }

        @media (max-width:560px) {
            .footer__brand {
                padding-right: 0px;
            }

            .footer__top {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

        @media (max-width:640px) {
            .blk-blog .blog__grid.carousel__track {
                display: flex;
                gap: 14px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-padding-inline: 4px;
                padding: 2px 4px;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none
            }

            .blk-blog .blog__grid.carousel__track::-webkit-scrollbar {
                display: none
            }

            .blk-blog .post {
                flex: 0 0 84%;
                scroll-snap-align: center;
                box-shadow: none;
                border-color: rgba(0, 0, 0, .12)
            }
        }

        /* ---- ДОСТУПНІСТЬ: вимкнення руху ---- */
        @media (prefers-reduced-motion:reduce) {
            * {
                scroll-behavior: auto !important
            }

            .reveal {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important
            }

            .partners__track,
            .partners__sheen {
                animation: none !important
            }
        }








.geo-privacy-block {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0 auto;
  }
  .geo-privacy-block h1 {
    color: #ffffff;
    font-size: 24px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .geo-privacy-block h2 {
    color: #dd3333;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
  }
  .geo-privacy-block p {
    margin: 0 0 15px 0;
    text-align: justify;
  }
  .geo-privacy-block ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
  }
  .geo-privacy-block li {
    margin-bottom: 8px;
  }
  .geo-privacy-block a {
    color: #dd3333;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .geo-privacy-block a:hover {
    color: #ff4444;
    text-decoration: underline;
  }
  .geo-privacy-meta {
    font-size: 13px;
    color: #888888;
    margin-bottom: 25px;
  }
  .geo-privacy-contact {
    border-left: 3px solid #dd3333;
    padding: 15px;
    margin-top: 25px;
  }