:root {
    --inkveo-navy: #06182b;
    --inkveo-navy-2: #0a2440;
    --inkveo-blue: #0759c7;
    --inkveo-blue-dark: #06479f;
    --inkveo-cyan: #20b9d6;
    --inkveo-green: #24c65a;
    --inkveo-text: #172032;
    --inkveo-muted: #5d6675;
    --inkveo-line: #e4e9ef;
    --inkveo-bg: #f5f7fa;
    --inkveo-white: #ffffff;
    --inkveo-shadow: 0 14px 36px rgba(3, 23, 43, .10);
    --inkveo-container: 1420px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    margin: 0;
    color: var(--inkveo-text);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.inkveo-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.inkveo-container { width: min(calc(100% - 48px), var(--inkveo-container)); margin-inline: auto; }

/* Top business information: one line, scrolls away normally. */
.inkveo-topbar {
    min-height: 36px;
    color: #fff;
    background: #031326;
    font-size: 12px;
    font-weight: 600;
}
.inkveo-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    gap: 20px;
    white-space: nowrap;
    overflow: hidden;
}
.inkveo-topbar__address {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    overflow: hidden;
}
.inkveo-topbar__address span:last-child { overflow: hidden; text-overflow: ellipsis; }
.inkveo-topbar__contacts { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.inkveo-topbar__contacts a:hover { color: #b8deff; }
.inkveo-contact-disabled { opacity: .65; cursor: default; }

/* Sticky navigation: fixed height, no JS height switching, no scroll bounce. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    background: #fff;
    box-shadow: 0 5px 18px rgba(3, 23, 43, .07);
}
body.admin-bar .site-header { top: 32px; }
.inkveo-mainnav { background: #fff; border-bottom: 1px solid var(--inkveo-line); }
.inkveo-mainnav__inner {
    display: flex;
    align-items: center;
    height: 68px;
    min-height: 68px;
    gap: 20px;
    overflow: visible;
}
.site-branding { flex: 0 0 auto; }
.custom-logo { display: block; max-height: 52px; width: auto; }
.inkveo-wordmark { display: flex; flex-direction: column; color: var(--inkveo-navy); line-height: 1; }
.inkveo-wordmark strong { font-size: 33px; letter-spacing: .4px; }
.inkveo-wordmark span { margin-top: 5px; font-size: 8px; font-weight: 700; }

.primary-navigation { flex: 1 1 auto; min-width: 0; overflow: visible; }
.primary-navigation .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.primary-navigation .menu > li { position: relative; }
.primary-navigation .menu > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 68px;
    padding: 0 clamp(8px, .75vw, 13px);
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.primary-navigation .menu > li > a:hover,
.primary-navigation .menu > .current-menu-item > a,
.primary-navigation .menu > .current-menu-ancestor > a {
    color: var(--inkveo-blue);
    border-bottom-color: var(--inkveo-blue);
}
.primary-navigation .menu-item-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}
.primary-navigation .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 150;
    min-width: 235px;
    margin: 0;
    padding: 9px 0;
    list-style: none;
    color: var(--inkveo-text);
    background: #fff;
    border: 1px solid var(--inkveo-line);
    border-top: 3px solid var(--inkveo-blue);
    border-radius: 0 0 7px 7px;
    box-shadow: var(--inkveo-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.primary-navigation .sub-menu li { display: block; }
.primary-navigation .sub-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.primary-navigation .sub-menu a:hover { color: var(--inkveo-blue); background: #f4f8fd; }
.primary-navigation .menu-item-has-children:hover > .sub-menu,
.primary-navigation .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.inkveo-submenu-toggle { display: none; }

.inkveo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 24px;
    color: #fff;
    background: var(--inkveo-blue);
    border: 1px solid var(--inkveo-blue);
    border-radius: 5px;
    font-weight: 700;
    line-height: 1.2;
    transition: background .18s ease, transform .18s ease;
}
.inkveo-button:hover { color: #fff; background: var(--inkveo-blue-dark); transform: translateY(-1px); }
.inkveo-button--small { min-height: 42px; padding-inline: 20px; white-space: nowrap; }
.inkveo-menu-toggle { display: none; width: 42px; height: 42px; padding: 8px; background: transparent; border: 0; }
.inkveo-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--inkveo-navy); }

.inkveo-quickbar { min-height: 32px; background: #fff; border-bottom: 1px solid var(--inkveo-line); }
.inkveo-quickbar--equipment { background: #fafbfd; }
.inkveo-quickbar__inner { display: flex; align-items: center; min-height: 32px; gap: 22px; }
.inkveo-quickbar strong { flex: 0 0 auto; width: 92px; color: var(--inkveo-blue-dark); font-size: 12px; }
.inkveo-quickbar__scroll { display: flex; align-items: center; flex: 1 1 auto; gap: clamp(17px, 2vw, 34px); min-width: 0; overflow: hidden; }
.inkveo-quickbar a { flex: 0 0 auto; font-size: 12.5px; white-space: nowrap; }
.inkveo-quickbar a:hover { color: var(--inkveo-blue); text-decoration: underline; text-underline-offset: 4px; }

/* Lightweight four-slide hero. */
.inkveo-hero-slider {
    position: relative;
    height: 470px;
    overflow: hidden;
    color: #fff;
    background: var(--inkveo-navy);
}
.inkveo-hero-track { position: relative; height: 100%; }
.inkveo-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 42%, rgba(27, 102, 158, .36), transparent 34%),
        linear-gradient(115deg, #031426 0%, #072544 58%, #0b3f69 100%);
    transition: opacity .38s ease, visibility .38s ease;
}
.inkveo-hero-slide:nth-child(2) { background: radial-gradient(circle at 78% 40%, rgba(31, 125, 182, .30), transparent 34%), linear-gradient(115deg, #06182b, #103b61); }
.inkveo-hero-slide:nth-child(3) { background: radial-gradient(circle at 76% 42%, rgba(49, 133, 168, .30), transparent 35%), linear-gradient(115deg, #061a2f, #0a3250); }
.inkveo-hero-slide:nth-child(4) { background: radial-gradient(circle at 76% 42%, rgba(30, 122, 120, .24), transparent 35%), linear-gradient(115deg, #06182b, #103b4d); }
.inkveo-hero-slide.is-active { z-index: 2; opacity: 1; visibility: visible; pointer-events: auto; }
.inkveo-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr);
    align-items: center;
    height: 100%;
    gap: 40px;
}
.inkveo-hero__copy { position: relative; z-index: 3; }
.inkveo-eyebrow { margin: 0 0 10px; color: var(--inkveo-blue); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.inkveo-hero-slide .inkveo-eyebrow { color: #9dd4ff; }
.inkveo-hero-slide h1 { max-width: 700px; margin: 0; font-size: clamp(37px, 4vw, 61px); line-height: 1.08; letter-spacing: -.025em; }
.inkveo-hero__subtitle { max-width: 650px; margin: 19px 0 0; color: rgba(255, 255, 255, .88); font-size: clamp(17px, 1.45vw, 21px); }
.inkveo-trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 25px 0; color: rgba(255, 255, 255, .88); font-size: 13px; }
.inkveo-hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.inkveo-text-link { color: var(--inkveo-blue); font-weight: 700; }
.inkveo-hero-slide .inkveo-text-link { color: #b8deff; }
.inkveo-hero__visual { display: flex; align-items: center; justify-content: center; min-height: 360px; }
.inkveo-hero-product-image { display: block; max-width: 100%; max-height: 395px; object-fit: contain; filter: drop-shadow(0 24px 26px rgba(0, 0, 0, .28)); }
.inkveo-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 42px;
    height: 54px;
    padding: 0;
    color: #fff;
    background: rgba(2, 18, 34, .35);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 5px;
    font-size: 35px;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}
.inkveo-hero-arrow:hover { background: rgba(7, 89, 199, .85); }
.inkveo-hero-arrow--prev { left: 16px; }
.inkveo-hero-arrow--next { right: 16px; }
.inkveo-hero-dots { position: absolute; z-index: 7; left: 50%; bottom: 18px; display: flex; gap: 9px; transform: translateX(-50%); }
.inkveo-hero-dots button { width: 28px; height: 4px; padding: 0; background: rgba(255,255,255,.45); border: 0; border-radius: 10px; cursor: pointer; }
.inkveo-hero-dots button.is-active { background: #fff; }

/* Hero fallback art */
.inkveo-hero-bottles { display: flex; align-items: flex-end; justify-content: center; gap: 10px; min-height: 340px; padding-top: 40px; }
.inkveo-bottle { position: relative; display: flex; align-items: center; justify-content: center; width: 92px; height: 240px; background: linear-gradient(100deg, #06080b, #1c242d 54%, #06080b); border: 1px solid rgba(255,255,255,.18); border-radius: 9px 9px 14px 14px; box-shadow: 0 20px 30px rgba(0,0,0,.32); }
.inkveo-bottle::before { content: ""; position: absolute; top: -27px; width: 54px; height: 32px; background: #11171d; border-radius: 7px 7px 2px 2px; }
.inkveo-bottle::after { content: ""; position: absolute; inset: 72px 8px 45px; background: linear-gradient(#f6f7f8, #dce4ea); }
.inkveo-bottle span { position: relative; z-index: 2; width: calc(100% - 28px); padding: 8px 3px; color: #073b6c; background: #fff; border-top: 7px solid var(--inkveo-blue); text-align: center; font-size: 13px; font-weight: 800; }
.inkveo-bottle.b2, .inkveo-bottle.b4 { width: 106px; height: 270px; }
.inkveo-bottle.b3 { width: 116px; height: 295px; background: linear-gradient(100deg, #bac7d2, #f8fbfd 54%, #aebbc7); }
.inkveo-bottle.b3 span { border-color: #9b3ab9; }
.inkveo-bottle.b4 span { border-color: #e23434; }
.inkveo-bottle.b5 { height: 230px; }
.inkveo-bottle.b5 span { border-color: #12aeb1; }
.inkveo-hero-machine-group { display: grid; grid-template-columns: repeat(3, 150px); align-items: end; gap: 14px; }
.inkveo-hero-machine-group .inkveo-machine-art { width: 150px; height: 220px; margin: 0; background: rgba(255,255,255,.96); border-radius: 8px; box-shadow: 0 18px 32px rgba(0,0,0,.22); }
.inkveo-solution-art { position: relative; width: 480px; height: 300px; }
.solution-line { position: absolute; left: 2%; right: 2%; bottom: 28%; height: 28px; background: linear-gradient(#718397, #34495e); border-radius: 4px; box-shadow: 0 20px 28px rgba(0,0,0,.25); }
.solution-product { position: absolute; left: 52%; bottom: 36%; display: grid; place-items: center; width: 130px; height: 115px; color: #12304d; background: #f2c98a; border: 3px solid #d7ad6f; font-weight: 800; }
.solution-printer { position: absolute; left: 21%; bottom: 34%; display: grid; place-items: center; width: 112px; height: 145px; background: linear-gradient(145deg, #243648, #101a25); border-radius: 7px; box-shadow: 0 18px 28px rgba(0,0,0,.28); font-size: 13px; font-weight: 800; }
.solution-code { position: absolute; left: 59%; bottom: 55%; z-index: 2; color: #172032; font-family: monospace; font-size: 13px; font-weight: 800; }
.inkveo-support-art { position: relative; display: grid; grid-template-columns: repeat(3, 125px); gap: 14px; align-items: center; }
.inkveo-support-art span { display: grid; place-items: center; width: 125px; height: 170px; color: #0759c7; background: #fff; border-radius: 8px; box-shadow: 0 18px 32px rgba(0,0,0,.25); font-size: 42px; font-weight: 800; }
.inkveo-support-art strong { position: absolute; left: 50%; bottom: -42px; transform: translateX(-50%); white-space: nowrap; letter-spacing: .12em; }

/* Sections and product grids. */
.inkveo-section { padding: 68px 0; }
.inkveo-section--equipment { background: #fff; }
.inkveo-section--ink-products { background: var(--inkveo-bg); }
.inkveo-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.inkveo-section-heading.center { justify-content: center; text-align: center; }
.inkveo-section-heading h2, .inkveo-contact-panel h2 { margin: 0; color: var(--inkveo-navy); font-size: clamp(28px, 3vw, 42px); line-height: 1.15; letter-spacing: -.015em; }
.inkveo-section-description { max-width: 760px; margin: 10px 0 0; color: var(--inkveo-muted); }
.inkveo-card-grid { display: grid; gap: 14px; }
.inkveo-card-grid--equipment, .inkveo-card-grid--inks { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.inkveo-card { min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--inkveo-line); border-radius: 7px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.inkveo-card:hover { transform: translateY(-3px); border-color: #cbd8e8; box-shadow: var(--inkveo-shadow); }
.inkveo-card a { display: flex; flex-direction: column; height: 100%; }
.inkveo-card img, .inkveo-machine-art, .inkveo-ink-art { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.inkveo-card img { padding: 12px; background: linear-gradient(145deg, #fbfcfe, #f1f5f9); }
.inkveo-card__body { padding: 17px 18px 19px; border-top: 1px solid var(--inkveo-line); }
.inkveo-card h2, .inkveo-card h3 { margin: 0; color: var(--inkveo-blue-dark); font-size: 17px; line-height: 1.3; }
.inkveo-card p { margin: 8px 0 0; color: var(--inkveo-muted); font-size: 13px; }

.inkveo-machine-art { position: relative; overflow: hidden; background: linear-gradient(145deg, #fafcff, #edf3f9); }
.inkveo-machine-art::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 12%; height: 1px; background: #c8d4e1; }
.machine-body { position: absolute; left: 29%; top: 31%; width: 42%; height: 44%; background: linear-gradient(140deg, #172331, #35475a); border-radius: 6px; box-shadow: 0 13px 20px rgba(3,23,43,.18); }
.machine-screen { position: absolute; z-index: 2; left: 35%; top: 22%; width: 32%; height: 21%; background: linear-gradient(145deg, #e8f6ff, #6fb6ec); border: 6px solid #263645; border-radius: 5px; }
.machine-arm { position: absolute; left: 69%; top: 49%; width: 16%; height: 8%; background: #263645; border-radius: 0 4px 4px 0; }
.machine-base { position: absolute; left: 24%; bottom: 13%; width: 54%; height: 7%; background: #27394a; border-radius: 5px; }
.inkveo-machine-art b { position: absolute; z-index: 3; left: 12px; top: 12px; max-width: calc(100% - 24px); padding: 4px 8px; overflow: hidden; color: #fff; background: var(--inkveo-blue); border-radius: 3px; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

.inkveo-ink-art { position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 32%, rgba(7,89,199,.12), transparent 35%), linear-gradient(145deg, #fbfcfe, #eef3f8); }
.inkveo-ink-art::before { content: ""; position: absolute; width: 42%; height: 61%; bottom: 12%; background: linear-gradient(100deg, #06080b, #27323c 54%, #06080b); border-radius: 8px 8px 13px 13px; box-shadow: 0 18px 25px rgba(3,23,43,.25); }
.inkveo-ink-art__cap { position: absolute; z-index: 2; top: 17%; width: 24%; height: 10%; background: #11171d; border-radius: 6px 6px 2px 2px; }
.inkveo-ink-art__shine { position: absolute; z-index: 2; top: 31%; left: 39%; width: 4%; height: 38%; background: rgba(255,255,255,.12); border-radius: 10px; }
.inkveo-ink-art__label { position: absolute; z-index: 3; top: 46%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 34%; min-height: 22%; color: #073b6c; background: #fff; border-top: 6px solid var(--inkveo-blue); text-align: center; }
.inkveo-ink-art__label b { max-width: 100%; overflow: hidden; padding-inline: 4px; font-size: 13px; text-overflow: ellipsis; }
.inkveo-ink-art__label small { margin-top: 3px; font-size: 7px; font-weight: 800; }
.inkveo-ink-actions { display: flex; align-items: center; gap: 22px; margin-top: 28px; }

.inkveo-benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.inkveo-benefit-grid article { display: flex; gap: 16px; min-height: 155px; padding: 26px 22px; background: #fff; border: 1px solid var(--inkveo-line); border-radius: 7px; }
.inkveo-benefit-grid article > span { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; color: var(--inkveo-blue); border: 1px solid #c9d8ed; border-radius: 50%; font-weight: 800; }
.inkveo-benefit-grid h3 { margin: 2px 0 7px; color: var(--inkveo-blue-dark); }
.inkveo-benefit-grid p { margin: 0; color: var(--inkveo-muted); font-size: 14px; }

.inkveo-section--contact { color: #fff; background: var(--inkveo-navy); }
.inkveo-contact-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.inkveo-contact-panel h2 { color: #fff; }
.inkveo-contact-panel p { color: rgba(255,255,255,.78); }
.inkveo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inkveo-form input, .inkveo-form textarea, .inkveo-form select { width: 100%; min-height: 46px; padding: 11px 13px; color: var(--inkveo-text); background: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 4px; }
.inkveo-form textarea, .inkveo-form .inkveo-form__wide { grid-column: 1 / -1; }
.inkveo-form textarea { min-height: 105px; resize: vertical; }
.inkveo-form__honeypot { position: absolute !important; left: -9999px !important; }
.inkveo-form-message { grid-column: 1 / -1; margin: 0; color: #c9ffd6; }

.site-footer { color: rgba(255,255,255,.78); background: #040f1c; }
.inkveo-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-top: 55px; padding-bottom: 55px; }
.site-footer h2 { color: #fff; font-size: 17px; }
.site-footer a:hover { color: #fff; }
.inkveo-footer-brand { color: #fff; font-size: 30px; font-weight: 800; }
.inkveo-footer-bottom { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.inkveo-footer-bottom .inkveo-container { display: flex; justify-content: space-between; }
.inkveo-chat-launcher { position: fixed; z-index: 170; right: 24px; bottom: 24px; display: grid; place-items: center; width: 58px; height: 58px; color: #fff; background: var(--inkveo-green); border-radius: 50%; box-shadow: 0 12px 28px rgba(0,0,0,.22); font-weight: 800; }

.inkveo-entry, .inkveo-archive-header { max-width: 960px; margin-inline: auto; }
.inkveo-entry h1, .inkveo-archive-header h1 { color: var(--inkveo-navy); font-size: clamp(34px,4vw,56px); line-height: 1.12; }
.inkveo-entry__image { margin: 28px 0; }
.inkveo-entry__content { font-size: 17px; }
.inkveo-card-grid--three { grid-template-columns: repeat(3, minmax(0,1fr)); }


/* V1.2.1 navigation hotfix: prevents cached/third-party menu rules from expanding submenus. */
html, body { max-width: 100%; overflow-x: clip; }
.inkveo-mainnav__inner { overflow: visible; }
.primary-navigation > ul,
.primary-navigation > .menu { list-style: none; }
.primary-navigation .sub-menu { list-style: none; }
@media (min-width: 921px) {
    .primary-navigation > .menu > li > .sub-menu {
        display: block;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .primary-navigation > .menu > li:hover > .sub-menu,
    .primary-navigation > .menu > li:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 1260px) {
    .primary-navigation .menu > li > a { padding-inline: 9px; font-size: 13px; }
    .inkveo-mainnav__inner { gap: 15px; }
    .inkveo-quote-button { padding-inline: 14px; }
    .inkveo-card-grid--equipment, .inkveo-card-grid--inks { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
    .inkveo-card__body { padding: 15px; }
}

@media (max-width: 1080px) {
    .inkveo-topbar__address { max-width: 42%; }
    .inkveo-topbar__contacts { gap: 12px; }
    .inkveo-quote-button { display: none; }
    .primary-navigation .menu > li > a { padding-inline: 8px; }
    .inkveo-card-grid--equipment, .inkveo-card-grid--inks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .inkveo-benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 920px) {
    body.admin-bar .site-header { top: 46px; }
    .inkveo-container { width: min(calc(100% - 28px), var(--inkveo-container)); }
    .inkveo-topbar { min-height: 30px; }
    .inkveo-topbar__inner { min-height: 30px; }
    .inkveo-topbar__address { display: none; }
    .inkveo-topbar__contacts { width: 100%; justify-content: flex-end; gap: 14px; overflow: hidden; }
    .inkveo-topbar__contacts a { font-size: 0; }
    .inkveo-topbar__contacts a span[aria-hidden="true"] { font-size: 13px; }
    .inkveo-topbar__contacts a[href*="wa.me"]::before { content: "WA"; font-size: 11px; }
    .inkveo-topbar__language { font-size: 12px; }

    .inkveo-mainnav__inner { min-height: 66px; }
    .custom-logo { max-height: 43px; }
    .inkveo-wordmark strong { font-size: 28px; }
    .inkveo-menu-toggle { display: block; margin-left: auto; }
    .primary-navigation {
        position: fixed;
        inset: calc(46px + 66px) 0 0;
        z-index: 160;
        display: none;
        padding: 18px 22px 40px;
        overflow-y: auto;
        background: #fff;
    }
    body:not(.admin-bar) .primary-navigation { inset: 66px 0 0; }
    .primary-navigation.is-open { display: block; }
    .primary-navigation .menu { display: block; }
    .primary-navigation .menu > li { border-bottom: 1px solid var(--inkveo-line); }
    .primary-navigation .menu > li > a { width: calc(100% - 48px); min-height: 50px; padding: 0; border: 0; font-size: 15px; }
    .primary-navigation .menu-item-has-children > a::after { display: none; }
    .inkveo-submenu-toggle { position: absolute; top: 5px; right: 0; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; color: var(--inkveo-navy); background: #f5f7fa; border: 0; border-radius: 4px; }
    .inkveo-submenu-toggle span { transition: transform .18s ease; }
    .menu-item-has-children.is-submenu-open > .inkveo-submenu-toggle span { transform: rotate(180deg); }
    .primary-navigation .sub-menu { position: static; display: none; min-width: 0; padding: 0 0 10px 15px; border: 0; border-left: 2px solid #dce7f4; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: none; }
    .primary-navigation .menu-item-has-children.is-submenu-open > .sub-menu { display: block; }
    .primary-navigation .sub-menu a { padding: 9px 13px; font-size: 14px; }

    .inkveo-quickbar__inner { gap: 12px; }
    .inkveo-quickbar strong { width: auto; font-size: 10px; }
    .inkveo-quickbar__scroll { gap: 20px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
    .inkveo-quickbar__scroll::-webkit-scrollbar { display: none; }
    .inkveo-quickbar a { font-size: 11px; }

    .inkveo-hero-slider { height: 690px; }
    .inkveo-hero__inner { grid-template-columns: 1fr; align-content: center; padding-top: 38px; padding-bottom: 58px; gap: 8px; }
    .inkveo-hero-slide h1 { font-size: 40px; }
    .inkveo-hero__visual { min-height: 260px; transform: scale(.72); transform-origin: center; }
    .inkveo-hero-arrow { width: 35px; height: 45px; font-size: 28px; }
    .inkveo-hero-arrow--prev { left: 7px; }
    .inkveo-hero-arrow--next { right: 7px; }
    .inkveo-hero-machine-group { grid-template-columns: repeat(3, 140px); }
    .inkveo-solution-art { width: 470px; }

    .inkveo-contact-panel { grid-template-columns: 1fr; gap: 38px; }
    .inkveo-footer-grid { grid-template-columns: 1fr 1fr; }
    .inkveo-card-grid--three { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
    .inkveo-hero-slider { height: 650px; }
    .inkveo-hero__inner { padding-top: 31px; padding-bottom: 50px; }
    .inkveo-hero-slide h1 { font-size: 34px; }
    .inkveo-hero__subtitle { font-size: 16px; }
    .inkveo-trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0; font-size: 11px; }
    .inkveo-hero__actions { gap: 14px; }
    .inkveo-button { min-height: 43px; padding-inline: 18px; }
    .inkveo-hero__visual { min-height: 220px; transform: scale(.58); margin-top: -8px; }
    .inkveo-hero-dots { bottom: 12px; }

    .inkveo-section { padding: 50px 0; }
    .inkveo-section-heading { align-items: flex-start; }
    .inkveo-section-heading > .inkveo-text-link { display: none; }
    .inkveo-card-grid--equipment, .inkveo-card-grid--inks, .inkveo-card-grid--three { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
    .inkveo-card__body { padding: 12px; }
    .inkveo-card h2, .inkveo-card h3 { font-size: 14px; }
    .inkveo-card p { display: none; }
    .inkveo-ink-actions { flex-wrap: wrap; }
    .inkveo-benefit-grid { grid-template-columns: 1fr; }
    .inkveo-benefit-grid article { min-height: 0; }
    .inkveo-form { grid-template-columns: 1fr; }
    .inkveo-form > * { grid-column: 1 / -1; }
    .inkveo-footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .inkveo-footer-bottom .inkveo-container { display: block; }
    .inkveo-chat-launcher { width: 52px; height: 52px; right: 15px; bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
