:root {
    --navy: #071827;
    --navy-2: #0e2a47;
    --navy-3: #02101d;
    --orange: #ff6b00;
    --orange-2: #ff4d00;
    --ink: #071224;
    --muted: #647084;
    --line: rgba(255, 255, 255, 0.16);
    --white: #ffffff;
    --soft: #f7f9fc;
    --shadow: 0 18px 45px rgba(5, 20, 35, 0.18);
    --container: 1200px;
    --section-gutter: 40px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background: #04111f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: #04111f;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.header-inner {
    width: min(100%, var(--container));
    height: 90px;
    margin: 0 auto;
    padding: 0 var(--section-gutter);
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand-mark {
    flex: 0 0 auto;
    width: 226px;
    line-height: 0;
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
}

.brand-logo-dark {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex: 1 1 auto;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 90px;
}

.nav-item > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 90px;
    white-space: nowrap;
}

.nav-item > a::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    height: 3px;
    background: var(--orange);
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 160ms ease, transform 160ms ease;
    content: "";
}

.nav-item > a:hover::after,
.nav-item > a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.mega-menu {
    position: absolute;
    top: 78px;
    left: 50%;
    width: 230px;
    padding: 14px;
    background: rgba(4, 18, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translate(-50%, 10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu a {
    display: block;
    padding: 9px 10px;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 5px;
}

.mega-menu a:hover {
    color: var(--white);
    background: rgba(255, 107, 0, 0.13);
}

.mobile-nav-cta,
.nav-backdrop {
    display: none;
}

.quote-button,
.primary-button {
    min-height: 44px;
    border: 0;
    border-radius: 5px;
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 12px 24px rgba(255, 91, 0, 0.28);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
    white-space: nowrap;
}

.quote-button {
    padding: 0 25px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 25px;
}

.quote-button:hover,
.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(255, 91, 0, 0.38);
    filter: saturate(1.08);
}

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
}

.menu-toggle[aria-expanded="true"] {
    background: rgba(255, 107, 0, 0.14);
    border-color: rgba(255, 107, 0, 0.82);
    box-shadow: 0 14px 28px rgba(255, 91, 0, 0.16);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
}

.hero-section {
    position: relative;
    min-height: 486px;
    padding-top: 90px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(4, 17, 31, 0.86) 0%, rgba(4, 17, 31, 0.72) 38%, rgba(4, 17, 31, 0.28) 66%, rgba(4, 17, 31, 0.1) 100%),
        url("/assets/images/jnat-hero-bg.png") center center / cover no-repeat;
}

.hero-section::after {
    position: absolute;
    inset: 90px 0 0;
    background:
        linear-gradient(90deg, rgba(255, 107, 0, 0.08), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px);
    opacity: 0.35;
    pointer-events: none;
    content: "";
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    min-height: 396px;
    margin: 0 auto;
    padding: 62px var(--section-gutter) 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 236px;
    gap: 46px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 740px;
    margin: 0;
    color: var(--white);
    text-transform: uppercase;
    font-size: clamp(42px, 4.6vw, 68px);
    line-height: 0.98;
    font-weight: 950;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.hero-copy h1 span {
    display: block;
}

.hero-copy h1 .accent {
    color: var(--orange);
}

.hero-services {
    margin: 20px 0 27px;
    color: rgba(255, 255, 255, 0.93);
    font-size: clamp(16px, 1.9vw, 22px);
    line-height: 1.38;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.36);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-actions .primary-button {
    min-width: 194px;
}

.ghost-button {
    min-height: 44px;
    min-width: 166px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    transition: background 160ms ease, transform 160ms ease;
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.play-icon {
    width: 21px;
    height: 21px;
    border: 2px solid currentColor;
    border-radius: 999px;
    position: relative;
}

.play-icon::after {
    position: absolute;
    top: 50%;
    left: 52%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid currentColor;
    transform: translate(-42%, -50%);
    content: "";
}

.hero-proof-stack {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 210px;
}

.proof-card {
    min-height: 66px;
    padding: 13px 16px;
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 12px;
    background: rgba(7, 18, 31, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    animation: cardIn 560ms ease both;
}

.proof-card:nth-child(2) {
    animation-delay: 80ms;
}

.proof-card:nth-child(3) {
    animation-delay: 160ms;
}

.proof-card:nth-child(4) {
    animation-delay: 240ms;
}

.proof-card strong {
    display: block;
    color: var(--orange);
    font-size: 20px;
    line-height: 1;
    font-weight: 950;
}

.proof-card small {
    display: block;
    margin-top: 4px;
    color: var(--white);
    font-size: 12px;
    line-height: 1.1;
}

.proof-icon,
.metric-icon,
.contact-icon,
.cta-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
}

.proof-icon {
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
}

.proof-icon::before {
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    content: "";
}

.proof-icon-engineer::before {
    border-radius: 999px 999px 4px 4px;
}

.proof-icon-support::after {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 6px;
    height: 8px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-top: 0;
    border-radius: 0 0 9px 9px;
    content: "";
}

.brand-strip {
    padding: 24px 0 28px;
    background: #fff;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(5, 20, 35, 0.06), inset 0 -1px 0 rgba(5, 20, 35, 0.08);
}

.brand-strip-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--section-gutter);
}

