:root {
    --brand: #008fac;
    --brand-bright: #08bfd9;
    --brand-soft: #dff7fa;
    --navy: #050f1a;
    --navy-2: #091d2d;
    --ink: #0b2032;
    --text: #536574;
    --muted: #7890a3;
    --line: #dce8ef;
    --surface: #ffffff;
    --surface-soft: #edf3f2;
    --canvas-warm: #f7f7f2;
    --warm: #f4c542;
    --warm-soft: #fff7dc;
    --steel: #607b80;
    --cascade: #547b80;
    --cascade-dark: #315a62;
    --cascade-deep: #163b46;
    --glass: rgba(255, 255, 255, .72);
    --green: #34ad54;
    --cyan: #08bfd9;
    --magenta: #df3c82;
    --yellow: #f4c542;
    --shadow-sm: 0 12px 30px rgba(7, 27, 49, .08);
    --shadow-md: 0 24px 60px rgba(7, 27, 49, .13);
    --shadow-lg: 0 32px 90px rgba(7, 27, 49, .2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: 280ms cubic-bezier(.2, .7, .2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

a,
button,
input,
textarea {
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition), opacity var(--transition);
}

button,
input,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(6, 163, 218, .38);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 100000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

/* Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.show {
    visibility: visible;
    opacity: 1;
}

.page-loader__mark {
    width: 52px;
    height: 52px;
    border: 4px solid var(--brand-soft);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: loader-spin .85s linear infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

/* Header */
.top-strip {
    color: rgba(255, 255, 255, .78);
    background: var(--navy);
    font-size: 12px;
    font-weight: 600;
}

.top-strip__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-strip__contacts,
.top-strip__social {
    display: flex;
    align-items: center;
}

.top-strip__contacts {
    gap: 24px;
}

.top-strip__contacts a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-strip__contacts a:hover,
.top-strip__social a:hover {
    color: #fff;
}

.top-strip__contacts i {
    color: var(--brand-bright);
    font-size: 14px;
}

.top-strip__social {
    gap: 8px;
}

.top-strip__social a {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.site-header {
    position: sticky;
    z-index: 1030;
    top: 0;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid rgba(220, 232, 239, .8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(7, 27, 49, .09);
}

.site-header .navbar {
    min-height: 86px;
    padding: 10px 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-right: 24px;
}

.brand-lockup img {
    width: 66px;
    height: 50px;
    padding: 3px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.brand-lockup__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-lockup__copy strong {
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    letter-spacing: -.02em;
}

.brand-lockup__copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.site-header .nav-link {
    position: relative;
    margin: 0 3px;
    padding: 13px 10px !important;
    color: #344d62 !important;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.site-header .nav-link::after {
    display: none;
}

.site-header .nav-link::before {
    position: absolute;
    right: 10px;
    bottom: 7px;
    left: 10px;
    height: 2px;
    content: "";
    background: var(--brand);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--brand) !important;
}

.site-header .nav-link:hover::before,
.site-header .nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-toggler {
    width: 46px;
    height: 42px;
    display: none;
    padding: 9px 10px;
    background: var(--surface-soft);
    border: 1px solid var(--line) !important;
    border-radius: 12px;
    box-shadow: none !important;
}

.navbar-toggler span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 4px 0;
    background: var(--navy);
    border-radius: 2px;
}

.modern-menu {
    width: 330px;
    margin-top: 8px !important;
    padding: 12px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.modern-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border-radius: 12px;
}

.modern-menu .dropdown-item:hover {
    color: var(--navy);
    background: var(--brand-soft);
}

.modern-menu .dropdown-item > i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--brand);
    background: #fff;
    border: 1px solid rgba(6, 163, 218, .16);
    border-radius: 11px;
}

.modern-menu .dropdown-item span {
    display: flex;
    flex-direction: column;
}

.modern-menu .dropdown-item strong {
    color: var(--navy);
    font-size: 13px;
}

.modern-menu .dropdown-item small {
    margin-top: 1px;
    color: var(--muted);
    font-size: 10px;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 700;
}

.btn-brand {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 19px;
    color: #fff !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .26), transparent 42%),
        linear-gradient(135deg, #10b7df, #057eae);
    border: 1px solid rgba(3, 104, 145, .24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .52),
        inset 0 -4px 8px rgba(0, 59, 92, .18),
        0 9px 0 rgba(3, 91, 126, .12),
        0 18px 34px rgba(6, 163, 218, .24);
    text-shadow: 0 1px 1px rgba(0, 52, 77, .22);
}

.catalogue-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(223, 60, 130, .16), transparent 25%),
        radial-gradient(circle at 12% 80%, rgba(8, 191, 217, .16), transparent 28%),
        #061421;
}

.catalogue-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 60px 60px;
}

.catalogue-hero__inner {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.catalogue-hero__inner > div { max-width: 760px; }
.catalogue-hero h1 { margin: 16px 0; color: #fff; font-size: clamp(44px, 5vw, 68px); line-height: 1.02; }
.catalogue-hero p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .62); }
.catalogue-section { background: #eef3f5; }
.catalogue-shell { overflow: hidden; border: 1px solid rgba(9, 31, 49, .1); border-radius: 26px; background: #fff; box-shadow: var(--shadow-lg); }
.catalogue-shell__bar { min-height: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 20px; color: rgba(255, 255, 255, .72); background: #071522; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.catalogue-shell__bar > div { display: flex; gap: 7px; }.catalogue-shell__bar > div span { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); }.catalogue-shell__bar > div span:nth-child(2) { background: var(--magenta); }.catalogue-shell__bar > div span:nth-child(3) { background: var(--yellow); }.catalogue-shell__bar > a { justify-self: end; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.catalogue-shell iframe { width: 100%; height: min(850px, 78vh); display: block; border: 0; background: #e8ecef; }

@media (max-width: 767.98px) {
    .catalogue-hero { padding: 82px 0; }
    .catalogue-hero__inner { align-items: flex-start; flex-direction: column; }
    .catalogue-shell__bar { grid-template-columns: 1fr auto; }
    .catalogue-shell__bar strong { display: none; }
    .catalogue-shell iframe { height: 620px; }
}

.btn-brand::before {
    position: absolute;
    z-index: -1;
    inset: 2px 3px auto;
    height: 45%;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, .22), transparent);
    border-radius: 10px 10px 50% 50%;
    pointer-events: none;
}

.btn-brand:hover {
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .58),
        inset 0 -3px 7px rgba(0, 59, 92, .15),
        0 6px 0 rgba(3, 91, 126, .12),
        0 20px 40px rgba(6, 163, 218, .32);
    transform: translateY(-3px);
}

.btn-brand:active {
    box-shadow: inset 0 4px 10px rgba(0, 59, 92, .2), 0 3px 0 rgba(3, 91, 126, .12);
    transform: translateY(3px);
}

.btn-brand i,
.btn-light-modern i,
.btn-outline-modern i {
    transition: transform var(--transition);
}

.btn-brand:hover i,
.btn-light-modern:hover i,
.btn-outline-modern:hover i {
    transform: translateX(4px);
}

.nav-cta {
    margin-left: 10px;
    padding: 12px 16px;
    font-size: 12px;
}

.btn-brand--large {
    min-height: 54px;
    padding: 15px 24px;
}

