:root {
    --kt-red: #d71920;
    --kt-red-dark: #a90f15;
    --kt-ink: #101114;
    --kt-graphite: #1b1d22;
    --kt-steel: #68707c;
    --kt-line: #e6e8ec;
    --kt-paper: #f5f5f2;
    --kt-white: #ffffff;
    --kt-radius: 22px;
    --kt-shadow: 0 24px 70px rgba(16, 17, 20, 0.14);
    --kt-font-body: "transducer-kostka", sans-serif;
    --kt-font-display: "transducer-kostka", sans-serif;
    --kt-font-regular: "transducer-regular", sans-serif;
    --kt-font-medium: "transducer-medium", sans-serif;
    --kt-font-bold: "transducer-bold", sans-serif;
    --kt-font-black: "transducer-black", sans-serif;
    --kt-weight-regular: 400;
    --kt-weight-medium: 500;
    --kt-weight-bold: 600;
    --kt-weight-black: 900;
}

body.kt-page {
    color: var(--kt-ink);
    font-family: var(--kt-font-body);
    font-weight: var(--kt-weight-regular);
    font-synthesis: none;
    text-rendering: geometricPrecision;
    font-feature-settings: "kern" 1, "locl" 1;
    background: var(--kt-white);
}

body.kt-page input,
body.kt-page textarea,
body.kt-page select,
body.kt-page button {
    font-family: inherit;
    font-synthesis: none;
}

.kt-page h1,
.kt-page h2,
.kt-page h3,
.kt-page .title {
    font-family: var(--kt-font-display);
    font-weight: var(--kt-weight-bold);
    font-synthesis: none;
    font-feature-settings: "kern" 1, "locl" 1;
    letter-spacing: -0.01em;
    color: var(--kt-ink);
}

.kt-mainbar {
    background: rgba(16, 17, 20, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kt-nav-shell {
    max-width: 1500px;
}

.kt-logo img {
    max-height: 46px;
    object-fit: contain;
}

.kt-nav > li > a {
    font-weight: var(--kt-weight-bold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.kt-nav-cta > a {
    background: var(--kt-red);
    color: #fff !important;
    border-radius: 999px;
    margin-left: 16px;
    padding-inline: 22px !important;
}

.kt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--kt-red);
    font-size: 12px;
    font-weight: var(--kt-weight-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.kt-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.kt-hero {
    position: relative;
    padding: 170px 0 58px;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(12, 13, 17, 0.94) 0%, rgba(12, 13, 17, 0.78) 45%, rgba(215, 25, 32, 0.24) 100%),
        url('/images/banner/kt-hero.jpg') center/cover no-repeat;
}

.kt-hero::after,
.kt-subhero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 72px 72px;
}

.kt-hero .container,
.kt-subhero .container {
    position: relative;
    z-index: 2;
}

.kt-hero h1,
.kt-subhero h1 {
    color: #fff;
    font-size: clamp(44px, 5.9vw, 88px);
    line-height: 1;
    font-weight: var(--kt-weight-bold);
    max-width: 980px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.kt-hero p,
.kt-subhero p {
    max-width: 720px;
    color: rgba(255,255,255,.84);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.kt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.kt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: var(--kt-weight-bold);
    text-decoration: none !important;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.kt-button:hover {
    transform: translateY(-2px);
}

.kt-button-primary {
    background: var(--kt-red);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(215, 25, 32, .16);
}

.kt-button-primary:hover {
    background: var(--kt-red-dark);
    box-shadow: 0 12px 26px rgba(169, 15, 21, .18);
}

.kt-button-ghost {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(255,255,255,.08);
}

.kt-button-light {
    color: var(--kt-red) !important;
    background: #fff;
}

.kt-hero-panel {
    margin-left: auto;
    max-width: 390px;
    padding: 28px;
    border-radius: var(--kt-radius);
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
}

.kt-hero-panel strong,
.kt-hero-panel span,
.kt-hero-panel a {
    display: block;
    color: #fff;
}

.kt-hero-panel strong {
    font-size: 26px;
    font-family: var(--kt-font-display);
    font-weight: var(--kt-weight-bold);
    text-transform: uppercase;
}

.kt-hero-panel a {
    margin-top: 20px;
    color: #fff !important;
    font-weight: var(--kt-weight-bold);
}

.kt-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.kt-trust-strip div {
    padding: 22px;
    border-right: 1px solid rgba(255,255,255,.16);
}

.kt-trust-strip div:last-child {
    border-right: 0;
}

.kt-trust-strip strong {
    display: block;
    color: #fff;
    font: var(--kt-weight-medium) 38px/1 var(--kt-font-display);
}

.kt-trust-strip span {
    color: rgba(255,255,255,.76);
    font-weight: 700;
}

.kt-section {
    padding: 96px 0;
}

.kt-section-muted {
    background: var(--kt-paper);
}

.kt-section-dark {
    background: var(--kt-ink);
    color: #fff;
}

.kt-section-dark h2,
.kt-section-dark h3 {
    color: #fff;
}

.kt-section-head {
    margin-bottom: 44px;
}

.kt-section-head h2,
.kt-section h2 {
    font-size: clamp(34px, 3.6vw, 56px);
    line-height: 1.04;
    font-weight: var(--kt-weight-bold);
    text-transform: uppercase;
}

.kt-section-head-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 34px;
    align-items: end;
}

.kt-section-head p,
.kt-lead {
    color: var(--kt-steel);
    font-size: 18px;
    line-height: 1.7;
}

.kt-section-dark .kt-section-head p {
    color: rgba(255,255,255,.72);
}

.kt-swiper-wrap {
    padding: 0 20px 34px;
}

.kt-tech-slide {
    min-height: 420px;
    border-radius: var(--kt-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--kt-shadow);
}

.kt-tech-slide a {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    padding: 28px;
    color: #fff !important;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(16,17,20,.05), rgba(16,17,20,.88));
}

.kt-tech-slide span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font: var(--kt-weight-bold) 24px/1.05 var(--kt-font-display);
    text-transform: uppercase;
}

.kt-tech-slide strong {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,.78);
}

.kt-feature-grid,
.kt-process-grid,
.kt-contact-grid,
.kt-related-grid {
    display: grid;
    gap: 22px;
}

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

.kt-feature-grid > div,
.kt-process-grid article,
.kt-contact-grid article,
.kt-side-panel,
.kt-benefit-card,
.kt-form-card,
.kt-address-card,
.kt-contact-aside {
    border: 1px solid var(--kt-line);
    border-radius: var(--kt-radius);
    background: #fff;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(16,17,20,.06);
}

.kt-feature-grid i {
    color: var(--kt-red);
    font-size: 28px;
    margin-bottom: 16px;
}

.kt-feature-grid strong,
.kt-feature-grid span {
    display: block;
}

.kt-feature-grid strong {
    font-weight: var(--kt-weight-bold);
    margin-bottom: 6px;
}

.kt-feature-grid span {
    color: var(--kt-steel);
}

.kt-image-card {
    margin: 0;
    border-radius: var(--kt-radius);
    overflow: hidden;
    box-shadow: var(--kt-shadow);
    background: var(--kt-ink);
}

.kt-image-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.kt-image-card-slideshow {
    position: relative;
}

.kt-image-card-slides {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, rgba(16,17,20,.22), rgba(16,17,20,.08));
}

