/*
Theme Name: MPKBEL Custom Theme
Author: WangCode.pro
Description: Custom pixel-perfect theme for mpk.bel migrated from Tilda.
Version: 1.1
*/

/* --- Fonts --- */
@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('assets/fonts/Gilroy-ExtraBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- Base Styles --- */
:root {
    --primary-color: #ca9375;
    --primary-hover: #d8a486;
    --text-color: #ffffff;
    --bg-dark: #212529;
    --font-family: 'Gilroy', Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: #fff;
    color: #181d24;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
}

.home-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
    /* Added as per .t967__maincontainer */
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- SITE HEADER --- */
.site-header {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000;
    margin: 0 !important;
    background-color: #212529;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Ensure no default gaps */
.home-page {
    position: relative;
    overflow: hidden;
}

.site-header.scrolled {
    background-color: rgba(33, 37, 41, 0.9);
    /* Matching data-bgopacity-two="90" */
    box-shadow: 0px 15px 30px -10px rgba(0, 0, 0, 0.3);
}

/* Desktop Styles */
.site-header__desktop {
    display: block;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* Exact Tilda top height */
    padding: 0;
}

.header-logo img {
    display: block;
    width: 200px;
    height: auto;
    max-height: 60px;
}

.header-additional {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align to the right like in Tilda */
    gap: 0;
    /* Using paddings/margins for precision */
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: block;
    line-height: 0;
}

.social-svg {
    width: 30px;
    height: 30px;
    fill: #ca9375;
    /* Restore original Tilda brown */
}

.social-svg path {
    fill: #ca9375;
}

.header-phone {
    padding-right: 30px;
    margin-left: 20px;
    /* Space between socials and phone */
}

.header-phone a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-phone a:hover {
    color: var(--primary-hover);
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Tilda t967__button margin-left: 10px */
}

.btn-callback {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    padding: 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin-left: 10px;
    /* Tilda spacing between buttons/elements */
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-callback::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.btn-callback:hover::before {
    left: 100%;
}

.btn-catalog-link {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    padding: 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
    text-transform: none;
    text-align: center;
    box-sizing: border-box;
    background-color: transparent;
    margin-left: 10px;
    /* Space between buttons */
    white-space: nowrap;
    /* Prevent text wrapping */
    flex-shrink: 0;
    /* Prevent button from squashing */
}

.btn-callback:hover {
    background-color: var(--primary-hover) !important;
    opacity: 0.9;
}

.btn-catalog-link:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.header-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    /* Matching Tilda opacity: 0.5 */
    height: 60px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0;
    /* Using padding on items instead for exact Tilda match */
    padding: 0;
    height: 60px;
    align-items: center;
    list-style: none;
    margin: 0;
}

.nav-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    /* Medium for bolder look like in screen 2 */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 20px 35px;
    /* Base padding */
    transition: color 0.3s ease;
    display: block;
}

/* Tilda Edge Alignment: No left padding for first item, no right for last */
.nav-menu li:first-child a {
    padding-left: 0;
}

.nav-menu li:last-child a {
    padding-right: 0;
}

/* Submenu / Dropdown Styles from Tilda rec948077216 */
.nav-menu li {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #212529;
    min-width: 220px;
    padding: 15px 0;
    list-style: none !important;
    margin: 0 !important;
    box-shadow: 0px 15px 30px -10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    margin-top: 10px !important;
}

/* The Arrow / Pointer */
.nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #212529;
}

.nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.nav-menu .sub-menu li {
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-menu .sub-menu a {
    display: block !important;
    font-size: 14px;
    font-weight: 300;
    text-transform: none;
    padding: 10px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal;
    text-align: center !important;
    color: #ffffff;
    line-height: 1.5;
}

.nav-menu .sub-menu a::after {
    display: none !important;
}

.nav-menu .sub-menu a:hover {
    color: #fdd6c1 !important;
}

.nav-menu .sub-menu .current-menu-item a {
    color: #ca9375 !important;
}

.nav-menu a:hover {
    color: #fdd6c1 !important;
    /* Specific hover color from Tilda */
}

.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    color: var(--primary-color) !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    /* Exact distance under text */
    left: 30px;
    /* Default for 35px padding */
    right: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* Special offsets for edge items to stay wider than text */
.nav-menu li:first-child a::after {
    left: -5px;
    right: 30px;
}

.nav-menu li:last-child a::after {
    left: 30px;
    right: -5px;
}

.nav-menu a:hover::after,
.nav-menu li.current-menu-item>a::after,
.nav-menu li.current_page_item>a::after {
    transform: scaleX(1);
}

/* Mobile Bar */
.mobile-header {
    display: none;
    background-color: #212529;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-site-logo {
    width: 150px;
}

/* Burger */
.menu-burger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    transition: .25s ease-in-out;
}

.menu-burger span:nth-child(1) {
    top: 0;
}

.menu-burger span:nth-child(2),
.menu-burger span:nth-child(3) {
    top: 10px;
}

.menu-burger span:nth-child(4) {
    top: 20px;
}

.menu-burger.active span:nth-child(1),
.menu-burger.active span:nth-child(4) {
    width: 0;
    left: 50%;
    opacity: 0;
}