.btn-glass {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26), inset 0 -4px 8px rgba(0, 0, 0, .1), 0 7px 0 rgba(0, 0, 0, .08), 0 16px 30px rgba(0, 0, 0, .13);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .26);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    color: #fff;
    background: rgba(255, 255, 255, .19);
    border-color: rgba(255, 255, 255, .55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), inset 0 -3px 7px rgba(0, 0, 0, .08), 0 5px 0 rgba(0, 0, 0, .08), 0 19px 34px rgba(0, 0, 0, .15);
    transform: translateY(-3px);
}

.btn-glass:active {
    box-shadow: inset 0 4px 9px rgba(0, 0, 0, .18), 0 2px 0 rgba(0, 0, 0, .08);
    transform: translateY(3px);
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.btn-outline-modern:hover {
    color: var(--brand);
    border-color: rgba(6, 163, 218, .38);
    transform: translateY(-2px);
}

/* Shared sections */
.section-space {
    position: relative;
    padding: 110px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading.text-center {
    margin-right: auto;
    margin-left: auto;
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
    align-items: end;
    gap: 70px;
}

.section-heading h2,
.quote-copy h2,
.footer-cta h2 {
    margin: 12px 0 0;
    font-size: clamp(34px, 4vw, 57px);
    line-height: 1.08;
}

.section-heading p {
    margin: 16px 0 0;
    color: var(--text);
    font-size: 16px;
}

.section-heading--split > p {
    margin: 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 9px;
}

.section-kicker--light {
    color: #73daf4;
}

.section-action {
    margin-top: 44px;
    text-align: center;
}

/* Hero */
.hero-section {
    position: relative;
    color: #fff;
    background: var(--navy);
}

.hero-pattern {
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
    opacity: .2;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .45) 1px, transparent 0);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(90deg, black, transparent 60%);
    mask-image: linear-gradient(90deg, black, transparent 60%);
}

.hero-section .carousel-item {
    position: relative;
    min-height: min(720px, calc(100vh - 128px));
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(5, 20, 37, .96) 0%, rgba(5, 20, 37, .82) 42%, rgba(5, 20, 37, .25) 73%, rgba(5, 20, 37, .1) 100%);
}

.hero-content {
    position: relative;
    z-index: 4;
    min-height: min(720px, calc(100vh - 128px));
    display: flex;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 130px;
}

.hero-copy {
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 13px;
    color: #bceefa;
    background: rgba(6, 163, 218, .14);
    border: 1px solid rgba(24, 193, 232, .3);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 750px;
    margin: 0;
    color: #fff;
    font-size: clamp(43px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero-copy p {
    max-width: 650px;
    margin: 23px 0 30px;
    color: rgba(255, 255, 255, .75);
    font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-indicators {
    z-index: 8;
    right: auto;
    bottom: 112px;
    left: max(24px, calc((100vw - 1320px) / 2 + 12px));
    width: auto;
    margin: 0;
    gap: 8px;
}

.hero-indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    margin: 0;
    background: rgba(255, 255, 255, .45);
    border: 0;
    border-radius: 99px;
    opacity: 1;
}

.hero-indicators .active {
    width: 56px;
    background: var(--brand-bright);
}

.hero-control {
    z-index: 8;
    top: 50%;
    bottom: auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    opacity: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-control:hover {
    background: var(--brand);
}

.hero-control--prev { left: 22px; }
.hero-control--next { right: 22px; }

.metrics-wrap {
    position: relative;
    z-index: 10;
    height: 0;
}

.metrics-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-56px);
    backdrop-filter: blur(20px);
}

.metric-card {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 25px;
    color: var(--navy);
    border-right: 1px solid var(--line);
}

.metric-card:last-child {
    border-right: 0;
}

.metric-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 13px;
    font-size: 20px;
}

.metric-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.metric-card strong {
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 25px;
    line-height: 1.2;
}

.metric-card small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.metric-card--cta {
    justify-content: space-between;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #047fb5);
    border-radius: 0 21px 21px 0;
}

.metric-card--cta strong,
.metric-card--cta small {
    color: #fff;
}

.metric-card--cta a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
}

.metric-card--cta a:hover {
    background: rgba(255, 255, 255, .24);
    transform: rotate(-8deg) scale(1.05);
}

/* Capabilities */
.capability-section {
    padding-top: 165px;
}

.cascade-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 22px;
}

.capability-card {
    position: relative;
    min-height: 500px;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.capability-card:nth-child(2) { margin-top: 45px; }
.capability-card:nth-child(3) { margin-top: 90px; }

.capability-card img,
.capability-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.capability-card img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.capability-card__veil {
    background: linear-gradient(180deg, rgba(7, 27, 49, .04) 20%, rgba(7, 27, 49, .92) 100%);
}

.capability-card__number {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.capability-card__content {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    color: #fff;
}

.capability-card__content small,
.capability-card__content strong,
.capability-card__content > span {
    grid-column: 1;
}

.capability-card__content small {
    color: #8de4f7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.capability-card__content strong {
    margin: 5px 0 9px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 30px;
}

.capability-card__content > span {
    max-width: 260px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.capability-card__content > i {
    grid-row: 1 / 4;
    grid-column: 2;
    align-self: end;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 50%;
}

.capability-card:hover {
    color: #fff;
    transform: translateY(-8px);
}

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

.capability-card:hover .capability-card__content > i {
    transform: rotate(45deg);
}

/* Products */
.products-section {
    overflow: hidden;
    background: var(--surface-soft);
}

.products-pattern {
    position: absolute;
    top: -180px;
    right: -160px;
    width: 520px;
    height: 520px;
    opacity: .7;
    background: radial-gradient(circle, rgba(6, 163, 218, .18), transparent 68%);
    border-radius: 50%;
}

.product-tabs {
    width: max-content;
    max-width: 100%;
    display: flex;
    gap: 7px;
    margin: 0 auto 38px;
    padding: 7px;
    overflow-x: auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(235, 242, 245, .86));
    border: 1px solid rgba(178, 197, 207, .72);
    border-radius: 15px;
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, .92),
        inset 0 -3px 7px rgba(90, 116, 131, .08),
        0 8px 0 rgba(93, 118, 131, .06),
        0 16px 35px rgba(7, 27, 49, .09);
}

.product-tab {
    padding: 11px 17px;
    color: var(--text);
    background: linear-gradient(180deg, rgba(255, 255, 255, .4), transparent);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.product-tab:hover,
.product-tab.active {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .11), transparent 38%),
        linear-gradient(145deg, #102d47, #06192b);
    border-color: #061728;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        inset 0 -4px 7px rgba(0, 0, 0, .2),
        0 4px 0 rgba(4, 18, 31, .18),
        0 9px 18px rgba(7, 27, 49, .16);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    transform: translateY(-1px);
}

.product-tab:active {
    box-shadow: inset 0 4px 9px rgba(0, 0, 0, .3);
    transform: translateY(2px);
}

.product-panel[hidden] {
    display: none !important;
}

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

.product-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(7, 27, 49, .05);
}