.brand-strip-heading {
    margin-bottom: 18px;
    text-align: center;
}

.brand-strip-heading h2 {
    margin: 0;
    color: #071326;
    text-transform: uppercase;
    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 1.08;
    font-weight: 950;
}

.brand-marquee {
    position: relative;
    overflow: hidden;
}

.brand-marquee::before,
.brand-marquee::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 84px;
    pointer-events: none;
    content: "";
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-marquee-track {
    --brand-gap: 60px;
    display: flex;
    align-items: center;
    gap: var(--brand-gap);
    width: max-content;
    animation: brandMarquee 32s linear infinite;
    will-change: transform;
}

.brand-marquee:hover .brand-marquee-track {
    animation-play-state: paused;
}

.brand-marquee-group {
    display: flex;
    align-items: center;
    gap: var(--brand-gap);
    flex-shrink: 0;
}

.brand-item {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    color: #13253f;
}

.brand-item::before {
    flex: 0 0 auto;
    content: "";
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-size: clamp(33px, 2.4vw, 44px);
    line-height: 0.94;
    font-weight: 950;
    white-space: nowrap;
}

.brand-rest,
.brand-accent {
    display: inline-block;
}

.brand-item--bosch {
    color: #dd1f26;
    text-transform: uppercase;
}

.brand-item--bosch::before {
    width: 30px;
    height: 30px;
    margin-right: 16px;
    border: 2px solid rgba(15, 25, 37, 0.42);
    border-radius: 999px;
}

.brand-item--honeywell {
    color: #161616;
}

.brand-item--hikvision {
    color: #4f545d;
    text-transform: uppercase;
    font-style: italic;
}

.brand-item--hikvision .brand-accent {
    color: #d91e27;
}

.brand-item--dahua {
    color: #171717;
    font-style: italic;
}

.brand-item--dahua .brand-accent {
    color: #d42a1e;
}

.brand-item--tp-link {
    color: #131c27;
}

.brand-item--tp-link .brand-accent {
    color: #39bfc8;
}

.brand-item--panasonic {
    color: #0f5fc7;
}

.brand-item--fluke {
    color: #111111;
    text-transform: uppercase;
}

.brand-item--toa {
    color: #70747a;
    text-transform: uppercase;
}

.brand-item--klein-tools {
    color: #181818;
    text-transform: uppercase;
}

.brand-item--klein-tools .brand-wordmark {
    font-size: clamp(27px, 2vw, 34px);
}

@keyframes brandMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(-50% - (var(--brand-gap) / 2)), 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee-track {
        animation: none;
    }
}

.metrics-band {
    background: linear-gradient(90deg, #03111f, #071d32 48%, #03111f);
    color: var(--white);
}

.metrics-grid {
    width: min(100%, var(--container));
    min-height: 150px;
    margin: 0 auto;
    padding: 38px var(--section-gutter);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.metric-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 65px 1fr;
    align-items: center;
    gap: 17px;
    padding: 0 31px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.metric-item:first-child {
    padding-left: 24px;
}

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

.metric-icon {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    border-radius: 10px;
}

.metric-icon::before,
.metric-icon::after {
    position: absolute;
    content: "";
}

.metric-icon-building::before {
    left: 16px;
    right: 16px;
    bottom: 9px;
    height: 34px;
    border: 2px solid currentColor;
    color: rgba(255, 255, 255, 0.86);
}

.metric-icon-building::after {
    left: 23px;
    bottom: 17px;
    width: 5px;
    height: 5px;
    color: rgba(255, 255, 255, 0.86);
    background: currentColor;
    box-shadow: 10px 0 currentColor, 0 -10px currentColor, 10px -10px currentColor;
}

.metric-icon-users {
    border-radius: 999px;
}

.metric-icon-users::before {
    left: 11px;
    top: 13px;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    box-shadow: 20px 0 0 -1px transparent, 20px 0 0 0 rgba(255, 255, 255, 0.86);
}

.metric-icon-check {
    border-radius: 14px;
    transform: rotate(45deg);
}

.metric-icon-check::before {
    left: 17px;
    top: 22px;
    width: 19px;
    height: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
}

.metric-icon-headset {
    border-radius: 999px;
}

.metric-icon-headset::before {
    left: 12px;
    top: 12px;
    width: 27px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.88);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
}

.metric-icon-headset::after {
    left: 13px;
    bottom: 11px;
    width: 6px;
    height: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 23px 0 rgba(255, 255, 255, 0.88);
}

.metric-value {
    display: inline-block;
    color: var(--orange);
    font-size: clamp(28px, 3.2vw, 39px);
    line-height: 0.95;
    font-weight: 950;
}

.metric-label {
    display: block;
    margin-top: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 850;
}

.metric-item small {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.25;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0;
}

.profile-section {
    padding: 64px 0 58px;
    background: #fff;
}

.profile-grid {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--section-gutter);
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 42px;
    align-items: start;
}