.menu-burger.active span:nth-child(2) {
    transform: rotate(45deg);
}

.menu-burger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #212529;
    z-index: 1040;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
}

.mobile-navigation a {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

.mobile-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%;
}

.mobile-phone a {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
}

/* --- MOBILE BURGER (Tilda Style) --- */
.menu-burger {
    display: none;
    position: relative;
    width: 28px;
    height: 18px;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    z-index: 2000;
}

.menu-burger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all .25s ease-in-out;
    left: 0;
}

.menu-burger span:nth-child(1) {
    top: 0;
}

.menu-burger span:nth-child(2),
.menu-burger span:nth-child(3) {
    top: 8px;
}

.menu-burger span:nth-child(4) {
    top: 16px;
}

/* Burger Animation to X */
.t-menuburger-opened span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
    opacity: 0;
}

.t-menuburger-opened span:nth-child(2) {
    transform: rotate(45deg);
    background-color: #fff;
}

.t-menuburger-opened span:nth-child(3) {
    transform: rotate(-45deg);
    background-color: #fff;
}

.t-menuburger-opened span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
    opacity: 0;
}

/* Mobile Header Bar */
.mobile-header {
    display: none;
    height: 80px;
    background-color: #212529;
    align-items: center;
    justify-content: space-between;
}

.mobile-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-site-logo {
    width: 180px;
}

/* Mobile Menu Overlay Styles */
.mobile-nav {
    width: 100%;
    margin-bottom: 50px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 30px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.mobile-socials a {
    color: #fff;
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.mobile-phone {
    margin-bottom: 40px;
    text-align: center;
}

.mobile-phone a {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    text-decoration: none;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 280px;
}

.btn-order-mobile {
    background-color: var(--primary-color);
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-catalog-mobile {
    border: 1px solid var(--primary-color);
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}

/* --- FOOTER & CALCULATION SECTION --- */
.footer-calc {
    background-color: #eeefee;
    overflow: hidden;
    font-family: 'Gilroy', sans-serif;
}

.footer-calc__wrapper {
    display: flex;
    min-height: 70vh;
    width: 100%;
}

.footer-calc__col {
    flex: 1;
    min-height: 100%;
    width: 50%;
}

.footer-calc__col--img {
    background-size: cover;
    background-position: center;
}

.footer-calc__col--form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #eeefee;
}

.footer-calc__main-wrapper {
    width: 100%;
    padding: 10%;
    /* Replicating Tilda t823__main-wrapper padding */
    box-sizing: border-box;
}

.footer-calc__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #181d24;
    line-height: 1.23;
    max-width: 100%;
    /* Spans full width of container */
}

.footer-calc__descr {
    font-size: 18px;
    color: #181d24;
    opacity: 0.7;
    margin-bottom: 45px;
    line-height: 1.55;
    max-width: 100%;
    /* Allow it to span 1 line */
}

/* Form Wide Layout */
.footer-calc__form-container {
    width: 100%;
}

.footer-calc__inputs-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 35px;
    width: 100%;
}

.footer-calc__field-group--width50 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

/* Ensure Phone and Name lines are identical length */
.footer-calc__phone-wrapper,
.iti {
    width: 100% !important;
}

.footer-calc__input {
    width: 100% !important;
    height: 60px;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(179, 179, 179, 0.5);
    border-radius: 0;
    font-family: inherit;
    font-size: 16px;
    color: #000;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer-calc__input::placeholder {
    color: #000;
    opacity: 0.4;
}

.footer-calc__input:focus {
    border-bottom-color: #ca9375;
}

.footer-calc__submit-wrapper {
    flex: 0 0 100%;
    margin-top: 20px;
}

.footer-calc__submit {
    width: auto;
    min-width: 300px;
    height: 65px;
    padding: 0 50px;
    background-color: #ca9375;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.footer-calc__submit:hover {
    background-color: #b88b72;
}

.footer-calc__agreement {
    font-size: 14px;
    color: #181d24;
    margin-top: 30px;
    line-height: 1.5;
    opacity: 0.5;
    max-width: 100%;
}

.footer-calc__agreement a {
    color: #ca9375;
    text-decoration: none;
    border-bottom: 1px solid rgba(202, 147, 117, 0.3);
}

