/*
Theme Name: KMT Child
Template: kadence
Author: ???????
Description: ???????? ???? ??? ????? ???????? KMT
Version: 1.0
*/

/* =========================================================
   01. Variables
========================================================= */

:root {
    /* Colors */
    --color-primary: #005bfa;
    --color-primary-hover: #004bd1;
    --color-dark: #061C33;
    --color-text: #0B172A;
    --color-muted: #5F6B7A;
    --color-light: #F5F8FC;
    --color-white: #FFFFFF;
    --color-border: #DDE5EF;
    --color-orange: #FF7A00;

    /* Layout */
    --container-width: 1180px;
    --container-padding-desktop: 40px;
    --container-padding-mobile: 28px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;ф
    --radius-lg: 14px;
    --radius-xl: 22px;

    /* Shadows */
    --shadow-card: 0 18px 40px rgba(6, 28, 51, 0.08);

    /* Transitions */
    --transition-base: 0.2s ease;

    /* Typography */
    --font-base: Arial, sans-serif;
}

/* =========================================================
   02. Base
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea {
    font-family: inherit;
}

/* Mobirise text-secondary link style */
.kmt-main a:not(.kmt-button):not(.kmt-button-outline):not(.kmt-filter-tabs__item):not(.kmt-contacts-socials__link),
.kmt-footer a:not(.kmt-footer__logo):not(.kmt-footer__social-link) {
    position: relative;
    color: var(--color-dark);
    text-decoration: none;
    background-image: transparent;
    background-size: 10000px 2px;
    background-repeat: no-repeat;
    background-position: -10000px 1.2em;
    transition: color var(--transition-base);
}

.kmt-main a:not(.kmt-button):not(.kmt-button-outline):not(.kmt-filter-tabs__item):not(.kmt-contacts-socials__link):hover,
.kmt-main a:not(.kmt-button):not(.kmt-button-outline):not(.kmt-filter-tabs__item):not(.kmt-contacts-socials__link):focus,
.kmt-footer a:not(.kmt-footer__logo):not(.kmt-footer__social-link):hover,
.kmt-footer a:not(.kmt-footer__logo):not(.kmt-footer__social-link):focus {
    color: var(--color-muted);
    background-image: linear-gradient(currentColor 50%, currentColor 50%);
    background-position: 0 1.2em;
    transition: color var(--transition-base), background-position 2s ease-in-out;
}





.kmt-main a:has(img),
.kmt-footer a:has(img),
.kmt-contacts-socials a,
.kmt-footer__socials a {
    background-image: none;
}

.kmt-footer a:not(.kmt-footer__logo):not(.kmt-footer__social-link) {
    color: rgba(255, 255, 255, 0.78);
}

.kmt-footer a:not(.kmt-footer__logo):not(.kmt-footer__social-link):hover,
.kmt-footer a:not(.kmt-footer__logo):not(.kmt-footer__social-link):focus {
    color: var(--color-white);
}

.kmt-header__phone span,
.kmt-mobile-actions__phone span,
.kmt-home-feature p,
.kmt-advantage-item p {
    background-image: transparent;
    background-size: 10000px 2px;
    background-repeat: no-repeat;
    background-position: -10000px calc(100% - 0.02em);
    transition: color var(--transition-base);
}

.kmt-header__phone:hover span,
.kmt-header__phone:focus span,
.kmt-mobile-actions__phone:hover span,
.kmt-mobile-actions__phone:focus span,
.kmt-home-feature:hover p,
.kmt-home-feature:focus-within p,
.kmt-advantage-item:hover p,
.kmt-advantage-item:focus-within p {
    background-image: linear-gradient(currentColor 50%, currentColor 50%);
    background-position: 0 calc(100% - 0.02em);
    transition: color var(--transition-base), background-position 2s ease-in-out;
}
/* =========================================================
   03. Layout
========================================================= */

.kmt-container {
    width: min(var(--container-width), calc(100% - var(--container-padding-desktop)));
    margin: 0 auto;
}

.kmt-main {
    flex: 1;
    overflow: hidden;
}

.kmt-section {
    padding: 70px 0;
}

.kmt-section-title {
    margin: 0 0 32px;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================
   04. Components
========================================================= */

.kmt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-md);
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    transition: var(--transition-base);
}

.kmt-button:hover {
    transform: translateY(-2px);
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-white);
}

.kmt-button-outline {
    background: transparent;
    color: var(--color-primary);
}

.kmt-button-outline:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.kmt-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    transition: var(--transition-base);
}

.kmt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.kmt-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    color: var(--color-muted);
    font-size: 14px;
}

.kmt-breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--color-muted);
}


.kmt-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 34px;
}

.kmt-filter-tabs__item {
    min-width: 150px;
    padding: 14px 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
}

.kmt-filter-tabs__item:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.kmt-filter-tabs__item.is-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

/* =========================================================
   05. Header
========================================================= */

.kmt-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.kmt-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.kmt-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-dark);
}

.kmt-logo img {
    width: 170px;
    height: auto;
}

.kmt-nav {
    flex: 1;
}

.kmt-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kmt-menu li {
    margin: 0;
    padding: 0;
}

.kmt-menu a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.kmt-menu a:hover {
    color: var(--color-primary);
}

.kmt-menu .current-menu-item > a,
.kmt-menu .current_page_item > a,
.kmt-menu .current-menu-ancestor > a {
    position: relative;
    color: var(--color-primary);
}

.kmt-menu .current-menu-item > a::after,
.kmt-menu .current_page_item > a::after,
.kmt-menu .current-menu-ancestor > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    height: 3px;
    border-radius: 3px;
    background: var(--color-primary);
}

.kmt-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-weight: 600;
    white-space: nowrap;
}

.kmt-header__phone:hover {
    color: var(--color-primary);
}

.kmt-header__phone img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.kmt-header__button {
    min-height: 42px;
    padding: 0 22px;
}