.profile-copy h2,
.catalog-heading h2,
.goals-panel h2,
.experience-heading h2,
.compliance-copy h2 {
    margin: 0;
    color: #071326;
    text-transform: uppercase;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.05;
    font-weight: 950;
}

.profile-copy p:not(.section-kicker),
.catalog-heading p,
.compliance-copy p {
    margin: 18px 0 0;
    color: #465468;
    font-size: 16px;
    line-height: 1.65;
}

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

.value-card,
.catalog-card,
.experience-card,
.certificate-card {
    border-radius: 7px;
    box-shadow: 0 13px 30px rgba(8, 28, 48, 0.12);
}

.value-card {
    min-height: 218px;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #e4eaf1;
}

.value-card strong {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 999px;
    font-size: 22px;
    font-weight: 950;
}

.value-card h3,
.catalog-card h3,
.experience-card h3,
.certificate-card h3 {
    margin: 16px 0 10px;
    color: #071326;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 950;
}

.value-card ul,
.catalog-card ul {
    margin: 0;
    padding-left: 18px;
    color: #526074;
    font-size: 13px;
    line-height: 1.55;
}

.solutions-section {
    padding: 31px 0 42px;
    background:
        linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
}

.section-heading {
    width: min(100%, var(--container));
    margin: 0 auto 18px;
    padding: 0 var(--section-gutter);
    text-align: center;
}

.section-heading h2,
.projects-heading h2,
.cta-copy h2 {
    margin: 0;
    color: #071326;
    text-transform: uppercase;
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.05;
    font-weight: 950;
}

.solutions-grid {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--section-gutter);
    display: grid;
    grid-template-columns: repeat(7, minmax(108px, 1fr));
    gap: 8px;
}

.solution-card,
.project-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 7px;
    box-shadow: 0 11px 22px rgba(8, 28, 48, 0.18);
    transition: transform 170ms ease, box-shadow 170ms ease;
}

.solution-card {
    aspect-ratio: 132 / 252;
    background: var(--navy);
}

.solution-card img,
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.solution-card:hover,
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 32px rgba(8, 28, 48, 0.24);
}

.solution-card:hover img,
.project-card:hover img {
    transform: scale(1.035);
}

.product-catalog-section {
    padding: 62px 0;
    color: var(--white);
    background: #061827;
}

.catalog-inner,
.mission-grid,
.experience-inner,
.compliance-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--section-gutter);
}

.catalog-heading {
    max-width: 830px;
    margin-bottom: 26px;
}

.catalog-heading h2 {
    color: var(--white);
}

.catalog-heading p {
    color: rgba(255, 255, 255, 0.78);
}

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

.catalog-card {
    min-height: 222px;
    padding: 24px;
    color: var(--white);
    background: #0d2945;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.catalog-card h3 {
    color: var(--white);
}

.catalog-card ul {
    color: rgba(255, 255, 255, 0.76);
}