/* Bottom Footer */
.footer-bottom {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.footer-bottom-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.5;
    line-height: 2;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Breakpoints matching Tilda */
@media screen and (max-width: 1200px) {
    .footer-calc__title {
        font-size: 38px;
    }

    .footer-calc__descr {
        font-size: 16px;
    }
}

@media screen and (max-width: 960px) {
    .footer-calc__wrapper {
        flex-direction: column-reverse;
        /* Image below form */
        min-height: auto;
    }

    .footer-calc__col--img {
        height: 350px;
        flex: 0 0 350px;
        width: 100%;
    }

    .footer-calc__col--form {
        flex: 1 0 auto;
        width: 100%;
    }

    .footer-calc__main-wrapper {
        padding: 40px 20px;
        /* Adjusted vertical padding */
    }

    .footer-calc__inputs-box {
        gap: 20px;
    }

    .footer-calc__field-group--width50 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-calc__submit {
        width: 100% !important;
        min-width: 100% !important;
    }
}

@media screen and (max-width: 640px) {
    .footer-calc__title {
        font-size: 30px;
    }

    .footer-calc__descr {
        font-size: 14px;
    }
}

/* Body lock when menu is open */
body.no-scroll {
    overflow: hidden !important;
}

.site-header {
    z-index: 100002 !important;
    /* Must be higher than overlay! */
}

/* Responsiveness Media Query Fix */
@media (max-width: 991px) {
    .site-header__desktop {
        display: none !important;
    }

    .mobile-header {
        display: block !important;
        height: 80px !important;
        background-color: #212529 !important;
    }

    .mobile-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 100% !important;
        padding: 0 !important;
        /* Removed padding as requested */
        max-width: 100% !important;
    }

    .mobile-logo {
        display: flex !important;
        align-items: center !important;
    }

    .mobile-site-logo {
        height: 40px !important;
        width: auto !important;
    }

    .menu-burger {
        display: block !important;
        position: relative !important;
        width: 28px !important;
        /* Exact Tilda size */
        height: 20px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 100002 !important;
        padding: 0 !important;
    }

    .menu-burger span {
        display: block;
        position: absolute;
        height: 3px;
        /* Exact Tilda thickness */
        width: 100%;
        background: rgb(202, 147, 117);
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transition: .25s ease-in-out;
    }

    .menu-burger span:nth-child(1) {
        top: 0px;
    }

    .menu-burger span:nth-child(2),
    .menu-burger span:nth-child(3) {
        top: 8px;
    }

    .menu-burger span:nth-child(4) {
        top: 16px;
    }

    .menu-burger.t-menuburger-opened span:nth-child(1) {
        top: 8px;
        width: 0%;
        left: 50%;
    }

    .menu-burger.t-menuburger-opened span:nth-child(2) {
        transform: rotate(45deg);
    }

    .menu-burger.t-menuburger-opened span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .menu-burger.t-menuburger-opened span:nth-child(4) {
        top: 8px;
        width: 0%;
        left: 50%;
    }

    .footer-form-flex {
        flex-direction: column;
    }

    .footer-form-content {
        padding: 60px 20px;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    background: #212529;
    z-index: 100000;
    /* Just below header (100001) */
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 20px 60px;
    /* Start below the fixed header */
    overflow-y: auto;
}

.mobile-menu--open {
    display: flex !important;
}

.mobile-menu__content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu__logo {
    margin-bottom: 40px;
    text-align: center;
}

.mobile-menu__nav {
    width: 100%;
    margin-bottom: 40px;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu__list .menu-item {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu__list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    padding: 5px 0 2px;
    /* Reduced to bring underline very close */
    position: relative;
    cursor: pointer;
    display: inline-block;
}

/* Thick Underline for Active / Current items */
.mobile-menu__list .current-menu-item>a::after,
.mobile-menu__list .current_page_item>a::after,
.mobile-menu__list .menu-item-has-children.active>a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    /* Right against the padding-bottom */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ca9375;
    border-radius: 10px;
}

/* Submenu on mobile (WP Structure) with Animation */
.mobile-menu__list .sub-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.mobile-menu__list .menu-item-has-children.active>.sub-menu {
    max-height: 500px;
    padding: 10px 0;
}

.mobile-menu__list .sub-menu li {
    margin-bottom: 12px;
}

.mobile-menu__list .sub-menu a {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.5px;
    opacity: 0.8;
    padding: 2px 0;
}

.mobile-menu__list .sub-menu a::after {
    display: none !important;
}

.mobile-menu__link:hover {
    color: #ca9375;
}

.mobile-menu__socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.mobile-menu__social-icon svg path {
    fill: #ca9375 !important;
    /* Reverted for dark background */
}

.mobile-menu__social-icon svg {
    transition: transform 0.2s;
}

.mobile-menu__social-icon:hover svg {
    transform: scale(1.1);
}

.mobile-menu__phone {
    margin-bottom: 40px;
    text-align: center;
}

.mobile-menu__phone a {
    color: #ffffff;
    font-size: 16px;
    /* Reduced from 24px */
    font-weight: 300;
    /* Reduced from 600 */
    text-decoration: none;
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 200px;
    /* Narrower and more compact */
}

.mobile-menu__btn {
    text-align: center;
    padding: 14px;
    /* Reduced from 18px */
    border-radius: 5px;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    /* Reduced from 16px */
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.mobile-menu__btn--filled {
    background-color: #ca9375;
    color: #ffffff;
}

.mobile-menu__btn--filled:hover {
    background-color: #b58266;
}

.mobile-menu__btn--outlined {
    border: 2px solid #ca9375;
    color: #ca9375;
}

.mobile-menu__btn--outlined:hover {
    background-color: #ca9375;
    color: #ffffff;
}

/* Bottom Footer - Matching t134 */
.bottom-footer {
    background-color: #1b1d20;
    /* Dark premium background from screenshot */
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.bottom-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.bottom-footer__logo {
    max-width: 300px;
    height: auto;
    display: block;
}

.bottom-footer__info {
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 600px;
}

.bottom-footer__info a {
    color: #ca9375;
    text-decoration: none;
    border-bottom: 1px solid rgba(202, 147, 117, 0.4);
    transition: opacity 0.2s ease;
}

.bottom-footer__info a:hover {
    opacity: 1;
}

.mobile-menu__close {
    display: none !important;
    /* Use header burger to close */
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

@media (max-width: 991px) {
    .footer-bottom-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
}

.footer-logo img {
    height: 70px;
}

.footer-info {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.8;
    max-width: 600px;
}




/* --- CALLBACK MODAL (Header Popup) --- */
.callback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    /* Changed for reliability during switch */
    align-items: center;
    justify-content: center;
    z-index: 200000;
    /* Above everything */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.callback-modal-overlay.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.callback-modal-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 560px;
    padding: 60px 50px;
    position: relative;
    border-radius: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.callback-modal-overlay.active .callback-modal-container {
    transform: translateY(0);
}

.callback-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
    z-index: 10;
}

.callback-modal-close:hover {
    opacity: 0.7;
}

.callback-modal-close svg path {
    stroke: #000000;
}

.callback-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.callback-modal-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.callback-modal-descr {
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    opacity: 0.7;
    line-height: 1.5;
}

.callback-modal-form {
    margin-bottom: 25px;
}

.callback-form-group {
    margin-bottom: 20px;
}

.callback-phone-input-wrapper {
    width: 100%;
}

/* intl-tel-input overrides with more specific selectors */
.callback-modal-overlay .iti {
    width: 100%;
}

.callback-modal-overlay .iti input {
    width: 100%;
    height: 55px;
    background: #fff;
    border: 1px solid #d3d3d3 !important;
    border-radius: 5px !important;
    font-size: 16px;
    font-family: 'Gilroy', sans-serif;
    color: #333;
    outline: none;
    transition: all 0.3s;
}


/* Tilda-like vertical separator between flag and number */
.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
    border-right: 1px solid #eee;
    padding-right: 10px;
}

.callback-modal-overlay .iti input:focus {
    border-color: #ca9375 !important;
}

.iti__selected-dial-code {
    color: #000;
    font-size: 16px;
    margin-left: 5px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

.iti__country-list {
    z-index: 210000 !important;
}

.callback-btn-submit {
    margin-top: 15px;
    width: 100%;
    height: 55px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s;
}

.callback-btn-submit:hover {
    background-color: var(--primary-hover);
}

.callback-form-footer {
    text-align: center;
    font-size: 14px;
    color: #000;
    opacity: 0.6;
    margin-top: 20px;
    line-height: 1.4;
}

.callback-btn-submit:hover {
    background-color: var(--primary-hover);
}

.callback-form-footer {
    text-align: center;
    font-size: 14px;
    /* Increased as requested */
    color: #000;
    opacity: 0.6;
    line-height: 1.4;
}

.callback-form-footer a {
    color: #ca9375;
    text-decoration: none;
}

@media screen and (max-width: 560px) {
    .callback-modal-container {
        padding: 40px 20px;
        height: auto;
        width: 90%;
        margin: 20px;
    }
}

/* --- CALLBACK WIDGET (t651) --- */
@keyframes callbackPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

@keyframes callbackFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

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

.callback-widget {
    position: fixed !important;
    right: 30px !important;
    bottom: 30px !important;
    z-index: 1000000 !important;
}

.callback-widget__btn {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    outline: none !important;
}

.callback-widget__btn-wrapper {
    width: 60px !important;
    height: 60px !important;
    background-color: #199c68 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
}

.callback-widget__btn-wrapper::before,
.callback-widget__btn-wrapper::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 60px !important;
    height: 60px !important;
    background-color: inherit !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    animation: callbackPulse 2s infinite !important;
}

.callback-widget__btn-wrapper::after {
    animation-delay: 0.8s !important;
}

.callback-widget.is-active .callback-widget__btn-wrapper::before,
.callback-widget.is-active .callback-widget__btn-wrapper::after {
    display: none !important;
}

.callback-widget.is-active .callback-widget__btn-wrapper {
    background-color: #fff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.callback-widget__icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 30px !important;
    margin-top: -15px !important;
    margin-left: -15px !important;
    opacity: 1 !important;
    transform: rotate(0) scale(1) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.callback-widget__icon-close {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 16px !important;
    height: 16px !important;
    margin-top: -8px !important;
    margin-left: -8px !important;
    opacity: 0 !important;
    transform: rotate(-180deg) scale(0.5) !important;
    display: block !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.callback-widget.is-active .callback-widget__icon {
    opacity: 0 !important;
    transform: rotate(180deg) scale(0.5) !important;
}

.callback-widget.is-active .callback-widget__icon-close {
    opacity: 1 !important;
    transform: rotate(0) scale(1) !important;
}

.callback-widget.is-active .callback-widget__icon-close g {
    stroke: #000 !important;
}

.callback-popup {
    position: absolute !important;
    bottom: 80px !important;
    right: 0 !important;
    width: 380px !important;
    background: #fff !important;
    border-radius: 4px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    padding: 45px 35px !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    text-align: center !important;
    border: none !important;
}

.callback-widget.is-active .callback-popup {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: callbackFadeIn 0.4s ease-out forwards !important;
}

.callback-popup__header {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 30px !important;
    color: #181d24 !important;
}

.callback-popup__form {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.iti {
    width: 100% !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

/* Fix for separate dial code overlapping */
.iti--separate-dial-code .iti__selected-flag {
    width: 85px !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 10px !important;
    font-size: 17px !important;
    color: #181d24 !important;
}

.callback-popup__input {
    width: 100% !important;
    height: 60px !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 0 !important;
    padding-left: 100px !important;
    /* Grant enough space for flag + dial code */
    font-family: inherit !important;
    font-size: 17px !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

.callback-popup__submit {
    width: 100% !important;
    height: 60px !important;
    background-color: #ca9375 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 0 !important;
}

.callback-popup__submit:hover {
    background-color: #b88b72 !important;
}

.callback-popup__footer {
    margin-top: 10px !important;
    /* FIXED: Now even smaller */
    padding: 0 !important;
    border: none !important;
}

.callback-popup__footer span {
    display: block !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    color: #181d24 !important;
    opacity: 0.8 !important;
    margin-bottom: 8px !important;
}

.callback-popup__phone {
    font-size: 22px !important;
    font-weight: 400 !important;
    color: #181d24 !important;
    text-decoration: none !important;
}

.callback-popup__agreement {
    font-size: 11px !important;
    color: #999 !important;
    margin-top: 15px !important;
    /* FIXED: Minimal gap to stay compact */
    line-height: 1.5 !important;
}

.callback-popup__agreement a {
    color: #ca9375 !important;
    text-decoration: none !important;
}

@media screen and (max-width: 960px) {
    .callback-widget {
        right: 20px !important;
        bottom: 20px !important;
    }

    .callback-popup {
        width: calc(100vw - 40px) !important;
        max-width: 360px !important;
        padding: 40px 25px !important;
        right: 0px !important;
    }
}

/* --- HOME PAGE SECTIONS --- */

.section-padding {
    padding: 30px 0;
}

@media screen and (max-width: 960px) {
    .section-padding {
        padding: 30px 0;
    }
}

.bg-light {
    background-color: #f8f9fa;
}

.t-center {
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 50px;
    line-height: 1.2;
    text-align: center !important;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    /* Reverted as requested */
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 140px;
    /* Offset for desktop header */
    box-sizing: border-box;
    margin: 0 !important;
}

@media screen and (max-width: 980px) {
    .hero {
        padding-top: 80px !important;
        /* Exact height of mobile header */
        height: 70vh !important;
        background-attachment: scroll !important;
        margin-top: 0 !important;
    }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(50, 29, 18, 0.70), rgba(36, 21, 14, 0.60));
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 800px;
}

.hero__title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero__descr {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s;
}

.btn--shimmer:hover::before {
    left: 100%;
}

.btn--filled {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn--filled:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(202, 147, 117, 0.4);
}

.btn--outlined {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn--outlined:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .hero__title {
        font-size: 32px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }
}

/* About Section */
.about-mpk__row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-mpk__content {
    flex: 1;
}

.about-mpk__title {
    margin-bottom: 10px;
}

.about-mpk__subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.about-mpk__descr {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-mpk__meta {
    font-size: 22px;
    font-weight: 700;
    color: #181d24;
    line-height: 1.4;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.about-mpk__images {
    flex: 1;
    position: relative;
    padding: 40px 0;
}

.about-mpk__img-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-mpk__img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-mpk__img-wrapper--top {
    width: 80%;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}

.about-mpk__img-wrapper--bottom {
    width: 80%;
    margin-left: 20%;
    position: relative;
    z-index: 1;
    border: 10px solid #fff;
}

@media screen and (max-width: 980px) {
    .about-mpk__row {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .about-mpk__meta {
        font-size: 18px;
    }

    .about-mpk__images {
        width: 100%;
    }
}

/* Features Section */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    background-color: #fdeee2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-card__icon img {
    width: 35px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #181d24;
}

.feature-card__text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media screen and (max-width: 980px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px;
    }
}

/* Applications Section */
.applications__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Legacy app-card styles removed to fix conflicts */

@media screen and (max-width: 980px) {
    .applications__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Blog Promo Section (Tilda Original Style) */
.home-page .blog-promo {
    background-color: #ffffff;
}

.home-page .promo-banner {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #eeeeee;
    /* Light border often seen in Tilda */
    overflow: hidden;
}

.home-page .promo-banner__link {
    text-decoration: none !important;
    display: block;
    color: inherit;
}

.home-page .promo-banner__row {
    display: flex;
    min-height: 420px;
    /* Reduced from 480px */
}

.home-page .promo-banner__text-col {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 40px 60px;
    /* Reduced padding */
}

.home-page .promo-banner__content {
    width: 100%;
}

.home-page .promo-banner__title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 34px !important;
    /* Slightly smaller title */
    line-height: 1.15 !important;
    font-weight: 800 !important;
    color: #212529 !important;
    margin-bottom: 25px !important;
    text-align: left !important;
}

.home-page .promo-banner__descr {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    color: #444444 !important;
    text-align: left !important;
}

.home-page .promo-banner__image-col {
    width: 50%;
    position: relative;
}

.home-page .promo-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-page .promo-btn-row {
    margin-top: 30px;
    text-align: center;
}

.home-page .promo-btn {
    display: inline-block;
    padding: 15px 40px !important;
    /* Smaller button */
    background-color: #ca9375 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    /* Smaller font on button */
    text-decoration: none !important;
    border-radius: 5px !important;
}

/* Info Section (About MPK - Zero Block Replica Style) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    padding-top: 60px;
}

.about-grid__title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 63px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    color: #212529 !important;
    margin-bottom: 40px !important;
    text-transform: none !important;
}

.about-grid__title .weight-300 {
    font-weight: 300 !important;
}

.about-grid__subtitle {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 27px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    color: #212529 !important;
    margin-bottom: 80px !important;
    max-width: 480px;
}

.about-grid__image-bottom {
    margin-top: 100px;
    width: 90%;
}

.about-grid__image-bottom img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.about-grid__image-top {
    margin-bottom: 60px;
    width: 100%;
}

.about-grid__image-top img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.about-grid__descr {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #444444 !important;
    margin-bottom: 60px !important;
    max-width: 580px;
}

.about-grid__stats {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 26px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    color: #212529 !important;
}

@media screen and (max-width: 1200px) {
    .about-grid__title {
        font-size: 52px !important;
    }

    .about-grid__subtitle {
        font-size: 22px !important;
    }

    .about-grid {
        gap: 60px;
    }
}

@media screen and (max-width: 991px) {
    .home-page .blog-promo .container {
        padding: 0 10px !important;
        /* Minimal margins on mobile */
    }

    .home-page .promo-banner__row {
        flex-direction: column;
        min-height: auto;
    }

    .home-page .promo-banner__text-col,
    .home-page .promo-banner__image-col {
        width: 100%;
    }

    .home-page .promo-banner__text-col {
        padding: 30px 20px;
        /* Tighter padding for mobile */
        order: 1;
    }

    .home-page .promo-banner__image-col {
        height: 250px;
        order: -1;
    }

    .home-page .promo-banner__title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .home-page .promo-banner__descr {
        text-align: center !important;
        font-size: 14px !important;
    }
}

/* Info Section (About MPK - Accurate Two-Row Layout) */
.about-mpk {
    background-color: #ffffff;
}

.about-row {
    display: flex;
    align-items: center;
    /* Vertically center content */
    gap: 100px;
}

.about-row--top {
    margin-bottom: 120px;
}

.about-row--bottom {
    margin-bottom: 60px;
    /* Added some bottom margin */
}

.about-row__col {
    flex: 1;
}

.about-row__title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 63px !important;
    line-height: 1.1 !important;
    color: #212529 !important;
    margin-bottom: 30px !important;
    text-transform: none !important;
}

.weight-700 {
    font-weight: 700 !important;
}

.weight-300 {
    font-weight: 300 !important;
}

.about-row__subtitle {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    color: #212529 !important;
    max-width: 480px;
}

.about-row__col--chart img {
    max-width: 550px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-row__col--image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-row__descr {
    font-family: 'Gilroy', Arial, sans-serif !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
    color: #444444 !important;
    margin-bottom: 50px !important;
}

.about-row__stats {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 24px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    color: #000000 !important;
}

@media screen and (max-width: 1200px) {
    .about-row {
        gap: 60px;
    }

    .about-row__title {
        font-size: 50px !important;
    }

    .about-row--top {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 991px) {
    .about-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-row--top {
        margin-bottom: 60px;
    }

    .about-row__title {
        font-size: 36px !important;
    }

    .about-row__subtitle {
        font-size: 18px !important;
        margin: 0 auto;
    }

    .about-row__col--text {
        order: 0;
    }

    .about-row__col--chart {
        order: 1;
    }

    .about-row__col--image {
        order: 0;
    }

    .about-row__col--content {
        order: 1;
        text-align: left;
    }

    .about-row__descr {
        font-size: 16px !important;
    }
}

/* Features Section - Modernized & Seamless */
section.features.section-padding {
    background-color: #ffffff !important;
    /* Match block above */
    padding-top: 0 !important;
    /* Remove top gap */
    padding-bottom: 110px;
}

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

.feature-item {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #ca9375;
}

.feature-item__icon {
    width: 60px;
    height: auto;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-item__icon {
    transform: scale(1.1);
}



.feature-item__title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.feature-item__text {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

/* Big Divider Image */
.divider-image {
    padding: 60px 0;
}

.divider-image__wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.image-zoom-img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.image-zoom-img:hover {
    transform: scale(1.02);
}

/* Ultimate Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    /* Modern frosted effect */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    /* Overlaps EVERYTHING */
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-modal img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    /* Slight Tilda rounding */
}

.lightbox-modal.active img {
    transform: scale(1);
}


/* ==========================================================================
   Applications Slider - Premium Unified Style
   ========================================================================== */
.apps-slider-wrapper {
    position: relative;
    padding: 0;
    /* Cards fill full width */
    margin-top: 50px;
}

.apps-slider {
    overflow: hidden;
    padding: 15px 0;
}

.apps-slider__track {
    display: flex;
    gap: 30px;
    will-change: transform;
    transition: transform 0.4s ease-out;
}

.apps-slider__item {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
}

.app-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-8px);
}

.app-card__imgbox {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.app-card__imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.app-card:hover .app-card__imgbox img {
    transform: scale(1.05);
}

.app-card__content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.app-card__title {
    font-size: 22px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.app-card__line {
    width: 40px;
    height: 2px;
    background: #ca9375;
    margin-bottom: 20px;
}

.app-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Copper Premium Arrows */
.apps-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #ca9375 !important;
    border: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    padding: 0;
}

.apps-arrow svg {
    width: 12px;
    height: 20px;
}

.apps-arrow:hover {
    background-color: #b37e62 !important;
    transform: translateY(-50%) scale(1.1);
}

.apps-arrow--prev {
    left: -80px;
}

.apps-arrow--next {
    right: -80px;
}

.apps-nav-mobile {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Allow arrows to overflow outside the container */
.applications {
    overflow: visible !important;
}

.applications .container--wide {
    overflow: visible;
}

@media screen and (max-width: 1200px) {
    .apps-slider-wrapper {
        padding: 0;
    }

    .apps-arrow--prev {
        left: -40px;
    }

    .apps-arrow--next {
        right: -40px;
    }

    .apps-slider__item {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media screen and (max-width: 991px) {
    .apps-slider-wrapper {
        padding: 0;
    }

    .apps-slider__item {
        flex: 0 0 100%;
    }

    .apps-slider-wrapper>.apps-arrow {
        display: none;
    }

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

    .apps-nav-mobile .apps-arrow {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .app-card__imgbox {
        height: 320px;
    }
}


/* ==========================================================================
   Catalog Section - Premium Modern Design
   ========================================================================== */
section.catalog-preview.section-padding {
    background-color: #ffffff !important;
    padding-top: 100px !important;
    padding-bottom: 120px !important;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.catalog-item {
    display: flex;
}

.catalog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

/* Copper top accent line */
.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ca9375, #d8a58a);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.catalog-card:hover::before {
    opacity: 1;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.catalog-card__imgbox {
    width: 100%;
    height: 350px;
    /* Increased from 260px for better visibility */
    overflow: hidden;
    background: #f8f6f4;
}

.catalog-card__imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-card__imgbox img {
    transform: scale(1.07);
}

.catalog-card__content {
    padding: 28px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog-card__title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
    line-height: 1.25 !important;
}

.catalog-card__descr {
    font-size: 14px;
    line-height: 1.65;
    color: #777777;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Arrow-style link button */
.catalog-card .btn--small {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 0;
    /* Added right padding for arrow room */
    font-size: 14px;
    font-weight: 600;
    color: #ca9375;
    background: none;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.catalog-card .btn--small::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
}

.catalog-card:hover .btn--small {
    color: #b37e62;
}

.catalog-card:hover .btn--small::after {
    transform: translateX(5px);
}

@media screen and (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {

    /* Sync container padding with article (10px) */
    .features .container,
    .applications .container,
    .catalog-preview .container,
    .about-mpk .container,
    .brand-partners .container,
    .distributor-info .container,
    .divider-image .container {
        padding: 0 10px !important;
    }

    /* Gap Reduction between About and Features */
    .about-row--bottom {
        margin-bottom: 20px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        /* Tighter gap between cards on mobile */
    }

    .feature-item {
        padding: 25px 20px;
        align-items: flex-start;
        text-align: left;
    }

    .app-card__title {
        font-size: 20px !important;
    }

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

    .catalog-preview {
        padding-bottom: 70px;
    }

    .catalog-card__title {
        font-size: 22px !important;
    }

    .catalog-card__content {
        padding: 25px 20px;
    }

    /* Gap cleanup for Features and Divider */
    section.features.section-padding {
        padding-bottom: 30px !important;
    }

    .divider-image {
        padding: 30px 0 !important;
    }
}

/* ==========================================================================
   T1148 Photo Gallery Section
   ========================================================================== */
.photo-gallery {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    /* Prevent horizontal scroll on body */
}

/* Header row: title left, buttons right */
.photo-gallery__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.photo-gallery__title {
    font-family: 'Gilroy', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 !important;
    text-align: left !important;
}

/* Black circular navigation buttons */
.photo-gallery__controls {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.gallery-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.gallery-btn:hover {
    background-color: #333333;
    transform: scale(1.08);
}

.gallery-btn svg {
    width: 40px;
    height: 40px;
}

/* Slider — outside container, but padded to align with container left */
.gallery-viewport {
    overflow: visible;
    /* Let photos go to the right edge of screen */
    width: 100%;
    cursor: grab;
    margin-top: 10px;
    padding-left: calc((100% - 1170px) / 2 + 15px);
    /* Align with container */
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .gallery-viewport {
        padding-left: 20px;
    }
}

.gallery-viewport:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease-out;
    will-change: transform;
}

/* Each photo item: Auto width on desktop to preserve aspect ratio, 100% on mobile */
.gallery-item {
    flex-shrink: 0;
    width: auto;
    /* Preserve original proportions */
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    height: 100%;
    width: auto;
    /* Natural width */
    object-fit: contain;
    /* Ensure full image visibility */
    display: block;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-width: 768px) {
    .photo-gallery {
        padding: 40px 0;
    }

    .photo-gallery__title {
        font-size: 28px;
    }

    .gallery-viewport {
        padding-left: 10px;
    }

    .gallery-item {
        width: calc(100vw - 20px);
        height: 300px;
        /* Optimal height for mobile slider */
        flex-shrink: 0;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Cover for a clean full-width look on mobile */
    }

    .gallery-btn {
        width: 38px;
        height: 38px;
    }
}

/* Modal Popup Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 50px 40px;
    border-radius: 24px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
}

.modal-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #1a1a1a;
}

.modal-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.modern-form input,
.modern-form select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.modern-form input:focus {
    border-color: #ca9375;
    background: #fff;
    outline: none;
}

.btn--block {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
}

.form-policy {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

/* ==========================================================================
   Brand Partners & Distributor Info (t594, t165 Replicas)
   ========================================================================== */
.brand-partners .section-title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 42px !important;
    line-height: 1.23 !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.brand-partners .section-subtitle {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    max-width: 600px;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 50px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.distributor-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.distributor-text,
.distributor-imgbox {
    flex: 1;
}

.distributor-title {
    font-family: 'Gilroy', sans-serif !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: #1a1a1a;
    margin: 0;
}

.distributor-imgbox img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media screen and (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .distributor-inner {
        flex-direction: column;
        gap: 30px;
    }

    .distributor-title {
        font-size: 24px !important;
        text-align: left !important;
    }

    .distributor-info {
        padding-top: 40px !important;
        padding-bottom: 60px !important;
    }
}

@media screen and (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-card img {
        max-width: 160px;
    }

    .distributor-title {
        font-size: 20px !important;
    }
}

/* --- Contacts Page (Final Fix: Grid 5/7 + 140px Padding) --- */
.contacts-page-wrapper {
    background-color: #fff;
    min-height: 100vh;
}

.contacts-title-block {
    padding-top: 140px; /* Больше отступ, чтобы выйти из-под шапки */
    padding-bottom: 0;
}

.contacts-h1-main {
    font-family: 'Gilroy', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
    text-align: center; /* Теперь точно по центру */
}

.contacts-main-block {
    padding-top: 60px;
    padding-bottom: 120px;
}

.contacts-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contacts-col-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
}

.contacts-col-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
}

.contacts-heading {
    font-family: 'Gilroy', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.contacts-info-group {
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

.contacts-info-group a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.contacts-info-group a:hover {
    color: #ca9375;
}

.c-primary {
    margin-bottom: 40px;
}

.c-primary p { margin-bottom: 5px; }

.c-secondary p {
    margin-bottom: 12px;
    color: #000;
}

.contacts-soc-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.soc-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0;
    transition: transform 0.2s;
}

.soc-item svg {
    width: 30px; 
    height: 30px;
    display: block;
}



.soc-item:hover {
    transform: scale(1.1);
    background-color: #b37e5f; /* Затемнение при наведении */
}


.map-iframe-container {
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

@media screen and (max-width: 991px) {
    .contacts-row { flex-direction: column; }
    .contacts-col-5, .contacts-col-7 { flex: 0 0 100%; max-width: 100%; }
    .contacts-title-block { padding-top: 100px; }
    .contacts-h1-main { font-size: 32px; }
    .map-iframe-container { height: 350px; }
}
/* -----------------------------------------------------------
   Страница Документация (FIXED)
----------------------------------------------------------- */

.docs-page-wrapper {
    background-color: #ffffff;
    padding-top: 140px; /* Компенсация фиксированной шапки */
    padding-bottom: 100px;
}

.docs-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.docs-main-h1 {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #212529;
    margin: 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.doc-card {
    display: flex;
    align-items: center;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.doc-card:hover {
    background: #ffffff;
    border-color: #ca9375;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.doc-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: #ca9375;
    margin-right: 25px;
}

.doc-card__info {
    flex-grow: 1;
}

.doc-card__name {
    display: block;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 600;
    font-size: 18px;
    color: #212529;
    line-height: 1.4;
    margin-bottom: 4px;
}

.doc-card__meta {
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ca9375;
}

.doc-card__arrow {
    opacity: 0.3;
    color: #212529;
    transition: all 0.3s ease;
}

.doc-card:hover .doc-card__arrow {
    opacity: 1;
    transform: translateX(5px);
    color: #ca9375;
}

/* Адаптивность */
@media screen and (max-width: 1024px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .docs-page-wrapper {
        padding-top: 100px;
    }
    .docs-main-h1 {
        font-size: 32px;
    }
}

/* -----------------------------------------------------------
   Страница Сотрудничество (Cooperation Page)
----------------------------------------------------------- */

.coop-page-wrapper {
    background-color: #ffffff;
    padding-top: 150px; /* Увеличенный отступ для видимости под шапкой */
}

.coop-intro-section {
    padding: 30px 0 50px;
}

.coop-intro-inner {
    max-width: 66.66%; /* Это t-col_8 */
    margin: 0 auto;    /* Это имитация t-prefix_2 (центрирование 8 колонок из 12) */
    text-align: left;
}

.coop-intro-text {
    font-family: 'Gilroy', Arial, sans-serif !important;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.55;
    color: #181d24;
    letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
    .coop-page-wrapper {
        padding-top: 100px;
    }
    .coop-intro-inner {
        max-width: 100%;
    }
    .coop-intro-text {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }
}