.kmt-mobile-actions {
    display: none;
}

.kmt-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.kmt-burger span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px auto;
    background: var(--color-text);
}

/* =========================================================
   06. Footer
========================================================= */

.kmt-footer {
    padding: 40px 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.kmt-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 70px;
}

.kmt-footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.kmt-footer__logo img {
    display: block;
    width: 120px;
    height: auto;
}

.kmt-footer p {
    margin: 0 0 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.kmt-footer h3 {
    margin: 0 0 18px;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
}

.kmt-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kmt-footer-menu li {
    margin-bottom: 10px;
}

.kmt-footer-menu a {
    color: rgba(255, 255, 255, 0.78);
}

.kmt-footer-menu a:hover {
    color: var(--color-white);
}

.kmt-footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.kmt-footer__socials a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.kmt-footer__socials a img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.kmt-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.kmt-verified:hover {
    color: #ffffff;
}

.kmt-verified__icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
}

.kmt-verified__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.kmt-verified:hover {
    color: #ffffff;
}

.kmt-footer__bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.kmt-footer__bottom p {
    margin: 0;
    text-align: center;
}

.kmt-footer {
    background: linear-gradient(135deg, #06193B 0%, #081F49 100%);
    color: rgba(255, 255, 255, 0.92);
}


.kmt-footer__contacts,
.kmt-footer__nav {
    color: #ffffff;
}

.kmt-footer__contacts p,
.kmt-footer__contacts a,
.kmt-footer-contact-item p,
.kmt-footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.kmt-footer-contact-item {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.kmt-footer-contact-item__icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.kmt-footer-contact-item__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.kmt-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.kmt-verified__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kmt-verified__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.kmt-footer-contact-item p {
    margin: 0;
}

/* =========================================================
   07. Page Hero
========================================================= */

.kmt-page-hero {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 26px 0 30px;
    background: linear-gradient(110deg, #f4f7fb 0%, #ffffff 74%);
}

.kmt-page-hero::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -40px;
    width: 380px;
    height: 330px;
    background: rgba(237, 242, 248, 0.75);
    clip-path: polygon(44% 0, 100% 0, 100% 65%, 0 100%);
    pointer-events: none;
}

.kmt-page-hero .kmt-container {
    position: relative;
    z-index: 1;
}

.kmt-page-hero .kmt-breadcrumbs {
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--color-muted);
}

.kmt-page-hero h1 {
    margin: 0 0 12px;
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-text);
}

.kmt-page-hero p {
    max-width: 500px;
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.55;
    color: #334158;
}

.kmt-page-hero .kmt-button {
    min-width: 200px;
    min-height: 50px;
    padding: 0 26px;
    border-width: 2px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}

.kmt-page-hero .kmt-button:hover {
    transform: none;
}

/* =========================================================
   08. Home Page
========================================================= */

.kmt-home-hero {
    padding: 28px 0 0;
    background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 100%);
}

.kmt-home-hero__stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20%;
    width: 10%;
    background: linear-gradient(180deg, rgba(0, 91, 255, 0.82) 0%, rgba(0, 91, 255, 0.55) 100%);
    clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
    z-index: 4;
    pointer-events: none;
}

.kmt-home-hero__grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 26px;
    align-items: center;
}

.kmt-home-hero__content {
    padding: 18px 0 12px;
}

.kmt-home-hero__content h1 {
    margin: 0 0 24px;
    font-size: 76px;
    line-height: 0.95;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #0c1630;
}

.kmt-home-hero__content > p {
    margin: 0 0 28px;
    max-width: 480px;
    font-size: 18px;
    line-height: 1.55;
    color: #4b5870;
}

.kmt-home-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.kmt-home-hero__image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 0;
}

.kmt-home-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kmt-home-hero__image::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0.97) 0%,
        rgba(255,255,255,0.94) 48%,
        rgba(255,255,255,0.00) 100%
    );
    clip-path: polygon(0 0, 82% 0, 52% 100%, 0 100%);
    z-index: 2;
}

.kmt-home-hero__image::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9%;
    width: 18%;
    background: linear-gradient(
        180deg,
        rgba(196, 222, 255, 0.65) 0%,
        rgba(196, 222, 255, 0.28) 100%
    );
    clip-path: polygon(34% 0, 100% 0, 66% 100%, 0 100%);
    z-index: 3;
}

.kmt-home-features {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 28px;
    align-items: start;
}

.kmt-home-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 132px;
}

.kmt-home-feature__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kmt-home-feature__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.kmt-home-feature p {
    margin: 0;
    font-size: 14px;
    line-height: 1.38;
    color: #313d53;
    max-width: 110px;
}

.kmt-about-section {
    padding-top: 28px;
}

.kmt-about-grid {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.kmt-about-text {
    padding: 34px 0;
}

.kmt-about-text p {
    margin: 0 0 22px;
    max-width: 520px;
    line-height: 1.6;
    color: var(--color-text);
}

.kmt-about-text ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.kmt-about-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-text);
}

.kmt-about-text ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.kmt-about-text li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-text);
}

.kmt-about-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url("assets/icons/check-mark.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.kmt-advantages-panel {
    min-height: 300px;
    padding: 34px 42px 34px;
    border-radius: var(--radius-xl);
    background: var(--color-dark);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.kmt-advantages-panel h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
}

.kmt-advantages-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
    padding-top: 18px;
}

.kmt-advantage-item {
    position: relative;
    min-height: 170px;
    padding: 0 22px;
    text-align: center;
    display: grid;
    grid-template-rows: 88px 1fr;
    justify-items: center;
    align-items: start;
}

.kmt-advantage-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    width: 1px;
    height: 136px;
    background: rgba(255, 255, 255, 0.22);
}

.kmt-advantage-item__icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kmt-advantage-item__icon img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
}