.product-card:hover {
    border-color: rgba(6, 163, 218, .28);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.product-card__image {
    aspect-ratio: 16 / 10;
    width: auto;
    margin: 10px 10px 0;
    overflow: hidden;
    background: #edf3f6;
    border: 1px solid rgba(160, 183, 194, .55);
    border-radius: 13px;
    box-shadow: inset 0 3px 9px rgba(7, 27, 49, .12), 0 1px 0 #fff;
}

.product-card--visual .product-card__image {
    aspect-ratio: 4 / 3;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-card__body {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 21px;
}

.product-card__body h3 {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.35;
}

.product-card__body span {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Why */
.why-layout {
    display: grid;
    grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 90px;
}

.why-visual {
    position: relative;
}

.why-visual::before {
    position: absolute;
    z-index: -1;
    top: -26px;
    right: -26px;
    width: 70%;
    height: 70%;
    content: "";
    background: var(--brand-soft);
    border-radius: var(--radius-lg);
}

.why-visual__frame {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-visual__badge {
    position: absolute;
    right: -38px;
    bottom: 50px;
    min-width: 168px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #047fb5);
    border: 6px solid #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.why-visual__badge strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 35px;
}

.why-visual__badge span {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.benefit-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 17px;
}

.benefit-card:hover {
    border-color: rgba(6, 163, 218, .3);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.benefit-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 12px;
    font-size: 18px;
}

.benefit-card h3 {
    margin: 1px 0 7px;
    font-size: 16px;
}

.benefit-card p {
    margin: 0;
    color: var(--text);
    font-size: 11px;
    line-height: 1.6;
}

/* Quote */
.quote-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    color: #fff;
    background: linear-gradient(135deg, #071b31 0%, #0b3152 100%);
}

.quote-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .18;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .45) 1px, transparent 0);
    background-size: 30px 30px;
    -webkit-mask-image: linear-gradient(110deg, transparent 20%, black 100%);
    mask-image: linear-gradient(110deg, transparent 20%, black 100%);
}

.quote-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.quote-orb--one {
    top: -130px;
    right: 15%;
    width: 310px;
    height: 310px;
    background: rgba(6, 163, 218, .19);
}

.quote-orb--two {
    bottom: -200px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(52, 173, 84, .08);
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(400px, .75fr);
    align-items: center;
    gap: 95px;
}

.quote-copy h2 {
    color: #fff;
}

.quote-copy > p {
    max-width: 620px;
    margin: 22px 0 26px;
    color: rgba(255, 255, 255, .68);
}

.quote-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.quote-promises span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
}

.quote-promises i {
    color: #73daf4;
}

.quote-phone {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-phone > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 16px;
    font-size: 22px;
    box-shadow: 0 13px 28px rgba(6, 163, 218, .3);
}

.quote-phone div {
    display: flex;
    flex-direction: column;
}