.turnkey-strip {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.turnkey-strip span {
    padding: 10px 13px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.mission-section {
    padding: 62px 0;
    background: #f7f9fc;
}

.mission-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 20px;
    align-items: stretch;
}

.mission-cards {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mission-card,
.goals-panel {
    border-radius: 7px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 13px 30px rgba(8, 28, 48, 0.1);
}

.mission-card {
    padding: 28px;
}

.mission-card span {
    color: var(--orange);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 950;
}

.mission-card p {
    margin: 12px 0 0;
    color: #314058;
    font-size: 16px;
    line-height: 1.55;
}

.goals-panel {
    padding: 30px;
}

.goals-panel h2 {
    font-size: clamp(25px, 2.5vw, 34px);
}

.goals-panel ol {
    margin: 22px 0 0;
    padding-left: 24px;
    color: #465468;
    font-size: 15px;
    line-height: 1.55;
}

.goals-panel li + li {
    margin-top: 10px;
}

.projects-section {
    padding: 34px 0 36px;
    background: #fff;
}

.projects-heading {
    width: min(100%, var(--container));
    margin: 0 auto 22px;
    padding: 0 var(--section-gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.projects-heading h2 {
    font-size: clamp(25px, 2.7vw, 33px);
}

.projects-heading a {
    color: var(--orange-2);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}

.projects-grid {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--section-gutter);
    display: grid;
    grid-template-columns: repeat(6, minmax(120px, 1fr));
    gap: 12px;
}

.project-card {
    aspect-ratio: 150 / 158;
}

.project-experience-section {
    padding: 56px 0 62px;
    background: #fff;
}

.experience-heading {
    max-width: 900px;
    margin-bottom: 24px;
}

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

.experience-card {
    min-height: 178px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e3e9f0;
    transition: transform 170ms ease, box-shadow 170ms ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(8, 28, 48, 0.18);
}

.experience-card h3 {
    margin-top: 0;
}

.experience-card p {
    margin: 0;
    color: #4b596e;
    font-size: 13px;
    line-height: 1.45;
}

.experience-card span {
    display: block;
    margin-top: 16px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.compliance-section {
    padding: 60px 0;
    color: var(--white);
    background: #061827;
}

.compliance-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 36px;
    align-items: start;
}

.compliance-copy h2 {
    color: var(--white);
}

.compliance-copy p {
    color: rgba(255, 255, 255, 0.78);
}

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

.certificate-card {
    min-height: 156px;
    padding: 22px;
    color: var(--white);
    background: #0d2945;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.certificate-card h3 {
    margin-top: 0;
    color: var(--white);
}

.certificate-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.55;
}

.solution-page-body {
    background: #f5f8fc;
}

.solution-page-main {
    padding-top: 90px;
}

.solution-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(115deg, #071a2e 0%, #0b2c4d 48%, #04111f 100%);
}

.solution-hero::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 107, 0, 0.12), transparent 28%),
        radial-gradient(circle at 80% 18%, rgba(100, 178, 255, 0.14), transparent 30%);
    pointer-events: none;
    content: "";
}

.solution-hero-shell,
.solution-shell {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-left: var(--section-gutter);
    padding-right: var(--section-gutter);
}

.solution-hero-shell {
    position: relative;
    z-index: 1;
    min-height: 640px;
    padding-top: 62px;
    padding-bottom: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 42px;
    align-items: center;
}

.solution-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.solution-back-link::before {
    width: 9px;
    height: 9px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    content: "";
}

.solution-eyebrow {
    margin: 0 0 14px;
    color: #ff9c4d;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 950;
}

.solution-hero-copy h1 {
    max-width: 700px;
    margin: 0;
    color: var(--white);
    font-size: clamp(40px, 4.1vw, 60px);
    line-height: 1.02;
    font-weight: 950;
    text-transform: uppercase;
}

.solution-hero-body {
    max-width: 700px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
}

.solution-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.solution-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 780px;
    margin-top: 34px;
}

.solution-stat-card {
    min-height: 98px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.solution-stat-card strong {
    display: block;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.solution-stat-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
}

.solution-hero-media {
    position: relative;
    min-width: 0;
    padding-left: 24px;
}

.solution-hero-frame {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.26);
}

.solution-hero-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 17, 31, 0) 35%, rgba(6, 17, 31, 0.34) 100%);
    content: "";
}

.solution-hero-frame img {
    width: 100%;
    aspect-ratio: 560 / 620;
    object-fit: cover;
}