.kmt-advantage-item p {
    margin: 0;
    max-width: 148px;
    min-height: 74px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

/* =========================================================
   08.1 Reviews
========================================================= */

.kmt-reviews-section {
    padding-top: 0px;
    padding-bottom: 44px;
}

.kmt-reviews-section .kmt-section-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
}

.kmt-reviews-section .kmt-section-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.kmt-reviews-section .kmt-slider-controls {
    position: absolute;
    right: 0;
    top: 18px;
    display: flex;
    gap: 12px;
}

.kmt-slider-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    box-shadow: 0 8px 22px rgba(6, 28, 51, 0.05);
}

.kmt-slider-button.is-disabled,
.kmt-slider-button:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.kmt-slider-button::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    top: 50%;
    left: 50%;
}

.kmt-reviews-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.kmt-reviews-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.kmt-slider-button:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 91, 255, 0.16);
}

.kmt-slider-button:active {
    transform: translateY(0) scale(0.97);
}

.kmt-reviews-slider {
    overflow: hidden;
}

.kmt-reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.kmt-review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-height: 150px;
    padding: 22px 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
}

.kmt-review-card:hover {
    transform: none;
    box-shadow: 0 12px 26px rgba(6, 28, 51, 0.06);
}

.kmt-review-card__head {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.kmt-review-card__photo {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-light);
    flex-shrink: 0;
}

.kmt-review-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kmt-review-card h3 {
    margin: 0 0 3px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

.kmt-review-card__head p {
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.3;
    color: var(--color-muted);
}

.kmt-review-card__rating {
    color: var(--color-primary);
    font-size: 21px;
    line-height: 1;
    letter-spacing: 4px;
}

.kmt-review-card__text {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: flex-start;
    color: var(--color-text);
}

.kmt-review-card__quote {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-top: 3px;
}

.kmt-review-card__content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
}

.kmt-review-card__content p {
    margin: 0;
}

/* =========================================================
   08.2 Contacts
========================================================= */

/* =========================================================
   08.2 Contacts
========================================================= */

.kmt-contacts-section {
    padding-top: 46px;
    padding-bottom: 52px;
}

.kmt-contacts-title {
    margin: 0 0 22px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.kmt-contacts-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 32px;
    align-items: stretch;
}

.kmt-contacts-info {
    padding: 0;
    background: transparent;
    color: var(--color-text);
}

.kmt-contact-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.kmt-contact-item__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
    overflow: visible;
}

.kmt-contact-item__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.kmt-contact-item p {
    margin: 0;
    line-height: 1.45;
    color: var(--color-text);
}

.kmt-contact-item strong {
    font-weight: 700;
}

.kmt-contacts-socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.kmt-contacts-socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.kmt-contacts-socials a img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.kmt-contacts-socials a:hover {
    background: transparent;
    transform: translateY(-2px);
}

.kmt-contacts-map {
    min-height: 210px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-light);
}

.kmt-map-frame {
    width: 100%;
    height: 100%;
    min-height: 210px;
}

.kmt-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 210px;
    border: 0;
}

/* =========================================================
   09. Products
========================================================= */



.kmt-products-page {
    background: #f7f9fc;
}

/* ??????? */
.kmt-products-catalog {
    padding: 34px 0 58px;
}

/* ??????? */
.kmt-products-filters {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.kmt-products-filters .kmt-filter-tabs__item {
    min-width: 0;
    min-height: 44px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #ffffff;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
}

.kmt-products-filters .kmt-filter-tabs__item:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.kmt-products-filters .kmt-filter-tabs__item.is-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

/* ????? ??????? */
.kmt-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* ???????? ?????? */
.kmt-product-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kmt-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(6, 28, 51, 0.08);
}

.kmt-product-card__image {
    height: 165px;
    background: var(--color-light);
    overflow: hidden;
}

.kmt-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kmt-product-card__body {
    padding: 18px 18px 20px;
}


.kmt-product-card .kmt-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kmt-product-card .kmt-card-tags span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: #ffffff;
    color: #4b5a70;
    font-size: 14px;
    line-height: 1;
}

/* ?????? h2/p ??? ???????, ???? ???-?? ???????? */
.kmt-product-card h2 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.25;
}

.kmt-product-card p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.55;
    color: #4b5a70;
}

/* =========================================================
   10. Services
========================================================= */

.kmt-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.kmt-service-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: center;
    padding: 20px;
}

.kmt-service-card__image {
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-light);
}

.kmt-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kmt-service-card__body {
    min-width: 0;
}

.kmt-service-card__title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.25;
}

.kmt-service-card__text {
    margin: 0;
    line-height: 1.65;
    color: var(--color-muted);
}

/* ????????? ????????? ?????? ????????, ???? h2/p ??? ??? ??????? */
.kmt-service-card h2 {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.25;
}

.kmt-service-card p {
    margin: 0;
    line-height: 1.65;
    color: var(--color-muted);
}

/* =========================================================
   11. Partners
========================================================= */