.quote-phone small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.quote-phone a {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.quote-card {
    padding: 28px;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.quote-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.quote-card__head i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: var(--brand-soft);
    border-radius: 50%;
}

.quote-form {
    display: grid;
    gap: 13px;
}

.form-field label {
    display: block;
    margin: 0 0 6px 2px;
    color: #344d62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.modern-input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: #f5f9fb;
    border: 1px solid #deeaef;
    border-radius: 11px;
    outline: 0;
}

.modern-input::placeholder {
    color: #98a9b6;
}

.modern-input:hover {
    border-color: #bdd5e1;
}

.modern-input:focus {
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(6, 163, 218, .11);
}

.modern-input--area {
    min-height: 96px;
    resize: vertical;
}

.btn-brand--submit {
    width: 100%;
    min-height: 52px;
    margin-top: 2px;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    text-align: center;
}

.form-note i {
    margin-right: 4px;
    color: var(--green);
}

.form-alert {
    margin: 0;
    padding: 10px 12px;
    color: #9e2b2b;
    background: #fff2f2;
    border: 1px solid #ffd5d5;
    border-radius: 10px;
    font-size: 11px;
}

.form-alert:empty {
    display: none;
}

.field-validation-error {
    display: block;
    margin-top: 5px;
    color: #b42318;
    font-size: 10px;
}

/* Showcase */
.showcase-section {
    overflow: hidden;
}

.showcase-track {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 8px 0 32px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.showcase-marquee {
    width: max-content;
    display: flex;
    animation: portfolio-ticker 94s linear infinite;
    will-change: transform;
}

.showcase-marquee__group {
    display: flex;
    flex: 0 0 auto;
    gap: 18px;
    padding-right: 18px;
}

.showcase-track:hover .showcase-marquee,
.showcase-track:focus-within .showcase-marquee {
    animation-play-state: paused;
}

.showcase-item {
    position: relative;
    width: clamp(285px, 31vw, 410px);
    flex: 0 0 auto;
    aspect-ratio: 4 / 3;
    margin: 0;
    display: block;
    overflow: hidden;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
    border: 1px solid rgba(160, 183, 194, .55);
    box-shadow: inset 0 2px 8px rgba(7, 27, 49, .09), 0 8px 0 rgba(77, 99, 112, .035), 0 18px 36px rgba(7, 27, 49, .09);
    color: #fff;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.2, .7, .2, 1);
}

.showcase-item__caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 13px;
    color: #fff;
    background: rgba(7, 27, 49, .74);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.showcase-item__caption strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
}

.showcase-item:hover img {
    transform: scale(1.06);
}

.showcase-item:hover,
.showcase-item:focus-visible {
    color: #fff;
    border-color: rgba(8, 191, 217, .46);
    box-shadow: 0 24px 54px rgba(7, 27, 49, .18);
    transform: translateY(-6px);
}

@keyframes portfolio-ticker {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 82px;
    color: rgba(255, 255, 255, .65);
    background: #061729;
}

.site-footer__pattern {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(circle at 100% 0, black, transparent 55%);
    mask-image: radial-gradient(circle at 100% 0, black, transparent 55%);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-cta h2 {
    max-width: 800px;
    color: #fff;
    font-size: clamp(30px, 3.4vw, 48px);
}

.btn-light-modern {
    min-width: 210px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 19px;
    color: var(--navy);
    background: #fff;
    border: 1px solid #fff;
}

.btn-light-modern:hover {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
    transform: translateY(-3px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr .7fr .8fr 1.05fr;
    gap: 55px;
    padding: 65px 0 55px;
}

.brand-lockup--footer img {
    border-color: rgba(255, 255, 255, .15);
}

.brand-lockup--footer .brand-lockup__copy strong {
    color: #fff;
}

.brand-lockup--footer .brand-lockup__copy small {
    color: rgba(255, 255, 255, .45);
}

.footer-brand > p {
    max-width: 430px;
    margin: 22px 0;
    font-size: 12px;
    line-height: 1.8;
}

.footer-grid h3 {
    margin: 10px 0 20px;
    color: #fff;
    font-size: 14px;
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li,
.footer-contact li + li {
    margin-top: 11px;
}

.footer-links a,
.footer-contact,
.footer-contact a {
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-links a::before {
    display: inline-block;
    margin-right: 8px;
    color: var(--brand-bright);
    content: "\2192";
    transition: transform var(--transition);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 2px;
    color: var(--brand-bright);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.footer-social a:hover {
    background: var(--brand);
    border-color: var(--brand);
    transform: translateY(-3px);
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a:hover {
    color: #fff;
}

.back-to-top {
    position: fixed;
    z-index: 100;
    right: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    visibility: hidden;
    color: #fff;
    background: var(--brand);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 13px 30px rgba(6, 163, 218, .3);
    opacity: 0;
    transform: translateY(15px);
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy);
    transform: translateY(-3px);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cascade-grid .reveal:nth-child(2),
.product-grid .reveal:nth-child(2n) {
    transition-delay: 90ms;
}

.cascade-grid .reveal:nth-child(3),
.product-grid .reveal:nth-child(3n) {
    transition-delay: 160ms;
}

/* Compatibility for existing inner views */
.section-title {
    position: relative;
    padding-bottom: 18px !important;
}

.section-title::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 72px;
    height: 3px;
    content: "";
    background: var(--brand);
    border-radius: 99px;
}

.section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
}

.bg-header,
.bg-header1 {
    background: linear-gradient(rgba(7, 27, 49, .78), rgba(7, 27, 49, .78)), url(../img/carousel-1.jpg) center/cover no-repeat;
}

.team-item,
.service-item,
.testimonial-item {
    overflow: hidden;
    border-radius: 18px !important;
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-item:hover,
.service-item:hover,
.testimonial-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img,
.rotate-on-hover {
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.team-item:hover .team-img img,
.rotate-on-hover:hover {
    transform: scale(1.05);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

.testimonial-carousel .owl-dot {
    width: 10px;
    height: 10px;
    background: #ccdae1 !important;
    border-radius: 50%;
}

.testimonial-carousel .owl-dot.active {
    width: 28px;
    background: var(--brand) !important;
    border-radius: 99px;
}

.link-animated a:hover {
    padding-left: 6px;
}

/* Responsive */
@media (min-width: 992px) {
    .site-header .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

@media (max-width: 1199.98px) {
    .brand-lockup__copy { display: none; }
    .site-header .nav-link { padding-right: 8px !important; padding-left: 8px !important; font-size: 12px; }
    .nav-cta { margin-left: 5px; padding-right: 12px; padding-left: 12px; }
    .quote-layout { gap: 55px; }
    .why-layout { gap: 65px; }
    .footer-grid { gap: 35px; }
}

@media (max-width: 991.98px) {
    .navbar-toggler { display: block; }

    .site-header .navbar { min-height: 74px; }
    .brand-lockup img { width: 60px; height: 46px; }
    .brand-lockup__copy { display: flex; }

    .navbar-collapse {
        max-height: calc(100vh - 88px);
        margin-top: 10px;
        padding: 14px;
        overflow-y: auto;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 17px;
        box-shadow: var(--shadow-md);
    }

    .site-header .nav-link {
        width: 100%;
        margin: 1px 0;
        padding: 11px 12px !important;
        border-radius: 9px;
    }

    .site-header .nav-link::before { display: none; }
    .site-header .nav-link:hover,
    .site-header .nav-link.active { background: var(--brand-soft); }

    .modern-menu {
        width: 100%;
        margin: 2px 0 7px !important;
        border-radius: 13px;
        box-shadow: none;
    }

    .nav-cta { width: 100%; margin: 8px 0 0; }

    .hero-section .carousel-item,
    .hero-content { min-height: 670px; }
    .hero-content { padding-top: 65px; padding-bottom: 150px; }
    .hero-copy { padding-right: 40px; padding-left: 40px; }
    .hero-control { display: none; }
    .hero-indicators { left: 40px; }

    .metrics-panel { grid-template-columns: repeat(2, 1fr); }
    .metric-card:nth-child(2) { border-right: 0; }
    .metric-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .metric-card--cta { border-radius: 0 0 21px 0; }

    .capability-section { padding-top: 230px; }
    .section-space { padding: 85px 0; }
    .section-heading--split { grid-template-columns: 1fr; gap: 18px; }
    .cascade-grid { grid-template-columns: 1fr; }
    .capability-card { min-height: 420px; }
    .capability-card:nth-child(2),
    .capability-card:nth-child(3) { margin-top: 0; }
    .product-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .why-layout { grid-template-columns: 1fr; }
    .why-visual { max-width: 600px; margin: 0 auto; }
    .why-visual__frame { aspect-ratio: 4 / 3; }
    .quote-layout { grid-template-columns: 1fr; }
    .quote-copy { max-width: 720px; }
    .quote-card { max-width: 720px; width: 100%; }
    .showcase-item { width: clamp(285px, 45vw, 410px); }

    .footer-cta { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
    .brand-lockup__copy { display: none; }
    .site-header .navbar { min-height: 68px; }
    .brand-lockup img { width: 56px; height: 43px; }

    .hero-section .carousel-item,
    .hero-content { min-height: 660px; }
    .hero-content { padding-top: 45px; padding-bottom: 150px; }
    .hero-copy { padding: 0 12px; }
    .hero-copy h1,
    .hero-copy h2 { font-size: clamp(38px, 10vw, 55px); }
    .hero-copy p { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-overlay { background: linear-gradient(90deg, rgba(5, 20, 37, .94), rgba(5, 20, 37, .7)); }
    .hero-indicators { right: 24px; bottom: 119px; left: 24px; justify-content: flex-start; }

    .metrics-wrap { height: auto; padding: 0 12px; }
    .metrics-panel { grid-template-columns: 1fr; transform: translateY(-70px); }
    .metric-card { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
    .metric-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .metric-card--cta { border-bottom: 0; border-radius: 0 0 21px 21px; }

    .capability-section { padding-top: 55px; }
    .section-space { padding: 70px 0; }
    .section-heading { margin-bottom: 34px; }
    .section-heading h2,
    .quote-copy h2 { font-size: clamp(31px, 9vw, 43px); }
    .capability-card { min-height: 390px; }
    .product-tabs { width: 100%; justify-content: flex-start; }
    .product-grid,
    .product-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-card__body h3 { font-size: 15px; }
    .why-layout { gap: 50px; }
    .why-visual__badge { right: -5px; bottom: 20px; }
    .benefit-list { grid-template-columns: 1fr; }
    .quote-section { padding: 75px 0; }
    .quote-card { padding: 21px; }
    .showcase-item { width: min(74vw, 370px); }

    .site-footer { padding-top: 65px; }
    .footer-cta { padding-bottom: 45px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); padding: 50px 0 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

@media (max-width: 575.98px) {
    .hero-copy h1,
    .hero-copy h2 { font-size: 38px; }
    .hero-eyebrow { font-size: 9px; }
    .section-space { padding: 62px 0; }
    .capability-card { min-height: 350px; border-radius: 24px; }
    .capability-card__content { right: 20px; bottom: 20px; left: 20px; }
    .product-grid,
    .product-grid--compact { grid-template-columns: 1fr; }
    .product-card__image,
    .product-card--visual .product-card__image { aspect-ratio: 16 / 10; }
    .why-visual__frame { aspect-ratio: 1 / 1.12; }
    .why-visual__badge { min-width: 146px; padding: 13px; }
    .why-visual__badge strong { font-size: 28px; }
    .quote-promises { align-items: flex-start; flex-direction: column; }
    .showcase-item { width: min(84vw, 350px); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .btn-light-modern { width: 100%; }
    .back-to-top { right: 15px; bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .showcase-track { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
    .showcase-marquee { animation: none; }
    .showcase-marquee__group[aria-hidden="true"] { display: none; }
}

/* 2026 visual system: CMYK accents, manufacturing depth and modern process pages */
.site-header .nav-link::before {
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

.hero-section::after,
.inner-hero::after,
.process-hero::after {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--cyan) 0 33.333%, var(--magenta) 33.333% 66.666%, var(--yellow) 66.666%);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(3, 12, 22, .97) 0%, rgba(4, 18, 31, .84) 44%, rgba(4, 18, 31, .22) 78%);
}

.hero-eyebrow::before,
.section-kicker::before {
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

.product-card__image,
.industrial-product-card__image {
    background: #071522;
}

.product-card__image::after,
.industrial-product-card__image::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 58%, rgba(4, 15, 25, .18));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.product-card__image img,
.industrial-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.04);
}

.product-tabs--3d {
    box-shadow: 0 22px 60px rgba(5, 20, 34, .12), inset 0 1px rgba(255, 255, 255, .7);
}

.process-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.process-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
}

.process-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 11, 20, .97) 0%, rgba(5, 20, 33, .86) 46%, rgba(5, 20, 33, .24) 82%);
}

.process-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 68%);
    mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.process-hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-block: 92px;
}

.process-hero h1 {
    max-width: 820px;
    margin: 20px 0 18px;
    color: #fff;
    font-size: clamp(50px, 5.6vw, 80px);
    line-height: .98;
    letter-spacing: -.06em;
}

.process-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    line-height: 1.75;
}

.process-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.process-hero__tags span {
    padding: 7px 12px;
    color: rgba(255, 255, 255, .76);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.process-hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.process-overview {
    background: #f6f8fa;
}

.process-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.process-overview__copy {
    padding-top: 12px;
    color: var(--text);
}

.process-overview__copy p {
    margin: 0 0 19px;
}

.process-workflow {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #061421;
}

.process-workflow::before {
    position: absolute;
    width: 520px;
    height: 520px;
    top: -280px;
    right: -180px;
    content: "";
    border-radius: 50%;
    background: rgba(8, 191, 217, .12);
    filter: blur(18px);
}

.process-workflow h2,
.process-workflow h3 {
    color: #fff;
}

.process-workflow .section-heading > p {
    color: rgba(255, 255, 255, .56);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    position: relative;
}

.workflow-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.workflow-card__image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #091b2b;
}

.workflow-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 52%, rgba(6, 20, 33, .72));
}

.workflow-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.05);
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1), filter 400ms ease;
}