.solution-media-card {
    position: absolute;
    left: 0;
    bottom: 38px;
    width: min(320px, 74%);
    padding: 16px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    background: rgba(6, 17, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.solution-media-card img {
    width: 82px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.solution-media-card small {
    display: block;
    color: rgba(255, 255, 255, 0.54);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.solution-media-card strong {
    display: block;
    margin-top: 6px;
    color: var(--white);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 850;
}

.solution-chip-cloud {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 320px;
}

.solution-chip-cloud span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(7, 24, 42, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.solution-overview-section,
.solution-related-section {
    background: #fff;
}

.solution-overview-section {
    padding: 60px 0 28px;
}

.solution-overview-grid,
.solution-applications-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.solution-overview-copy h2,
.solution-applications-copy h2,
.solution-process-heading h2,
.solution-related-heading h2 {
    margin: 0;
    color: #071326;
    text-transform: uppercase;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.04;
    font-weight: 950;
}

.solution-overview-copy p:last-child,
.solution-applications-copy p:last-child {
    margin: 18px 0 0;
    color: #465468;
    font-size: 16px;
    line-height: 1.74;
}

.solution-outcome-panel,
.solution-technology-band {
    padding: 24px;
    background: #f6f9fd;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.solution-panel-label {
    margin: 0 0 12px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 950;
}

.solution-outcome-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-outcome-list li {
    position: relative;
    padding-left: 20px;
    color: #314058;
    font-size: 14px;
    line-height: 1.7;
}

.solution-outcome-list li + li {
    margin-top: 10px;
}

.solution-outcome-list li::before {
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
}

.solution-deliverables-grid,
.solution-process-grid,
.solution-related-grid {
    display: grid;
    gap: 16px;
}

.solution-deliverables-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
}

.solution-deliverable-card,
.solution-process-card,
.solution-application-card {
    border-radius: 10px;
    border: 1px solid #e3eaf2;
    box-shadow: 0 16px 28px rgba(8, 28, 48, 0.08);
}

.solution-deliverable-card {
    min-height: 220px;
    padding: 22px;
    background: #fff;
}

.solution-card-index {
    margin: 0;
    color: var(--orange);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.solution-deliverable-card h3,
.solution-application-card h3,
.solution-process-card h3 {
    margin: 14px 0 10px;
    color: #071326;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 900;
}

.solution-deliverable-card p,
.solution-application-card p,
.solution-process-card p {
    margin: 0;
    color: #4b596e;
    font-size: 14px;
    line-height: 1.72;
}

.solution-applications-section {
    padding: 28px 0 58px;
    background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
}

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

.solution-application-card {
    min-height: 162px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.96);
}

.solution-technology-band {
    margin-top: 22px;
}

.solution-technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solution-technology-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: #102440;
    background: #fff;
    border: 1px solid #dbe5ef;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.solution-process-section {
    padding: 60px 0;
    color: var(--white);
    background: linear-gradient(180deg, #071a2e 0%, #0b2743 100%);
}

.solution-process-heading h2 {
    color: var(--white);
}

.solution-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
}

.solution-process-card {
    min-height: 224px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.solution-process-card span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    color: var(--white);
    background: rgba(255, 107, 0, 0.18);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.solution-process-card h3 {
    color: var(--white);
}

.solution-process-card p {
    color: rgba(255, 255, 255, 0.72);
}

.solution-related-section {
    padding: 58px 0 64px;
}

.solution-related-heading {
    margin-bottom: 22px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.solution-related-heading a {
    color: var(--orange-2);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}

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

.solution-cta-strip {
    padding: 0 0 48px;
    background: #fff;
}

.solution-cta-strip-inner {
    min-height: 160px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    color: var(--white);
    background: linear-gradient(135deg, #081d33 0%, #0f3457 100%);
    border-radius: 12px;
    box-shadow: 0 24px 42px rgba(8, 28, 48, 0.14);
}

.solution-cta-strip .section-kicker {
    color: var(--accent);
}

.solution-cta-strip h2 {
    margin: 0;
    color: var(--white);
    text-transform: uppercase;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.04;
    font-weight: 950;
    max-width: 15ch;
}

.cta-footer {
    padding: 0 0 18px;
    color: var(--white);
    background: #062645;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(112, 179, 230, 0.16);
}

.cta-row,
.footer-main,
.footer-meta {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-left: var(--section-gutter);
    padding-right: var(--section-gutter);
}

.cta-row {
    min-height: 168px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-intro {
    min-width: 0;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.cta-actions {
    min-width: 0;
    display: grid;
    justify-items: end;
    gap: 14px;
}

.cta-icon {
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background: radial-gradient(circle at 34% 27%, #d8eefc 0%, #b9d4e8 58%, #8bb4d0 100%);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), inset 0 0 18px rgba(255, 255, 255, 0.36);
}

.cta-icon::before {
    position: absolute;
    left: 27px;
    top: 28px;
    width: 34px;
    height: 32px;
    border: 4px solid rgba(255, 255, 255, 0.98);
    border-radius: 4px;
    content: "";
}

.cta-icon::after {
    position: absolute;
    left: 36px;
    top: 41px;
    width: 4px;
    height: 4px;
    color: rgba(255, 255, 255, 0.98);
    background: currentColor;
    border-radius: 1px;
    box-shadow:
        10px 0 currentColor,
        20px 0 currentColor,
        0 10px currentColor,
        10px 10px currentColor,
        20px 10px currentColor;
    content: "";
}

.cta-copy h2 {
    color: var(--white);
    font-size: clamp(28px, 2.2vw, 34px);
    line-height: 1.06;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.32);
}

.cta-copy p {
    max-width: 650px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.38;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
}

.cta-button {
    min-width: 354px;
    min-height: 58px;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: 0;
}

.cta-note-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cta-note-list span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.12fr) minmax(250px, 0.8fr);
    gap: 34px;
    align-items: start;
    padding-top: 30px;
    padding-bottom: 26px;
}

.footer-brand-panel {
    min-width: 0;
    padding-right: 16px;
}

.footer-section-label {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.footer-brand-mark {
    width: min(100%, 274px);
    display: block;
    line-height: 0;
}

.footer-brand-copy {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.footer-capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-capability-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.footer-contact-column {
    min-width: 0;
}

.contact-pill {
    min-width: 0;
    min-height: 96px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 18px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-shadow: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-copy {
    min-width: 0;
    display: block;
}

.contact-copy small {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
}

.contact-copy strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    line-height: 1.42;
    font-weight: 800;
    word-break: break-word;
}

.contact-phone .contact-copy strong,
.contact-mobile .contact-copy strong {
    white-space: nowrap;
}

.contact-mail,
.contact-pin {
    grid-column: span 2;
}

.contact-mail .contact-copy strong,
.contact-pin .contact-copy strong {
    white-space: normal;
    overflow-wrap: anywhere;
}

.contact-icon {
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.contact-icon::before,
.contact-icon::after,
.social-row a::before,
.social-row a::after {
    position: absolute;
    content: "";
}

.contact-phone .contact-icon::before {
    left: 12px;
    top: 10px;
    width: 16px;
    height: 16px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-radius: 0 0 0 12px;
    transform: rotate(-38deg);
}

.contact-phone .contact-icon::after {
    left: 8px;
    top: 9px;
    width: 7px;
    height: 6px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 17px 16px 0 currentColor;
    transform: rotate(-38deg);
}

.contact-mobile .contact-icon::before {
    left: 14px;
    top: 8px;
    width: 14px;
    height: 25px;
    border: 2.5px solid currentColor;
    border-radius: 4px;
}

.contact-mobile .contact-icon::after {
    left: 19px;
    bottom: 8px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: currentColor;
}

.contact-mail .contact-icon::before {
    left: 8px;
    top: 13px;
    width: 28px;
    height: 17px;
    border: 2.5px solid currentColor;
    border-radius: 2px;
}

.contact-mail .contact-icon::after {
    left: 12px;
    top: 15px;
    width: 20px;
    height: 12px;
    border-left: 2.5px solid currentColor;
    border-bottom: 2.5px solid currentColor;
    transform: rotate(-45deg) skew(10deg, 10deg);
}

.contact-pin .contact-icon::before {
    left: 12px;
    top: 7px;
    width: 18px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 999px 999px 999px 2px;
    transform: rotate(-45deg);
}

.contact-pin .contact-icon::after {
    left: 19px;
    top: 14px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: currentColor;
}

.footer-connect {
    min-width: 0;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-connect h3 {
    margin: 0;
    color: var(--white);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.footer-connect p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.65;
}

.footer-link-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.footer-mini-link {
    min-height: 0;
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: transform 160ms ease, background 160ms ease;
}

.footer-mini-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
}

.footer-mini-link small {
    color: rgba(255, 255, 255, 0.52);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
}

.footer-mini-link strong {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    overflow-wrap: anywhere;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.social-row a {
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b2138;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    font-size: 19px;
    font-weight: 950;
    text-transform: uppercase;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.social-row a:hover {
    transform: translateY(-2px);
    color: var(--white);
    background: var(--orange);
}

.social-row a::before {
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 950;
}

.social-row a.social-facebook::before {
    content: "f";
    inset: 0;
    display: grid;
    place-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
}

.social-row a.social-instagram::before {
    inset: auto;
    left: 12px;
    top: 12px;
    width: 18px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 7px;
}

.social-row a.social-instagram::after {
    inset: auto;
    left: 19px;
    top: 19px;
    width: 5px;
    height: 5px;
    border: 2px solid currentColor;
    border-radius: 999px;
    box-shadow: 6px -6px 0 -1px currentColor;
}

.social-row a.social-web::before {
    inset: auto;
    left: 10px;
    top: 10px;
    width: 22px;
    height: 22px;
    border: 2.5px solid currentColor;
    border-radius: 999px;
}

.social-row a.social-web::after {
    inset: auto;
    left: 14px;
    top: 21px;
    width: 14px;
    height: 2.5px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.social-row a.social-mail::before {
    inset: auto;
    left: 10px;
    top: 14px;
    width: 24px;
    height: 16px;
    border: 2.5px solid currentColor;
    border-radius: 3px;
}

.social-row a.social-mail::after {
    inset: auto;
    left: 14px;
    top: 16px;
    width: 16px;
    height: 10px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg) skew(10deg, 10deg);
}

.social-row a.social-call::before {
    inset: auto;
    left: 14px;
    top: 11px;
    width: 14px;
    height: 14px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    border-radius: 0 0 0 12px;
    transform: rotate(-38deg);
}

.social-row a.social-call::after {
    inset: auto;
    left: 10px;
    top: 10px;
    width: 7px;
    height: 6px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 14px 14px 0 currentColor;
    transform: rotate(-38deg);
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 2px;
    color: rgba(255, 255, 255, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-meta-accent {
    color: var(--orange);
}

.survey-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 22px;
}

.survey-modal[hidden] {
    display: none;
}

.modal-scrim {
    position: absolute;
    inset: 0;
    background: rgba(1, 9, 17, 0.74);
    backdrop-filter: blur(8px);
}

.survey-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: min(92vh, 760px);
    overflow: auto;
    padding: 30px;
    color: var(--ink);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    background: #eef2f6;
    font-size: 24px;
    line-height: 1;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--orange);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.survey-panel h2 {
    margin: 0 44px 22px 0;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.08;
}

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

.survey-panel label {
    display: grid;
    gap: 7px;
    color: #223047;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.survey-panel input,
.survey-panel select,
.survey-panel textarea {
    width: 100%;
    border: 1px solid #d9e1ea;
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: #f8fafc;
    font-size: 14px;
    text-transform: none;
}

.survey-panel textarea {
    margin-top: 14px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    margin-top: 18px;
}

.form-errors,
.toast-message {
    color: #fff;
    background: var(--orange-2);
    border-radius: 8px;
}

.form-errors {
    margin-top: 14px;
    padding: 11px 13px;
    font-size: 13px;
    font-weight: 800;
}

.toast-message {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 110;
    padding: 13px 16px;
    box-shadow: var(--shadow);
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateX(22px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1080px) {
    :root {
        --section-gutter: 36px;
    }

    .solution-hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
        gap: 30px;
    }

    .solution-deliverables-grid,
    .solution-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-inner {
        gap: 22px;
    }

    .primary-nav {
        gap: 19px;
        font-size: 11px;
    }

    .quote-button {
        padding: 0 18px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) 210px;
        gap: 28px;
    }
}

@media (max-width: 920px) {
    :root {
        --section-gutter: 22px;
    }

    .solution-page-main {
        padding-top: 78px;
    }

    .solution-hero-shell,
    .solution-overview-grid,
    .solution-applications-grid,
    .solution-cta-strip-inner {
        grid-template-columns: 1fr;
    }

    .solution-hero-shell {
        min-height: auto;
        padding-top: 40px;
    }

    .solution-hero-stats,
    .solution-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-hero-media {
        padding-left: 0;
    }

    .solution-media-card {
        left: 16px;
    }

    .solution-applications-list,
    .solution-deliverables-grid,
    .solution-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution-related-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-marquee-track,
    .brand-marquee-group {
        --brand-gap: 42px;
    }

    .brand-wordmark {
        font-size: clamp(28px, 5vw, 36px);
    }

    .header-inner {
        height: 78px;
    }

    .brand-mark {
        width: 190px;
    }

    .nav-backdrop {
        position: fixed;
        inset: 78px 0 0;
        z-index: 44;
        display: block;
        border: 0;
        padding: 0;
        background: rgba(2, 11, 19, 0.48);
        backdrop-filter: blur(6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    body.nav-open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav {
        position: fixed;
        top: 94px;
        left: 16px;
        right: 16px;
        z-index: 55;
        display: none;
        max-height: calc(100vh - 112px);
        overflow: auto;
        padding: 14px;
        background: linear-gradient(180deg, rgba(6, 24, 40, 0.985) 0%, rgba(10, 33, 54, 0.97) 100%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        box-shadow: 0 28px 68px rgba(2, 10, 18, 0.34);
        gap: 10px;
    }

    .primary-nav.is-open {
        display: grid;
    }

    .nav-item {
        display: grid;
        gap: 8px;
        height: auto;
    }

    .nav-item > a {
        width: 100%;
        min-height: 50px;
        padding: 14px 16px;
        justify-content: space-between;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-item > a:hover,
    .nav-item > a.is-active {
        background: rgba(255, 107, 0, 0.12);
        border-color: rgba(255, 107, 0, 0.28);
    }

    .nav-item > a::after {
        display: none;
    }

    .mega-menu {
        position: static;
        display: grid;
        width: auto;
        padding: 0 0 0 12px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        gap: 8px;
    }

    .mega-menu a {
        padding: 10px 14px;
        color: rgba(255, 255, 255, 0.78);
        background: rgba(255, 255, 255, 0.025);
        border-radius: 10px;
    }

    .mega-menu a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-nav-cta {
        display: block;
        padding-top: 12px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-cta .primary-button {
        width: 100%;
        min-height: 48px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .quote-button {
        display: none;
    }

    .hero-section {
        padding-top: 78px;
        min-height: auto;
    }

    .hero-section::after {
        top: 78px;
    }

    .hero-inner {
        min-height: 560px;
        grid-template-columns: 1fr;
        align-content: center;
    }

    .hero-proof-stack {
        width: 100%;
        max-width: 520px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-self: start;
    }

    .profile-grid,
    .mission-grid,
    .compliance-inner {
        grid-template-columns: 1fr;
    }

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

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }

    .metric-item:nth-child(2) {
        border-right: 0;
    }

    .metric-item:nth-child(3),
    .metric-item:nth-child(4) {
        padding-top: 12px;
    }

    .solutions-grid {
        grid-template-columns: repeat(4, minmax(120px, 1fr));
    }

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

    .projects-grid {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }

    .cta-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .cta-intro {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 18px;
    }

    .cta-actions {
        justify-items: start;
    }

    .cta-note-list {
        justify-content: flex-start;
    }

    .cta-button {
        width: fit-content;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-brand-panel {
        grid-column: 1 / -1;
    }

    .footer-connect {
        grid-column: 1 / -1;
        padding-left: 0;
        padding-top: 22px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 680px) {
    :root {
        --section-gutter: 18px;
    }

    .header-inner {
        justify-content: space-between;
    }

    .menu-toggle {
        margin-left: auto;
    }

    .solution-hero-shell {
        padding-top: 34px;
        padding-bottom: 40px;
    }

    .solution-hero-copy h1 {
        font-size: 36px;
    }

    .solution-hero-body {
        font-size: 16px;
    }

    .solution-hero-actions,
    .solution-hero-actions .primary-button,
    .solution-hero-actions .ghost-button {
        width: 100%;
    }

    .solution-hero-stats,
    .solution-applications-list,
    .solution-deliverables-grid,
    .solution-process-grid,
    .solution-related-grid {
        grid-template-columns: 1fr;
    }

    .solution-media-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .solution-chip-cloud {
        position: static;
        justify-content: flex-start;
        max-width: none;
        margin-top: 14px;
    }

    .solution-overview-section,
    .solution-applications-section,
    .solution-process-section,
    .solution-related-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .solution-cta-strip {
        padding-bottom: 40px;
    }

    .solution-cta-strip-inner {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .brand-strip {
        padding-top: 20px;
        padding-bottom: 22px;
    }

    .brand-marquee::before,
    .brand-marquee::after {
        width: 28px;
    }

    .brand-marquee-track,
    .brand-marquee-group {
        --brand-gap: 28px;
    }

    .brand-wordmark {
        font-size: 26px;
    }

    .brand-item--bosch::before {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }

    .brand-item--klein-tools .brand-wordmark {
        font-size: 24px;
    }

    .header-inner {
        gap: 12px;
    }

    .quote-button {
        display: none;
    }

    .hero-inner {
        min-height: 620px;
        padding: 54px var(--section-gutter) 36px;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-services {
        font-size: 16px;
    }

    .hero-actions,
    .ghost-button,
    .hero-actions .primary-button {
        width: 100%;
    }

    .hero-proof-stack {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        padding: 30px 22px;
    }

    .metric-item,
    .metric-item:first-child,
    .metric-item:last-child {
        padding: 0 0 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .metric-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .profile-section,
    .product-catalog-section,
    .mission-section,
    .project-experience-section,
    .compliance-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .values-grid,
    .catalog-grid,
    .experience-grid,
    .certificate-grid {
        grid-template-columns: 1fr;
    }

    .value-card,
    .catalog-card,
    .mission-card,
    .goals-panel,
    .experience-card,
    .certificate-card {
        padding: 20px;
    }

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

    .projects-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

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

    .cta-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-button {
        width: 100%;
        min-width: 0;
    }

    .cta-intro {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-actions {
        justify-items: stretch;
    }

    .cta-note-list {
        gap: 8px;
    }

    .footer-main,
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-connect {
        padding-top: 20px;
    }

    .footer-mini-link {
        min-height: 0;
        padding-top: 12px;
        padding-bottom: 12px;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .footer-mini-link strong {
        text-align: left;
    }

    .contact-pill {
        min-height: 0;
    }

    .contact-phone .contact-copy strong,
    .contact-mobile .contact-copy strong,
    .contact-mail .contact-copy strong {
        white-space: normal;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }
}