.kmt-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.kmt-partner-card {
    min-height: 150px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.kmt-partner-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kmt-partner-card__logo img {
    max-width: 150px;
    max-height: 62px;
    object-fit: contain;
}

.kmt-partner-card--logo-title {
    flex-direction: column;
    gap: 4px;
}

.kmt-partner-card--logo-title .kmt-partner-card__logo img {
    max-width: 75px;
    max-height: 54px;
}

.kmt-partner-card--logo-title .kmt-partner-card__title {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.kmt-partner-card--logo-only .kmt-partner-card__logo img {
    max-width: 170px;
    max-height: 80px;
}

.kmt-partner-card--title-only .kmt-partner-card__title {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.kmt-partner-card span {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-muted);
}

/* =========================================================
   12. 404 Page
========================================================= */

.kmt-not-found {
    padding: 90px 0;
    background: var(--color-light);
}

.kmt-not-found__box {
    padding: 52px;
    border-radius: var(--radius-xl);
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.kmt-not-found__box h1 {
    margin: 0 0 24px;
    font-size: 36px;
    line-height: 1.2;
}

.kmt-not-found__box p {
    max-width: 700px;
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
}

.kmt-not-found__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================================
   13. Responsive
========================================================= */

@media (max-width: 1024px) {
    .kmt-products-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .kmt-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .kmt-review-card {
        flex-basis: calc((100% - 24px) / 2);
    }
    
    .kmt-home-hero__grid,
    .kmt-about-grid,
    .kmt-contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .kmt-home-hero__image {
        clip-path: none;
    }
    
    .kmt-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .kmt-advantage-item:not(:last-child)::after {
        display: none;
    }
    
    .kmt-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kmt-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .kmt-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kmt-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kmt-home-hero {
        padding: 34px 0 0;
    }
    
    .kmt-home-hero__content {
        padding: 20px 0 32px;
    }
    
    .kmt-home-hero__content h1 {
        font-size: 40px;
    }
    
    .kmt-home-hero__content > p {
        font-size: 17px;
    }
    
    .kmt-home-hero__actions {
        flex-direction: column;
    }
    
    .kmt-home-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .kmt-home-hero__image {
        min-height: 240px;
    }
    
    .kmt-about-section {
        padding-top: 34px;
    }
    
    .kmt-about-text {
        padding: 0;
    }
    
    .kmt-advantages-panel {
        padding: 26px;
    }
    
    .kmt-advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .kmt-advantage-item {
        padding: 0;
    }
    
   
   .kmt-reviews-section {
        padding-top: 38px;
        padding-bottom: 36px;
    }
    
    .kmt-reviews-section .kmt-section-head {
        justify-content: flex-start;
        padding-top: 16px;
        padding-right: 106px;
        margin-bottom: 22px;
    }
    
    .kmt-reviews-section .kmt-section-title {
        font-size: 21px;
        text-align: left;
    }
    
    .kmt-reviews-section .kmt-slider-controls {
        top: 14px;
        right: 0;
    }
    
    .kmt-review-card {
        flex-basis: 100%;
        min-height: auto;
        padding: 20px;
    }
    
    .kmt-review-card__head {
        grid-template-columns: 64px 1fr;
        gap: 14px;
    }
    
    .kmt-review-card__photo {
        width: 64px;
        height: 64px;
    }
    
    .kmt-filter-tabs {
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .kmt-filter-tabs__item {
        min-width: auto;
        flex: 1 1 calc(50% - 10px);
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .kmt-not-found {
        padding: 42px 0;
    }
    
    .kmt-not-found__box {
        padding: 28px;
    }
    
    .kmt-not-found__box h1 {
        font-size: 28px;
    }
    
    .kmt-not-found__box p {
        font-size: 16px;
    }
    
    .kmt-not-found__actions {
        flex-direction: column;
}
    
    .kmt-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .kmt-partner-card {
        min-height: 120px;
        padding: 18px;
    }
    
    .kmt-partner-card img {
        max-width: 130px;
        max-height: 64px;
    }
    
    .kmt-container {
        width: min(100% - var(--container-padding-mobile), var(--container-width));
    }

    .kmt-section {
        padding: 42px 0;
    }

    .kmt-section-title {
        font-size: 34px;
    }

    .kmt-header__inner {
        min-height: 68px;
        justify-content: space-between;
    }

    .kmt-nav,
    .kmt-header__phone,
    .kmt-header__button {
        display: none;
    }

    .kmt-logo {
        font-size: 24px;
    }

    .kmt-burger {
        display: block;
    }

    .kmt-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .kmt-footer__bottom p {
        text-align: left;
    }

    .kmt-hero {
        padding: 44px 0;
    }

    .kmt-hero h1,
    .kmt-page-hero h1 {
        font-size: 40px;
    }

    .kmt-hero p {
        font-size: 17px;
    }

    .kmt-hero__actions {
        flex-direction: column;
    }

    .kmt-button {
        width: 100%;
    }

    .kmt-page-hero {
        padding: 42px 0 28px;
    }

    .kmt-page-hero p {
        font-size: 16px;
    }

    .kmt-products-catalog {
        padding: 28px 0 42px;
    }

    .kmt-products-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .kmt-products-filters .kmt-filter-tabs__item {
        padding: 11px 10px;
        font-size: 12px;
    }

    .kmt-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .kmt-product-card__image {
        height: 130px;
    }

    .kmt-product-card__body {
        padding: 14px;
    }

    .kmt-product-card__title,
    .kmt-product-card h2 {
        font-size: 16px;
    }

    .kmt-product-card__text,
    .kmt-product-card p {
        min-height: auto;
        font-size: 13px;
    }

    .kmt-product-card .kmt-card-tags span {
        font-size: 11px;
        padding: 6px 8px;
    }

    .kmt-service-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .kmt-service-card__image {
        height: 180px;
    }

    .kmt-service-card__title,
    .kmt-service-card h2 {
        font-size: 21px;
    }
    
    .kmt-contacts-section {
        padding-top: 34px;
        padding-bottom: 42px;
    }
    
    .kmt-contacts-title {
        font-size: 21px;
        text-align: left;
    }
    
    .kmt-contact-item {
        grid-template-columns: 28px 1fr;
        gap: 12px;
    }
    
    .kmt-contacts-map,
    .kmt-map-frame,
    .kmt-map-frame iframe {
        min-height: 190px;
    }
}

/* Desktop hero refinement */
@media (min-width: 1025px) {
    .kmt-home-hero__grid {
        min-height: 338px;
        align-items: stretch;
    }

    .kmt-home-hero__image {
        height: 338px;
        min-height: 338px;
        margin-left: 180px;
        align-self: stretch;
        aspect-ratio: auto;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            transparent 8%,
            rgba(0, 0, 0, 0.12) 22%,
            rgba(0, 0, 0, 0.45) 40%,
            #000 64%,
            #000 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            transparent 8%,
            rgba(0, 0, 0, 0.12) 22%,
            rgba(0, 0, 0, 0.45) 40%,
            #000 64%,
            #000 100%
        );
    }

    .kmt-home-hero__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .kmt-home-hero .kmt-home-hero__image::before {
        display: none;
    }

    .kmt-home-feature p {
        max-width: 132px;
        white-space: nowrap;
    }
}

/* Keep review navigation clear of the cards. */
@media (min-width: 769px) {
    .kmt-reviews-section .kmt-section-head {
        min-height: 48px;
        padding-right: 112px;
    }

    .kmt-reviews-section .kmt-slider-controls {
        top: 4px;
        z-index: 3;
    }

    .kmt-reviews-slider {
        position: relative;
        z-index: 1;
    }
}

/* =========================================================
   Services page
========================================================= */

.kmt-services-page {
    background: #f7f9fc;
}

.kmt-services-catalog {
    padding: 18px 0 46px;
}

.kmt-services-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
    padding: 0;
}

.kmt-services-filter {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid #dbe3ed;
    border-radius: 5px;
    background: #ffffff;
    color: #162238;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.kmt-services-filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);

}

.kmt-services-filter.is-active {
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.kmt-services-design-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.kmt-service-design-card {
    position: relative;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: 180px;
    overflow: hidden;
    border: 1px solid #dce4ee;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
}

.kmt-service-design-card--default {
    box-shadow: none;
}

.kmt-service-design-card--accent {
    grid-template-columns: 240px minmax(0, 1fr);
}

.kmt-service-design-card__image {
    position: relative;
    height: 100%;
    min-height: 180px;
    overflow: visible;
    clip-path: none;
    z-index: 99;
}

.kmt-service-design-card__image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 82px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 101%;
    pointer-events: none;
    height: 100%;
    background-image: url("assets/images/stub1.png");
}

.kmt-service-design-card__body::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -3px;
    width: 6px;
    background: #f7f9fc;
    z-index: -1;
}

.kmt-service-design-card--accent .kmt-service-design-card__image::after {
    background-image: url("assets/images/stub2.png");
    background-size: auto 110%;
}

.kmt-service-design-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.kmt-service-design-card__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #eef3f8;
    color: #68778c;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}

.kmt-service-design-card__body {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 29px 28px 24px 10px;
    background: #f7f9fc;
}

.kmt-service-design-card__head {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.kmt-service-design-card__head:not(.has-icon) {
    grid-template-columns: minmax(0, 1fr);
}

.kmt-service-design-card__icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 7px;
    background: var(--color-primary);
    box-shadow: none;
}

.kmt-service-design-card__icon img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.kmt-service-design-card h2,
.kmt-product-card__title {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: 0;
    color: var(--color-text);
}

.kmt-service-design-card p,
.kmt-product-card__text {
    max-width: 330px;
    margin: 0 0 0 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    color: #40506a;
}

.kmt-service-design-card__head:not(.has-icon) + p {
    margin-left: 0;
}

.kmt-services-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 0;
}

.kmt-products-page .kmt-product-card__title {
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: 0;
    color: var(--color-text);
}

.kmt-products-page .kmt-product-card__text {
    max-width: 330px;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    color: #40506a;
}

.kmt-services-pagination .page-numbers {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe3ed;
    border-radius: 5px;
    background: #ffffff;
    color: var(--color-text);
    font-size: 12px;
}

.kmt-services-pagination .page-numbers.current,
.kmt-services-pagination .page-numbers:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.kmt-services-cta {
    position: relative;
    min-height: 174px;
    margin-top: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 8px;
    background: #061c39 url("assets/images/consultation.png") center / cover no-repeat;
    color: #ffffff;
}

.kmt-services-cta__content {
    position: relative;
    z-index: 1;
    width: 52%;
    padding: 28px 34px;
}

.kmt-services-cta h2 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    color: #ffffff;
}