.workflow-card:hover .workflow-card__image img { transform: scale(1.065); filter: saturate(1.13) contrast(1.07); }

.workflow-card__body {
    position: relative;
    min-height: 225px;
    padding: 27px 28px 30px;
}

.workflow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 191, 217, .42);
    background: linear-gradient(145deg, rgba(8, 191, 217, .12), rgba(255, 255, 255, .03));
}

.workflow-card__body > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(255, 255, 255, .2);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.workflow-card__body > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--cyan);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    font-size: 21px;
}

.workflow-card:nth-child(3n + 2) .workflow-card__body > i { color: #ef6aa2; }
.workflow-card:nth-child(3n) .workflow-card__body > i { color: var(--yellow); }
.workflow-card h3 { margin: 0 0 10px; font-size: 19px; }
.workflow-card p { margin: 0; color: rgba(255, 255, 255, .55); font-size: 13px; line-height: 1.75; }

.process-next {
    padding: 70px 0;
    background: #eef3f5;
}

.process-next__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.process-next__inner span {
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.process-next__inner h2 {
    margin: 7px 0 0;
    font-size: clamp(28px, 3vw, 42px);
}

.about-modern { background: #f6f8fa; }
.about-modern__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.about-modern__visual { position: relative; min-height: 590px; }
.about-modern__visual > img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-lg); }
.about-modern__badge { position: absolute; right: -34px; bottom: 42px; width: 150px; height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 26px; color: var(--navy); border-radius: 50%; background: var(--yellow); box-shadow: 0 24px 50px rgba(125, 96, 8, .25); }
.about-modern__badge strong { font-family: "Plus Jakarta Sans", sans-serif; font-size: 31px; line-height: 1; }.about-modern__badge small { margin-top: 8px; font-size: 9px; font-weight: 800; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.about-modern__copy h2 { margin: 14px 0 24px; font-size: clamp(36px, 4vw, 54px); line-height: 1.08; }
.about-modern__copy p { margin: 0 0 17px; color: var(--text); font-size: 14px; }
.about-modern__checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.about-modern__checks span { color: var(--ink); font-size: 12px; font-weight: 800; }.about-modern__checks i { width: 25px; height: 25px; display: inline-grid; place-items: center; margin-right: 7px; color: #fff; border-radius: 50%; background: var(--brand); }
.about-principles { color: #fff; background: var(--navy); }.about-principles h2, .about-principles h3 { color: #fff; }.about-principles .section-heading > p { color: rgba(255, 255, 255, .58); }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.principle-card { position: relative; min-height: 420px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 24px; background: rgba(255, 255, 255, .045); transition: transform var(--transition), background var(--transition); }
.principle-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .075); }
.principle-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #081827; }
.principle-card__image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(7, 27, 49, .75)); }
.principle-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2, .7, .2, 1); }
.principle-card:hover .principle-card__image img { transform: scale(1.065); }
.principle-card__body { position: relative; padding: 24px 25px 27px; }
.principle-card__body > span { position: absolute; top: 23px; right: 24px; color: rgba(255, 255, 255, .22); font-size: 11px; font-weight: 800; }
.principle-card__body > i { margin: 0 0 18px; display: block; color: var(--cyan); font-size: 26px; }
.principle-card:nth-child(2) .principle-card__body > i { color: var(--magenta); }
.principle-card:nth-child(3) .principle-card__body > i { color: var(--yellow); }
.principle-card:nth-child(4) .principle-card__body > i { color: #8ad5de; }
.principle-card h3 { margin: 0 0 10px; }
.principle-card p { margin: 0; color: rgba(255, 255, 255, .55); font-size: 12px; }
.about-cta { position: relative; padding: 78px 0; overflow: hidden; color: #fff; background: linear-gradient(125deg, #0089a6, #06485e 68%, #091d2d); }.about-cta::after { position: absolute; width: 300px; height: 300px; top: -150px; right: 8%; content: ""; border-radius: 50%; background: rgba(223, 60, 130, .2); filter: blur(5px); }.about-cta__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; }.about-cta span { color: rgba(255, 255, 255, .66); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }.about-cta h2 { margin: 8px 0 0; color: #fff; font-size: clamp(31px, 4vw, 48px); }

@media (max-width: 991.98px) {
    .process-hero { min-height: 560px; }
    .process-overview__grid,
    .about-modern__grid { grid-template-columns: 1fr; gap: 50px; }
    .workflow-grid { grid-template-columns: 1fr 1fr; }
    .principle-grid { grid-template-columns: 1fr 1fr; }
    .about-modern__visual { width: calc(100% - 30px); }
}

@media (max-width: 767.98px) {
    .process-hero { min-height: 600px; }
    .process-hero h1 { font-size: 45px; }
    .process-hero p { font-size: 14px; }
    .process-hero__actions { width: 100%; flex-direction: column; }
    .process-hero__actions .btn { justify-content: center; }
    .workflow-grid,
    .principle-grid,
    .about-modern__checks { grid-template-columns: 1fr; }
    .process-next__inner,
    .about-cta__inner { align-items: flex-start; flex-direction: column; }
    .workflow-card { min-height: auto; }
    .about-modern__visual,
    .about-modern__visual > img { min-height: 430px; }
    .about-modern__badge { right: -22px; width: 124px; height: 124px; padding: 22px; }
}

/* 2026 premium industrial surfaces */
.site-header {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 251, .84));
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .9), 0 10px 35px rgba(7, 27, 49, .04);
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 18%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(6, 163, 218, .52));
}