.kt-image-card-slides img {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    transition: opacity .95s ease;
    will-change: opacity;
}

.kt-image-card-slides img.is-active {
    opacity: 1;
}

.kt-image-card-meta {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.kt-image-card-ring-wrap {
    position: absolute;
    top: 16px;
    right: 16px;
}

.kt-image-card-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    background: rgba(7,10,13,.38);
}

.kt-image-card-ring svg {
    display: block;
    width: 21px;
    height: 21px;
    transform: rotate(-90deg);
}

.kt-image-card-ring-track,
.kt-image-card-ring-progress {
    fill: none;
    stroke-width: 2.6;
}

.kt-image-card-ring-track {
    stroke: rgba(255,255,255,.2);
}

.kt-image-card-ring-progress {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 97.4;
    stroke-dashoffset: 0;
    stroke-width: 3.6;
}

.kt-image-card-dots-wrap {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
}

.kt-image-card-dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    background: rgba(7,10,13,.34);
}

.kt-image-card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.34);
    box-shadow: 0 0 0 1px rgba(255,255,255,.08);
    transition: transform .25s ease, background-color .25s ease;
}

.kt-image-card-dots span.is-active {
    background: #fff;
    transform: scale(1.45);
}

.kt-image-card figcaption {
    color: #fff;
    padding: 18px 22px;
    font-weight: var(--kt-weight-bold);
}

.kt-process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.kt-process-grid article span,
.kt-row-index {
    display: inline-flex;
    color: var(--kt-red);
    font: var(--kt-weight-medium) 34px/1 var(--kt-font-display);
    margin-bottom: 18px;
}

.kt-process-grid h3,
.kt-contact-grid h3 {
    font-size: 26px;
    line-height: 1.14;
    font-weight: var(--kt-weight-bold);
    text-transform: uppercase;
}

.kt-process-grid p,
.kt-contact-grid p {
    color: var(--kt-steel);
}

.kt-cta-band {
    color: #fff;
    background: linear-gradient(120deg, var(--kt-red) 0%, #7b080d 55%, var(--kt-ink) 100%);
}

.kt-cta-band h2,
.kt-cta-band .kt-kicker {
    color: #fff;
}

.kt-subhero {
    position: relative;
    padding: 150px 0 90px;
    color: #fff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.kt-subhero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(16,17,20,.94), rgba(16,17,20,.66));
}

.kt-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
}

.kt-breadcrumb li,
.kt-breadcrumb a,
.kt-breadcrumb span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: var(--kt-weight-medium);
}

.kt-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255,255,255,.38);
}

.kt-tech-list {
    display: grid;
    gap: clamp(34px, 4vw, 52px);
}

.kt-tech-row {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    overflow: hidden;
    border-radius: calc(var(--kt-radius) + 4px);
    background: #fff;
    box-shadow: 0 18px 48px rgba(16, 17, 20, 0.10);
}

.kt-tech-row.is-reversed {
    grid-template-columns: 1.14fr .86fr;
}

.kt-tech-row.is-reversed .kt-tech-row-media {
    order: 2;
}

.kt-tech-row-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.kt-tech-row-body {
    padding: clamp(26px, 4vw, 44px);
}

.kt-tech-row-body i {
    color: var(--kt-red);
    font-size: 26px;
    margin-bottom: 14px;
}

.kt-tech-row-body h2 {
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: var(--kt-weight-bold);
    line-height: 1.06;
    text-transform: uppercase;
}

.kt-tech-row-body p {
    color: var(--kt-steel);
    line-height: 1.62;
}

.kt-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 18px 0 24px;
    list-style: none;
}

.kt-chip-list li {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--kt-paper);
    color: var(--kt-graphite);
    font-weight: var(--kt-weight-medium);
    font-size: 13px;
}

.kt-chip-list-large li {
    font-size: 15px;
}

.kt-section-muted .kt-chip-list li {
    background: #fff;
    border: 1px solid rgba(16,17,20,.08);
    box-shadow: 0 8px 20px rgba(16,17,20,.05);
}

.kt-benefit-card {
    position: sticky;
    top: 110px;
    background: var(--kt-ink);
    color: #fff;
    border-color: rgba(255,255,255,.12);
}

.kt-benefit-card h2,
.kt-benefit-card span,
.kt-benefit-card a {
    color: #fff;
}

.kt-benefit-card h2 {
    font-size: clamp(25px, 2.2vw, 34px);
    line-height: 1.12;
}

.kt-benefit-card span {
    color: var(--kt-red);
    font-weight: var(--kt-weight-bold);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.kt-text-link {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    font-weight: var(--kt-weight-bold);
    line-height: 1;
    text-decoration: none !important;
}

.kt-text-link i {
    line-height: 1;
    transform: translateY(1px);
}

.kt-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px;
}