.kmt-services-cta p {
    max-width: 360px;
    margin: 0 0 18px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.kmt-services-cta .kmt-button {
    min-height: 40px;
    padding: 0 24px;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .kmt-services-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .kmt-services-design-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kmt-services-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0;
    }

    .kmt-service-design-card {
        grid-template-columns: 120px minmax(0, 1fr);
        min-height: 160px;
    }

    .kmt-service-design-card__image {
        min-height: 160px;
    }

    .kmt-service-design-card__body {
        padding: 18px 14px 16px 4px;
    }

    .kmt-service-design-card__head {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 8px;
        margin-bottom: 10px;
    }

    .kmt-service-design-card__icon {
        width: 32px;
        height: 32px;
    }

    .kmt-service-design-card__icon img {
        width: 22px;
        height: 22px;
    }

    .kmt-service-design-card h2 {
        font-size: 14px;
    }

    .kmt-service-design-card p {
        margin-left: 0;
        font-size: 11px;
        line-height: 1.5;
    }

    .kmt-services-cta__content {
        width: 100%;
        padding: 26px 22px;
    }
}

.kmt-contacts-info .kmt-contact-item a {
    color: var(--color-text);
}

.kmt-contacts-info .kmt-contact-item a:hover {
    color: var(--color-primary);
}

/* =========================================================
   14. Home page visual alignment
========================================================= */