.brand-lockup img {
    background: linear-gradient(145deg, #fff, #eef4f5);
    box-shadow: inset 2px 2px 3px #fff, inset -2px -2px 4px rgba(70, 97, 111, .1), 0 5px 12px rgba(7, 27, 49, .08);
}

.btn-surface-3d {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    color: var(--navy);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(229, 237, 240, .92));
    border: 1px solid rgba(158, 182, 193, .55);
    border-radius: 13px;
    box-shadow: inset 0 2px 2px #fff, inset 0 -4px 8px rgba(83, 108, 122, .08), 0 7px 0 rgba(70, 93, 106, .07), 0 14px 26px rgba(7, 27, 49, .1);
    font-weight: 800;
}

.btn-surface-3d:hover {
    color: var(--brand);
    border-color: rgba(6, 163, 218, .32);
    box-shadow: inset 0 2px 2px #fff, inset 0 -4px 8px rgba(6, 163, 218, .08), 0 5px 0 rgba(70, 93, 106, .07), 0 18px 32px rgba(7, 27, 49, .13);
    transform: translateY(-2px);
}

.btn-surface-3d:active {
    box-shadow: inset 0 4px 9px rgba(58, 83, 97, .13), 0 2px 0 rgba(70, 93, 106, .07);
    transform: translateY(3px);
}

.hero-section::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(110deg, rgba(255, 255, 255, .04), transparent 32%, rgba(6, 163, 218, .04) 70%, transparent);
}

.hero-copy h1,
.hero-copy h2 {
    text-shadow: 0 2px 0 rgba(255, 255, 255, .08), 0 14px 30px rgba(0, 0, 0, .24);
}

.metric-icon,
.benefit-card > span,
.contact-method__icon {
    background: linear-gradient(145deg, #fff, #dff4fa);
    border: 1px solid rgba(6, 163, 218, .14);
    box-shadow: inset 2px 2px 3px #fff, inset -2px -2px 5px rgba(6, 119, 160, .08), 0 7px 14px rgba(7, 27, 49, .08);
}

.product-card,
.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(242, 247, 248, .92));
    box-shadow: inset 1px 1px 0 #fff, 0 8px 0 rgba(82, 103, 116, .025), 0 18px 35px rgba(7, 27, 49, .065);
}

/* Product and contact page heroes */
.inner-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 85px 0;
    background:
        radial-gradient(circle at 78% 25%, rgba(6, 163, 218, .17), transparent 30%),
        radial-gradient(circle at 15% 80%, rgba(242, 199, 92, .12), transparent 28%),
        linear-gradient(135deg, #f9fbfa 0%, #edf5f6 52%, #fdf9eb 100%);
    border-bottom: 1px solid rgba(181, 201, 209, .55);
}

.inner-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: .48;
    background-image: radial-gradient(circle at 1px 1px, rgba(7, 27, 49, .13) 1px, transparent 0);
    background-size: 30px 30px;
    -webkit-mask-image: linear-gradient(90deg, black, transparent 68%);
    mask-image: linear-gradient(90deg, black, transparent 68%);
}

.inner-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(430px, .8fr);
    align-items: center;
    gap: 80px;
}

.inner-hero__copy h1,
.contact-hero__content h1 {
    margin: 14px 0 20px;
    color: var(--navy);
    font-size: clamp(46px, 5vw, 70px);
    line-height: 1.03;
    letter-spacing: -.05em;
    text-shadow: 0 2px 0 #fff, 0 16px 34px rgba(7, 27, 49, .1);
}

.inner-hero__copy p,
.contact-hero__content > p {
    max-width: 680px;
    margin: 0;
    color: var(--text);
    font-size: 17px;
}

.inner-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.product-hero__visual {
    position: relative;
    min-height: 365px;
    perspective: 1000px;
}

.product-hero__card {
    position: absolute;
    overflow: hidden;
    background: rgba(255, 255, 255, .7);
    border: 8px solid rgba(255, 255, 255, .86);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 #fff, 0 24px 55px rgba(7, 27, 49, .16);
    transform-style: preserve-3d;
}

.product-hero__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero__card--one {
    z-index: 3;
    top: 35px;
    left: 78px;
    width: 310px;
    height: 250px;
    transform: rotateY(-8deg) rotateZ(-2deg) translateZ(40px);
}

.product-hero__card--two {
    z-index: 2;
    top: 4px;
    right: 0;
    width: 205px;
    height: 220px;
    transform: rotateY(-13deg) rotateZ(5deg);
}

.product-hero__card--three {
    z-index: 4;
    right: 18px;
    bottom: 0;
    width: 240px;
    height: 180px;
    transform: rotateY(-8deg) rotateZ(2deg) translateZ(50px);
}

.product-hero__seal {
    position: absolute;
    z-index: 6;
    bottom: 16px;
    left: 16px;
    width: 126px;
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--navy);
    background: linear-gradient(145deg, #fffdf3, #f4d978);
    border: 6px solid rgba(255, 255, 255, .92);
    border-radius: 50%;
    box-shadow: inset 2px 2px 7px #fff, inset -4px -5px 12px rgba(149, 106, 11, .15), 0 13px 0 rgba(129, 96, 24, .07), 0 25px 45px rgba(7, 27, 49, .14);
    text-align: center;
}

.product-hero__seal i { color: #d6a315; font-size: 25px; }
.product-hero__seal strong { margin-top: 4px; font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; }
.product-hero__seal small { color: #82671a; font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

/* Industrial product catalogue */
.product-catalogue {
    background:
        linear-gradient(180deg, var(--canvas-warm), #fff 24%, #f4f8f8 100%);
}

.product-tabs--3d {
    width: 100%;
    justify-content: center;
    margin-bottom: 48px;
}

.product-tabs--3d .product-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.industrial-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.industrial-product-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(235, 242, 244, .9));
    border: 1px solid rgba(175, 195, 205, .6);
    border-radius: 22px;
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, .95),
        inset -1px -1px 0 rgba(85, 109, 122, .04),
        0 8px 0 rgba(77, 99, 112, .035),
        0 20px 42px rgba(7, 27, 49, .09);
    transform-style: preserve-3d;
}

.industrial-product-card::before {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    height: 42%;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, .2), transparent);
}

.industrial-product-card:hover {
    border-color: rgba(6, 163, 218, .28);
    box-shadow: inset 1px 1px 0 #fff, 0 5px 0 rgba(77, 99, 112, .035), 0 28px 55px rgba(7, 27, 49, .15);
    transform: perspective(900px) translateY(-9px) rotateX(1.5deg);
}

.industrial-product-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 10px 10px 0;
    overflow: hidden;
    background: #e8eef0;
    border: 1px solid rgba(157, 180, 191, .5);
    border-radius: 15px;
    box-shadow: inset 0 2px 8px rgba(7, 27, 49, .1), 0 1px 0 #fff;
}

.industrial-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2, .7, .2, 1), filter var(--transition);
}

.industrial-product-card:hover .industrial-product-card__image img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.055);
}

