:root {
    --ink: #071b33;
    --ink-soft: #33465c;
    --muted: #617184;
    --brand: #00a9c6;
    --brand-deep: #007c99;
    --brand-pale: #dff8fc;
    --blue: #1167d8;
    --lime: #b7ef53;
    --paper: #ffffff;
    --canvas: #f4f7fa;
    --line: #dce5ec;
    --shadow-sm: 0 10px 30px rgba(7, 27, 51, .08);
    --shadow-lg: 0 24px 70px rgba(7, 27, 51, .16);
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --shell: 1200px;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink-soft);
    background: var(--paper);
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--brand-deep);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover,
a:focus {
    color: var(--ink);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(0, 169, 198, .42);
    outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .65em;
    color: var(--ink);
    font-family: "Manrope", "DM Sans", sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

h1 { font-size: clamp(2.55rem, 5.7vw, 5.1rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.08; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.35; }
p { margin: 0 0 1.25em; }

.site-shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 9px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    color: var(--paper);
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--brand-deep);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.button,
.btn,
.btn-submit {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    color: var(--ink);
    background: var(--brand);
    box-shadow: 0 8px 24px rgba(0, 169, 198, .22);
    font-family: "DM Sans", sans-serif;
    font-size: .98rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus,
.btn:hover,
.btn:focus,
.btn-submit:hover,
.btn-submit:focus {
    color: var(--ink);
    background: #21bed5;
    box-shadow: 0 12px 30px rgba(0, 169, 198, .3);
    transform: translateY(-2px);
}

.button--secondary {
    border-color: rgba(255,255,255,.28);
    color: var(--paper);
    background: rgba(255,255,255,.08);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.button--secondary:hover,
.button--secondary:focus {
    border-color: rgba(255,255,255,.55);
    color: var(--paper);
    background: rgba(255,255,255,.15);
}

.button--outline {
    border-color: var(--line);
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
}

.button--outline:hover,
.button--outline:focus {
    border-color: var(--brand);
    background: var(--brand-pale);
}

.button--small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: .94rem;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(220, 229, 236, .8);
    background: rgba(255, 255, 255, .96);
    transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 34px rgba(7, 27, 51, .1);
}

.site-utility {
    color: #c9d7e5;
    background: var(--ink);
    font-size: .84rem;
}

.site-utility__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-utility p { margin: 0; }

.site-utility__links {
    display: flex;
    gap: 24px;
}

.site-utility a {
    color: var(--paper);
    font-weight: 600;
    text-decoration: none;
}

.site-utility a span {
    color: var(--brand);
}

.site-nav-wrap { position: relative; }

.site-nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo {
    flex: 0 0 auto;
    width: 228px;
    line-height: 0;
}

.site-logo img { width: 100%; }

.primary-nav { margin-left: auto; }

.primary-nav__list {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.primary-nav__list > li { position: relative; }

.primary-nav__list > li > a:not(.button),
.nav-dropdown__toggle {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border: 0;
    border-radius: 9px;
    color: var(--ink);
    background: transparent;
    font-size: .96rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.primary-nav__list > li > a:not(.button):hover,
.primary-nav__list > li > a:not(.button):focus,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus,
.nav-dropdown.is-open > .nav-dropdown__toggle {
    color: var(--brand-deep);
    background: var(--brand-pale);
}

.nav-dropdown__toggle span {
    font-size: .8em;
    transition: transform .2s ease;
}

.nav-dropdown.is-open > .nav-dropdown__toggle span { transform: rotate(180deg); }

.nav-dropdown__panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 250px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.nav-dropdown__panel::before {
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 13px;
    content: "";
}

.nav-dropdown.is-open > .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__panel a {
    display: block;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--ink-soft);
    font-size: .96rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a:focus {
    color: var(--brand-deep);
    background: var(--canvas);
}

.nav-mega {
    width: 520px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.nav-mega > div + div {
    padding-left: 12px;
    border-left: 1px solid var(--line);
}

.nav-dropdown__eyebrow {
    margin: 4px 10px 6px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    background: var(--paper);
    font-weight: 700;
}

.nav-toggle__icon {
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle__icon span {
    width: 100%;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* Home hero */
.home-hero {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    color: #d8e6f2;
    background:
        radial-gradient(circle at 78% 24%, rgba(0, 169, 198, .2), transparent 28%),
        radial-gradient(circle at 15% 85%, rgba(17, 103, 216, .17), transparent 30%),
        linear-gradient(135deg, #071b33 0%, #0b2747 54%, #071b33 100%);
}

.home-hero::before {
    position: absolute;
    inset: 0;
    opacity: .18;
    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: 52px 52px;
    mask-image: linear-gradient(to right, #000, transparent 68%);
    content: "";
}

.home-hero__grid {
    position: relative;
    min-height: 660px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    align-items: center;
    gap: clamp(40px, 7vw, 94px);
    padding-block: 82px;
}

.home-hero h1 {
    max-width: 780px;
    color: var(--paper);
}

.home-hero h1 span { color: var(--brand); }

.home-hero__lead {
    max-width: 640px;
    margin-bottom: 28px;
    color: #bfd0df;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero__trust {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #a9bdce;
    font-size: .92rem;
    font-weight: 600;
}

.home-hero__trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-hero__trust span::before {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    content: "✓";
    font-size: .7rem;
    font-weight: 900;
}

.home-hero__visual {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
}

.home-hero__orb {
    position: absolute;
    width: min(42vw, 510px);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.13), rgba(0,169,198,.07) 45%, rgba(0,0,0,0) 70%);
}

.home-hero__device {
    position: relative;
    z-index: 1;
    width: min(46vw, 610px);
    filter: drop-shadow(0 38px 40px rgba(0,0,0,.35));
    mix-blend-mode: screen;
    border-radius: 28px;
    clip-path: inset(0 round 28px);
}

.hero-float {
    position: absolute;
    z-index: 2;
    right: -12px;
    bottom: 42px;
    width: min(280px, 65%);
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    color: #dbe8f1;
    background: rgba(10, 35, 62, .76);
    box-shadow: 0 18px 44px rgba(0,0,0,.24);
    backdrop-filter: blur(16px);
}

.hero-float strong {
    display: block;
    color: var(--paper);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.hero-float span { font-size: .9rem; }

.hero-float__pulse {
    width: 9px;
    height: 9px;
    display: inline-block;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(183,239,83,.13);
}

.trust-bar {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.trust-bar__grid {
    min-height: 132px;
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    align-items: center;
}

.trust-bar__intro {
    margin: 0;
    padding-right: 44px;
    color: var(--muted);
    font-weight: 600;
}

.trust-stat {
    min-height: 64px;
    padding-inline: 34px;
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-stat strong {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 1.65rem;
    line-height: 1.2;
}

.trust-stat span {
    color: var(--muted);
    font-size: .91rem;
}

/* Sections and cards */
.section { padding-block: clamp(76px, 10vw, 124px); }
.section--soft { background: var(--canvas); }
.section--dark { color: #c7d4e0; background: var(--ink); }
.section--dark h2, .section--dark h3 { color: var(--paper); }

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

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--ink-soft);
    background: var(--paper);
    box-shadow: 0 8px 30px rgba(7,27,51,.04);
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover,
.service-card:focus-within {
    border-color: rgba(0,169,198,.45);
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    border-radius: 14px;
    color: var(--brand-deep);
    background: var(--brand-pale);
    font-family: "Manrope", sans-serif;
    font-size: .85rem;
    font-weight: 800;
}

.service-card h3 { margin: 34px 0 10px; }
.service-card p { margin-bottom: 24px; color: var(--muted); font-size: .98rem; }

.service-card__link {
    margin-top: auto;
    color: var(--ink);
    font-weight: 700;
}

.service-card__link span { color: var(--brand-deep); }

.finder {
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
    gap: clamp(44px, 8vw, 100px);
    align-items: center;
}

.finder__copy p:not(.eyebrow) {
    max-width: 510px;
    color: var(--muted);
    font-size: 1.06rem;
}

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

.finder__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-weight: 600;
}

.finder__benefits li::before {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--brand-pale);
    content: "✓";
    font-size: .8rem;
}

.finder-panel {
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
}

.finder-panel h3 { margin-bottom: 8px; }
.finder-panel__intro { color: var(--muted); font-size: .98rem; }

.finder-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.finder-form label {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 700;
}

.finder-form label:first-child { grid-column: 1 / -1; }

.finder-form select {
    width: 100%;
    min-height: 52px;
    margin-top: 7px;
    padding: 10px 42px 10px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--ink);
    background: var(--paper);
}

.finder-form button { grid-column: 1 / -1; }

.finder-result {
    margin-top: 22px;
    padding: 20px;
    border-radius: 14px;
    color: var(--ink-soft);
    background: var(--brand-pale);
}

.finder-result[hidden] { display: none; }
.finder-result strong { display: block; margin-bottom: 4px; color: var(--ink); }
.finder-result p { margin: 0 0 14px; font-size: .98rem; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.process-step {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255,255,255,.16);
}

.process-step__number {
    margin-bottom: 36px;
    display: block;
    color: var(--brand);
    font-family: "Manrope", sans-serif;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.process-step p { color: #9fb2c4; }

.product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.filter-button {
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    background: var(--paper);
    font-size: .92rem;
    font-weight: 700;
}

.filter-button:hover,
.filter-button:focus,
.filter-button[aria-pressed="true"] {
    border-color: var(--ink);
    color: var(--paper);
    background: var(--ink);
}

.product-count { margin: 0; color: var(--muted); font-size: .93rem; white-space: nowrap; }

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

.device-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
    transition: transform .25s ease, box-shadow .25s ease;
}

.device-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.device-card[hidden] { display: none; }

.device-card__image {
    position: relative;
    min-height: 280px;
    display: grid;
    place-items: center;
    padding: 26px;
    background: linear-gradient(145deg, #f8fafc, #edf3f7);
}

.device-card__image img {
    max-height: 235px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.device-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--brand-deep);
    background: var(--brand-pale);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.device-card__body { padding: 24px; }
.device-card__body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.device-card__spec { margin-bottom: 18px; color: var(--muted); font-size: .95rem; }
.device-card__body a { color: var(--ink); font-weight: 700; text-decoration: none; }
.device-card__body a::after { margin-left: 6px; color: var(--brand-deep); content: "→"; }

/* Current catalogue, product details, software and news */
.device-card__image {
    color: inherit;
    text-decoration: none;
}

.device-card__range {
    margin-bottom: 8px;
    color: var(--brand-deep);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.catalogue-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
}

.catalogue-intro .section-heading { margin-bottom: 34px; }
.catalogue-intro > .button { flex: 0 0 auto; margin-bottom: 42px; }

.catalogue-controls {
    position: sticky;
    z-index: 40;
    top: 112px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 35px rgba(7,27,51,.08);
    backdrop-filter: blur(16px);
}

.catalogue-search { display: block; margin-bottom: 14px; }
.catalogue-search span { display: block; margin-bottom: 7px; color: var(--ink); font-size: .86rem; font-weight: 800; }
.catalogue-search input {
    width: 100%;
    min-height: 50px;
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: var(--canvas);
}

.catalogue-search input:focus { border-color: var(--brand); outline: 3px solid rgba(0,169,198,.13); }
.catalogue-controls .product-toolbar { margin-bottom: 0; }
.catalogue-grid .device-card__image { min-height: 245px; }
.catalogue-grid .device-card__image img { max-height: 205px; }

.catalogue-empty {
    padding: 30px;
    border: 1px dashed #b9c8d4;
    border-radius: var(--radius);
    color: var(--muted);
    background: var(--paper);
    text-align: center;
}

.source-note {
    margin-top: 34px;
    padding: 18px 20px;
    border-left: 4px solid var(--brand);
    border-radius: 0 12px 12px 0;
    color: var(--muted);
    background: var(--brand-pale);
    font-size: .94rem;
}

.source-note strong { color: var(--ink); }

.breadcrumb {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    color: var(--muted);
    font-size: .88rem;
    white-space: nowrap;
}

.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }

.device-detail-hero,
.software-detail-hero { padding: clamp(42px, 7vw, 88px) 0 clamp(72px, 10vw, 120px); }

.device-detail-hero__grid,
.software-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(44px, 8vw, 108px);
}

.device-detail-hero__image {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    padding: clamp(28px, 5vw, 62px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #fff, #edf3f7);
}

.device-detail-hero__image img { max-height: 410px; object-fit: contain; mix-blend-mode: multiply; }
.device-detail-hero__copy h1,
.software-detail-hero h1 { font-size: clamp(2.45rem, 5vw, 4.7rem); }

.device-detail-hero__lead { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.24rem); }

.device-key-specs {
    margin: 32px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--line);
}

.device-key-specs div { min-height: 88px; display: flex; flex-direction: column; justify-content: center; padding: 16px 18px; background: var(--paper); }
.device-key-specs span { color: var(--muted); font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.device-key-specs strong { margin-top: 3px; color: var(--ink); font-family: "Manrope", sans-serif; }
.device-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.device-detail-layout,
.software-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    align-items: start;
    gap: clamp(44px, 8vw, 100px);
}

.feature-list { margin-top: 38px; display: grid; gap: 16px; }
.feature-list article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.feature-list article > span,
.software-benefits article > span { color: var(--brand-deep); font-family: "Manrope", sans-serif; font-size: .83rem; font-weight: 800; }
.feature-list h3 { margin-bottom: 7px; }
.feature-list p { margin: 0; color: var(--muted); }

.spec-panel {
    position: sticky;
    top: 132px;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.spec-panel h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.spec-list { margin: 26px 0; }
.spec-list div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: .88rem; font-weight: 700; }
.spec-list dd { margin: 0; color: var(--ink); font-weight: 700; }
.spec-panel__note { color: var(--muted); font-size: .94rem; }
.spec-panel hr { margin: 26px 0; border: 0; border-top: 1px solid var(--line); }
.text-link { color: var(--ink); font-weight: 800; text-decoration: none; }

.driver-section {
    scroll-margin-top: 110px;
    background: var(--paper);
}

.driver-section__heading {
    max-width: 900px;
}

.driver-frame {
    min-height: 760px;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.driver-frame iframe {
    display: block;
    min-height: 760px;
    background: var(--paper);
}

.driver-section__help {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .98rem;
}

.driver-section__help a {
    color: var(--ink);
    font-weight: 700;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.software-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.software-card:hover { border-color: rgba(0,169,198,.45); box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.software-card__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: auto; }
.software-card__top p { margin: 0; color: var(--muted); font-size: .82rem; font-weight: 700; text-align: right; }
.software-card__number { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: var(--brand-deep); background: var(--brand-pale); font-family: "Manrope", sans-serif; font-weight: 800; }
.software-card h3 { margin: 34px 0 10px; }
.software-card > p { color: var(--muted); font-size: .98rem; }
.software-card > a { margin-top: auto; color: var(--ink); font-weight: 800; text-decoration: none; }
.software-card > a::after { margin-left: 6px; color: var(--brand-deep); content: "→"; }
.software-path > div:first-child { max-width: 760px; margin-bottom: 50px; }

.software-detail-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(140deg, #071b33, #0b3e60);
}

.software-detail-visual::before { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); background-size: 42px 42px; content: ""; }
.software-detail-visual > span { position: relative; z-index: 2; width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 38px; color: var(--paper); background: rgba(0,169,198,.18); box-shadow: 0 30px 80px rgba(0,0,0,.32); font-family: "Manrope", sans-serif; font-size: 3.5rem; font-weight: 800; backdrop-filter: blur(12px); }
.software-detail-visual > div { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.software-detail-visual > div:nth-of-type(1) { width: 270px; height: 270px; }
.software-detail-visual > div:nth-of-type(2) { width: 380px; height: 380px; }
.software-detail-visual > div:nth-of-type(3) { width: 520px; height: 520px; }
.software-benefits { margin-top: 36px; display: grid; gap: 14px; }
.software-benefits article { min-height: 86px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 18px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.software-benefits p { margin: 0; color: var(--ink); font-weight: 700; }

.software-overview {
    max-width: 760px;
}

.software-overview p {
    color: var(--muted);
    font-size: 1.06rem;
}

.software-overview p:first-child {
    color: var(--ink-soft);
    font-size: 1.12rem;
    font-weight: 600;
}

.software-capabilities {
    margin-top: 46px;
}

.software-capabilities h3 {
    margin-bottom: 20px;
    font-size: 1.35rem;
}

.software-capability-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.software-capability-list li {
    position: relative;
    min-height: 86px;
    padding: 18px 18px 18px 52px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    background: var(--paper);
    font-size: .98rem;
    font-weight: 600;
    line-height: 1.5;
}

.software-capability-list li::before {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--brand-pale);
    content: "✓";
    font-size: .78rem;
    font-weight: 900;
}

.software-facts {
    margin: 0 0 24px;
}

.software-facts div {
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.software-facts div:first-child {
    border-top: 0;
}

.software-facts dt {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
    text-transform: uppercase;
}

.software-facts dd {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.55;
}

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

.software-benefits--grid article {
    min-height: 150px;
    align-content: start;
    grid-template-columns: 40px 1fr;
    padding: 24px;
}

.news-feature {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.news-feature__visual {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(34px, 6vw, 62px);
    color: #bdd0df;
    background: radial-gradient(circle at 70% 20%, rgba(0,169,198,.38), transparent 34%), linear-gradient(145deg, #071b33, #0d3859);
}

.news-feature__visual span { margin-bottom: auto; color: var(--brand); font-size: .84rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.news-feature__visual strong { color: var(--paper); font-family: "Manrope", sans-serif; font-size: clamp(5rem, 10vw, 9rem); line-height: .9; }
.news-feature__visual small { margin-top: 10px; font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.news-feature__visual--image { position: relative; padding: 0; overflow: hidden; background: #102f55; }
.news-feature__visual--image::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,27,51,.08), rgba(7,27,51,.42)); content: ""; }
.news-feature__visual--image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.news-feature__visual--image .news-feature__badge { z-index: 1; align-self: flex-start; margin: 24px; padding: 8px 12px; border-radius: 999px; color: var(--paper); background: rgba(7,27,51,.88); font-size: .76rem; }
.news-feature__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(36px, 7vw, 76px); }
.news-feature__copy h2 { max-width: 800px; font-size: clamp(2rem, 4vw, 3.3rem); }
.news-feature__copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 1.04rem; }
.news-heading { margin-top: clamp(76px, 10vw, 118px); }

.news-meta { display: flex; flex-wrap: wrap; gap: 18px; margin: 4px 0 24px; color: var(--muted); font-size: .86rem; font-weight: 700; }
.news-meta span + span::before { margin-right: 18px; color: var(--brand); content: "•"; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.news-card__visual { min-height: 150px; display: grid; place-items: center; background: linear-gradient(135deg, #0a294c, #0b5570); }
.news-card__visual--2 { background: linear-gradient(135deg, #0c3e5f, #00a9c6); }
.news-card__visual--3 { background: linear-gradient(135deg, #102f55, #1167d8); }
.news-card__visual--4 { background: linear-gradient(135deg, #071b33, #345a78); }
.news-card__visual span { color: rgba(255,255,255,.92); font-family: "Manrope", sans-serif; font-size: 3.6rem; font-weight: 800; }
.news-card__visual--image { overflow: hidden; }
.news-card__visual--image img { width: 100%; height: 100%; min-height: 150px; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card__visual--image img { transform: scale(1.035); }
.news-card__body { padding: 24px; }
.news-card__body h3 { font-size: 1.2rem; }
.news-card__body h3 a { color: var(--ink); text-decoration: none; }
.news-card__body > p { color: var(--muted); font-size: .98rem; }

.article-narrow { max-width: 840px; }
.article-header { padding: clamp(70px, 10vw, 126px) 0; color: #b9cad8; background: radial-gradient(circle at 85% 15%, rgba(0,169,198,.28), transparent 32%), var(--ink); }
.article-header h1 { color: var(--paper); font-size: clamp(2.35rem, 5.5vw, 4.8rem); }
.article-header .news-meta { color: #a9bdce; }
.article-feature-image { max-width: 1120px; margin-top: clamp(32px, 5vw, 58px); margin-bottom: 0; }
.article-feature-image img { width: 100%; max-height: 650px; display: block; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-sm); }
.article-body { padding-block: clamp(62px, 9vw, 108px); }
.article-body p, .article-body li { font-size: 1.04rem; }
.article-body h2 { margin-top: 1.7em; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.article-body h3 { margin-top: 1.5em; }
.article-body ul { margin: 0 0 1.6em; padding-left: 1.25em; }
.article-body li + li { margin-top: .55em; }
.article-lead { color: var(--ink); font-size: clamp(1.2rem, 2vw, 1.42rem) !important; font-weight: 600; line-height: 1.65; }
.article-update { margin: 34px 0; padding: 22px 24px; border-left: 4px solid var(--brand); border-radius: 0 12px 12px 0; color: var(--ink-soft); background: var(--brand-pale); }
.article-footer { margin-top: 62px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .94rem; }
.news-empty { grid-column: 1 / -1; padding: clamp(42px, 7vw, 72px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); text-align: center; }
.news-empty p { margin-bottom: 0; color: var(--muted); }

.location-hero {
    position: relative;
    overflow: hidden;
    color: #b9cad8;
    background: radial-gradient(circle at 82% 16%, rgba(0,169,198,.28), transparent 29%), linear-gradient(135deg, #071b33, #0b2947);
}

.location-hero::after {
    width: 560px;
    height: 560px;
    position: absolute;
    right: -250px;
    bottom: -320px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
    content: "";
}

.location-hero__inner { position: relative; z-index: 1; padding-block: clamp(72px, 10vw, 126px) 0; }
.location-hero h1 { max-width: 980px; color: var(--paper); font-size: clamp(2.6rem, 6vw, 5.2rem); }
.location-hero__lead { max-width: 760px; color: #c4d4df; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.location-office-presence { width: fit-content; display: flex; align-items: center; gap: 13px; margin: 25px 0 0; padding: 11px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: var(--paper); background: rgba(255,255,255,.08); }
.location-office-presence span { padding: 5px 9px; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.location-office-presence strong { font-family: "Manrope", sans-serif; font-size: .92rem; }
.location-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.location-hero .button--ghost { color: var(--paper); border-color: rgba(255,255,255,.42); background: transparent; }
.location-hero .button--ghost:hover { color: var(--ink); background: var(--paper); }

.location-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(60px, 9vw, 96px) 0 0;
    border-top: 1px solid rgba(255,255,255,.15);
}

.location-facts div { padding: 25px 30px 27px 0; }
.location-facts div + div { padding-left: 30px; border-left: 1px solid rgba(255,255,255,.15); }
.location-facts dt { color: var(--paper); font-family: "Manrope", sans-serif; font-size: 1.06rem; font-weight: 800; }
.location-facts dd { margin: 3px 0 0; color: #9eb4c4; font-size: .9rem; }

.location-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(42px, 8vw, 100px); align-items: center; }
.location-intro__copy h2 { max-width: 760px; }
.location-intro__copy > p { max-width: 780px; }
.location-intro__lead { color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.32rem); font-weight: 600; line-height: 1.65; }
.location-distance-card { position: relative; padding: clamp(28px, 5vw, 46px); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--brand-pale); }
.location-distance-card__pin { position: absolute; top: 22px; right: 26px; color: rgba(0,127,153,.22); font-size: 3.5rem; }
.location-distance-card strong { display: block; margin: 9px 0 18px; color: var(--ink); font-family: "Manrope", sans-serif; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.location-distance-card address { margin-bottom: 24px; color: var(--ink-soft); font-style: normal; font-weight: 700; }
.location-distance-card small { display: block; padding-top: 18px; border-top: 1px solid rgba(7,27,51,.12); color: var(--muted); line-height: 1.55; }

.location-service-section .section-heading,
.location-process-section .section-heading,
.location-nearby-section .section-heading { margin-inline: auto; text-align: center; }
.location-service-section .section-heading { max-width: 900px; }
.location-process-section .section-heading { max-width: 760px; }
.location-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.location-benefits article { min-height: 240px; padding: clamp(25px, 4vw, 36px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.location-benefits article > span { color: var(--brand); font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 800; letter-spacing: .12em; }
.location-benefits h3 { margin: 44px 0 12px; font-size: 1.3rem; }
.location-benefits p { margin: 0; color: var(--muted); }

.location-detail { display: grid; grid-template-columns: minmax(340px, .95fr) minmax(0, 1.05fr); gap: clamp(42px, 8vw, 96px); align-items: center; }
.location-detail__media { min-height: 440px; overflow: hidden; border-radius: var(--radius-lg); background: var(--soft); box-shadow: var(--shadow-sm); }
.location-detail__media img { width: 100%; height: 100%; min-height: 440px; display: block; object-fit: cover; }
.location-detail__copy p:not(.eyebrow) { max-width: 690px; color: var(--muted); font-size: 1.05rem; }

.section--ink { color: #b9cad8; background: var(--ink); }
.section-heading--light h2 { color: var(--paper); }
.section-heading--light > p:not(.eyebrow) { color: #abc0cf; }
.location-process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 44px; background: rgba(255,255,255,.13); }
.location-process article { min-height: 250px; padding: clamp(28px, 4vw, 42px); background: var(--ink); }
.location-process span { color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.location-process h3 { margin: 54px 0 12px; color: var(--paper); }
.location-process p { margin: 0; color: #9fb4c3; }

.location-faq-layout { display: grid; grid-template-columns: 1fr; gap: 42px; align-items: start; }
.location-faq-layout > div:first-child { width: min(100%, 760px); margin-inline: auto; text-align: center; }
.location-faq-layout > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.location-faqs { width: min(100%, 900px); margin-inline: auto; }
.location-faqs details { border-top: 1px solid var(--line); }
.location-faqs details:last-child { border-bottom: 1px solid var(--line); }
.location-faqs summary { position: relative; padding: 24px 48px 24px 0; color: var(--ink); font-family: "Manrope", sans-serif; font-size: 1.04rem; font-weight: 800; cursor: pointer; list-style: none; }
.location-faqs summary::-webkit-details-marker { display: none; }
.location-faqs summary::after { position: absolute; top: 22px; right: 4px; color: var(--brand); font-size: 1.5rem; content: "+"; }
.location-faqs details[open] summary::after { content: "−"; }
.location-faqs details p { max-width: 760px; padding: 0 48px 24px 0; color: var(--muted); }

.location-nearby-section .section-heading { max-width: 760px; }
.location-nearby-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.location-nearby-links a { min-height: 126px; display: flex; align-items: flex-start; justify-content: space-between; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: var(--paper); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.location-nearby-links a:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.location-nearby-links strong { font-family: "Manrope", sans-serif; font-size: 1.18rem; }
.location-nearby-links span { color: var(--brand-dark); font-size: .88rem; font-weight: 800; }

@media (max-width: 900px) {
    .location-intro, .location-detail, .location-faq-layout { grid-template-columns: 1fr; }
    .location-benefits, .location-process { grid-template-columns: 1fr; }
    .location-benefits article, .location-process article { min-height: 0; }
    .location-benefits h3, .location-process h3 { margin-top: 26px; }
}

@media (max-width: 650px) {
    .location-hero__actions { flex-direction: column; }
    .location-hero__actions .button { width: 100%; }
    .location-facts { grid-template-columns: 1fr; }
    .location-facts div { padding: 19px 0; }
    .location-facts div + div { padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
    .location-detail__media, .location-detail__media img { min-height: 300px; }
    .location-nearby-links { grid-template-columns: 1fr; }
}

.story-grid {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 24px;
}

.story-grid > *,
.review-carousel,
.story-stats,
.story-stat { min-width: 0; }

.review-carousel__viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
    touch-action: pan-y;
}

.review-carousel__track {
    display: flex;
    transition: transform .42s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.review-carousel__slide { flex: 0 0 100%; }

.testimonial-card {
    position: relative;
    min-height: 330px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin: 0;
    padding: clamp(28px, 4vw, 46px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--paper);
    background: linear-gradient(135deg, #0a294c, #0c3a5a);
}

.testimonial-card::after {
    position: absolute;
    right: -50px;
    bottom: -90px;
    width: 300px;
    height: 300px;
    border: 60px solid rgba(0,169,198,.14);
    border-radius: 50%;
    content: "";
}

.testimonial-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--paper);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.35;
}

.testimonial-card footer,
.testimonial-card figcaption {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: #9eb5c8;
    font-size: .88rem;
}

.review-carousel .testimonial-card blockquote {
    font-size: clamp(1.4rem, 2.35vw, 2rem);
}

.review-carousel__controls {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.review-carousel__arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: var(--paper);
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.review-carousel__arrow:hover,
.review-carousel__arrow:focus-visible { border-color: var(--brand); background: var(--brand-pale); }

.review-carousel__dots { display: flex; align-items: center; gap: 8px; }

.review-carousel__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #b8c5cf;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.review-carousel__dots button[aria-current="true"] { width: 27px; background: var(--brand-deep); }

.not-found-page {
    display: grid;
    min-height: 640px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 28%, rgba(0, 158, 188, .22), transparent 28%),
        linear-gradient(135deg, #071b33 0%, #0b3154 100%);
    color: var(--paper);
    place-items: center;
}

.not-found-page__inner {
    max-width: 900px;
    padding-block: clamp(86px, 12vw, 150px);
    text-align: center;
}

.not-found-page__number {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .12);
    font-family: "Manrope", sans-serif;
    font-size: clamp(7rem, 20vw, 13rem);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .72;
}

.not-found-page h1 { max-width: 760px; margin: 0 auto 20px; color: var(--paper); font-size: clamp(2.3rem, 5vw, 4.4rem); }
.not-found-page__inner > p:not(.eyebrow, .not-found-page__number) { max-width: 680px; margin: 0 auto; color: #c7d5e1; font-size: 1.14rem; }
.not-found-page__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.not-found-page .button--outline { border-color: rgba(255, 255, 255, .54); color: var(--paper); }
.not-found-page .button--outline:hover { border-color: var(--paper); background: var(--paper); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
    .review-carousel__track { transition: none; }
}

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

.story-stat {
    min-height: 186px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.story-stat strong {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.75rem, 2.7vw, 2.65rem);
    line-height: 1;
    overflow-wrap: anywhere;
}

.story-stat span { margin-top: 10px; color: var(--muted); font-size: .86rem; }

.cta-band { padding: 0 0 clamp(76px, 10vw, 124px); background: var(--canvas); }

.cta-band__inner {
    position: relative;
    padding: clamp(38px, 7vw, 72px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: #c6d7e5;
    background: var(--ink);
}

.cta-band__inner::after {
    position: absolute;
    top: -180px;
    right: -90px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,169,198,.28), transparent 68%);
    content: "";
}

.cta-band__content {
    position: relative;
    z-index: 1;
    max-width: 840px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 38px;
}

.cta-band h2 { max-width: 640px; margin-bottom: 0; color: var(--paper); }

/* Shared legacy content modernization */
.inner-banner.pages {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    margin: 0;
    overflow: hidden;
    color: #c9dae8;
    background:
        radial-gradient(circle at 85% 15%, rgba(0,169,198,.26), transparent 30%),
        linear-gradient(135deg, #071b33, #0d3659);
}

.inner-banner.pages::after {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
}

.inner-banner.pages .container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), var(--shell));
    padding: 76px 0;
}

.inner-banner.pages h1 { margin-bottom: 10px; color: var(--paper); font-size: clamp(2.4rem, 5vw, 4.2rem); }
.inner-banner.pages h3 { margin: 0; color: #a9c0d3; font-family: "DM Sans", sans-serif; font-size: 1.16rem; font-weight: 500; letter-spacing: 0; }

.container.pad-container,
.container.pad-container2,
.pad-container-parallax,
.container.container-pad {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
    padding: clamp(64px, 9vw, 108px) 0;
}

.pad-container-parallax { padding-inline: 0; }

.bg-gray { background: var(--canvas); }
.bg-dark-blue { background: var(--ink); }
.bg-darker-gray { background: #041426; }

section img[style*="width: 100%"] { border-radius: var(--radius); }

.services-box-2 {
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
}

.services-box-2 i { color: var(--brand); }

.consultation-card {
    margin-top: 52px;
    padding: clamp(28px, 5vw, 48px);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    color: #b8cad8;
    background: var(--ink);
}

.consultation-card h2 { max-width: 650px; margin-bottom: 12px; color: var(--paper); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.consultation-card p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; }
.consultation-card .button { flex: 0 0 auto; }

.form-container {
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.form-container input,
.form-container select,
.form-container textarea,
.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    min-height: 54px;
    margin-bottom: 14px;
    padding: 13px 15px;
    border: 1px solid #cfdbe4;
    border-radius: 11px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: none;
}

.form-container textarea,
.modern-form textarea { min-height: 150px; resize: vertical; }

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus,
.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    border-color: var(--brand);
    outline: 3px solid rgba(0,169,198,.14);
}

.response { display: none; margin-bottom: 18px; padding: 14px 16px; border-radius: 10px; }
.response.alert-success { color: #125b38; background: #e6f8ee; }
.response.alert-danger { color: #852a2a; background: #fce9e9; }
.response.alert-info { display: block; color: #0b5262; background: var(--brand-pale); }

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: clamp(34px, 7vw, 80px);
    align-items: start;
}

.modern-form__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.modern-form label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .9rem; font-weight: 700; }
.modern-form .field { margin-bottom: 4px; }
.modern-form__note { color: var(--muted); font-size: .9rem; }
.modern-form .g-recaptcha { margin: 6px 0 20px; }

.contact-aside {
    padding: clamp(26px, 4vw, 40px);
    border-radius: var(--radius);
    color: #c5d5e1;
    background: var(--ink);
}

.contact-aside h2,
.contact-aside h3 { color: var(--paper); }
.contact-aside a { color: var(--brand); }
.contact-detail { padding-block: 20px; border-top: 1px solid rgba(255,255,255,.13); }
.contact-detail:first-of-type { margin-top: 26px; }
.contact-detail strong { display: block; margin-bottom: 6px; color: var(--paper); }
.contact-detail p { margin: 0; color: #a9bdce; }

.office-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.office-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); }
.office-card p { margin: 0; color: var(--muted); font-size: .98rem; }

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

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

.product-grid .post {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    border: 1px solid var(--line) !important;
    border-radius: 16px;
    overflow: hidden;
    background: var(--paper);
}

.product-grid .post figure {
    min-height: 225px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 20px;
    background: var(--canvas);
}

.product-grid .post figure img { max-height: 210px; object-fit: contain; mix-blend-mode: multiply; }
.product-grid .post-content { padding: 20px; }
.product-grid .post-content h3 { font-size: 1.05rem; }
.product-grid .post-content h5 { color: var(--muted); font-family: "DM Sans", sans-serif; font-size: .9rem; letter-spacing: 0; }

.sidebar {
    padding: 24px !important;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--canvas);
}

.sidebar ul { padding-left: 0; list-style: none; }
.sidebar li + li { border-top: 1px solid var(--line); }
.sidebar li a { display: block; padding: 10px 2px; color: var(--ink); font-weight: 600; text-decoration: none; }
.sidebar .sep30 { display: none; }

.flexslider {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: none !important;
}

.flexslider .slides img { object-fit: contain; background: var(--paper); }
.product-details { padding: 20px 0 !important; }
.product-details > div:first-child { padding: 28px; border-radius: var(--radius); background: var(--canvas); }

.tabs .etabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.tabs .tab { margin: 0; }
.tabs .tab a { display: block; padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--paper); font-weight: 700; text-decoration: none; }
.tabs .tab.active a, .tabs .tab a[aria-selected="true"] { border-color: var(--ink); color: var(--paper); background: var(--ink); }
.tabs .panel-container { padding: clamp(22px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); }
.tabs .tab-block[hidden] { display: none !important; }

table,
.standard-table {
    width: 100% !important;
    border-collapse: collapse;
    color: var(--ink-soft);
}

th, td { padding: 13px 14px !important; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--ink); background: var(--canvas); }

.iframe-container,
.map-wrapper {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--canvas);
}

.iframe-container iframe { width: 100%; min-height: 720px; border: 0; }

/* Group and footer */
.group-strip { padding-block: 74px; border-top: 1px solid var(--line); background: var(--paper); }
.group-strip .section-heading { margin-bottom: 34px; }
.group-strip h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

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

.group-card {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--muted);
    background: var(--paper);
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.group-card:hover { color: var(--ink); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.group-card img { width: auto; max-width: 190px; max-height: 42px; }
.group-card--it img { max-width: 124px; }

.site-footer {
    padding-top: 78px;
    color: #9eb1c2;
    background: #06172a;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: clamp(32px, 5vw, 70px);
    padding-bottom: 64px;
}

.site-footer__brand img { width: 230px; margin-bottom: 24px; }
.site-footer__brand p { max-width: 350px; }
.site-footer__phone { color: var(--paper); font-family: "Manrope", sans-serif; font-size: 1.35rem; font-weight: 700; text-decoration: none; }
.site-footer__heading { margin-bottom: 20px; color: var(--paper); font-size: 1.03rem; letter-spacing: .04em; }
.site-footer__links { margin: 0; padding: 0; list-style: none; }
.site-footer__links li + li { margin-top: 9px; }
.site-footer a { color: #aebfcd; text-decoration: none; }
.site-footer a:hover, .site-footer a:focus { color: var(--brand); }
.site-footer address { color: #aebfcd; font-style: normal; }
.site-footer__locations { color: var(--brand); font-size: .9rem; }

.site-footer__bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .86rem;
}

.site-footer__bottom p { margin: 0; }
.site-footer__bottom div { display: flex; gap: 22px; }

.back-to-top {
    position: fixed;
    z-index: 800;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    color: var(--ink);
    background: var(--brand);
    box-shadow: var(--shadow-sm);
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@media (min-width: 1025px) {
    .nav-dropdown:hover > .nav-dropdown__panel,
    .nav-dropdown:focus-within > .nav-dropdown__panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .nav-toggle { display: flex; }

    .primary-nav {
        position: fixed;
        z-index: 1100;
        top: 112px;
        right: 0;
        bottom: 0;
        width: min(440px, 100%);
        padding: 22px;
        overflow-y: auto;
        visibility: hidden;
        background: var(--paper);
        box-shadow: -16px 30px 50px rgba(7,27,51,.16);
        transform: translateX(102%);
        transition: transform .25s ease, visibility .25s;
    }

    .primary-nav.is-open { visibility: visible; transform: translateX(0); }
    .primary-nav__list { display: block; }
    .primary-nav__list > li { width: 100%; border-bottom: 1px solid var(--line); }
    .primary-nav__list > li > a:not(.button), .nav-dropdown__toggle { width: 100%; min-height: 54px; justify-content: space-between; padding-inline: 8px; font-size: 1rem; }
    .primary-nav__cta { padding-block: 18px; border-bottom: 0 !important; }
    .primary-nav__cta .button { width: 100%; }
    .nav-dropdown__panel { position: static; width: 100%; min-width: 0; max-height: 0; padding: 0 0 0 10px; border: 0; opacity: 1; visibility: visible; overflow: hidden; box-shadow: none; transform: none; transition: max-height .25s ease, padding .25s ease; }
    .nav-dropdown.is-open > .nav-dropdown__panel { max-height: 560px; padding-bottom: 14px; }
    .nav-mega { display: block; }
    .nav-mega > div + div { margin-top: 10px; padding-left: 0; border-left: 0; }

    .home-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .software-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card { min-height: 280px; }
    .story-grid { grid-template-columns: 1fr; }
    .story-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .testimonial-card { min-height: 0; padding: 30px 38px; }
    .review-carousel__controls { min-height: 50px; margin-top: 10px; }
    .site-footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; }

    .container.pad-container > .col-sm-4.sidebar,
    .container.pad-container > .col-sm-8.content {
        width: 100%;
        float: none;
    }

    .container.pad-container > .col-sm-4.sidebar { margin-bottom: 24px; }
    .container.pad-container > .col-sm-8.content { padding-inline: 0; }

    .container.pad-container > .sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0;
    }

    .container.pad-container > .sidebar li + li { border-top: 0; }

    .container.pad-container > .sidebar li a {
        padding: 8px 13px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--paper);
    }
}

@media (max-width: 820px) {
    .site-utility p { display: none; }
    .site-utility__inner { justify-content: flex-end; }
    .site-utility__links a:last-child { display: none; }

    .home-hero__grid { grid-template-columns: 1fr; padding-block: 70px 30px; }
    .home-hero__visual { min-height: 390px; }
    .home-hero__orb { width: min(82vw, 480px); }
    .home-hero__device { width: min(88vw, 560px); }
    .hero-float { right: 0; }

    .trust-bar__grid { grid-template-columns: repeat(3, 1fr); padding-block: 24px; }
    .trust-bar__intro { grid-column: 1 / -1; margin-bottom: 18px; padding: 0; text-align: center; }
    .trust-stat { padding-inline: 18px; text-align: center; }
    .trust-stat:first-of-type { border-left: 0; }

    .finder { grid-template-columns: 1fr; }
    .catalogue-intro { align-items: flex-start; flex-direction: column; gap: 0; }
    .catalogue-intro > .button { margin: -18px 0 34px; }
    .device-detail-hero__grid, .software-detail-hero__grid { grid-template-columns: 1fr; }
    .device-detail-hero__image { min-height: 390px; }
    .device-detail-layout, .software-detail-layout { grid-template-columns: 1fr; }
    .software-benefits--grid { grid-template-columns: 1fr; }
    .spec-panel { position: static; }
    .news-feature { grid-template-columns: 1fr; }
    .news-feature__visual { min-height: 310px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step__number { margin-bottom: 14px; }
    .device-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; }
    .story-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-band__content { align-items: flex-start; flex-direction: column; }
    .group-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__brand { grid-column: 1 / -1; }
    .product-grid.col4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-layout { grid-template-columns: 1fr; }
    .office-grid { grid-template-columns: 1fr; }
    .consultation-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
    .site-shell { width: min(calc(100% - 28px), var(--shell)); }
    .site-nav { min-height: 70px; }
    .site-logo { width: 190px; }
    .primary-nav { top: 106px; }
    .nav-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

    .home-hero, .home-hero__grid { min-height: 0; }
    .home-hero__grid { gap: 12px; padding-top: 62px; }
    .home-hero__actions { flex-direction: column; }
    .home-hero__actions .button { width: 100%; }
    .home-hero__trust { display: grid; gap: 10px; }
    .home-hero__visual { min-height: 330px; }

    .trust-bar__grid { grid-template-columns: 1fr; }
    .trust-stat { min-height: 70px; border-top: 1px solid var(--line); border-left: 0; }

    .services-grid, .device-grid, .story-stats { grid-template-columns: 1fr; }
    .software-grid, .news-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 260px; }
    .catalogue-controls { position: static; padding: 14px; }
    .catalogue-controls .product-toolbar { align-items: flex-start; }
    .device-detail-hero__image { min-height: 300px; padding: 24px; }
    .device-key-specs { grid-template-columns: 1fr; }
    .device-detail-actions { flex-direction: column; }
    .device-detail-actions .button { width: 100%; }
    .software-detail-visual { min-height: 330px; }
    .software-capability-list { grid-template-columns: 1fr; }
    .news-feature__visual { min-height: 260px; }
    .news-feature__copy { padding: 28px; }
    .finder-panel { border-radius: var(--radius); }
    .finder-form { grid-template-columns: 1fr; }
    .finder-form label:first-child, .finder-form button { grid-column: auto; }
    .product-toolbar { align-items: flex-start; flex-direction: column; }
    .device-card__image { min-height: 240px; }
    .modern-form__row { grid-template-columns: 1fr; gap: 0; }
    .group-grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__brand { grid-column: auto; }
    .site-footer__bottom { padding-block: 22px; align-items: flex-start; flex-direction: column; }
    .site-footer__bottom div { flex-wrap: wrap; }
    .product-grid, .product-grid.col4 { grid-template-columns: 1fr; }
    .tabs .etabs { flex-direction: column; }
    .tabs .tab a { border-radius: 10px; }
    .inner-banner.pages .container { width: min(calc(100% - 28px), var(--shell)); }
}

@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; }
    .js .reveal { opacity: 1; transform: none; }
}