@media (min-width: 1025px) {
    .kmt-home-hero {
        padding-top: 0;
        background: linear-gradient(90deg, #f7f9fc 0%, #ffffff 62%);
    }

    .kmt-home-hero__grid {
        grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.45fr);
        gap: 0;
        min-height: 338px;
    }

    .kmt-home-hero__content {
        position: relative;
        z-index: 2;
        padding: 16px 0 18px;
    }

    .kmt-home-hero__content h1 {
        margin-bottom: 16px;
        font-size: 58px;
        line-height: 0.98;
        white-space: nowrap;
    }

    .kmt-home-hero__content > p {
        margin-bottom: 20px;
        max-width: 390px;
        font-size: 15px;
        line-height: 1.5;
    }

    .kmt-home-hero__actions {
        margin-bottom: 24px;
    }

    .kmt-home-hero__image {
        min-height: 0;
        margin-left: 120px;
        align-self: start;
        aspect-ratio: 764 / 328;
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .kmt-home-hero .kmt-home-hero__image::before {
        content: "";
        position: absolute;
        z-index: 2;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 180px;
        pointer-events: none;
        clip-path: none;
        background: linear-gradient(
            to right,
            #ffffff 0%,
            rgba(255, 255, 255, 0.94) 18%,
            rgba(255, 255, 255, 0.5) 58%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .kmt-home-hero__image img {
        position: static;
        width: 100%;
        max-width: none;
        height: auto;
        object-fit: contain;
    }

    .kmt-home-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        max-width: 440px;
    }

    .kmt-home-feature {
        min-width: 0;
    }
}

.kmt-home-hero__stripe,
.kmt-home-hero__image::before,
.kmt-home-hero__image::after {
    display: none;
}

.kmt-about-section {
    padding-top: 32px;
}

.kmt-about-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
    gap: 44px;
    align-items: center;
}

.kmt-about-text {
    padding: 12px 0;
}

.kmt-about-text p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.55;
}

.kmt-about-text li {
    margin-bottom: 8px;
    padding-left: 24px;
    font-size: 13px;
    line-height: 1.45;
}

.kmt-about-text li::before {
    top: 2px;
    width: 14px;
    height: 14px;
}

.kmt-about-text ul {
    margin-bottom: 20px;
}

.kmt-advantages-panel {
    min-height: 278px;
    padding: 28px 30px 24px;
    border-radius: 8px;
    background: linear-gradient(120deg, #071b3f 0%, #00366a 100%);
}

.kmt-advantages-panel h2 {
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0;
}

.kmt-advantages-grid {
    padding-top: 20px;
    align-items: stretch;
}

.kmt-advantage-item {
    grid-template-rows: 78px minmax(66px, 1fr);
    min-height: 150px;
    padding: 0 14px;
    align-items: start;
}

.kmt-advantage-item__icon,
.kmt-advantage-item__icon img {
    width: 72px;
    height: 72px;
}

.kmt-advantage-item p {
    align-items: flex-start;
    min-height: 66px;
    max-width: 132px;
    font-size: 13px;
    line-height: 1.45;
}

.kmt-advantage-item:not(:last-child)::after {
    top: 10px;
    height: 124px;
    background: rgba(63, 147, 230, 0.35);
}

.kmt-contact-item a,
.kmt-footer-contact-item a {
    transition: color var(--transition-base);
}

.kmt-contact-item a:hover,
.kmt-footer-contact-item a:hover {
    color: var(--color-primary);
}

.kmt-footer .kmt-verified {
    gap: 10px;
    font-size: 17px;
}

.kmt-footer .kmt-verified__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
}

.kmt-footer .kmt-verified__icon img {
    width: 34px;
    height: 34px;
}

@media (max-width: 1024px) {
    .kmt-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kmt-home-hero__image {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 100%);
    }

    .kmt-advantages-panel {
        padding: 24px 20px;
    }

    .kmt-advantage-item {
        grid-template-rows: 78px auto;
        min-height: 0;
        padding: 12px 0;
    }

    .kmt-advantage-item p {
        min-height: 0;
    }
}

/* Final desktop hero positioning */
@media (min-width: 1025px) {
    .kmt-home-hero__image {
        position: relative;
        height: 338px;
        min-height: 338px;
        margin-left: 60px;
        align-self: stretch;
        aspect-ratio: auto;
        overflow: hidden;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .kmt-home-hero__image img {
        position: absolute;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0, 0, 0, 0.04) 12%,
            rgba(0, 0, 0, 0.14) 28%,
            rgba(0, 0, 0, 0.34) 47%,
            rgba(0, 0, 0, 0.68) 70%,
            #000 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            rgba(0, 0, 0, 0.04) 12%,
            rgba(0, 0, 0, 0.14) 28%,
            rgba(0, 0, 0, 0.34) 47%,
            rgba(0, 0, 0, 0.68) 70%,
            #000 100%
        );
    }

    .kmt-home-hero .kmt-home-hero__image::before,
    .kmt-home-hero .kmt-home-hero__image::after {
        display: none;
    }

    .kmt-home-features {
        width: 439px;
        max-width: none;
        grid-template-columns: 120px 150px 145px;
        gap: 12px;
    }

    .kmt-home-feature {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 8px;
        align-items: start;
        min-width: 0;
    }

    .kmt-home-feature p {
        min-width: 0;
        max-width: none;
        white-space: normal;
        font-size: 11px;
        line-height: 1.35;
    }
}