.industrial-product-card__index {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(7, 27, 49, .76);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 5px 12px rgba(7, 27, 49, .2);
    font-size: 9px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.industrial-product-card__body {
    min-height: 164px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px 20px;
}

.material-chip {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 8px;
    color: #087ca6;
    background: linear-gradient(145deg, #f0fbfe, #d7f1f8);
    border: 1px solid rgba(6, 163, 218, .15);
    border-radius: 7px;
    box-shadow: inset 1px 1px 0 #fff, 0 3px 7px rgba(7, 27, 49, .05);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.material-chip--gold {
    color: #8c6810;
    background: linear-gradient(145deg, #fffdf5, #faedb8);
    border-color: rgba(196, 148, 24, .18);
}

.industrial-product-card__body h3 {
    margin: 0 0 17px;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.4;
}

.industrial-product-card__body a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    color: var(--brand);
    border-top: 1px solid rgba(185, 203, 211, .55);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.industrial-product-card__body a:hover i { transform: translate(2px, -2px); }

.product-cta-strip {
    padding: 0 0 100px;
    background: #f4f8f8;
}

.product-cta-strip__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 35%),
        linear-gradient(135deg, #102f4b, #06192b);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -6px 15px rgba(0, 0, 0, .15), 0 12px 0 rgba(3, 15, 26, .07), 0 28px 55px rgba(7, 27, 49, .18);
}

.product-cta-strip__icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #17bce3, #057eaF);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .3), inset -3px -4px 7px rgba(0, 57, 87, .2), 0 8px 0 rgba(0, 59, 87, .15);
    font-size: 26px;
}

.product-cta-strip small { color: #73daf4; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-cta-strip h2 { max-width: 720px; margin: 4px 0 0; color: #fff; font-size: 22px; line-height: 1.35; }

/* Premium Contact */
.contact-hero {
    min-height: 470px;
    text-align: center;
}

.contact-hero__content {
    max-width: 920px;
    margin: 0 auto;
}

.contact-hero__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.contact-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    color: #3d5669;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(174, 195, 205, .6);
    border-radius: 99px;
    box-shadow: inset 0 1px 0 #fff, 0 6px 16px rgba(7, 27, 49, .06);
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.contact-hero__badges i { color: var(--brand); }

.contact-section {
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #f5f8f8);
}

.contact-section__glow {
    position: absolute;
    top: 5%;
    right: -180px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 199, 92, .15), transparent 66%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(460px, .74fr);
    align-items: start;
    gap: 80px;
}

.contact-methods {
    display: grid;
    gap: 12px;
}

.contact-method {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    padding: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 245, 247, .93));
    border: 1px solid rgba(175, 195, 205, .58);
    border-radius: 17px;
    box-shadow: inset 1px 1px 0 #fff, 0 6px 0 rgba(78, 101, 113, .03), 0 15px 30px rgba(7, 27, 49, .06);
}

.contact-method:hover {
    color: inherit;
    border-color: rgba(6, 163, 218, .28);
    box-shadow: inset 1px 1px 0 #fff, 0 4px 0 rgba(78, 101, 113, .03), 0 21px 40px rgba(7, 27, 49, .11);
    transform: translateY(-4px);
}

.contact-method__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--brand);
    border-radius: 14px;
    font-size: 19px;
}

.contact-method__icon--gold { color: #b18416; background: linear-gradient(145deg, #fffdf6, #f7e8a9); border-color: rgba(196, 148, 24, .18); }
.contact-method__icon--slate { color: #526b7d; background: linear-gradient(145deg, #fff, #e5ecef); border-color: rgba(87, 113, 128, .15); }

.contact-method > span:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.contact-method small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-method strong { overflow: hidden; margin: 2px 0; color: var(--navy); font-family: "Plus Jakarta Sans", sans-serif; font-size: 14px; text-overflow: ellipsis; }
.contact-method em { color: var(--text); font-size: 9px; font-style: normal; }
.contact-method > i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--brand); background: rgba(6, 163, 218, .08); border-radius: 50%; }

.contact-trust {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 22px;
    padding: 17px;
    background: var(--warm-soft);
    border: 1px solid rgba(213, 171, 62, .22);
    border-radius: 16px;
}