.kt-gallery-item:first-child {
    grid-row: span 2;
}

.kt-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: var(--kt-radius);
    background: var(--kt-ink);
}

.kt-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: transform .28s ease;
}

.kt-gallery-item:hover img {
    transform: scale(1.04);
}

.kt-param-blocks {
    display: grid;
    gap: 18px;
}

.kt-param-blocks article {
    border-left: 4px solid var(--kt-red);
    padding: 24px;
    background: var(--kt-paper);
}

.kt-param-blocks h3 {
    font-size: 30px;
    text-transform: uppercase;
}

.kt-param-list,
.kt-side-panel ul,
.kt-contact-aside ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.kt-param-list li,
.kt-side-panel li,
.kt-contact-aside li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--kt-line);
    color: var(--kt-graphite);
    font-weight: 700;
}

.kt-param-list li,
.kt-side-panel li {
    font-weight: var(--kt-weight-regular);
}

.kt-side-panel li {
    align-items: center;
}

.kt-side-panel li i {
    flex: 0 0 16px;
    width: 16px;
    color: var(--kt-red);
    font-size: 12px;
    line-height: 1;
    text-align: center;
}

.kt-param-list li::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--kt-red);
}

.kt-side-panel h3,
.kt-contact-aside h2,
.kt-address-card h2 {
    font-size: 36px;
    text-transform: uppercase;
}

.kt-faq-list {
    display: grid;
    gap: 14px;
}

.kt-faq-list details {
    border: 1px solid var(--kt-line);
    border-radius: 16px;
    background: #fff;
    padding: 20px 22px;
}

.kt-faq-list summary {
    cursor: pointer;
    font-weight: var(--kt-weight-bold);
}

.kt-faq-list p {
    color: var(--kt-steel);
    margin: 12px 0 0;
}

.kt-form-card p {
    color: var(--kt-steel);
}

.kt-form-card-large {
    display: grid;
    gap: 22px;
}

.kt-form-card-large > .kt-kicker,
.kt-form-card-large > h2,
.kt-form-card-large > p {
    margin: 0;
}

.kt-form-feedback {
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    margin: -2px 0 2px;
}

.kt-form-feedback-success {
    color: #0f5132;
    background: #d1f4df;
    border: 1px solid #9ed8b3;
}

.kt-form-feedback-error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #efb6bc;
}

.kt-form,
.kt-form-grid {
    display: grid;
    gap: 16px;
}

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

.kt-form label {
    display: grid;
    gap: 8px;
    color: var(--kt-graphite);
    font-weight: var(--kt-weight-bold);
}

.kt-form input,
.kt-form textarea {
    width: 100%;
    border: 1px solid var(--kt-line);
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--kt-ink);
    background: #fff;
    font: inherit;
}

.kt-form input:focus,
.kt-form textarea:focus {
    outline: 2px solid rgba(215,25,32,.24);
    border-color: var(--kt-red);
}

.kt-form-note {
    color: var(--kt-steel);
    font-size: 13px;
    font-weight: 600;
}

.kt-check {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.kt-form-captcha {
    display: flex;
    justify-content: flex-start;
}

.kt-check input[type="checkbox"] {
    position: static;
    opacity: 1;
    appearance: auto;
    -webkit-appearance: checkbox;
    width: 18px;
    height: 18px;
    margin: 4px 0 0;
    padding: 0;
    border: 0;
    border-radius: 4px;
    accent-color: var(--kt-red);
}

.kt-related-grid {
    grid-template-columns: repeat(3, 1fr);
}

.kt-related-card {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    border-radius: var(--kt-radius);
    color: #fff !important;
    text-decoration: none !important;
}

.kt-related-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kt-related-card span {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
    font: var(--kt-weight-bold) 26px/1.05 var(--kt-font-display);
    text-transform: uppercase;
}

.kt-related-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(16,17,20,.88));
}

.kt-contact-grid {
    grid-template-columns: repeat(3, 1fr);
}

.kt-contact-grid article span {
    color: var(--kt-red);
    font-weight: var(--kt-weight-bold);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.kt-contact-grid a,
.kt-footer a {
    color: inherit;
}

.kt-contact-aside li i {
    color: var(--kt-red);
    margin-top: 3px;
}

.kt-map,
.kt-address-card {
    min-height: 430px;
    border-radius: var(--kt-radius);
    overflow: hidden;
    box-shadow: var(--kt-shadow);
}

.kt-footer,
.kt-footer h3,
.kt-footer p {
    color: #fff;
}

.kt-footer h3 {
    font-size: 28px;
    text-transform: uppercase;
}

.kt-mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 999;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kt-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 14px;
    color: #fff;
    background: var(--kt-red);
    font-weight: var(--kt-weight-bold);
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(16,17,20,.2);
}

@media (max-width: 1199px) {
    .kt-process-grid,
    .kt-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .kt-hero,
    .kt-subhero {
        padding-top: 126px;
    }

    .kt-section {
        padding: 72px 0;
    }

    .kt-section-head-split,
    .kt-tech-row,
    .kt-tech-row.is-reversed,
    .kt-trust-strip,
    .kt-gallery-grid,
    .kt-related-grid {
        grid-template-columns: 1fr;
    }

    .kt-tech-row.is-reversed .kt-tech-row-media {
        order: 0;
    }

    .kt-hero-panel {
        margin: 34px 0 0;
        max-width: none;
    }

    .kt-benefit-card {
        position: static;
    }
}

@media (max-width: 767px) {
    .kt-hero h1,
    .kt-subhero h1 {
        font-size: 46px;
    }

    .kt-feature-grid,
    .kt-process-grid,
    .kt-contact-grid,
    .kt-form-grid {
        grid-template-columns: 1fr;
    }

    .kt-trust-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .kt-mobile-cta {
        display: grid;
    }

    .kt-page {
        padding-bottom: 76px;
    }

    .kt-nav-cta {
        display: none;
    }
}