@media (min-width: 1025px) {
    .kmt-home-hero__image img {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .kmt-about-section {
        padding-bottom: 34px;
    }

    .kmt-reviews-section {
        padding-bottom: 22px;
    }

    .kmt-reviews-section .kmt-section-head {
        padding-top: 12px;
        margin-bottom: 18px;
    }

    .kmt-contacts-section {
        padding-top: 22px;
    }
}

/* Preserve the full hero image and let its left side continue under the copy. */
@media (min-width: 1025px) {
    .kmt-home-hero__image {
        overflow: visible;
        z-index: 1;
    }

    .kmt-home-hero__image img {
        top: 0;
        right: 55px;
        bottom: auto;
        left: auto;
        width: auto;
        height: 100%;
        max-width: none;
        object-fit: contain;
        object-position: right top;
    }

    .kmt-home-hero__content {
        z-index: 2;
    }
}

/* Match the approved desktop hero composition. */
@media (min-width: 1025px) {
    .kmt-home-hero__grid {
        position: relative;
        display: block;
        min-height: 338px;
    }

    .kmt-home-hero__content {
        position: relative;
        z-index: 2;
        width: 440px;
    }

    .kmt-home-hero__image {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        width: 72%;
        height: 338px;
        min-height: 338px;
        margin: 0;
        overflow: hidden;
    }

    .kmt-home-hero__image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: right center;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 768px) {
    .kmt-header {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .kmt-header__inner {
        position: relative;
        min-height: 72px;
    }

    .kmt-logo img {
        width: 132px;
    }

    .kmt-burger {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .kmt-burger span {
        width: 30px;
        height: 3px;
        margin: 3px 0;
        border-radius: 2px;
    }

    .kmt-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 12px 0;
        background: #ffffff;
        border-top: 1px solid #dbe3ed;
        box-shadow: 0 14px 28px rgba(12, 22, 48, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: 0.2s ease;
    }

    body.kmt-menu-open .kmt-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .kmt-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 24px;
    }

    .kmt-menu a {
        display: block;
        padding: 13px 0;
        font-size: 16px;
    }

    .kmt-menu .current-menu-item > a::after,
    .kmt-menu .current_page_item > a::after,
    .kmt-menu .current-menu-ancestor > a::after {
        display: none;
    }

    .kmt-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 16px 24px 12px;
        border-top: 1px solid #edf1f6;
    }

    .kmt-mobile-actions__phone {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--color-dark);
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
    }

    .kmt-mobile-actions__phone img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .kmt-mobile-actions__button {
        width: 100%;
        min-height: 46px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        background: #f3f6fb;
    }

    .kmt-main {
        background: #f3f6fb;
    }

    .kmt-container {
        width: min(100% - 24px, var(--container-width));
    }

    .kmt-home-hero {
        padding: 22px 0 16px;
        background: #f3f6fb;
    }

    .kmt-home-hero__grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .kmt-home-hero__content {
        padding: 0;
    }

    .kmt-home-hero__content h1 {
        margin: 0 0 16px;
        font-size: 38px;
        line-height: 1;
        letter-spacing: 0;
    }

    .kmt-home-hero__content > p {
        margin: 0 0 18px;
        font-size: 17px;
        line-height: 1.45;
    }

    .kmt-home-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 22px;
    }

    .kmt-home-hero__actions .kmt-button {
        min-height: 48px;
        width: 100%;
    }

    .kmt-home-features {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 18px;
    }

    .kmt-home-feature {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
    }

    .kmt-home-feature p {
        max-width: none;
        font-size: 14px;
        line-height: 1.35;
    }

    .kmt-home-hero__image {
        min-height: 0;
        height: auto;
        margin-top: 0;
        border-radius: 8px;
        overflow: hidden;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .kmt-home-hero__image img {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .kmt-about-section {
        padding: 0 0 18px;
    }

    .kmt-about-grid {
        display: block;
    }

    .kmt-about-text {
        padding: 20px 16px;
        border: 1px solid #dce4ee;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 8px 22px rgba(12, 22, 48, 0.06);
    }

    .kmt-about-text p {
        font-size: 15px;
        line-height: 1.45;
    }

    .kmt-about-text li {
        font-size: 14px;
    }

    .kmt-about-text .kmt-button {
        width: auto;
        min-width: 210px;
        min-height: 42px;
    }
}

@media (max-width: 768px) {
    .kmt-advantages-panel {
        margin-top: 18px;
        padding: 0;
        background: transparent;
        color: var(--color-text);
    }

    .kmt-advantages-panel h2 {
        margin: 0 0 10px;
        font-size: 20px;
        line-height: 1.15;
        color: var(--color-text);
    }

    .kmt-advantages-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 0;
        align-items: stretch;
    }

    .kmt-advantage-item {
        box-sizing: border-box;
        min-width: 0;
        min-height: 116px;
        padding: 12px 10px;
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 8px;
        align-items: center;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid #dce4ee;
        border-radius: 8px;
        text-align: left;
    }

    .kmt-advantage-item__icon,
    .kmt-advantage-item__icon img {
        width: 52px;
        height: 52px;
    }

    .kmt-advantage-item__icon img {
        opacity: 1;
        filter: brightness(0) saturate(100%) invert(27%) sepia(97%) saturate(4278%) hue-rotate(216deg) brightness(101%) contrast(106%);
    }

    .kmt-advantage-item p {
        display: block;
        min-width: 0;
        max-width: 100%;
        min-height: 0;
        margin: 0;
        color: var(--color-text);
        font-size: 13px;
        line-height: 1.25;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }
}

.kmt-home-hero__image picture {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1238 / 697;
}

@media (max-width: 768px) {
    .kmt-home-hero__image picture {
        aspect-ratio: 1672 / 941;
    }

    .kmt-service-design-card,
    .kmt-service-design-card--accent {
        grid-template-columns: 150px minmax(0, 1fr);
        min-height: 160px;
    }

    .kmt-service-design-card__image {
        min-height: 160px;
    }

    .kmt-service-design-card__image::after {
        width: 46px;
    }

    .kmt-service-design-card__image img {
        object-position: center center;
    }

    .kmt-service-design-card__body {
        padding: 18px 12px 16px 6px;
    }
}

body.kmt-modal-open {
    overflow: hidden;
    padding-right: var(--kmt-scrollbar-compensation, 0px);
}

.kmt-modal-layer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.kmt-modal-layer.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.kmt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 16, 38, 0.62);
}

.kmt-modal {
    position: relative;
    z-index: 1;
    display: none;
    width: min(100%, 460px);
    max-height: min(720px, calc(100vh - 48px));
    overflow-y: auto;
    padding: 32px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(4, 16, 38, 0.26);
    color: var(--color-text);
}

.kmt-modal.is-active {
    display: block;
}

.kmt-modal--compact {
    width: min(100%, 420px);
}

.kmt-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0c1630;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    box-shadow: none;
    cursor: pointer;
}

.kmt-modal__close:hover {
    color: #005bfa;
    background: transparent;
}

.kmt-modal h2 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: 0;
    color: var(--color-text);
}

.kmt-modal p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.55;
    color: #40506a;
}

.kmt-modal ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.kmt-modal li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.45;
}