.contact-trust__mark { color: #d3a51c; font-size: 26px; line-height: 1; }
.contact-trust strong { color: #604d18; font-size: 11px; }
.contact-trust p { margin: 3px 0 0; color: #8b773d; font-size: 9px; }

.contact-form-shell {
    position: sticky;
    top: 110px;
    overflow: hidden;
    padding: 30px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(174, 195, 205, .65);
    border-radius: 26px;
    box-shadow: inset 2px 2px 2px rgba(255, 255, 255, .92), inset -2px -2px 5px rgba(92, 116, 129, .05), 0 11px 0 rgba(80, 103, 116, .035), 0 30px 65px rgba(7, 27, 49, .14);
    backdrop-filter: blur(20px);
}

.contact-form-shell__texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image: radial-gradient(circle at 1px 1px, rgba(7, 27, 49, .12) 1px, transparent 0);
    background-size: 24px 24px;
    -webkit-mask-image: linear-gradient(140deg, transparent 35%, black);
    mask-image: linear-gradient(140deg, transparent 35%, black);
}

.contact-form-shell__head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-form-shell__head span:first-child { color: var(--brand); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-form-shell__head h2 { margin: 5px 0 0; font-size: 26px; }
.contact-form-shell__step { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; background: linear-gradient(145deg, #13344f, #06192b); border: 1px solid #061728; border-radius: 13px; box-shadow: inset 1px 1px 0 rgba(255, 255, 255, .16), inset -3px -4px 6px rgba(0, 0, 0, .16), 0 6px 0 rgba(4, 17, 29, .12); font-size: 10px; font-weight: 800; }

.contact-form-modern,
.form-grid { position: relative; }
.contact-form-modern { display: grid; gap: 15px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-field--wide { grid-column: 1 / -1; }

.form-field--floating { position: relative; }
.form-field--floating label {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #7b909e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    pointer-events: none;
}

.form-field--floating label i { color: var(--brand); }

.modern-input--3d {
    min-height: 54px;
    padding: 19px 15px 7px;
    background: linear-gradient(145deg, #edf3f5, #fbfdfd);
    border-color: rgba(161, 184, 195, .65);
    box-shadow: inset 3px 3px 7px rgba(62, 88, 102, .09), inset -3px -3px 7px #fff, 0 1px 0 #fff;
}

.modern-input--3d:focus {
    background: #fff;
    box-shadow: inset 2px 2px 5px rgba(6, 163, 218, .06), 0 0 0 4px rgba(6, 163, 218, .1), 0 9px 18px rgba(7, 27, 49, .06);
}

.modern-input--3d:focus + label,
.modern-input--3d:not(:placeholder-shown) + label {
    top: 5px;
    color: var(--brand);
    font-size: 7px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.modern-input--area { min-height: 125px; padding-top: 23px; }

.btn-brand--3d { min-height: 58px; border-radius: 14px; }
.btn-brand--3d span { flex: 1; text-align: left; }

.contact-form-note { display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--muted); font-size: 8px; text-align: center; }
.contact-form-note i { color: var(--green); }

.contact-process {
    padding: 0 0 100px;
    background: #f5f8f8;
}

.contact-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.contact-process__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 22px;
    background: linear-gradient(145deg, #fff, #eef4f5);
    border: 1px solid rgba(174, 195, 205, .55);
    border-radius: 18px;
    box-shadow: inset 1px 1px 0 #fff, 0 7px 0 rgba(78, 101, 113, .03), 0 17px 30px rgba(7, 27, 49, .06);
}

.contact-process__item > span { width: 43px; height: 43px; display: grid; place-items: center; color: var(--navy); background: linear-gradient(145deg, #fffdf6, #f5df8f); border: 1px solid rgba(196, 148, 24, .18); border-radius: 12px; box-shadow: inset 1px 1px 0 #fff, 0 5px 0 rgba(135, 101, 20, .05); font-size: 9px; font-weight: 800; }
.contact-process__item h3 { margin: 2px 0 6px; font-size: 15px; }
.contact-process__item p { margin: 0; color: var(--text); font-size: 10px; }

@media (max-width: 1199.98px) {
    .inner-hero__grid { grid-template-columns: minmax(0, 1fr) 430px; gap: 45px; }
    .product-hero__card--one { left: 35px; }
    .industrial-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .contact-layout { gap: 50px; }
}

@media (max-width: 991.98px) {
    .inner-hero { min-height: auto; padding: 70px 0; }
    .inner-hero__grid { grid-template-columns: 1fr; }
    .product-hero__visual { max-width: 580px; width: 100%; margin: 10px auto 0; }
    .industrial-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-tabs--3d { justify-content: flex-start; }
    .product-cta-strip__inner { grid-template-columns: auto 1fr; }
    .product-cta-strip__inner .btn { grid-column: 1 / -1; width: 100%; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-shell { position: relative; top: auto; }
    .contact-process__grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .inner-hero { padding: 58px 0; }
    .inner-hero__copy h1,
    .contact-hero__content h1 { font-size: clamp(38px, 11vw, 52px); }
    .inner-hero__copy p,
    .contact-hero__content > p { font-size: 15px; }
    .product-hero__visual { min-height: 320px; transform: scale(.9); transform-origin: top center; margin-bottom: -35px; }
    .industrial-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
    .industrial-product-card__body { min-height: 145px; padding: 15px; }
    .industrial-product-card__body h3 { font-size: 14px; }
    .product-cta-strip { padding-bottom: 70px; }
    .contact-section { padding-top: 70px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field--wide { grid-column: auto; }
}

@media (max-width: 575.98px) {
    .inner-hero__actions { flex-direction: column; }
    .inner-hero__actions .btn { width: 100%; }
    .product-hero__visual { min-height: 270px; transform: scale(.74); margin: 0 -70px -65px; width: calc(100% + 140px); }
    .industrial-product-grid { grid-template-columns: 1fr; }
    .industrial-product-card__image { aspect-ratio: 16 / 10; }
    .product-cta-strip__inner { grid-template-columns: 1fr; padding: 23px; }
    .product-cta-strip__inner .btn { grid-column: auto; }
    .contact-hero__badges { align-items: center; flex-direction: column; }
    .contact-form-shell { padding: 21px; border-radius: 21px; }
    .contact-method { grid-template-columns: auto minmax(0, 1fr); }
    .contact-method > i { display: none; }
}

/* Premium cascade palette, crisp media and motion-safe 3D image treatment */
.btn-brand {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .2), transparent 42%),
        linear-gradient(135deg, #1595aa, #075f78);
    border-color: rgba(5, 77, 94, .36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .42),
        inset 0 -4px 8px rgba(2, 49, 62, .2),
        0 9px 0 rgba(4, 66, 81, .14),
        0 18px 34px rgba(8, 127, 152, .22);
}

.capability-section {
    background:
        radial-gradient(circle at 78% 18%, rgba(84, 123, 128, .13), transparent 31%),
        linear-gradient(180deg, #f7f9f7, #eaf1f0);
}

.products-section,
.product-catalogue {
    background:
        radial-gradient(circle at 88% 10%, rgba(84, 123, 128, .15), transparent 28%),
        linear-gradient(180deg, #eaf1f0, #f8faf8 35%, #e6efee 100%);
}

.material-chip--food {
    color: #76520e;
    background: linear-gradient(145deg, #fff9e8, #e9d18c);
    border-color: rgba(158, 113, 24, .24);
}

.hero-media {
    filter: saturate(1.035) contrast(1.045);
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0) scale(1.015);
    will-change: transform;
}

.carousel-item.active .hero-media {
    animation: hero-cinematic-3d 7.4s cubic-bezier(.2, .62, .28, 1) both;
}

@keyframes hero-cinematic-3d {
    0% { transform: perspective(1500px) translate3d(0, 0, 0) scale(1.015); }
    100% { transform: perspective(1500px) translate3d(-.65%, -.45%, 28px) scale(1.085); }
}

.product-card__image,
.industrial-product-card__image,
.showcase-item,
.why-visual__frame {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.product-card__image img,
.industrial-product-card__image img,
.showcase-item img,
.why-visual__frame img,
.capability-card img,
.product-hero__card img {
    image-rendering: auto;
    backface-visibility: hidden;
    filter: saturate(1.035) contrast(1.035);
    will-change: transform;
}

.image-tilt-3d {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
    transition: transform 180ms ease-out, box-shadow var(--transition), border-color var(--transition);
}

.image-tilt-3d::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    content: "";
    opacity: var(--shine-opacity, 0);
    pointer-events: none;
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, .25), transparent 38%);
    border-radius: inherit;
    transition: opacity 180ms ease-out;
}

.image-tilt-3d.is-tilting {
    --shine-opacity: 1;
    box-shadow: 0 26px 54px rgba(5, 25, 37, .18);
}

.image-tilt-3d img {
    transform: translateZ(20px) scale(1.035);
}

.image-tilt-3d.is-tilting img {
    transform: translateZ(36px) scale(1.085);
}

.product-hero__card--one { animation: product-card-float-one 6.4s ease-in-out infinite; }
.product-hero__card--two { animation: product-card-float-two 7.1s ease-in-out infinite; }
.product-hero__card--three { animation: product-card-float-three 6.8s ease-in-out infinite; }

@keyframes product-card-float-one {
    0%, 100% { transform: rotateY(-8deg) rotateZ(-2deg) translate3d(0, 0, 40px); }
    50% { transform: rotateY(-4deg) rotateZ(-1deg) translate3d(0, -10px, 54px); }
}

@keyframes product-card-float-two {
    0%, 100% { transform: rotateY(-13deg) rotateZ(5deg) translate3d(0, 0, 0); }
    50% { transform: rotateY(-9deg) rotateZ(4deg) translate3d(5px, -8px, 16px); }
}

@keyframes product-card-float-three {
    0%, 100% { transform: rotateY(-8deg) rotateZ(2deg) translate3d(0, 0, 50px); }
    50% { transform: rotateY(-4deg) rotateZ(1deg) translate3d(-5px, -9px, 65px); }
}

@media (hover: none), (pointer: coarse) {
    .image-tilt-3d { transform: none; }
    .image-tilt-3d img { transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item.active .hero-media,
    .product-hero__card--one,
    .product-hero__card--two,
    .product-hero__card--three {
        animation: none !important;
    }

    .image-tilt-3d,
    .image-tilt-3d img {
        transform: none !important;
    }
}

/* Final CMYK polish */
.hero-section::after {
    z-index: 2;
    top: auto;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--cyan) 0 33.333%, var(--magenta) 33.333% 66.666%, var(--yellow) 66.666%);
}

.products-section,
.product-catalogue {
    background:
        radial-gradient(circle at 92% 8%, rgba(8, 191, 217, .1), transparent 27%),
        radial-gradient(circle at 4% 92%, rgba(223, 60, 130, .08), transparent 25%),
        linear-gradient(180deg, #eef3f5, #fbfcfd 38%, #edf2f4 100%);
}

.btn-brand {
    background: linear-gradient(135deg, #06afcb, #087892 68%, #064457);
    box-shadow: 0 13px 28px rgba(0, 143, 172, .24), inset 0 1px rgba(255, 255, 255, .34);
}