/* Homepage polish pass: fixes visible issues from first browser review. */
.kt-header,
.kt-header .sticky-header,
.kt-header .main-bar-wraper,
.kt-header .kt-mainbar {
    min-height: 70px;
}

.kt-nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1360px;
    min-height: 70px;
    padding-inline: 28px;
    margin-inline: auto;
}

.kt-header .logo-header,
.kt-header .header-nav,
.kt-header .navbar-nav,
.kt-header .kt-nav,
.kt-header .kt-nav > li,
.kt-header .kt-nav > li > a {
    float: none !important;
}

.kt-logo {
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
}

.kt-logo a {
    display: inline-flex;
    align-items: center;
}

.kt-logo img {
    width: 190px;
    max-height: 34px;
}

.kt-header .header-nav {
    display: flex !important;
    align-items: stretch;
    justify-content: flex-end;
    width: auto;
    min-height: 70px;
}

.kt-nav {
    display: flex;
    align-items: stretch;
    min-height: 70px;
    margin: 0;
}

.kt-nav > li {
    display: flex;
    align-items: stretch;
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.kt-nav > li:last-child {
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.kt-nav > li > a {
    display: flex !important;
    align-items: center;
    min-height: 70px;
    padding: 0 24px !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.kt-nav > li.active > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--kt-red);
}

.kt-nav > li > a {
    position: relative;
    transition: color .18s ease, background-color .18s ease;
}

.kt-nav > li > a:hover,
.kt-nav > li > a:focus-visible {
    background: rgba(255,255,255,.06);
    color: #fff !important;
}

.kt-nav > li:not(.active) > a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 2px;
    background: var(--kt-red);
    opacity: 0;
    transform: scaleX(.72);
    transform-origin: center;
    transition: opacity .18s ease, transform .18s ease;
}

.kt-nav > li:not(.active) > a:hover::after,
.kt-nav > li:not(.active) > a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.kt-nav-cta > a {
    min-height: 70px;
    border-radius: 0;
    margin-left: 0;
    padding-inline: 28px !important;
}

.kt-page-home .kt-hero {
    padding: 145px 0 52px;
}

.kt-page-home .kt-hero h1 {
    font-size: clamp(40px, 4.7vw, 70px);
    line-height: 1.04;
    max-width: 820px;
    margin-bottom: 22px;
}

.kt-page-home .kt-hero p {
    font-size: clamp(17px, 1.45vw, 21px);
    max-width: 680px;
}

.kt-page-home .kt-trust-strip {
    margin-top: 48px;
}

.kt-tech-slider-section {
    padding-top: 76px;
    padding-bottom: 72px;
}

.kt-tech-slider-section .kt-section-head {
    margin-bottom: 34px;
    padding-inline: clamp(14px, 3vw, 42px);
}

.kt-swiper-wrap {
    padding: 0 clamp(14px, 3vw, 42px);
}

.kt-tech-slide,
.kt-tech-slide a {
    min-height: 310px;
}

.kt-tech-slide a {
    padding: 24px;
    gap: 12px;
}

.kt-tech-slide span {
    font-size: 24px;
}

.kt-tech-slide strong {
    font-size: 14px;
}

.kt-swiper-wrap .swiper-button-next,
.kt-swiper-wrap .swiper-button-prev {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    background: rgba(215,25,32,.92) !important;
    box-shadow: 0 18px 36px rgba(0,0,0,.28);
    transition: transform .18s ease, background .18s ease;
}

.kt-swiper-wrap .swiper-button-next:hover,
.kt-swiper-wrap .swiper-button-prev:hover {
    transform: translateY(-1px) scale(1.04);
    background: var(--kt-red-dark) !important;
}

.kt-swiper-wrap .swiper-button-next::after,
.kt-swiper-wrap .swiper-button-prev::after {
    color: #fff;
    font-size: 18px;
    font-weight: var(--kt-weight-bold);
}

.kt-swiper-wrap .swiper-button-prev {
    left: clamp(18px, 3vw, 44px);
}

.kt-swiper-wrap .swiper-button-next {
    right: clamp(18px, 3vw, 44px);
}

.kt-mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.kt-mini-gallery a {
    position: relative;
    display: block;
    min-height: 128px;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(16,17,20,.12);
}

.kt-mini-gallery img {
    width: 100%;
    height: 100%;
    min-height: 128px;
    object-fit: cover;
    transition: transform .25s ease;
}

.kt-mini-gallery a:hover img {
    transform: scale(1.05);
}

.kt-mini-gallery a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,17,20,.05), rgba(16,17,20,.74));
}