.kmt-modal li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
}

.kmt-modal__phone {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 5px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.kmt-modal__phone:hover {
    color: #ffffff;
    background: #004fd8;
}

.kmt-modal__form form,
.kmt-fallback-form {
    display: grid;
    gap: 14px;
}

.kmt-fallback-form label,
.kmt-modal .wpforms-field,
.kmt-modal .wpcf7-form p {
    margin: 0;
}

.kmt-fallback-form label span,
.kmt-modal .wpforms-field-label,
.kmt-modal .wpcf7-form label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.kmt-fallback-form input,
.kmt-modal .wpforms-field input,
.kmt-modal .wpcf7-form input,
.kmt-modal .wpcf7-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #dce4ee;
    border-radius: 5px;
    background: #ffffff;
    color: var(--color-text);
    font-size: 15px;
}

.kmt-modal .wpforms-submit,
.kmt-modal .wpcf7-submit,
.kmt-fallback-form .kmt-button {
    width: 100%;
    min-height: 48px;
    margin-top: 4px;
    border: 0;
    border-radius: 5px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.kmt-modal .wpforms-container,
.kmt-modal div.wpforms-container-full {
    margin: 0;
}

.kmt-modal .wpcf7-not-valid-tip,
.kmt-modal .wpforms-error {
    margin-top: 5px;
    font-size: 12px;
}

button.kmt-button {
    font: inherit;
    cursor: pointer;
}


.kmt-modal input.wpcf7-submit,
.kmt-modal button.wpforms-submit,
.kmt-modal .wpforms-submit,
.kmt-fallback-form .kmt-button {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 5px;
    background: #005bfa !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.kmt-modal input.wpcf7-submit:hover,
.kmt-modal button.wpforms-submit:hover,
.kmt-modal .wpforms-submit:hover,
.kmt-fallback-form .kmt-button:hover {
    background: #004fd8 !important;
    color: #ffffff !important;
}

#kmt-modal-consult {
    text-align: center;
}

.kmt-modal__phone {
    justify-content: center;
    gap: 10px;
    margin: 4px auto 0;
}

.kmt-modal__phone-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: currentColor;
    -webkit-mask: url("assets/icons/phone-footer.png") center / contain no-repeat;
    mask: url("assets/icons/phone-footer.png") center / contain no-repeat;
}

@media (max-width: 768px) {
    .kmt-modal-layer {
        padding: 16px;
    }

    .kmt-modal {
        padding: 28px 20px 22px;
        border-radius: 8px;
    }

    .kmt-modal h2 {
        font-size: 23px;
    }
}


@media (min-width: 1025px) {
    .kmt-home-hero {
        position: relative;
        padding-top: 0 !important;
    }

    .kmt-home-hero__grid {
        position: relative;
    }

    .kmt-home-hero__image {
        top: -28px !important;
        height: calc(338px + 28px) !important;
        min-height: calc(338px + 28px) !important;
    }

    .kmt-home-hero__image picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .kmt-home-hero__image img {
        display: block;
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        object-position: right center;
    }
}

.kmt-product-single-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.kmt-product-single-card__media {
    padding-top: 70px;
}

.kmt-product-single-card__image {
    height: 230px;
    overflow: hidden;
    background: var(--color-light);
}

.kmt-product-single-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kmt-product-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.kmt-product-single-tags span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: #ffffff;
    color: #4b5a70;
    font-size: 12px;
    line-height: 1;
}

@media (max-width: 768px) {
    .kmt-product-single-card {
        grid-template-columns: 1fr;
    }

    .kmt-product-single-card__media {
        padding-top: 0;
    }

    .kmt-product-single-card__image {
        height: 220px;
    }
    
    
    .kmt-product-single-card{
        display:flex;
        flex-direction:column;
    }

    .kmt-product-single-card__body{
        order:1;
    }

    .kmt-product-single-card__media{
        order:2;
        margin:24px 0;
    }
}

.kmt-product-single {
    padding: 26px 0 58px;
}

.kmt-product-single__breadcrumbs {
    margin-bottom: 28px;
    font-size: 12px;
}

.kmt-product-single__breadcrumbs a,
.kmt-product-single__breadcrumbs span {
    font-size: 12px;
}

.kmt-product-card__title{
    font-weight:400;
}

.kmt-product-card__title a{
    font-weight:400;
}

.kmt-product-card__title{
    margin:0 0 14px;
}

.kmt-card-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.kmt-product-card__title,
.kmt-product-card__title a,
.kmt-products-grid .kmt-product-card h2,
.kmt-products-grid .kmt-product-card h2 a {
    font-weight: 400 !important;
}

.kmt-product-card .kmt-card-tags {
    margin-top: 12px;
}

.kmt-product-single-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 0 28px;
    align-items: start;
}

.kmt-product-single-card__title {
    grid-column: 2;
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.15;
    color: var(--color-text);
}

.kmt-product-single-card__media {
    grid-column: 1;
}

.kmt-product-single-card__content {
    grid-column: 2;
}

.kmt-product-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.kmt-product-single-card__button {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .kmt-product-single-card {
        display: flex;
        flex-direction: column;
    }

    .kmt-product-single-card__title {
        order: 1;
        margin-bottom: 18px;
        font-size: 26px;
    }

    .kmt-product-single-card__media {
        order: 2;
        width: 100%;
        margin-bottom: 22px;
    }

    .kmt-product-single-card__content {
        order: 3;
    }

    .kmt-product-single-card__button {
        width: 100%;
    }
}

.kmt-product-single-card__image {
    border-radius: 8px;
    overflow: hidden;
}

.kmt-product-single-card__image img {
    border-radius: 8px;
}

.kmt-product-single-card {
    align-items: start;
}

.kmt-product-single-card__title {
    grid-column: 2;
    grid-row: 1;
}

.kmt-product-single-card__media {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.kmt-product-single-card__content {
    grid-column: 2;
    grid-row: 2;
}