.kt-mini-gallery span {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 2;
    font: var(--kt-weight-bold) 16px/1 var(--kt-font-display);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.kt-footer-cta {
    padding: 58px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.kt-footer-cta h2 {
    font-size: clamp(34px, 3.2vw, 52px);
}

.kt-tech-detail-cta p {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.6;
}

.kt-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(215, 25, 32, .18), transparent 28%),
        linear-gradient(135deg, #101114 0%, #151a1f 55%, #07080a 100%);
}

.kt-footer .bg-black-1 {
    background: transparent !important;
}

.kt-footer .p-tb60 {
    padding-top: 54px;
    padding-bottom: 48px;
}

.kt-footer-grid {
    align-items: stretch !important;
}

.kt-footer .footer-logo,
.kt-footer-contact,
.kt-footer .widget-link {
    position: relative;
    z-index: 2;
}

.kt-footer .footer-logo img {
    width: 210px;
    margin-bottom: 16px;
}

.kt-footer p {
    max-width: 430px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
}

.kt-footer-contact {
    padding-left: 34px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.kt-footer-contact h3 {
    color: #fff;
    margin-bottom: 18px;
}

.kt-footer .widget-link ul {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
    padding: 0;
    margin: 0 0 18px;
}

.kt-footer .widget-link li {
    padding: 0;
    margin: 0;
}

.kt-footer .widget-link a {
    color: rgba(255,255,255,.78) !important;
    font-weight: var(--kt-weight-medium);
}

.kt-footer .site-button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    color: #fff !important;
    background: rgba(255,255,255,.06);
}

@media (max-width: 991px) {
    .kt-nav-shell {
        min-height: 68px;
    }

    .kt-header .header-nav {
        display: none !important;
        width: 100%;
        min-height: 0;
    }

    .kt-header .header-nav.show,
    .kt-header .header-nav.collapsing {
        display: block !important;
    }

    .kt-nav {
        display: block;
        min-height: 0;
    }

    .kt-nav > li,
    .kt-nav > li:last-child {
        display: block;
        border: 0;
    }

    .kt-nav > li > a,
    .kt-nav-cta > a {
        min-height: 48px;
        padding: 14px 18px !important;
    }

    .kt-page-home .kt-hero h1 {
        font-size: clamp(40px, 8.8vw, 62px);
    }

    .kt-tech-slide,
    .kt-tech-slide a {
        min-height: 280px;
    }

    .kt-footer-contact {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .kt-nav-shell {
        padding-inline: 18px;
    }

    .kt-logo img {
        width: 162px;
    }

    .kt-page-home .kt-hero {
        padding-top: 118px;
    }

    .kt-page-home .kt-hero h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .kt-mini-gallery {
        grid-template-columns: 1fr;
    }

    .kt-mini-gallery a,
    .kt-mini-gallery img {
        min-height: 150px;
    }

    .kt-tech-slider-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .kt-tech-slide,
    .kt-tech-slide a {
        min-height: 260px;
    }
}

/* Final homepage corrections after browser review. */
.kt-page .page-content {
    padding-bottom: 0 !important;
}

.kt-header {
    position: relative;
    z-index: 1000;
    background: #101114;
}

.kt-mainbar {
    min-height: 70px;
    background: rgba(16, 17, 20, 0.98) !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.kt-nav-shell {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    max-width: 1360px;
    min-height: 70px;
    margin: 0 auto;
    padding: 0 28px;
}

.kt-logo {
    display: inline-flex !important;
    align-items: center;
    flex: 0 0 auto;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.kt-logo img {
    display: block;
    width: 190px;
    max-width: 190px;
    max-height: 34px;
    object-fit: contain;
}

.kt-header-nav {
    flex: 0 1 auto;
    justify-content: flex-end;
}

.kt-header-nav.collapse:not(.show) {
    display: flex;
}

.kt-nav {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 70px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.kt-nav > li {
    position: relative;
    display: flex;
    align-items: stretch;
    border-left: 1px solid rgba(255,255,255,.08);
}

.kt-nav > li:last-child {
    border-right: 1px solid rgba(255,255,255,.08);
}

.kt-nav > li > a {
    display: flex !important;
    align-items: center;
    min-height: 70px;
    padding: 0 24px !important;
    color: #fff !important;
    font: var(--kt-weight-bold) 13px/1 var(--kt-font-body);
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.kt-nav > li.active > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--kt-red);
}

.kt-nav > li > .sub-menu {
    top: 100%;
    left: 0;
}

.kt-nav-cta > a {
    min-height: 70px;
    margin: 0 !important;
    padding-inline: 28px !important;
    background: var(--kt-red);
}

.kt-nav-toggle {
    display: none;
    border: 0;
    background: transparent;
}

.kt-nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.kt-tech-slider-section {
    padding-top: 58px !important;
    padding-bottom: 66px !important;
}

.kt-tech-slider-section .kt-section-head {
    margin-bottom: 28px;
}

.kt-swiper-wrap {
    position: relative;
    padding: 0 clamp(16px, 3vw, 42px) !important;
}

.kt-swiper-wrap .swiper {
    overflow: hidden;
    padding: 0;
}

.kt-tech-slide,
.kt-tech-slide a {
    min-height: 420px;
}

.kt-tech-slide a {
    padding: 28px;
    gap: 18px;
}

.kt-tech-slide span {
    font-size: 24px;
}

.kt-tech-slide strong {
    font-size: 15px;
}

.kt-swiper-wrap .swiper-button-next,
.kt-swiper-wrap .swiper-button-prev {
    top: 50%;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 50%;
    background: rgba(215,25,32,.94) !important;
}

.kt-footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 84% 16%, rgba(215,25,32,.16), transparent 28%), linear-gradient(135deg, #101114 0%, #15181d 58%, #08090b 100%);
}

.kt-footer > .container {
    padding-top: 54px;
    padding-bottom: 48px;
}

.kt-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) minmax(240px, .8fr) minmax(220px, .75fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.kt-footer-brand img {
    display: block;
    margin-bottom: 18px;
}

.kt-footer p,
.kt-footer address,
.kt-footer span,
.kt-footer a {
    color: rgba(255,255,255,.82);
}

.kt-footer p {
    max-width: 460px;
    margin: 0 0 14px;
    line-height: 1.8;
}

.kt-footer-contact {
    display: grid;
    gap: 10px;
    padding-left: 34px;
    margin: 0;
    border-left: 1px solid rgba(255,255,255,.14);
    font-style: normal;
}

.kt-footer-contact strong {
    color: #fff;
    font: var(--kt-weight-bold) 27px/1 var(--kt-font-display);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.kt-footer-nav-social {
    display: grid;
    justify-items: end;
    gap: 22px;
}

.kt-footer-nav-block {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.kt-footer-nav-title {
    color: rgba(255,255,255,.52);
    font-size: 11px;
    font-weight: var(--kt-weight-bold);
    letter-spacing: .16em;
    text-transform: uppercase;
}

.kt-footer-links {
    display: grid;
    justify-items: end;
    gap: 10px;
}

.kt-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: var(--kt-weight-bold);
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.kt-footer-links a:hover,
.kt-footer-links a:focus {
    color: #fff;
    transform: translateX(-2px);
}

.kt-footer-socials {
    display: flex;
    gap: 12px;
}

.kt-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    color: #fff !important;
    background: rgba(255,255,255,.06);
    text-decoration: none;
}

@media (max-width: 991px) {
    .kt-nav-toggle {
        display: block;
    }

    .kt-header-nav.collapse:not(.show) {
        display: none;
    }

    .kt-header-nav {
        flex-basis: 100%;
        order: 3;
    }

    .kt-nav-shell {
        flex-wrap: wrap;
        padding: 0 18px;
    }

    .kt-nav {
        display: block;
        width: 100%;
        min-height: 0;
        padding: 12px 0 16px;
    }

    .kt-nav > li,
    .kt-nav > li:last-child {
        display: block;
        border: 0;
    }

    .kt-nav > li > a,
    .kt-nav-cta > a {
        min-height: 46px;
        padding: 14px 0 !important;
    }

    .kt-footer-grid {
        grid-template-columns: 1fr;
    }

    .kt-footer-contact {
        padding-left: 0;
        border-left: 0;
    }

    .kt-footer-nav-social {
        justify-items: start;
    }

    .kt-footer-nav-block {
        justify-items: start;
    }

    .kt-footer-links {
        justify-items: start;
    }
}
/* Header dropdown correction: keep technology submenu out of normal flow. */
.kt-header .kt-nav > li {
    position: relative;
}

.kt-header .kt-nav > li > .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1001;
    display: block !important;
    min-width: 260px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    background: #101114;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.kt-header .kt-nav > li:hover > .sub-menu,
.kt-header .kt-nav > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.kt-header .kt-nav .sub-menu li {
    display: block;
    padding: 0;
    margin: 0;
}

.kt-header .kt-nav .sub-menu a {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,.84) !important;
    font: var(--kt-weight-medium) 14px/1.25 var(--kt-font-body);
    letter-spacing: .02em;
    text-decoration: none !important;
    text-transform: none;
    white-space: nowrap;
}

.kt-header .kt-nav .sub-menu a:hover,
.kt-header .kt-nav .sub-menu a:focus {
    color: #fff !important;
    background: rgba(215,25,32,.16);
}

.kt-header .kt-nav > li > a i {
    margin-left: 6px;
    font-size: 11px;
}

@media (max-width: 991px) {
    .kt-header .kt-nav > li > .sub-menu {
        position: static !important;
        min-width: 0;
        padding: 4px 0 8px 14px;
        margin-top: 0;
        border-left: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none !important;
    }

    .kt-header .kt-nav .sub-menu a {
        padding: 8px 0;
        color: rgba(255,255,255,.72) !important;
    }

    .kt-header .kt-nav > li.has-submenu > a {
        justify-content: space-between;
    }

    .kt-header .kt-nav > li > a i {
        transition: transform .18s ease;
    }

    .kt-header .kt-nav > li.has-submenu.is-open > .sub-menu {
        display: block !important;
    }

    .kt-header .kt-nav > li.has-submenu.is-open > a i {
        transform: rotate(180deg);
    }
}

/* Contact page polish. */
.kt-contact-form-section {
    background:
        linear-gradient(180deg, var(--kt-paper) 0%, #fff 100%);
}

.kt-contact-sticky-col {
    align-self: stretch;
}

.kt-contact-sticky-panel {
    position: sticky;
    top: 96px;
    min-height: min(100%, 640px);
    display: flex;
    flex-direction: column;
}

.kt-contact-sticky-panel h2 {
    margin-bottom: 18px;
}

.kt-contact-sticky-panel ul {
    margin-bottom: 24px;
}

.kt-contact-sticky-panel li {
    font-weight: var(--kt-weight-regular);
}

.kt-contact-sticky-panel .kt-button {
    margin-top: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.kt-contact-directory {
    position: relative;
    padding-bottom: 70px;
    background: #fff;
}

.kt-contact-directory::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245,245,242,0), var(--kt-paper));
}

.kt-contact-directory .container {
    position: relative;
    z-index: 1;
}

.kt-contact-directory .kt-section-head {
    margin-bottom: 30px;
}

.kt-contact-grid {
    gap: 16px;
}

.kt-contact-grid article {
    display: grid;
    gap: 10px;
    min-height: auto;
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(16,17,20,.045);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.kt-contact-grid article:hover {
    transform: translateY(-2px);
    border-color: rgba(215,25,32,.22);
    box-shadow: 0 18px 38px rgba(16,17,20,.08);
}

.kt-contact-grid article span {
    margin-bottom: 0;
    font-size: 11px;
    line-height: 1.35;
}

.kt-contact-grid h3 {
    margin: 0 0 6px;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1;
}

.kt-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--kt-steel) !important;
    font-weight: var(--kt-weight-regular);
    text-decoration: none !important;
}

.kt-contact-line i {
    width: 16px;
    color: var(--kt-red);
    font-size: 13px;
}

.kt-contact-line:hover {
    color: var(--kt-red) !important;
}

.kt-contact-location {
    padding-top: 74px;
    background:
        radial-gradient(circle at 14% 24%, rgba(215,25,32,.08), transparent 26%),
        var(--kt-paper);
}

.kt-contact-location .kt-address-card {
    background: var(--kt-ink);
    border-color: rgba(255,255,255,.1);
    color: #fff;
}

.kt-contact-location .kt-address-card h2,
.kt-contact-location .kt-address-card p,
.kt-contact-location .kt-address-card a {
    color: #fff;
}

.kt-contact-location .kt-address-card p {
    color: rgba(255,255,255,.78);
}

.kt-contact-location .kt-map {
    border: 1px solid rgba(16,17,20,.08) !important;
}

@media (max-width: 991px) {
    .kt-contact-sticky-panel {
        position: static;
        min-height: 0;
    }

    .kt-contact-sticky-panel .kt-button {
        margin-top: 22px;
    }

    .kt-contact-directory {
        padding-bottom: 54px;
    }
}
/* Contact spacing tuning. */
.kt-contact-form-section,
.kt-contact-directory,
.kt-contact-location {
    padding-top: 82px;
    padding-bottom: 82px;
}

.kt-contact-directory {
    padding-bottom: 82px;
}

.kt-contact-location {
    padding-top: 82px;
}

.kt-contact-sticky-panel {
    min-height: 0;
}

.kt-contact-sticky-panel ul {
    margin-bottom: 0;
}

.kt-contact-sticky-panel .kt-button {
    margin-top: 16px;
}

@media (max-width: 991px) {
    .kt-contact-form-section,
    .kt-contact-directory,
    .kt-contact-location {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

/* Homepage slider and why-section tuning. */
.kt-page-home .kt-swiper-wrap {
    padding-inline: clamp(58px, 5vw, 78px) !important;
}

.kt-page-home .kt-swiper-wrap .swiper-button-prev {
    left: clamp(10px, 1.8vw, 28px);
}

.kt-page-home .kt-swiper-wrap .swiper-button-next {
    right: clamp(10px, 1.8vw, 28px);
}

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

.kt-page-home .kt-feature-grid > div {
    padding: 22px 20px;
}

.kt-page-home .kt-feature-grid i {
    margin-bottom: 12px;
}

.kt-page-home .kt-image-card img {
    aspect-ratio: 16 / 9;
    max-height: 360px;
}

.kt-page-home .kt-image-card-slides {
    aspect-ratio: 16 / 9;
}

.kt-page-home .kt-image-card-meta {
    inset: 0;
}

.kt-page-home .kt-mini-gallery {
    display: none !important;
}

@media (max-width: 1199px) {
    .kt-page-home .kt-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .kt-page-home .kt-swiper-wrap {
        padding-inline: 18px !important;
    }

    .kt-page-home .kt-swiper-wrap .swiper-button-prev {
        left: 8px;
    }

    .kt-page-home .kt-swiper-wrap .swiper-button-next {
        right: 8px;
    }

    .kt-page-home .kt-feature-grid {
        grid-template-columns: 1fr;
    }

    .kt-page-home .kt-image-card-slides {
        aspect-ratio: 4 / 3;
        min-height: 260px;
    }

    .kt-image-card-meta {
        inset: 0;
    }

    .kt-image-card-ring-wrap {
        top: 12px;
        right: 12px;
    }

    .kt-image-card-ring {
        width: 30px;
        height: 30px;
    }

    .kt-image-card-ring svg {
        width: 19px;
        height: 19px;
    }

    .kt-image-card-dots-wrap {
        bottom: 12px;
    }

    .kt-image-card-dots {
        gap: 8px;
        padding: 7px 10px;
    }
}
/* Homepage slider and why-section tuning. */
.kt-page-home .kt-swiper-wrap {
    padding-inline: clamp(58px, 5vw, 78px) !important;
}

.kt-page-home .kt-swiper-wrap .swiper-button-prev {
    left: clamp(10px, 1.8vw, 28px);
}

.kt-page-home .kt-swiper-wrap .swiper-button-next {
    right: clamp(10px, 1.8vw, 28px);
}

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

.kt-page-home .kt-feature-grid > div {
    padding: 22px 20px;
}

.kt-page-home .kt-feature-grid i {
    margin-bottom: 12px;
}

.kt-page-home .kt-image-card img {
    aspect-ratio: 16 / 9;
    max-height: 360px;
}

.kt-page-home .kt-image-card-slides {
    aspect-ratio: 16 / 9;
}

.kt-page-home .kt-mini-gallery {
    display: none !important;
}

@media (max-width: 1199px) {
    .kt-page-home .kt-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .kt-page-home .kt-swiper-wrap {
        padding-inline: 18px !important;
    }

    .kt-page-home .kt-swiper-wrap .swiper-button-prev {
        left: 8px;
    }

    .kt-page-home .kt-swiper-wrap .swiper-button-next {
        right: 8px;
    }

    .kt-page-home .kt-feature-grid {
        grid-template-columns: 1fr;
    }

    .kt-page-home .kt-image-card-slides {
        aspect-ratio: 4 / 3;
        min-height: 260px;
    }
}
/* Homepage fine tuning: slider arrows closer and why cards below intro row. */
.kt-page-home .kt-tech-slider-section .kt-section-head {
    padding-inline: 0;
}

.kt-page-home .kt-slider-shell {
    width: min(100% - 30px, 1500px);
    margin-inline: auto;
}

.kt-page-home .kt-swiper-wrap {
    padding-inline: clamp(34px, 3.2vw, 48px) !important;
}

.kt-page-home .kt-swiper-wrap .swiper-button-prev {
    left: clamp(6px, 1vw, 14px);
}

.kt-page-home .kt-swiper-wrap .swiper-button-next {
    right: clamp(6px, 1vw, 14px);
}

.kt-page-home .kt-why-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.kt-page-home .kt-why-feature-grid > div {
    min-height: 150px;
}

@media (max-width: 1199px) {
    .kt-page-home .kt-why-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .kt-page-home .kt-swiper-wrap {
        padding-inline: 18px !important;
    }

    .kt-page-home .kt-swiper-wrap .swiper-button-prev {
        left: 8px;
    }

    .kt-page-home .kt-swiper-wrap .swiper-button-next {
        right: 8px;
    }

    .kt-page-home .kt-why-feature-grid {
        grid-template-columns: 1fr;
    }
}
/* Global H1 scale aligned with homepage hero. */
.kt-subhero h1,
.kt-tech-detail-hero h1 {
    font-size: clamp(40px, 4.7vw, 70px);
    line-height: 1.04;
    font-weight: var(--kt-weight-bold);
    max-width: 900px;
}

@media (max-width: 991px) {
    .kt-subhero h1,
    .kt-tech-detail-hero h1 {
        font-size: clamp(40px, 8.8vw, 62px);
    }
}

@media (max-width: 767px) {
    .kt-subhero h1,
    .kt-tech-detail-hero h1 {
        font-size: 40px;
        line-height: 1.08;
    }
}
/* Global scroll-to-top button. */
.kt-scrolltop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10020;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    background: var(--kt-red);
    box-shadow: 0 18px 38px rgba(16,17,20,.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease, background .18s ease;
}

.kt-scrolltop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.kt-scrolltop:hover,
.kt-scrolltop:focus {
    background: var(--kt-red-dark);
    color: #fff;
}

@media (max-width: 767px) {
    .kt-scrolltop {
        right: 18px;
        bottom: 84px;
        width: 44px;
        height: 44px;
    }
}

/* Final Transducer scale tuning. The corporate font is optically larger than
   the previous type pair, so these overrides keep the industrial feel without
   overwhelming the layout. */
body.kt-page {
    font-size: 15.5px;
    line-height: 1.62;
}

.kt-kicker {
    font-size: 11px;
    letter-spacing: .18em;
}

.kt-hero h1,
.kt-page-home .kt-hero h1,
.kt-subhero h1,
.kt-tech-detail-hero h1 {
    font-size: clamp(34px, 3.45vw, 54px);
    line-height: 1.08;
    max-width: 700px;
}

.kt-hero p,
.kt-subhero p,
.kt-page-home .kt-hero p {
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.55;
    max-width: 620px;
}

.kt-section-head h2,
.kt-section h2 {
    font-size: clamp(27px, 2.45vw, 40px);
    line-height: 1.1;
}

.kt-section .kt-benefit-card h2 {
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.13;
}

.kt-section-head p,
.kt-lead {
    font-size: 16px;
    line-height: 1.7;
}

.kt-page-home .kt-tech-slider-section .kt-section-head h2 {
    max-width: 680px;
}

.kt-tech-slide span {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
    line-height: 1.06;
    align-items: flex-start;
    max-width: 100%;
    white-space: normal;
}

.kt-tech-slide span i {
    flex: 0 0 auto;
    margin-top: 0;
    font-size: 18px;
}

.kt-tech-slide strong {
    font-size: 13px;
    line-height: 1.5;
}

.kt-tech-row-body h2 {
    font-size: clamp(27px, 2.45vw, 36px);
}

.kt-process-grid h3,
.kt-contact-grid h3 {
    font-size: 23px;
}

.kt-feature-grid strong,
.kt-form label,
.kt-chip-list li {
    font-size: 14px;
}

.kt-feature-grid span,
.kt-process-grid p,
.kt-contact-grid p {
    font-size: 14px;
    line-height: 1.58;
}

.kt-button,
.kt-nav > li > a,
.kt-header .kt-nav .sub-menu a {
    font-size: 13px;
}

.kt-trust-strip strong {
    font-size: 34px;
}

.kt-trust-strip span {
    font-size: 13px;
    font-weight: var(--kt-weight-regular);
}

.kt-footer p,
.kt-footer address,
.kt-footer span,
.kt-footer a {
    font-size: 14px;
    line-height: 1.65;
}

.kt-footer-contact strong {
    font-size: 24px;
}

@media (max-width: 991px) {
    .kt-hero h1,
    .kt-page-home .kt-hero h1,
    .kt-subhero h1,
    .kt-tech-detail-hero h1 {
        font-size: clamp(32px, 6.4vw, 44px);
    }
}

@media (max-width: 767px) {
    body.kt-page {
        font-size: 15px;
    }

    .kt-hero h1,
    .kt-page-home .kt-hero h1,
    .kt-subhero h1,
    .kt-tech-detail-hero h1 {
        font-size: 31px;
        line-height: 1.08;
    }

    .kt-section-head h2,
    .kt-section h2 {
        font-size: 27px;
    }
}

.kt-cert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.kt-cert-card,
.kt-policy-block {
    border: 1px solid rgba(16, 17, 20, .08);
    background: #fff;
    box-shadow: 0 20px 45px rgba(15, 20, 30, .08);
}

.kt-cert-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 28px;
    gap: 20px;
}

.kt-cert-card-top h3,
.kt-policy-block h3 {
    margin: 0 0 12px;
}

.kt-cert-card-top h3 {
    font-size: clamp(20px, 1.45vw, 26px);
    line-height: 1.14;
}

.kt-cert-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(162, 24, 30, .08);
    color: var(--kt-red-dark);
    font-size: 11px;
    font-weight: var(--kt-weight-bold);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kt-cert-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(16, 17, 20, .08);
    color: var(--kt-dark);
    background: #fff;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.kt-cert-link span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: var(--kt-weight-bold);
}

.kt-cert-link strong {
    color: rgba(16, 17, 20, .6);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.kt-cert-link:hover,
.kt-cert-link:focus {
    color: var(--kt-dark);
    border-color: rgba(162, 24, 30, .28);
    box-shadow: 0 14px 30px rgba(15, 20, 30, .08);
    transform: translateY(-1px);
}

.kt-cert-link.is-disabled {
    opacity: .58;
    cursor: default;
    background: rgba(16, 17, 20, .03);
}

.kt-cert-policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.kt-policy-block {
    padding: 28px;
    border-radius: 28px;
}

.kt-policy-block-wide {
    grid-column: 1 / -1;
}

.kt-policy-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.kt-policy-list li {
    position: relative;
    padding-left: 22px;
}

.kt-policy-list li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--kt-red);
}

.kt-cert-preview-frame {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #f3f4f6, #e5e7eb);
    aspect-ratio: 0.72;
}

.kt-cert-preview-frame object {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.kt-cert-cta h2 {
    max-width: 760px;
}

@media (prefers-reduced-motion: reduce) {
    .kt-image-card-slides img {
        transition: none;
    }

    .kt-image-card-dots span {
        transition: none;
    }
}

@media (max-width: 1199px) {
    .kt-cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kt-cert-policy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .kt-cert-grid {
        grid-template-columns: 1fr;
    }

    .kt-cert-card,
    .kt-policy-block {
        border-radius: 22px;
    }

    .kt-cert-card,
    .kt-policy-block {
        padding: 22px;
    }

    .kt-cert-link {
        padding: 13px 14px;
    }
}
