:root {
    --color-yellow: #fcb716;
    --color-yellow-strong: #ffcc00;
    --color-ink: #181818;
    --color-graphite: #404041;
    --color-muted: #737373;
    --color-line: #e7e3d8;
    --color-paper: #ffffff;
    --color-soft: #f6f4ef;
    --page-bg: var(--color-soft);
    --page-fg: var(--color-ink);
    --text-muted: var(--color-muted);
    --text-secondary: var(--color-graphite);
    --card-bg: var(--color-paper);
    --card-fg: var(--color-ink);
    --panel-bg: var(--color-ink);
    --panel-fg: var(--color-paper);
    --header-bg: rgba(24, 24, 24, 0.94);
    --header-bg-compact: rgba(24, 24, 24, 0.97);
    --header-fg: var(--color-paper);
    --services-menu-bg: rgba(255, 255, 255, 0.985);
    --services-menu-fg: var(--color-ink);
    --services-menu-border: rgba(24, 24, 24, 0.12);
    --services-menu-hover-bg: rgba(24, 24, 24, 0.055);
    --services-overview-bg: #fff7df;
    --services-overview-fg: var(--color-ink);
    --services-overview-border: rgba(252, 183, 22, 0.78);
    --utility-bg: #111111;
    --action-bg: var(--color-yellow);
    --action-fg: var(--color-ink);
    --theme-toggle-bg: rgba(255, 255, 255, 0.12);
    --theme-toggle-bg-active: var(--color-yellow);
    --theme-toggle-thumb-bg: var(--color-paper);
    --theme-toggle-thumb-fg: var(--color-ink);
    --line-color: var(--color-line);
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.14);
    --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.11);
    --radius: 8px;
    --content-width: 1180px;
    --font-body: "D-DIN", Arial, Helvetica, sans-serif;
    --font-accent: "D-DIN", Arial, Helvetica, sans-serif;
    --type-base: 1em;
    --type-hero: 4.4em;
    --type-h2: 3.1em;
    --type-h3: 1.42em;
    --type-h4: 1.22em;
    --type-h5: 1.05em;
    --type-h6: 0.88em;
    --type-body: 1em;
    --type-lead: 1.18em;
    --type-small: 0.78em;
    --type-nav: 0.94em;
    --type-main-nav: 1.08em;
    --type-footer: 0.95em;
    --leading-tight: 1.06;
    --leading-copy: 1.52;
    --weight-regular: 400;
    --weight-bold: 700;
}

@supports (color: contrast-color(white)) {
    :root {
        --page-fg: contrast-color(var(--page-bg));
        --card-fg: contrast-color(var(--card-bg));
        --panel-fg: contrast-color(var(--panel-bg));
        --header-fg: contrast-color(#181818);
        --action-fg: contrast-color(var(--action-bg));
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--page-fg);
    background: var(--page-bg);
    font-family: var(--font-body);
    font-size: var(--type-base);
    line-height: 1.55;
}

body.type-scale-small {
    --type-base: 0.9375em;
}

body.type-scale-big {
    --type-base: 1.0625em;
}

body.type-scale-huge {
    --type-base: 1.125em;
}

body.is-site-dark {
    --page-bg: #101010;
    --page-fg: var(--color-paper);
    --text-muted: #c6c6c6;
    --text-secondary: #dedede;
    --card-bg: #202020;
    --card-fg: var(--color-paper);
    --panel-bg: #f6f4ef;
    --panel-fg: var(--color-ink);
    --header-bg: rgba(12, 12, 12, 0.96);
    --header-bg-compact: rgba(12, 12, 12, 0.98);
    --header-fg: var(--color-paper);
    --services-menu-bg: #151515;
    --services-menu-fg: var(--color-paper);
    --services-menu-border: rgba(255, 255, 255, 0.16);
    --services-menu-hover-bg: rgba(255, 255, 255, 0.08);
    --services-overview-bg: #242424;
    --services-overview-fg: var(--color-paper);
    --services-overview-border: var(--color-yellow);
    --utility-bg: #000000;
    --theme-toggle-bg: rgba(255, 255, 255, 0.18);
    --theme-toggle-bg-active: var(--color-yellow);
    --theme-toggle-thumb-bg: #151515;
    --theme-toggle-thumb-fg: var(--color-yellow);
    --line-color: #343434;
    color-scheme: dark;
}

body.is-auth-modal-open {
    overflow: hidden;
}

@supports (color: contrast-color(white)) {
    body.is-site-dark {
        --page-fg: contrast-color(var(--page-bg));
        --card-fg: contrast-color(var(--card-bg));
        --panel-fg: contrast-color(var(--panel-bg));
        --header-fg: contrast-color(#0c0c0c);
    }
}

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

a {
    color: inherit;
}

button {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    color: var(--header-fg);
    background: var(--header-bg);
    border-bottom: 3px solid var(--color-yellow);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.utility-strip {
    min-height: 34px;
    background: var(--utility-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: min-height 0.3s ease;
}

.utility-strip-inner {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    width: min(var(--content-width), calc(100% - 36px));
    margin: 0 auto;
    padding: 5px 0;
}

.language-picker {
    position: relative;
}

.type-scale-picker {
    position: relative;
}

.utility-button,
.menu-toggle {
    display: grid;
    place-items: center;
    width: 32px;
    height: 28px;
    padding: 0;
    color: var(--header-fg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.language-toggle,
.type-scale-toggle {
    grid-template-columns: auto auto;
    column-gap: 5px;
    width: auto;
    min-width: 50px;
    padding: 0 8px;
}

.type-scale-toggle {
    min-width: 76px;
}

.utility-auth {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 72px;
}

.utility-auth[hidden] {
    display: none;
}

.utility-auth-user {
    display: none;
    place-items: center;
    width: 32px;
    height: 28px;
}

.utility-auth[data-clerk-state="signed-in"] .utility-clerk-entry {
    display: none;
}

.utility-auth[data-clerk-state="signed-in"] .utility-auth-user {
    display: grid;
}

.utility-auth .cl-userButtonBox,
.utility-auth .cl-userButtonTrigger {
    width: 32px;
    height: 28px;
}

.utility-auth .cl-userButtonTrigger {
    border-radius: 4px;
}

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

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(5px);
}

.auth-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.auth-modal-dialog:focus {
    outline: 2px solid var(--color-yellow);
    outline-offset: 4px;
}

.auth-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line-color);
}

.auth-modal-header h2 {
    margin: 0;
    font-family: var(--font-accent);
    font-size: 1.05em;
    line-height: 1.1;
}

.auth-modal-close {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    color: var(--card-fg);
    background: transparent;
    border: 1px solid var(--line-color);
    border-radius: 4px;
    cursor: pointer;
}

.auth-modal-close:hover,
.auth-modal-close:focus-visible {
    color: var(--action-fg);
    background: var(--action-bg);
    border-color: var(--color-yellow);
}

.auth-modal-body {
    display: grid;
    padding: 18px;
}

.auth-modal-mount {
    display: grid;
    place-items: center;
    min-height: 420px;
}

.auth-modal-mount .cl-rootBox {
    width: 100%;
}

.current-language,
.current-type-scale {
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.language-menu,
.type-scale-menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    z-index: 620;
    display: none;
    min-width: 132px;
    padding: 6px;
    color: var(--header-fg);
    background: var(--header-bg-compact);
    border: 1px solid rgba(252, 183, 22, 0.38);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.language-menu a,
.type-scale-menu button {
    display: block;
    width: 100%;
    padding: 8px 10px;
    color: inherit;
    background: transparent;
    border: 0;
    font-family: var(--font-accent);
    font-size: var(--type-nav);
    font-weight: var(--weight-bold);
    line-height: 1.15;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.language-menu a:hover,
.language-menu a:focus,
.language-menu a[aria-current="page"],
.type-scale-menu button:hover,
.type-scale-menu button:focus,
.type-scale-menu button[aria-current="true"] {
    color: var(--action-fg);
    background: var(--action-bg);
}

.is-language-open .language-menu {
    display: block;
}

.is-type-scale-open .type-scale-menu {
    display: block;
}

.utility-button:hover,
.utility-button:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    color: var(--action-fg);
    background: var(--action-bg);
    border-color: var(--color-yellow);
}

.theme-toggle {
    display: grid;
    place-items: center;
    width: 54px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.theme-toggle-track {
    position: relative;
    display: block;
    width: 54px;
    height: 28px;
    overflow: hidden;
    background: var(--theme-toggle-bg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.22);
    transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.theme-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: var(--theme-toggle-thumb-fg);
    background: var(--theme-toggle-thumb-bg);
    border-radius: 50%;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    transform: translateX(0);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.28s ease, color 0.28s ease;
}

.theme-toggle-thumb .fa-solid {
    font-size: var(--type-small);
    line-height: 1;
    transition: transform 0.28s ease;
}

.theme-toggle:hover .theme-toggle-track,
.theme-toggle:focus .theme-toggle-track {
    border-color: var(--color-yellow);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.22), 0 0 0 2px rgba(252, 183, 22, 0.2);
}

.theme-toggle[aria-pressed="true"] .theme-toggle-track {
    background: var(--theme-toggle-bg-active);
    border-color: var(--color-yellow);
}

.theme-toggle[aria-pressed="true"] .theme-toggle-thumb {
    transform: translateX(26px);
}

.theme-toggle[aria-pressed="true"] .theme-toggle-thumb .fa-solid {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    width: 36px;
    height: 36px;
}

.site-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(var(--content-width), calc(100% - 36px));
    min-height: 98px;
    margin: 0 auto;
    padding: 7px 0;
    transition: min-height 0.3s ease, padding 0.3s ease;
}

.is-header-compact .site-header {
    background: var(--header-bg-compact);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.is-header-compact .utility-strip {
    min-height: 28px;
}

.is-header-compact .site-header-inner {
    min-height: 60px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.brand {
    position: relative;
    display: grid;
    align-items: center;
    width: min(380px, 62vw);
    min-height: 76px;
    transition: width 0.3s ease, min-height 0.3s ease;
}

.brand-logo {
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity 0.24s ease, transform 0.3s ease, max-height 0.3s ease;
}

.brand-logo-full {
    max-width: 100%;
    max-height: 82px;
}

.brand-logo-compact {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    opacity: 0;
    transform: scale(0.82);
}

.is-header-compact .brand {
    width: 48px;
    min-height: 42px;
}

.is-header-compact .brand-logo-full {
    max-height: 42px;
    opacity: 0;
    transform: scale(0.72);
}

.is-header-compact .brand-logo-compact {
    opacity: 1;
    transform: scale(1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    margin-left: auto;
    color: var(--header-fg);
    font-family: var(--font-accent);
    font-size: var(--type-main-nav);
    font-weight: var(--weight-bold);
    line-height: 1;
    transition: gap 0.3s ease, font-size 0.3s ease;
}

.is-header-compact .main-nav {
    gap: clamp(10px, 1.6vw, 22px);
    font-size: 1em;
}

.main-nav a {
    text-decoration: none;
}

.nav-mega-item {
    position: relative;
}

.nav-mega-item::after {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 29;
    display: none;
    width: min(780px, calc(100vw - 36px));
    height: 18px;
    content: "";
}

.nav-mega-item:hover::after,
.nav-mega-item:focus-within::after,
.nav-mega-item.is-services-menu-open::after {
    display: block;
}

.nav-mega-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-mega-link {
    line-height: 1;
}

.nav-mega-toggle {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    padding: 0;
    color: currentColor;
    font-size: 0.78em;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 4px;
}

.nav-mega-toggle .fa-solid {
    transition: transform 0.18s ease;
}

.nav-mega-toggle:hover,
.nav-mega-toggle:focus-visible {
    color: var(--color-yellow);
    outline: 2px solid rgba(252, 183, 22, 0.5);
    outline-offset: 2px;
}

.services-mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 30;
    width: min(780px, calc(100vw - 36px));
    padding: 16px;
    color: var(--services-menu-fg);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    background: var(--services-menu-bg);
    border: 1px solid var(--services-menu-border);
    border-radius: 6px;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-mega-item:hover .services-mega-menu,
.nav-mega-item:focus-within .services-mega-menu,
.nav-mega-item.is-services-menu-open .services-mega-menu {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.nav-mega-item:hover .nav-mega-toggle .fa-solid,
.nav-mega-item:focus-within .nav-mega-toggle .fa-solid,
.nav-mega-item.is-services-menu-open .nav-mega-toggle .fa-solid {
    transform: rotate(180deg);
}

.services-overview-link,
.services-mega-link {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: var(--services-menu-fg);
    text-decoration: none;
    border-radius: 4px;
}

.services-overview-link {
    margin-bottom: 10px;
    padding: 10px 12px;
    color: var(--services-overview-fg);
    font-size: 1em;
    background: var(--services-overview-bg);
    border-left: 4px solid var(--services-overview-border);
}

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

.services-mega-link {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.98em;
    line-height: 1.15;
}

.services-mega-link .fa-solid,
.services-overview-link .fa-solid {
    color: var(--color-yellow);
}

.services-mega-link:hover,
.services-mega-link:focus-visible,
.services-overview-link:hover,
.services-overview-link:focus-visible {
    color: var(--services-menu-fg);
    background: var(--services-menu-hover-bg);
    outline: 0;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--color-yellow);
}

.corner-ribbon {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 600;
    display: none;
    width: 200px;
    height: 200px;
    pointer-events: none;
    background: no-repeat url("../img/top-right-corner.svg") 0 0 / 100%;
    transform-origin: top right;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.is-header-compact .corner-ribbon {
    width: 120px;
    height: 120px;
    opacity: 0.96;
    transform: translate(8px, -8px);
}

.hero,
.section {
    width: min(var(--content-width), calc(100% - 36px));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
    min-height: calc(100vh - 84px);
    padding: clamp(42px, 7vw, 92px) 0;
}

.hero-clean {
    min-height: calc(92vh - 84px);
}

.hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: var(--weight-bold);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.breadcrumb {
    margin: 0 0 14px;
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: var(--weight-bold);
    line-height: 1.15;
    text-transform: uppercase;
}

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

.breadcrumb li {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}

.breadcrumb li + li::before {
    content: "\f054";
    color: var(--text-muted);
    font-family: "Font Awesome 7 Free";
    font-size: 0.72em;
    font-weight: 900;
    line-height: 1;
}

.breadcrumb a,
.breadcrumb span {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-height: 1.2em;
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
    color: var(--page-fg);
}

.text-reader {
    --reader-control-bg: color-mix(in srgb, var(--card-bg) 88%, var(--color-yellow));
    --reader-control-border: color-mix(in srgb, var(--line-color) 78%, var(--color-yellow));
    display: grid;
    grid-template-columns: auto auto minmax(108px, max-content) minmax(180px, 1fr) minmax(180px, 1fr);
    column-gap: 14px;
    row-gap: 8px;
    align-items: end;
    max-width: 900px;
    width: 100%;
    min-width: 0;
    margin: 2px 0 4px;
    padding: 10px;
    background: var(--reader-control-bg);
    border: 1px solid var(--reader-control-border);
    border-left: 4px solid var(--color-yellow);
    border-radius: 4px;
}

.text-reader-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 38px;
    min-width: 96px;
    padding: 8px 12px;
    color: var(--action-fg);
    background: var(--action-bg);
    border: 1px solid var(--color-yellow);
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    line-height: 1;
    align-self: end;
}

.text-reader-toggle .fa-solid {
    display: inline-grid;
    place-items: center;
    flex: 0 0 1.15em;
    width: 1.15em;
    height: 1.15em;
    line-height: 1;
}

.text-reader-toggle [data-reader-button-label] {
    display: inline-block;
    min-width: 4.7em;
    text-align: left;
}

.text-reader-toggle:hover,
.text-reader-toggle:focus-visible {
    color: var(--card-fg);
    background: var(--page-bg);
    outline: 3px solid rgba(252, 183, 22, 0.24);
}

.text-reader-wave {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    height: 28px;
    padding: 0 4px;
    align-self: end;
    margin-bottom: 5px;
}

.text-reader-wave span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--color-yellow);
    border-radius: 999px;
    opacity: 0.58;
    transform-origin: center;
}

.text-reader-wave span:nth-child(2) {
    height: 16px;
}

.text-reader-wave span:nth-child(3) {
    height: 22px;
}

.text-reader-wave span:nth-child(4) {
    height: 14px;
}

.text-reader-wave span:nth-child(5) {
    height: 19px;
}

.text-reader.is-speaking .text-reader-wave span {
    animation: text-reader-wave 880ms ease-in-out infinite;
    opacity: 1;
}

.text-reader.is-speaking .text-reader-wave span:nth-child(2) {
    animation-delay: 100ms;
}

.text-reader.is-speaking .text-reader-wave span:nth-child(3) {
    animation-delay: 200ms;
}

.text-reader.is-speaking .text-reader-wave span:nth-child(4) {
    animation-delay: 300ms;
}

.text-reader.is-speaking .text-reader-wave span:nth-child(5) {
    animation-delay: 400ms;
}

.text-reader.is-paused .text-reader-wave span {
    animation: none;
    opacity: 0.36;
}

.text-reader-time,
.text-reader-speed,
.text-reader-voice,
.text-reader-status {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-small);
    line-height: 1.25;
}

.text-reader-time,
.text-reader-speed,
.text-reader-voice {
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.text-reader-time {
    min-width: 118px;
    align-self: end;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    white-space: nowrap;
}

.text-reader-time [data-reader-current],
.text-reader-time [data-reader-duration] {
    display: inline-block;
    width: 4.2em;
    text-align: right;
}

.text-reader-speed {
    display: grid;
    grid-template-rows: 1em 34px;
    gap: 6px;
    min-width: 0;
    width: 100%;
    align-self: end;
}

.text-reader-voice {
    display: grid;
    grid-template-rows: 1em 34px;
    gap: 6px;
    min-width: 0;
    width: 100%;
    align-self: end;
}

.text-reader-speed span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.text-reader-speed strong {
    color: var(--page-fg);
}

.text-reader-speed input[type="range"] {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 34px;
    accent-color: var(--color-yellow);
}

.text-reader-voice select {
    box-sizing: border-box;
    min-height: 34px;
    min-width: 0;
    width: 100%;
    padding: 6px 28px 6px 9px;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    font: inherit;
    accent-color: var(--color-yellow);
}

.service-page .text-reader {
    grid-template-columns: auto auto minmax(108px, max-content) minmax(180px, 1fr);
}

.service-page .text-reader-voice {
    grid-column: 4;
}

.text-reader-status {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-reader.is-speaking {
    border-color: var(--color-yellow);
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--page-fg);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    letter-spacing: 0;
    line-height: var(--leading-tight);
}

h1 {
    max-width: 780px;
    font-size: var(--type-hero);
}

h2 {
    font-size: var(--type-h2);
}

h3 {
    font-size: var(--type-h3);
}

h4 {
    font-size: var(--type-h4);
}

h5 {
    font-size: var(--type-h5);
}

h6 {
    color: var(--text-secondary);
    font-size: var(--type-h6);
    text-transform: uppercase;
}

.lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--text-secondary);
    font-size: var(--type-lead);
    line-height: var(--leading-copy);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    min-width: 0;
    padding: 12px 18px;
    border: 2px solid var(--page-fg);
    border-radius: var(--radius);
    font-family: var(--font-accent);
    font-size: var(--type-nav);
    font-weight: var(--weight-bold);
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button.primary {
    color: var(--action-fg);
    background: var(--action-bg);
    border-color: var(--color-yellow);
}

.button.secondary {
    color: var(--page-fg);
    background: transparent;
}

.button:hover,
.button:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(252, 183, 22, 0.22);
}

.button .fa-solid {
    font-size: 0.92em;
}

.hero-media {
    min-width: 0;
    margin: 0;
    box-shadow: var(--shadow-soft);
}

.hero-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
}

.section {
    padding: clamp(48px, 7vw, 48px) 0;
}

#dienste {
    scroll-margin-top: clamp(96px, 10vw, 128px);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    column-gap: 28px;
    row-gap: 14px;
    align-items: end;
    margin-bottom: 30px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.section-heading h1,
.section-heading h2 {
    grid-column: 1;
}

.section-heading p:last-child {
    grid-column: 2;
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-lead);
    line-height: var(--leading-copy);
}

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

.service-card {
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-card div {
    padding: 20px;
}

.service-card p {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.service-card-link {
    display: block;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card-link:hover,
.service-card-link:focus {
    border-color: color-mix(in srgb, var(--color-yellow) 64%, var(--line-color));
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.service-page {
    --service-top-gap: clamp(42px, 6vw, 48px);
    padding-top: calc(var(--header-offset, clamp(40px, 5vw, 72px)) + var(--service-top-gap));
}

.service-page > .section + .section {
    margin-top: clamp(24px, 4vw, 46px);
}

.service-page > .section:first-child {
    padding-top: 0;
}

.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
    min-height: auto;
}

.service-hero > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-self: start;
    min-width: 0;
    max-width: 820px;
}

.service-hero figure {
    margin: 0;
}

.service-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

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

.service-detail-panel {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: clamp(22px, 3vw, 32px);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.service-detail-panel p,
.service-detail-panel li {
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.service-detail-panel ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 1.1em;
}

#symptome,
#beispiele,
#ablauf {
    scroll-margin-top: clamp(96px, 10vw, 128px);
}

.service-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
    gap: 16px 28px;
    align-items: end;
    margin-bottom: 26px;
}

.service-section-heading .eyebrow {
    grid-column: 1 / -1;
}

.service-section-heading h2 {
    max-width: 680px;
}

.service-section-heading p:last-child {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-lead);
    line-height: var(--leading-copy);
}

.service-symptom-grid,
.service-case-grid {
    display: grid;
    gap: 18px;
}

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

.service-symptom-grid article,
.service-case-card {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.service-symptom-grid .fa-solid {
    color: var(--color-yellow);
    font-size: 1.55rem;
}

.service-symptom-grid h3,
.service-timeline h3 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.service-symptom-grid p,
.service-case-card p,
.service-timeline p,
.service-tech-section p,
.service-cta-band p {
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

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

.service-case-number {
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.service-case-card h2 {
    font-size: var(--type-h3);
    line-height: 1.12;
}

.service-case-card strong {
    color: var(--page-fg);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.service-timeline-section,
.service-tech-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
}

.service-timeline-section {
    padding: clamp(28px, 5vw, 52px);
    background: var(--card-bg);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.service-timeline-section .service-section-heading {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.service-timeline {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-timeline li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
}

.service-timeline > li > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--action-fg);
    background: var(--action-bg);
    border-radius: 50%;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.service-timeline div {
    display: grid;
    gap: 5px;
}

.service-tech-section {
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    background: var(--card-bg);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.service-tech-section > div {
    display: grid;
    gap: 12px;
}

.service-tech-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-tech-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.service-tech-list .fa-solid {
    color: var(--color-yellow);
}

.service-cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: clamp(44px, 6vw, 76px);
    padding: clamp(24px, 4vw, 44px);
    color: var(--panel-fg);
    background: var(--panel-bg);
    border-top: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.service-cta-band > div {
    display: grid;
    gap: 12px;
}

.service-cta-band h2,
.service-cta-band p {
    color: var(--panel-fg);
}

.ai-expert-page {
    --ai-panel: color-mix(in srgb, var(--color-yellow) 12%, var(--card-bg));
    --ai-dark: #111719;
}

.ai-expert-hero .hero-actions {
    margin-top: 18px;
}

.ai-expert-hero h1 {
    max-width: 820px;
    font-size: clamp(2.65rem, 4.8vw, 3.9rem);
}

.ai-workflow-board {
    display: grid;
    gap: 16px;
    padding: clamp(16px, 3vw, 24px);
    color: var(--color-paper);
    background:
        linear-gradient(rgba(255, 183, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 183, 0, 0.08) 1px, transparent 1px),
        var(--ai-dark);
    background-size: 32px 32px;
    border: 1px solid rgba(255, 183, 0, 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.ai-workflow-board figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: calc(var(--radius) - 2px);
}

.ai-workflow-board img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.ai-workflow-lanes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ai-workflow-lanes article,
.ai-license-grid article,
.ai-level-grid article {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 16px;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 4px solid var(--color-yellow);
    border-radius: calc(var(--radius) - 2px);
}

.ai-workflow-lanes span,
.ai-level-grid span {
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.ai-workflow-lanes strong,
.ai-license-grid strong,
.ai-level-grid h2 {
    color: var(--color-paper);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.ai-workflow-lanes small,
.ai-license-grid span,
.ai-level-grid p {
    color: rgba(248, 246, 239, 0.78);
    font-size: var(--type-small);
    line-height: 1.55;
}

.ai-use-case-strip,
.ai-license-grid,
.ai-level-grid {
    display: grid;
    gap: 18px;
}

.ai-use-case-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ai-use-case-strip article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.ai-use-case-strip .fa-solid {
    color: var(--color-yellow);
    font-size: 1.55rem;
}

.ai-use-case-strip h2 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.ai-use-case-strip p,
.ai-readiness-band p,
.ai-copilot-band p,
.ai-term-cloud-section p {
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.ai-readiness-band,
.ai-copilot-band {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
    gap: clamp(20px, 4vw, 42px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    background: var(--ai-panel);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.ai-readiness-band > div,
.ai-copilot-band > div {
    display: grid;
    gap: 10px;
}

.ai-license-section,
.ai-term-cloud-section {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
}

.ai-license-section .service-section-heading,
.ai-term-cloud-section .service-section-heading {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

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

.ai-license-grid article,
.ai-level-grid article {
    min-height: 138px;
    background: var(--ai-dark);
}

.ai-term-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: start;
    padding: clamp(20px, 3vw, 28px);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.ai-term-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    color: var(--page-fg);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: 999px;
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
}

.ai-term-cloud .lg {
    font-size: var(--type-body);
}

.ai-term-cloud .xl {
    color: var(--action-fg);
    background: var(--action-bg);
    font-size: var(--type-h4);
}

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

.ai-pilot-flow {
    background: var(--ai-panel);
}

.smart-home-service-page {
    --smart-home-panel: color-mix(in srgb, var(--color-yellow) 12%, var(--card-bg));
    --smart-home-dark: #111719;
}

.smart-home-service-hero .hero-actions {
    margin-top: 18px;
}

.smart-home-service-hero h1 {
    max-width: 820px;
    font-size: clamp(2.65rem, 4.8vw, 3.9rem);
}

.smart-home-hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.smart-home-hero-visual img {
    border-radius: 0;
    box-shadow: none;
}

.smart-home-hero-visual figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: grid;
    gap: 8px;
}

.smart-home-hero-visual figcaption span {
    width: fit-content;
    max-width: 100%;
    padding: 9px 12px;
    color: var(--panel-fg);
    background: var(--panel-bg);
    border-left: 4px solid var(--color-yellow);
    border-radius: 6px;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    box-shadow: var(--shadow-card);
}

.smart-home-possibility-band,
.smart-home-assistant-band {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    background: var(--smart-home-panel);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.smart-home-possibility-band > div,
.smart-home-assistant-band > div {
    display: grid;
    gap: 12px;
}

.smart-home-possibility-band p,
.smart-home-use-grid p,
.smart-home-newbuild-section p,
.smart-home-planning-grid p,
.smart-home-platform-section p,
.smart-home-platform-grid small,
.smart-home-connectivity-section p,
.smart-home-assistant-band p,
.smart-home-network-band p,
.smart-home-tracking-band p {
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.smart-home-use-grid,
.smart-home-planning-grid {
    display: grid;
    gap: 18px;
}

.smart-home-use-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.smart-home-use-grid article,
.smart-home-planning-grid article,
.smart-home-platform-grid article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.smart-home-use-grid i {
    color: var(--color-yellow);
    font-size: 1.55rem;
}

.smart-home-use-grid h2,
.smart-home-planning-grid h3 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.smart-home-newbuild-section,
.smart-home-platform-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
}

.smart-home-newbuild-section {
    padding: clamp(28px, 5vw, 52px);
    color: var(--panel-fg);
    background:
        radial-gradient(circle at 88% 12%, rgba(252, 183, 22, 0.18), transparent 30%),
        var(--panel-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.smart-home-newbuild-section > div {
    display: grid;
    gap: 12px;
}

.smart-home-newbuild-section h2,
.smart-home-newbuild-section p {
    color: var(--panel-fg);
}

.smart-home-newbuild-section figure,
.smart-home-network-band figure {
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.smart-home-newbuild-section img,
.smart-home-network-band img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.smart-home-planning-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smart-home-planning-grid span {
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.smart-home-platform-section {
    align-items: start;
}

.smart-home-platform-section .service-section-heading {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

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

.smart-home-platform-grid article {
    color: var(--panel-fg);
    background:
        linear-gradient(145deg, rgba(252, 183, 22, 0.16), transparent 48%),
        var(--panel-bg);
}

.smart-home-platform-grid article.wide {
    grid-column: 1 / -1;
}

.smart-home-platform-grid span {
    color: var(--color-yellow);
    font-size: 1.35rem;
}

.smart-home-platform-grid strong,
.smart-home-platform-grid small {
    color: var(--panel-fg);
}

.smart-home-network-band {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    background:
        radial-gradient(circle at 18% 0%, rgba(252, 183, 22, 0.2), transparent 34%),
        var(--card-bg);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.smart-home-network-band > div {
    display: grid;
    gap: 12px;
}

.smart-home-network-band .button {
    width: fit-content;
    margin-top: 6px;
}

.smart-home-tracking-band {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    color: var(--color-paper);
    background:
        radial-gradient(circle at 90% 10%, rgba(252, 183, 22, 0.2), transparent 28%),
        linear-gradient(135deg, #102832, var(--smart-home-dark) 62%, #0b0d0e);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.smart-home-tracking-band > div:not(.smart-home-tracking-visual) {
    display: grid;
    gap: 12px;
}

.smart-home-tracking-band h2 {
    color: var(--color-paper);
}

.smart-home-tracking-band p {
    color: rgba(255, 255, 255, 0.78);
}

.smart-home-tracking-visual {
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 20px;
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 5px solid var(--color-yellow);
    border-radius: 6px;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.smart-home-tracking-visual strong {
    color: var(--color-paper);
}

.smart-home-tracking-visual span {
    color: var(--color-yellow);
    text-transform: uppercase;
}

.smart-home-tracking-visual i {
    display: block;
    width: 74%;
    height: 10px;
    background: var(--color-yellow);
    border-radius: 999px;
}

.drone-service-page {
    --drone-dark: #101719;
    --drone-sky: color-mix(in srgb, var(--color-blue) 12%, var(--card-bg));
}

.drone-service-hero .hero-actions {
    margin-top: 18px;
}

.drone-service-hero h1 {
    max-width: 820px;
    font-size: clamp(2.75rem, 4.8vw, 3.9rem);
}

.drone-hero-frame {
    position: relative;
    overflow: hidden;
    background: var(--drone-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.drone-hero-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 4px;
    pointer-events: none;
}

.drone-hero-frame figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 3px 10px;
    align-items: center;
    padding: 12px;
    color: var(--color-paper);
    background: rgba(0, 0, 0, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 6px;
}

.drone-hero-frame figcaption small {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.74);
}

.drone-rec-dot {
    width: 11px;
    height: 11px;
    background: #f0524f;
    border-radius: 50%;
}

.drone-use-case-strip,
.drone-shot-board {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.drone-use-case-strip article,
.drone-shot-board article {
    display: grid;
    align-content: start;
    gap: 11px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.drone-use-case-strip i {
    color: var(--color-yellow);
    font-size: 1.55rem;
}

.drone-use-case-strip h2,
.drone-shot-board h3 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.drone-use-case-strip p,
.drone-shot-board p,
.drone-panorama-section > p,
.drone-network-band p {
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.drone-shot-board span {
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.drone-panorama-section {
    background: var(--drone-sky);
}

.drone-network-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    color: var(--color-paper);
    background:
        radial-gradient(circle at 90% 10%, rgba(252, 183, 22, 0.2), transparent 28%),
        linear-gradient(135deg, #102832, var(--drone-dark) 62%, #0b0d0e);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.drone-network-band > div {
    display: grid;
    gap: 12px;
}

.drone-network-band h2,
.drone-network-band p {
    color: var(--color-paper);
}

.drone-network-band p {
    color: rgba(255, 255, 255, 0.78);
}

.drone-network-band img {
    width: min(230px, 26vw);
    max-height: 86px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34));
}

.drone-network-band .button.secondary {
    color: var(--color-paper);
    border-color: rgba(255, 255, 255, 0.34);
}

.training-service-page {
    --training-dark: #111719;
    --training-panel: color-mix(in srgb, var(--color-yellow) 12%, var(--card-bg));
}

.training-service-hero .hero-actions {
    margin-top: 18px;
}

.training-service-hero h1 {
    max-width: 820px;
    font-size: clamp(2.75rem, 4.8vw, 3.9rem);
}

.training-path-board {
    display: grid;
    grid-template-areas:
        "top top"
        "image image"
        "step-one step-two"
        "step-three step-four";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    padding: 22px;
    color: var(--color-paper);
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, rgba(252, 183, 22, 0.23), transparent 36%),
        var(--training-dark);
    background-size: 34px 34px, 34px 34px, auto, auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.training-path-board-top {
    grid-area: top;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.training-path-board-top span {
    color: var(--color-yellow);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.training-path-board figure {
    grid-area: image;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
}

.training-path-board img {
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}

.training-path-line {
    display: none;
    height: 0;
    border: 2px dashed rgba(252, 183, 22, 0.74);
    border-radius: 50%;
    transform: rotate(-9deg);
}

.training-path-step {
    position: static;
    display: grid;
    gap: 2px;
    width: 100%;
    min-width: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 4px solid var(--color-yellow);
    border-radius: 6px;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.training-path-step small {
    color: rgba(255, 255, 255, 0.68);
}

.training-path-step.step-one {
    grid-area: step-one;
    margin-top: 2px;
}

.training-path-step.step-two {
    grid-area: step-two;
}

.training-path-step.step-three {
    grid-area: step-three;
}

.training-path-step.step-four {
    grid-area: step-four;
}

.training-library-section {
    background: var(--training-panel);
}

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

.training-topic-grid article {
    display: grid;
    align-content: start;
    gap: 11px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.training-topic-grid i {
    color: var(--color-yellow);
    font-size: 1.55rem;
}

.training-topic-grid h2,
.training-format-stack h3 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.training-topic-grid p,
.training-format-stack p,
.training-library-section > p,
.training-nli-band p {
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.training-format-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    padding: clamp(28px, 5vw, 52px);
    background: var(--card-bg);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.training-format-section .service-section-heading {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.training-format-stack {
    display: grid;
    gap: 14px;
}

.training-format-stack article {
    display: grid;
    grid-template-columns: minmax(78px, 0.22fr) minmax(0, 1fr);
    gap: 8px 16px;
    align-items: start;
    min-width: 0;
    padding: 18px;
    color: var(--page-fg);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
}

.training-format-stack span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 8px 10px;
    color: var(--action-fg);
    background: var(--action-bg);
    border-radius: 6px;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    line-height: 1;
    text-align: center;
}

.training-format-stack p {
    color: var(--text-secondary);
}

.training-nli-band {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: clamp(18px, 3vw, 34px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    color: var(--color-paper);
    background:
        radial-gradient(circle at 90% 10%, rgba(252, 183, 22, 0.2), transparent 28%),
        linear-gradient(135deg, #102832, var(--training-dark) 62%, #0b0d0e);
    border-left: 6px solid var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.training-nli-band > div {
    display: grid;
    gap: 12px;
}

.training-nli-band h2,
.training-nli-band p {
    color: var(--color-paper);
}

.training-nli-band p {
    color: rgba(255, 255, 255, 0.78);
}

.training-nli-band img {
    width: min(230px, 26vw);
    max-height: 90px;
    padding: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.training-nli-band .button.secondary {
    color: var(--color-paper);
    border-color: rgba(255, 255, 255, 0.34);
}

.pc-support-service-page {
    --pc-support-accent: var(--color-yellow);
    --pc-support-dark: #161b20;
}

.pc-support-hero .hero-actions {
    margin-top: 18px;
}

.pc-support-hero h1 {
    max-width: 760px;
    font-size: clamp(2.75rem, 4.6vw, 3.6rem);
}

.pc-status-board {
    overflow: hidden;
    color: var(--color-paper);
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        var(--pc-support-dark);
    background-size: 32px 32px;
    border: 1px solid color-mix(in srgb, var(--pc-support-accent) 32%, transparent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.pc-status-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.pc-status-top span {
    color: var(--pc-support-accent);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.pc-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 20px;
}

.pc-status-grid article {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.pc-status-grid article:last-child {
    grid-column: 1 / -1;
}

.pc-status-grid i {
    color: var(--pc-support-accent);
    font-size: 1.35rem;
}

.pc-status-grid span {
    color: rgba(255, 255, 255, 0.74);
}

.pc-support-areas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pc-support-areas article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.pc-support-areas .fa-solid {
    color: var(--pc-support-accent);
    font-size: 1.55rem;
}

.pc-support-areas h2 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.16;
}

.pc-support-areas p {
    color: var(--text-secondary);
    line-height: var(--leading-copy);
}

.pc-cleaning-teaser,
.pc-cleaning-warning {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    padding: clamp(28px, 5vw, 52px);
    background: var(--card-bg);
    border-left: 6px solid var(--pc-support-accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.pc-cleaning-teaser > div:first-child,
.pc-cleaning-warning > div:first-child {
    display: grid;
    gap: 14px;
}

.pc-cleaning-teaser h2,
.pc-cleaning-warning h2 {
    max-width: 720px;
}

.pc-cleaning-teaser p,
.pc-cleaning-warning p,
.pc-cleaning-price-cards p {
    color: var(--text-secondary);
    line-height: var(--leading-copy);
}

.pc-cleaning-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 4px 0 8px;
}

.pc-cleaning-price-row strong,
.pc-cleaning-price-row span {
    padding: 8px 12px;
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.pc-cleaning-price-row strong {
    color: var(--action-fg);
    background: var(--action-bg);
    border-color: var(--color-yellow);
}

.pc-cleaning-image-pair,
.pc-cleaning-hero-photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pc-cleaning-image-pair figure,
.pc-cleaning-hero-photos figure {
    display: grid;
    gap: 10px;
    min-width: 0;
    margin: 0;
}

.pc-cleaning-image-pair img,
.pc-cleaning-hero-photos img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.pc-cleaning-image-pair figcaption,
.pc-cleaning-hero-photos figcaption {
    color: var(--text-secondary);
    font-size: var(--type-small);
    line-height: 1.35;
}

.pc-cleaning-hero {
    align-items: center;
}

.pc-cleaning-hero .hero-actions {
    margin-top: 18px;
}

.pc-cleaning-hero h1 {
    max-width: 760px;
}

.pc-cleaning-hero-photos {
    align-items: start;
}

.pc-cleaning-hero-photos figure:first-child {
    transform: translateY(18px);
}

.pc-cleaning-warning {
    align-items: stretch;
}

.pc-cleaning-fact-card {
    display: grid;
    align-content: center;
    gap: 14px;
    min-width: 0;
    padding: clamp(22px, 4vw, 34px);
    color: var(--color-paper);
    background:
        radial-gradient(circle at 88% 8%, rgba(252, 183, 22, 0.24), transparent 38%),
        var(--pc-support-dark);
    border: 1px solid color-mix(in srgb, var(--pc-support-accent) 36%, transparent);
    border-radius: var(--radius);
}

.pc-cleaning-fact-card .fa-solid {
    color: var(--pc-support-accent);
    font-size: 2rem;
}

.pc-cleaning-fact-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--type-lead);
}

.pc-cleaning-price-section {
    align-items: stretch;
}

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

.pc-cleaning-price-cards article {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
}

.pc-cleaning-price-cards span {
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.pc-cleaning-price-cards strong {
    color: var(--page-fg);
    font-family: var(--font-accent);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.pc-cleaning-price-cards h3 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.pc-remote-section {
    color: var(--color-paper);
    background: var(--pc-support-dark);
    border-left-color: var(--pc-support-accent);
}

.pc-remote-section h2,
.pc-remote-section p {
    color: var(--color-paper);
}

.pc-support-module {
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    color: var(--color-paper);
    background:
        radial-gradient(circle at 85% 0%, color-mix(in srgb, var(--pc-support-accent) 26%, transparent), transparent 36%),
        rgba(255, 255, 255, 0.08);
    border: 1px dashed color-mix(in srgb, var(--pc-support-accent) 55%, transparent);
    border-radius: var(--radius);
}

.pc-support-module > span {
    width: fit-content;
    padding: 5px 9px;
    color: var(--action-fg);
    background: var(--action-bg);
    border-radius: 4px;
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.pc-support-module i {
    color: var(--pc-support-accent);
    font-size: 2rem;
}

.pc-support-module > img {
    width: min(100%, 280px);
    justify-self: center;
    border-radius: var(--radius);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.24));
}

.pc-support-module h3 {
    margin: 0;
    color: var(--color-paper);
    font-size: var(--type-h3);
    line-height: 1.12;
}

.pc-support-module p {
    color: rgba(255, 255, 255, 0.78);
}

.pc-quicksupport-download {
    display: block;
    width: min(100%, 363px);
    justify-self: center;
    border-radius: 4px;
    transition: filter 0.18s ease, box-shadow 0.18s ease;
}

.pc-quicksupport-download:hover,
.pc-quicksupport-download:focus-visible {
    filter: brightness(1.04);
    box-shadow: 0 0 0 3px rgba(252, 183, 22, 0.28);
    outline: none;
}

.pc-quicksupport-download img {
    display: block;
    width: 100%;
    height: auto;
}

.print-service-page {
    --print-accent: var(--color-yellow);
    --print-dark: #171b1d;
}

.print-service-hero {
    align-items: center;
}

.print-service-hero .hero-actions {
    margin-top: 18px;
}

.print-hero-photo {
    position: relative;
    margin: 0;
}

.print-hero-photo::before {
    content: "";
    position: absolute;
    inset: 18px -10px -10px 18px;
    z-index: 0;
    background: var(--print-accent);
    border-radius: var(--radius);
}

.print-hero-photo img {
    position: relative;
    z-index: 1;
}

.print-use-case-strip,
.print-material-grid,
.print-learning-path,
.print-lab-grid,
.print-studio-grid {
    display: grid;
    gap: 14px;
}

.print-use-case-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.print-use-case-strip article,
.print-learning-path article,
.print-lab-grid article,
.print-studio-grid article {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    padding: clamp(18px, 3vw, 24px);
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.print-use-case-strip i,
.print-learning-path i,
.print-studio-grid i {
    color: var(--print-accent);
    font-size: 1.55rem;
}

.print-use-case-strip h2,
.print-learning-path h3,
.print-lab-grid h3,
.print-studio-grid h3 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.16;
}

.print-use-case-strip p,
.print-learning-path p,
.print-lab-grid p,
.print-studio-grid p,
.print-workshop-split li,
.print-showcase-section > .print-section-hero p {
    margin: 0;
    color: var(--text-secondary);
    line-height: var(--leading-copy);
}

.print-material-section,
.print-showcase-section {
    display: grid;
    gap: clamp(24px, 4vw, 42px);
}

.print-material-section {
    align-items: start;
    padding: clamp(28px, 5vw, 54px) clamp(22px, 4vw, 44px);
    background: var(--card-bg);
    border-left: 6px solid var(--print-accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.print-material-section .service-section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 860px;
    margin-bottom: 0;
}

.print-material-section .service-section-heading .eyebrow,
.print-material-section .service-section-heading h2,
.print-material-section .service-section-heading p:last-child {
    grid-column: 1;
}

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

.print-material-grid article {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 146px;
    padding: 20px;
    border: 1px solid rgba(24, 24, 24, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 34px rgba(24, 24, 24, 0.12);
}

.print-material-grid article::before,
.print-material-grid article::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.print-material-grid article::before {
    inset: 0;
    opacity: 0.42;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(90deg, rgba(24, 24, 24, 0.08) 0 1px, transparent 1px 10px);
}

.print-material-grid article::after {
    right: 14px;
    bottom: 14px;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(24, 24, 24, 0.14);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 22%),
        rgba(255, 255, 255, 0.24);
}

.print-material-grid span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 10px;
    color: var(--color-paper);
    background: var(--color-ink);
    border-radius: 4px;
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    line-height: 1;
    text-transform: uppercase;
}

.print-material-grid h3 {
    position: relative;
    z-index: 1;
    max-width: 12rem;
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.13;
}

.print-material-grid .mat-petg {
    background: linear-gradient(145deg, #e8fbf3, #b9ddcf);
}

.print-material-grid .mat-asa {
    background: linear-gradient(145deg, #f6efe1, #d8cdb7);
}

.print-material-grid .mat-tpu {
    background: linear-gradient(145deg, #edf5ff, #bfd5ec);
}

.print-material-grid .mat-resin {
    background: linear-gradient(145deg, #fbf5ff, #dec8ed);
}

.print-material-grid .mat-carbon {
    color: var(--color-paper);
    background: linear-gradient(145deg, #3d4144, #17191b);
    border-color: rgba(252, 183, 22, 0.28);
}

.print-material-grid .mat-carbon::before {
    opacity: 0.28;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 10px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 10px);
}

.print-material-grid .mat-carbon::after {
    border-color: rgba(252, 183, 22, 0.42);
    background:
        radial-gradient(circle at 34% 28%, rgba(252, 183, 22, 0.8), rgba(252, 183, 22, 0) 22%),
        rgba(252, 183, 22, 0.08);
}

.print-material-grid .mat-carbon h3 {
    color: var(--color-paper);
}

.print-material-grid .mat-carbon span {
    color: var(--color-ink);
    background: var(--print-accent);
}

.print-material-grid .mat-wood {
    background: linear-gradient(145deg, #efd9c0, #cfa77d);
}

.print-material-grid .mat-wood::before {
    opacity: 0.34;
    background:
        repeating-radial-gradient(ellipse at 20% 40%, rgba(83, 53, 30, 0.22) 0 1px, transparent 1px 8px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.print-showcase-section {
    padding: clamp(28px, 5vw, 54px);
    background: var(--card-bg);
    border-left: 6px solid var(--print-accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.print-section-hero,
.print-workshop-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
}

.print-section-hero > div:first-child,
.print-workshop-split > div {
    display: grid;
    gap: 14px;
}

.print-section-hero h2 {
    margin: 0;
    font-size: clamp(2.05rem, 4vw, 3.7rem);
    line-height: 1.04;
}

.print-classroom-board {
    display: grid;
    gap: 18px;
    min-height: 360px;
    padding: 24px;
    color: var(--color-paper);
    background:
        linear-gradient(135deg, rgba(252, 183, 22, 0.14), rgba(252, 183, 22, 0)),
        #17201d;
    border: 10px solid #d7bd7a;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.print-board-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.print-board-top span {
    color: var(--print-accent);
}

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

.print-board-grid span {
    min-height: 72px;
    padding: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.38);
    border-radius: 6px;
}

.print-printer-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-self: end;
}

.print-printer-row i {
    display: block;
    min-height: 54px;
    background: rgba(255, 255, 255, 0.14);
    border-bottom: 6px solid var(--print-accent);
    border-radius: 5px;
}

.print-learning-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.print-learning-path span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--color-ink);
    background: var(--print-accent);
    border-radius: 50%;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.print-workshop-split {
    align-items: start;
    padding: clamp(24px, 4vw, 40px);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
}

.print-workshop-split ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.print-printer-lab {
    display: grid;
    gap: 22px;
    padding: clamp(24px, 4vw, 40px);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
}

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

.print-lab-grid article {
    background: var(--card-bg);
}

.print-cad-viewport {
    overflow: hidden;
    min-height: 390px;
    color: var(--color-paper);
    background: #111417;
    border: 1px solid rgba(252, 183, 22, 0.32);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.print-viewport-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.print-viewport-toolbar span {
    width: 10px;
    height: 10px;
    background: #f36b4f;
    border-radius: 50%;
}

.print-viewport-toolbar span:nth-child(2) {
    background: #e2b654;
}

.print-viewport-toolbar span:nth-child(3) {
    background: #58c38b;
}

.print-viewport-toolbar strong {
    margin-left: auto;
    color: #d7d0c3;
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
}

.print-model-space {
    position: relative;
    min-height: 344px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.print-axis,
.print-model-block,
.print-dimension {
    position: absolute;
}

.print-axis.x {
    left: 48px;
    right: 42px;
    bottom: 84px;
    height: 2px;
    background: rgba(252, 183, 22, 0.72);
}

.print-axis.y {
    top: 42px;
    bottom: 42px;
    left: 84px;
    width: 2px;
    background: rgba(252, 183, 22, 0.72);
}

.print-model-block.main {
    width: 190px;
    height: 132px;
    right: 92px;
    bottom: 92px;
    transform: skewY(-12deg);
    background: linear-gradient(135deg, #fcb716, #d87e34);
    border: 2px solid rgba(255, 255, 255, 0.42);
}

.print-model-block.cutout {
    width: 86px;
    height: 54px;
    right: 144px;
    bottom: 136px;
    transform: skewY(-12deg);
    background: #111417;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.print-dimension {
    color: var(--print-accent);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: var(--weight-bold);
}

.print-dimension.dim-a {
    right: 120px;
    bottom: 58px;
}

.print-dimension.dim-b {
    right: 48px;
    bottom: 150px;
    transform: rotate(90deg);
}

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

.print-studio-grid article {
    min-height: 230px;
}

.print-service-cta {
    background: var(--panel-bg);
    border-top-color: var(--print-accent);
}

.atlassian-service-page {
    --atlassian-accent: var(--color-yellow);
    --atlassian-blue: #1d7afc;
}

.atlassian-hero .hero-actions,
.atlassian-migration-hero .hero-actions {
    margin-top: 18px;
}

.atlassian-ecosystem-map,
.atlassian-control-room {
    max-width: none;
}

.atlassian-ecosystem-map {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    background:
        linear-gradient(color-mix(in srgb, var(--atlassian-blue) 12%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--atlassian-blue) 12%, transparent) 1px, transparent 1px),
        var(--card-bg);
    background-size: 34px 34px;
    box-shadow: var(--shadow-soft);
}

.atlassian-ecosystem-map::before,
.atlassian-ecosystem-map::after {
    position: absolute;
    inset: 72px;
    border: 1px dashed color-mix(in srgb, var(--atlassian-blue) 34%, var(--line-color));
    border-radius: 50%;
    content: "";
}

.atlassian-ecosystem-map::after {
    inset: 124px;
    border-color: color-mix(in srgb, var(--atlassian-accent) 58%, var(--line-color));
}

.atlassian-hub,
.atlassian-orbit {
    position: absolute;
    z-index: 1;
    display: grid;
    gap: 4px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.atlassian-hub {
    width: min(260px, 70%);
    place-items: center;
    padding: 28px 20px;
    color: var(--color-paper);
    background: #0c66e4;
    text-align: center;
}

.atlassian-hub .fa-brands {
    font-size: 2rem;
}

.atlassian-hub small {
    color: rgba(255, 255, 255, 0.78);
}

.atlassian-orbit {
    min-width: 136px;
    padding: 14px 16px;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
}

.atlassian-orbit small {
    color: var(--text-secondary);
}

.atlassian-orbit.jira {
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
}

.atlassian-orbit.confluence {
    top: 126px;
    right: 32px;
}

.atlassian-orbit.jsm {
    right: 62px;
    bottom: 72px;
}

.atlassian-orbit.goals {
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
}

.atlassian-orbit.projects {
    bottom: 116px;
    left: 34px;
}

.atlassian-orbit.apps {
    top: 126px;
    left: 32px;
}

.atlassian-migration-callout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 4vw, 44px);
    color: var(--panel-fg);
    background: var(--panel-bg);
    border-top: 6px solid var(--atlassian-accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.atlassian-migration-callout > div {
    display: grid;
    gap: 12px;
    max-width: 840px;
}

.atlassian-migration-callout h2,
.atlassian-migration-callout p {
    color: var(--panel-fg);
}

.atlassian-tool-grid,
.atlassian-scenario-grid,
.atlassian-advisory-grid,
.atlassian-deadline-grid {
    display: grid;
    gap: 18px;
}

.atlassian-tool-grid,
.atlassian-scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.atlassian-advisory-grid,
.atlassian-deadline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atlassian-tool-grid article,
.atlassian-scenario-grid article,
.atlassian-advisory-grid article,
.atlassian-deadline-grid article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.atlassian-tool-grid .fa-solid,
.atlassian-advisory-grid .fa-solid {
    color: var(--atlassian-accent);
    font-size: 1.55rem;
}

.atlassian-tool-grid h2,
.atlassian-scenario-grid h2,
.atlassian-advisory-grid h2,
.atlassian-deadline-grid h2 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.16;
}

.atlassian-tool-grid p,
.atlassian-scenario-grid p,
.atlassian-advisory-grid p,
.atlassian-deadline-grid p {
    color: var(--text-secondary);
    line-height: var(--leading-copy);
}

.atlassian-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.atlassian-tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    color: var(--page-fg);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: 999px;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.atlassian-expert-section figure {
    margin: 0;
}

.atlassian-expert-section img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.atlassian-control-room {
    overflow: hidden;
    color: var(--color-paper);
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        #111827;
    background-size: 34px 34px;
    border: 1px solid color-mix(in srgb, var(--atlassian-accent) 32%, transparent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.atlassian-control-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.atlassian-control-top span,
.atlassian-control-grid span,
.atlassian-deadline-grid > article > span {
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.atlassian-control-top span,
.atlassian-control-grid span {
    color: rgba(255, 255, 255, 0.68);
}

.atlassian-control-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 20px;
}

.atlassian-control-grid div {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.atlassian-control-grid strong {
    color: var(--atlassian-accent);
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    line-height: 1;
}

.atlassian-control-checks {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0 20px 22px;
    list-style: none;
}

.atlassian-control-checks li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.84);
}

.atlassian-control-checks li span {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    background: var(--atlassian-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(252, 183, 22, 0.12);
}

.web-care-page .service-section-heading h2 {
    max-width: 760px;
}

.web-care-page {
    --web-accent: var(--color-yellow);
    --web-accent-rgb: 252, 183, 22;
}

#probleme,
#responsive,
#care,
#sichtbarkeit,
#technik {
    scroll-margin-top: clamp(96px, 10vw, 128px);
}

.web-care-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
}

.web-care-visual {
    position: relative;
    isolation: isolate;
}

.web-care-visual::before {
    content: "";
    position: absolute;
    inset: clamp(18px, 4vw, 34px) clamp(-12px, -1vw, -4px) clamp(-12px, -1vw, -4px) clamp(18px, 3vw, 32px);
    z-index: -1;
    background: var(--web-accent);
    border-radius: var(--radius);
}

.web-browser-window {
    min-height: clamp(320px, 38vw, 440px);
    padding: clamp(16px, 3vw, 24px);
    overflow: hidden;
    color: var(--color-ink);
    background: var(--color-soft);
    border: 1px solid color-mix(in srgb, var(--web-accent) 26%, var(--line-color));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.web-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    margin: -2px 0 clamp(22px, 4vw, 42px);
    padding-bottom: 14px;
    border-bottom: 1px solid #d8d3c8;
}

.web-browser-bar span {
    width: 10px;
    height: 10px;
    background: #ff6b4a;
    border-radius: 50%;
}

.web-browser-bar span:nth-child(2) {
    background: #d7b56d;
}

.web-browser-bar span:nth-child(3) {
    background: #42a879;
}

.web-browser-bar strong {
    margin-left: auto;
    color: #55524b;
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
}

.web-demo-home {
    display: grid;
    gap: 10px;
}

.web-demo-home p {
    margin: 0;
    color: #6b665d;
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    letter-spacing: 0;
    text-transform: uppercase;
}

.web-demo-home h2 {
    max-width: 8.2em;
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(2.35rem, 5vw, 4.6rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
}

.web-demo-line,
.web-demo-grid-mini span {
    display: block;
    height: 14px;
    background: #cfd8d3;
}

.web-demo-line {
    width: 58%;
}

.web-demo-line.wide {
    width: 82%;
}

.web-demo-grid-mini {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: clamp(16px, 4vw, 32px);
}

.web-demo-grid-mini span {
    min-height: clamp(54px, 7vw, 74px);
    background: #17201d;
}

.web-care-status {
    position: absolute;
    right: clamp(14px, 3vw, 28px);
    bottom: clamp(14px, 3vw, 24px);
    left: clamp(14px, 3vw, 28px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.web-care-status span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    min-height: 48px;
    padding: 10px 12px;
    color: #f4f2ed;
    background: #111417;
    border: 1px solid color-mix(in srgb, var(--web-accent) 42%, rgba(255, 255, 255, 0.16));
    border-left: 4px solid var(--web-accent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    line-height: 1.2;
}

.web-care-status .fa-solid {
    flex: 0 0 auto;
    color: var(--web-accent);
}

.web-problem-strip,
.web-responsive-points,
.web-module-grid,
.web-growth-grid,
.web-stack-grid {
    display: grid;
    gap: 18px;
}

.web-problem-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.web-responsive-band {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
}

.web-responsive-band > div:first-child {
    display: grid;
    gap: 12px;
}

.web-responsive-band h2 {
    margin: 0;
    font-size: var(--type-h2);
    line-height: var(--leading-tight);
}

.web-responsive-band p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.web-responsive-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-growth-band {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
}

.web-growth-band > div:first-child {
    display: grid;
    gap: 12px;
}

.web-growth-band h2 {
    margin: 0;
    font-size: var(--type-h2);
    line-height: var(--leading-tight);
}

.web-growth-band p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

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

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

.web-problem-strip article,
.web-responsive-points article,
.web-module-grid article,
.web-growth-grid article,
.web-stack-grid article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.web-problem-strip .fa-solid,
.web-responsive-points .fa-solid,
.web-module-grid .fa-solid,
.web-growth-grid .fa-solid,
.web-growth-grid .fa-brands,
.web-stack-grid .fa-solid {
    color: var(--web-accent);
    font-size: 1.5rem;
}

.web-problem-strip h2,
.web-responsive-points h3,
.web-module-grid h3,
.web-growth-grid h3,
.web-stack-grid h3 {
    margin: 0;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.web-problem-strip p,
.web-responsive-points p,
.web-module-grid p,
.web-growth-grid p,
.web-stack-grid p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.web-care-modules {
    display: grid;
    gap: 26px;
}

.web-care-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    gap: clamp(22px, 4vw, 42px);
    align-items: end;
}

.web-care-intro .service-section-heading {
    grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
    margin-bottom: 0;
}

.web-care-photo {
    position: relative;
    margin: 0;
}

.web-care-photo::before {
    content: "";
    position: absolute;
    inset: 16px -8px -8px 16px;
    z-index: -1;
    background: var(--web-accent);
    border-radius: var(--radius);
}

.web-care-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.web-hosting-stack {
    align-items: start;
    background: var(--card-bg);
    border-left-color: var(--web-accent);
}

.web-care-process {
    border-left-color: var(--web-accent);
}

.web-care-page .service-cta-band {
    border-top-color: var(--web-accent);
}

.web-stack-grid article {
    min-height: 164px;
    background: var(--page-bg);
}

@media (max-width: 980px) {
    .service-section-heading,
    .service-symptom-grid,
    .service-case-grid,
    .service-timeline-section,
    .service-tech-section,
    .service-cta-band,
    .ai-use-case-strip,
    .ai-readiness-band,
    .ai-license-section,
    .ai-license-grid,
    .ai-copilot-band,
    .ai-term-cloud-section,
    .ai-level-grid,
    .web-care-hero,
    .web-care-intro,
    .web-responsive-band,
    .web-responsive-points,
    .web-growth-band,
    .web-growth-grid,
    .web-problem-strip,
    .web-module-grid,
    .web-stack-grid,
    .drone-use-case-strip,
    .drone-shot-board,
    .drone-network-band,
    .training-topic-grid,
    .training-format-section,
    .training-nli-band,
    .smart-home-possibility-band,
    .smart-home-assistant-band,
    .smart-home-use-grid,
    .smart-home-newbuild-section,
    .smart-home-planning-grid,
    .smart-home-platform-section,
    .smart-home-platform-grid,
    .smart-home-network-band,
    .smart-home-tracking-band,
    .print-use-case-strip,
    .print-material-grid,
    .print-section-hero,
    .print-workshop-split,
    .print-learning-path,
    .print-lab-grid,
    .print-studio-grid,
    .pc-support-areas,
    .pc-cleaning-teaser,
    .pc-cleaning-warning,
    .pc-cleaning-price-section,
    .atlassian-migration-callout,
    .atlassian-tool-grid,
    .atlassian-scenario-grid,
    .atlassian-advisory-grid,
    .atlassian-deadline-grid {
        grid-template-columns: 1fr;
    }

    .web-care-intro .service-section-heading {
        grid-template-columns: 1fr;
    }

    .drone-network-band img {
        width: min(230px, 68vw);
    }

    .training-nli-band img {
        width: min(230px, 72vw);
    }

    .service-section-heading .eyebrow,
    .service-section-heading h2,
    .service-section-heading p:last-child {
        grid-column: 1;
    }

    .service-cta-band {
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .service-symptom-grid article,
    .service-case-card,
    .service-timeline-section,
    .service-tech-section,
    .service-cta-band,
    .ai-use-case-strip article,
    .ai-readiness-band,
    .ai-license-grid article,
    .ai-copilot-band,
    .ai-term-cloud-section,
    .ai-term-cloud,
    .ai-level-grid article,
    .web-problem-strip article,
    .web-responsive-points article,
    .web-module-grid article,
    .web-growth-grid article,
    .web-stack-grid article,
    .drone-use-case-strip article,
    .drone-shot-board article,
    .drone-network-band,
    .training-topic-grid article,
    .training-format-stack article,
    .training-nli-band,
    .smart-home-possibility-band,
    .smart-home-assistant-band,
    .smart-home-use-grid article,
    .smart-home-newbuild-section,
    .smart-home-planning-grid article,
    .smart-home-platform-grid article,
    .smart-home-network-band,
    .smart-home-tracking-band,
    .print-use-case-strip article,
    .print-learning-path article,
    .print-lab-grid article,
    .print-studio-grid article,
    .print-material-grid article,
    .pc-support-areas article,
    .pc-cleaning-teaser,
    .pc-cleaning-warning,
    .pc-cleaning-price-section,
    .pc-cleaning-price-cards article,
    .atlassian-tool-grid article,
    .atlassian-scenario-grid article,
    .atlassian-advisory-grid article,
    .atlassian-deadline-grid article {
        padding: 18px;
    }

    .training-path-board {
        display: grid;
        gap: 12px;
        min-height: 0;
    }

    .training-path-line {
        display: none;
    }

    .training-path-step {
        position: static;
        width: 100%;
    }

    .training-format-stack article {
        grid-template-columns: 1fr;
    }

    .training-format-stack span {
        grid-row: auto;
    }

    .ai-workflow-lanes {
        grid-template-columns: 1fr;
    }

    .atlassian-ecosystem-map {
        min-height: 0;
        place-items: stretch;
        gap: 12px;
        padding: 16px;
    }

    .atlassian-ecosystem-map::before,
    .atlassian-ecosystem-map::after {
        display: none;
    }

    .atlassian-hub,
    .atlassian-orbit {
        position: static;
        width: 100%;
        transform: none;
    }

    .atlassian-orbit.jira,
    .atlassian-orbit.goals {
        transform: none;
    }

    .atlassian-control-grid {
        grid-template-columns: 1fr;
    }

    .pc-status-grid {
        grid-template-columns: 1fr;
    }

    .pc-status-grid article:last-child {
        grid-column: auto;
    }

    .pc-status-top {
        display: grid;
    }

    .pc-cleaning-image-pair,
    .pc-cleaning-hero-photos,
    .pc-cleaning-price-cards {
        grid-template-columns: 1fr;
    }

    .pc-cleaning-hero-photos figure:first-child {
        transform: none;
    }

    .pc-quicksupport-download {
        width: 100%;
    }

    .web-care-status {
        position: static;
        grid-template-columns: 1fr;
        margin-top: 12px;
    }

    .web-care-visual::before {
        inset: 14px -8px -8px 14px;
    }

    .web-browser-window {
        min-height: 300px;
        padding: 16px;
    }

    .web-demo-home h2 {
        font-size: clamp(2rem, 14vw, 3.2rem);
    }

    .web-care-photo::before {
        inset: 12px -6px -6px 12px;
    }

    .service-cta-band .button {
        width: 100%;
    }

    .smart-home-platform-grid article.wide {
        grid-column: auto;
    }

    .smart-home-network-band .button {
        width: 100%;
    }

    .print-classroom-board,
    .print-cad-viewport {
        min-height: 320px;
    }

    .print-board-grid {
        grid-template-columns: 1fr;
    }

    .print-model-block.main {
        width: 150px;
        height: 104px;
        right: 52px;
    }

    .print-model-block.cutout {
        right: 88px;
        bottom: 130px;
    }
}

.web-care-prelude {
    display: grid;
    gap: 14px;
    padding-top: 48px;
}

.web-cockpit-shell {
    --cockpit-bg: #171b1d;
    --cockpit-panel: #232729;
    --cockpit-line: rgba(244, 242, 237, 0.14);
    --cockpit-muted: #d7d0c3;
    width: min(1440px, calc(100% - 36px));
    margin-top: clamp(20px, 4vw, 36px);
    margin-bottom: clamp(44px, 6vw, 76px);
    padding: 0;
    overflow: hidden;
    color: #f4f2ed;
    background:
        linear-gradient(135deg, rgba(var(--web-accent-rgb), 0.16), rgba(var(--web-accent-rgb), 0) 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.08)),
        var(--cockpit-bg);
    border: 1px solid var(--cockpit-line);
    border-radius: 0;
    box-shadow: var(--shadow-soft);
}

.service-page > .web-care-prelude + .web-cockpit-shell {
    margin-top: clamp(20px, 4vw, 36px);
}

.web-cockpit-shell > section {
    width: 100%;
    margin: 0;
    padding: clamp(40px, 5vw, 68px) clamp(28px, 5vw, 54px);
    border-top: 1px solid var(--cockpit-line);
}

.web-cockpit-shell > section:first-child {
    border-top: 0;
}

.web-cockpit-shell .web-responsive-band {
    background:
        radial-gradient(circle at 10% 8%, rgba(var(--web-accent-rgb), 0.1), rgba(var(--web-accent-rgb), 0) 34%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0));
}

.web-cockpit-shell .web-care-modules {
    background:
        radial-gradient(circle at 88% 16%, rgba(var(--web-accent-rgb), 0.12), rgba(var(--web-accent-rgb), 0) 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.04));
}

.web-cockpit-shell .web-growth-band {
    background:
        radial-gradient(circle at 18% 12%, rgba(var(--web-accent-rgb), 0.1), rgba(var(--web-accent-rgb), 0) 32%),
        radial-gradient(circle at 92% 84%, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 30%);
}

.web-cockpit-shell .web-hosting-stack {
    background:
        linear-gradient(135deg, rgba(var(--web-accent-rgb), 0.08), rgba(var(--web-accent-rgb), 0) 28%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 36%);
}

.web-cockpit-shell .web-care-process {
    background:
        radial-gradient(circle at 78% 12%, rgba(var(--web-accent-rgb), 0.11), rgba(var(--web-accent-rgb), 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.05));
}

.web-cockpit-shell .service-cta-band {
    background:
        linear-gradient(120deg, rgba(var(--web-accent-rgb), 0.12), rgba(var(--web-accent-rgb), 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.06));
}

.web-cockpit-shell .eyebrow,
.web-cockpit-shell .fa-solid {
    color: var(--web-accent);
}

.web-cockpit-shell p,
.web-cockpit-shell .lead,
.web-cockpit-shell .service-section-heading p:last-child,
.web-cockpit-shell .service-tech-section p,
.web-cockpit-shell .service-timeline p,
.web-cockpit-shell .service-cta-band p {
    color: var(--cockpit-muted);
}

.web-cockpit-shell .button.primary {
    color: #080b0d;
    background: var(--web-accent);
    border-color: var(--web-accent);
}

.web-cockpit-shell .button.secondary {
    color: #f4f2ed;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(244, 242, 237, 0.24);
}

.web-cockpit-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.86fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: center;
    min-height: clamp(580px, 62vw, 670px);
}

.web-cockpit-copy {
    display: grid;
    gap: 24px;
    max-width: 720px;
}

.web-cockpit-copy > div:first-child {
    display: grid;
    gap: 18px;
}

.web-cockpit-copy h1 {
    margin: 0;
    color: #f4f2ed;
    font-size: clamp(3.8rem, 6vw, 5.8rem);
    line-height: 0.96;
}

.web-cockpit-copy .lead {
    max-width: 690px;
    margin: 0;
    font-size: clamp(1.12rem, 1.35vw, 1.32rem);
    line-height: 1.52;
}

.web-cockpit-shell .hero-actions {
    margin-top: 8px;
}

.web-cockpit-shell .web-care-visual::before {
    display: none;
}

.web-cockpit-shell .web-care-visual {
    min-width: 0;
}

.web-cockpit-shell .web-browser-window {
    min-height: clamp(330px, 34vw, 410px);
    background: #f4f2ed;
    border-color: rgba(244, 242, 237, 0.78);
}

.web-cockpit-shell .web-demo-home h2 {
    max-width: 6.4em;
    font-size: clamp(3.2rem, 5vw, 5rem);
}

.web-cockpit-shell .web-care-status {
    right: 0;
    bottom: clamp(18px, 4vw, 52px);
    left: auto;
    width: min(260px, 48%);
    grid-template-columns: 1fr;
}

.web-cockpit-shell .web-care-status span {
    min-height: 50px;
    border-radius: 4px;
}

.web-cockpit-shell .web-problem-strip,
.web-cockpit-shell .web-responsive-points,
.web-cockpit-shell .web-module-grid,
.web-cockpit-shell .web-growth-grid,
.web-cockpit-shell .web-stack-grid {
    gap: 14px;
}

.web-cockpit-shell .web-problem-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.web-cockpit-shell .web-problem-strip article,
.web-cockpit-shell .web-responsive-points article,
.web-cockpit-shell .web-module-grid article,
.web-cockpit-shell .web-growth-grid article,
.web-cockpit-shell .web-stack-grid article,
.web-cockpit-shell .service-timeline li {
    color: #f4f2ed;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(244, 242, 237, 0.16);
    border-radius: 6px;
    box-shadow: none;
}

.web-cockpit-shell .web-problem-strip article {
    padding: 20px;
}

.web-cockpit-shell .web-problem-strip h2,
.web-cockpit-shell .web-responsive-points h3,
.web-cockpit-shell .web-module-grid h3,
.web-cockpit-shell .web-growth-grid h3,
.web-cockpit-shell .web-stack-grid h3,
.web-cockpit-shell .service-timeline h3 {
    color: #f4f2ed;
}

.web-cockpit-shell .web-responsive-band h2 {
    color: #f4f2ed;
}

.web-cockpit-shell .web-growth-band h2 {
    color: #f4f2ed;
}

.web-cockpit-shell .web-responsive-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-cockpit-shell .web-responsive-points article {
    min-height: 190px;
    padding: clamp(20px, 2.5vw, 28px);
}

.web-cockpit-shell .web-growth-grid article {
    min-height: 180px;
    padding: clamp(20px, 2.5vw, 28px);
}

.web-cockpit-shell .web-responsive-points .fa-solid,
.web-cockpit-shell .web-growth-grid .fa-solid,
.web-cockpit-shell .web-growth-grid .fa-brands {
    font-size: 1.8rem;
}

.web-cockpit-shell .web-problem-strip h2 {
    font-size: 1rem;
}

.web-cockpit-shell .web-problem-strip p {
    font-size: 1rem;
    line-height: 1.45;
}

.web-cockpit-shell .web-care-modules {
    gap: clamp(34px, 5vw, 54px);
}

.web-cockpit-shell .web-module-grid article {
    min-height: 204px;
    padding: clamp(22px, 3vw, 32px);
}

.web-cockpit-shell .web-module-grid .fa-solid {
    font-size: 1.9rem;
}

.web-cockpit-shell .web-module-grid h3 {
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
}

.web-cockpit-shell .web-care-intro {
    margin-top: 0;
    padding-top: clamp(34px, 5vw, 54px);
    border-top: 1px solid var(--cockpit-line);
}

.web-cockpit-shell .service-section-heading h2,
.web-cockpit-shell .service-tech-section h2,
.web-cockpit-shell .service-timeline-section h2,
.web-cockpit-shell .service-cta-band h2 {
    color: #f4f2ed;
}

.web-cockpit-shell .web-hosting-stack,
.web-cockpit-shell .web-care-process,
.web-cockpit-shell .service-cta-band {
    background: transparent;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
}

.web-cockpit-shell .service-cta-band {
    margin-bottom: 0;
    border-top: 1px solid var(--cockpit-line);
}

.web-cockpit-shell .service-timeline > li > span {
    color: #080b0d;
    background: var(--web-accent);
}

body:not(.is-site-dark) .web-cockpit-shell {
    --cockpit-bg: #f6f4ef;
    --cockpit-panel: rgba(255, 255, 255, 0.78);
    --cockpit-line: rgba(24, 24, 24, 0.12);
    --cockpit-muted: #4f4a42;
    color: var(--color-ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(var(--web-accent-rgb), 0.28), rgba(var(--web-accent-rgb), 0) 30%),
        radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #fffaf0 0%, #f3efe4 46%, #ece7db 100%);
    border-color: rgba(24, 24, 24, 0.14);
}

body:not(.is-site-dark) .web-cockpit-shell .web-responsive-band {
    background:
        radial-gradient(circle at 8% 10%, rgba(var(--web-accent-rgb), 0.2), rgba(var(--web-accent-rgb), 0) 34%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22));
}

body:not(.is-site-dark) .web-cockpit-shell .web-care-modules {
    background:
        radial-gradient(circle at 86% 12%, rgba(var(--web-accent-rgb), 0.22), rgba(var(--web-accent-rgb), 0) 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.16));
}

body:not(.is-site-dark) .web-cockpit-shell .web-growth-band {
    background:
        radial-gradient(circle at 18% 12%, rgba(var(--web-accent-rgb), 0.2), rgba(var(--web-accent-rgb), 0) 32%),
        radial-gradient(circle at 92% 86%, rgba(24, 24, 24, 0.06), rgba(24, 24, 24, 0) 28%);
}

body:not(.is-site-dark) .web-cockpit-shell .web-hosting-stack {
    background:
        linear-gradient(135deg, rgba(var(--web-accent-rgb), 0.18), rgba(var(--web-accent-rgb), 0) 30%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 38%);
}

body:not(.is-site-dark) .web-cockpit-shell .web-care-process {
    background:
        radial-gradient(circle at 78% 12%, rgba(var(--web-accent-rgb), 0.2), rgba(var(--web-accent-rgb), 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.12));
}

body:not(.is-site-dark) .web-cockpit-copy h1,
body:not(.is-site-dark) .web-cockpit-shell .web-responsive-band h2,
body:not(.is-site-dark) .web-cockpit-shell .web-growth-band h2,
body:not(.is-site-dark) .web-cockpit-shell .service-section-heading h2,
body:not(.is-site-dark) .web-cockpit-shell .service-tech-section h2,
body:not(.is-site-dark) .web-cockpit-shell .service-timeline-section h2 {
    color: var(--color-ink);
}

body:not(.is-site-dark) .web-cockpit-shell p,
body:not(.is-site-dark) .web-cockpit-shell .lead,
body:not(.is-site-dark) .web-cockpit-shell .service-section-heading p:last-child,
body:not(.is-site-dark) .web-cockpit-shell .service-tech-section p,
body:not(.is-site-dark) .web-cockpit-shell .service-timeline p {
    color: #4f4a42;
}

body:not(.is-site-dark) .web-cockpit-shell .button.secondary {
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(24, 24, 24, 0.18);
}

body:not(.is-site-dark) .web-cockpit-shell .web-problem-strip article,
body:not(.is-site-dark) .web-cockpit-shell .web-responsive-points article,
body:not(.is-site-dark) .web-cockpit-shell .web-module-grid article,
body:not(.is-site-dark) .web-cockpit-shell .web-growth-grid article,
body:not(.is-site-dark) .web-cockpit-shell .web-stack-grid article,
body:not(.is-site-dark) .web-cockpit-shell .service-timeline li {
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(24, 24, 24, 0.12);
    box-shadow: 0 16px 36px rgba(24, 24, 24, 0.08);
}

body:not(.is-site-dark) .web-cockpit-shell .web-problem-strip h2,
body:not(.is-site-dark) .web-cockpit-shell .web-responsive-points h3,
body:not(.is-site-dark) .web-cockpit-shell .web-module-grid h3,
body:not(.is-site-dark) .web-cockpit-shell .web-growth-grid h3,
body:not(.is-site-dark) .web-cockpit-shell .web-stack-grid h3,
body:not(.is-site-dark) .web-cockpit-shell .service-timeline h3 {
    color: var(--color-ink);
}

.web-cockpit-shell .service-cta-band {
    position: relative;
    isolation: isolate;
    margin: clamp(18px, 3vw, 34px);
    padding: clamp(28px, 5vw, 52px);
    overflow: hidden;
    color: #f4f2ed;
    background:
        radial-gradient(circle at 82% 12%, rgba(var(--web-accent-rgb), 0.34), rgba(var(--web-accent-rgb), 0) 34%),
        linear-gradient(135deg, #111417 0%, #202020 58%, #2c2616 100%);
    border: 1px solid rgba(var(--web-accent-rgb), 0.48);
    border-top: 6px solid var(--web-accent);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.web-cockpit-shell .service-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.web-cockpit-shell .service-cta-band h2,
.web-cockpit-shell .service-cta-band p {
    color: #f4f2ed;
}

body:not(.is-site-dark) .web-cockpit-shell .service-cta-band p {
    color: #f4f2ed;
}

.web-cockpit-shell .service-cta-band .eyebrow {
    color: var(--web-accent);
}

.web-cockpit-shell .service-cta-band .button.primary {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1100px) {
    .web-cockpit-hero,
    .web-cockpit-shell .web-responsive-band,
    .web-cockpit-shell .web-responsive-points,
    .web-cockpit-shell .web-growth-band,
    .web-cockpit-shell .web-growth-grid,
    .web-cockpit-shell .web-problem-strip {
        grid-template-columns: 1fr;
    }

    .web-cockpit-shell .web-care-status {
        right: clamp(14px, 3vw, 24px);
        width: min(260px, 62%);
    }
}

@media (max-width: 640px) {
    .web-care-prelude {
        padding-top: 32px;
    }

    .web-cockpit-shell {
        width: min(calc(100% - 20px), 1440px);
    }

    .web-cockpit-shell > section {
        padding: 26px 18px;
    }

    .web-cockpit-hero {
        min-height: auto;
        gap: 30px;
    }

    .web-cockpit-copy h1 {
        font-size: clamp(2.9rem, 14vw, 4.2rem);
    }

    .web-cockpit-shell .web-browser-window {
        min-height: 300px;
    }

    .web-cockpit-shell .web-care-status {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .web-cockpit-shell .web-demo-home h2 {
        font-size: clamp(2.35rem, 14vw, 3.25rem);
    }

    .web-cockpit-shell .web-module-grid article {
        min-height: auto;
    }

    .web-cockpit-shell .web-responsive-points article {
        min-height: auto;
    }

    .web-cockpit-shell .web-growth-grid article {
        min-height: auto;
    }
}

.service-next-step {
    margin-bottom: clamp(44px, 6vw, 76px);
    background: var(--panel-bg);
    color: var(--panel-fg);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 44px);
    box-shadow: var(--shadow-soft);
}

.service-next-step h2,
.service-next-step p {
    color: var(--panel-fg);
}

.blog-page,
.blog-post-page {
    padding-top: var(--header-offset, clamp(40px, 5vw, 72px));
}

.blog-hero {
    min-height: auto;
    padding-top: 48px;
}

.blog-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.blog-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: 999px;
    font-family: var(--font-accent);
    font-size: var(--type-nav);
    font-weight: var(--weight-bold);
    line-height: 1;
    text-decoration: none;
}

.blog-chip:hover,
.blog-chip:focus,
.blog-chip.is-active {
    color: var(--action-fg);
    background: var(--action-bg);
    border-color: var(--color-yellow);
}

.blog-feed-link {
    color: var(--page-fg);
}

.blog-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
    padding: 14px;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.blog-search-row label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    color: var(--text-muted);
}

.blog-search-row input {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--card-fg);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    font: inherit;
}

.blog-search-row input:focus {
    outline: 3px solid rgba(252, 183, 22, 0.34);
    border-color: var(--color-yellow);
}

.blog-featured-post {
    margin-bottom: 28px;
}

.blog-list-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin: 0 0 18px;
}

.blog-list-heading p {
    max-width: 500px;
    margin: 0;
    color: var(--text-secondary);
    line-height: var(--leading-copy);
}

.blog-list {
    display: grid;
    gap: 18px;
}

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

.blog-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.blog-card-media {
    min-height: 100%;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
}

.blog-card-copy {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
}

.blog-card h2 {
    font-size: var(--type-h3);
}

.blog-card h3 {
    font-size: var(--type-h3);
}

.blog-card h2 a,
.blog-card h3 a {
    text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus,
.blog-card h3 a:hover,
.blog-card h3 a:focus {
    color: var(--color-yellow);
}

.blog-card p:not(.blog-meta) {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.blog-meta,
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0;
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-badge {
    color: var(--action-fg);
    background: var(--action-bg);
    border-radius: 999px;
    padding: 2px 7px;
}

.blog-empty {
    margin: 0;
    padding: 24px;
    color: var(--text-secondary);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
}

.blog-card-grid .blog-card {
    grid-template-columns: 1fr;
}

.blog-card-grid .blog-card-media img {
    min-height: 0;
    aspect-ratio: 16 / 10;
}

.blog-post-article {
    max-width: 880px;
    padding-top: 48px;
    padding-bottom: clamp(56px, 7vw, 96px);
}

.blog-post-header {
    display: grid;
    gap: 18px;
    margin-bottom: clamp(28px, 4vw, 42px);
}

.blog-post-header .blog-chip-row {
    margin-bottom: 0;
}

.blog-post-content {
    display: grid;
    gap: 18px;
    color: var(--page-fg);
    font-size: var(--type-lead);
    line-height: var(--leading-copy);
}

.blog-post-content h1 {
    display: none;
}

.blog-post-content h2 {
    margin-top: 18px;
    font-size: var(--type-h3);
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol {
    margin: 0;
    color: var(--text-secondary);
}

.blog-post-content ul,
.blog-post-content ol {
    padding-left: 1.2em;
}

.blog-fallback-note {
    padding: 14px 16px;
    color: var(--action-fg);
    background: var(--action-bg);
    border-radius: var(--radius);
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: var(--weight-bold);
    line-height: var(--leading-copy);
}

.blog-back-link {
    margin-top: 34px;
}

.home-blog-section {
    display: grid;
    gap: 24px;
}

.home-blog-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
}

.home-blog-header h2,
.home-blog-header p {
    margin: 0;
}

.home-blog-header p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 8px;
    color: var(--text-secondary);
    line-height: var(--leading-copy);
}

.home-blog-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.icon-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--action-fg);
    background: var(--action-bg);
    border: 1px solid var(--color-yellow);
    border-radius: 4px;
    cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
    color: var(--card-fg);
    background: var(--page-bg);
}

.home-blog-feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
    gap: 20px;
    align-items: stretch;
    --home-blog-feature-height: clamp(470px, 42vw, 560px);
}

.home-blog-feature-card {
    grid-template-columns: 1fr;
    height: var(--home-blog-feature-height);
}

.home-blog-feature-card .blog-card-media img {
    height: clamp(260px, 27vw, 338px);
    min-height: 0;
}

.home-blog-feature-card .text-link {
    margin-top: 2px;
}

.home-blog-slider {
    display: grid;
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.home-blog-slider::-webkit-scrollbar {
    display: none;
}

.home-blog-slider .blog-card {
    scroll-snap-align: start;
}

.home-blog-slider-compact {
    grid-template-rows: repeat(3, 1fr);
    grid-auto-columns: 100%;
    height: var(--home-blog-feature-height);
    overflow-y: hidden;
    padding: 0 2px;
}

.home-blog-slider-compact .blog-card {
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 0;
}

.home-blog-slider-compact .blog-card-media img {
    height: 100%;
    min-height: 100%;
}

.home-blog-slider-compact .blog-card-copy {
    gap: 10px;
    padding: 16px 18px;
}

.home-blog-slider-compact .blog-card h3 {
    font-size: var(--type-body);
}

.home-blog-empty {
    grid-column: 1 / -1;
}

.split-section,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
    gap: 32px;
    align-items: center;
}

.split-section p:not(.eyebrow),
.contact-section p,
.contact-section address {
    color: var(--text-secondary);
    font-size: var(--type-lead);
    line-height: var(--leading-copy);
}

.quote-panel,
.contact-section {
    background: var(--panel-bg);
    color: var(--panel-fg);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 44px);
    box-shadow: var(--shadow-soft);
}

.quote-panel img {
    width: 92px;
    margin-bottom: 28px;
}

.quote-panel p,
.contact-section h2,
.contact-section a,
.contact-section address,
.contact-section p {
    color: var(--panel-fg);
}

.contact-section {
    margin-bottom: 64px;
    grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
    gap: 34px;
    overflow: hidden;
    background: radial-gradient(circle at 18% 20%, rgba(252, 183, 22, 0.18), transparent 28%), var(--panel-bg);
    border-bottom: 12px solid var(--color-yellow);
}

.contact-mark {
    display: grid;
    place-items: center;
    min-height: 220px;
}

.contact-mark img {
    width: 132px;
    height: auto;
}

.contact-mark .contact-profile-photo {
    width: min(210px, 100%);
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 58% 50%;
    border: 4px solid rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.contact-copy {
    display: grid;
    align-content: center;
    gap: 16px;
}

.contact-section h2 {
    max-width: 720px;
    margin-bottom: 0;
    line-height: var(--leading-tight);
}

.contact-section address {
    display: grid;
    gap: 12px;
    margin: 4px 0 0;
    font-style: normal;
}

.contact-section address span,
.contact-section address a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.contact-section address .address-block,
.contact-form-aside address .address-block {
    align-items: flex-start;
}

.address-lines {
    display: inline-block;
    line-height: 1.35;
}

.contact-section address .fa-solid {
    color: var(--color-yellow);
}

.contact-section address a:hover,
.contact-section address a:focus {
    color: var(--color-yellow);
}

.contact-form-link {
    width: fit-content;
    margin-top: 4px;
}

.newsletter-signup-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    margin-top: -28px;
    margin-bottom: clamp(56px, 7vw, 92px);
    padding: clamp(28px, 5vw, 52px);
    color: var(--color-ink);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%),
        var(--color-yellow);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.newsletter-copy {
    display: grid;
    gap: 14px;
}

.newsletter-copy .eyebrow,
.newsletter-copy p {
    color: var(--color-ink);
}

.newsletter-copy h2,
.newsletter-copy p {
    margin: 0;
}

.newsletter-copy p:not(.eyebrow) {
    max-width: 660px;
    font-size: var(--type-lead);
    line-height: var(--leading-copy);
}

.newsletter-signup-form {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.newsletter-signup-form label {
    display: grid;
    gap: 7px;
    color: var(--color-ink);
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    text-transform: uppercase;
}

.newsletter-signup-form input[type="email"] {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    font: inherit;
    text-transform: none;
}

.newsletter-signup-form input[type="email"]:focus {
    outline: 3px solid rgba(24, 24, 24, 0.22);
    border-color: var(--color-ink);
}

.newsletter-signup-form .button.primary {
    color: var(--color-paper);
    background: var(--color-ink);
    border-color: var(--color-ink);
}

.newsletter-consent {
    margin: 0;
    color: var(--color-ink);
    font-size: var(--type-small);
    line-height: var(--leading-copy);
}

.newsletter-status-slot {
    min-height: 44px;
}

.newsletter-status-slot:empty {
    display: block;
}

.newsletter-status {
    display: grid;
    gap: 6px;
    padding: 10px 12px;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.32);
    border-left: 4px solid var(--color-ink);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.newsletter-status-slot.is-updating .newsletter-status {
    opacity: 0;
    transform: translateY(6px);
}

.newsletter-status strong,
.newsletter-status p,
.newsletter-status ul {
    margin: 0;
    color: var(--color-ink);
}

.newsletter-status ul {
    padding-left: 20px;
}

.newsletter-status.error {
    border-color: #b42318;
}

.newsletter-status.success {
    border-color: #18864b;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--page-fg);
    font-family: var(--font-accent);
    font-size: var(--type-nav);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus {
    color: var(--color-yellow);
}

.contact-page {
    padding-top: var(--header-offset, clamp(40px, 5vw, 72px));
}

.about-page {
    padding-top: var(--header-offset, clamp(40px, 5vw, 72px));
}

.legal-page {
    padding-top: var(--header-offset, clamp(40px, 5vw, 72px));
}

.error-page {
    padding-top: var(--header-offset, clamp(40px, 5vw, 72px));
}

.contact-hero {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding-top: 48px;
}

.about-hero {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding-top: 48px;
}

.legal-hero {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding-top: 48px;
}

.contact-hero > div,
.about-hero > div,
.legal-hero > div {
    display: grid;
    gap: 16px;
    max-width: 820px;
}

.about-timeline-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
    gap: 0;
    align-items: start;
    margin-bottom: clamp(36px, 5vw, 64px);
    padding: 0;
    overflow: clip;
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.about-portrait-panel {
    position: sticky;
    top: calc(var(--header-offset, 72px) + 24px);
    display: grid;
    align-content: start;
    gap: 22px;
    min-width: 0;
    padding: clamp(22px, 3vw, 30px);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--color-yellow) 15%, transparent), transparent 48%),
        color-mix(in srgb, var(--card-bg) 72%, var(--color-yellow) 10%);
}

.about-portrait-frame {
    margin: 0;
    overflow: hidden;
    background: var(--page-fg);
    border-radius: var(--radius);
}

.about-portrait-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 36%;
}

.about-portrait-copy {
    display: grid;
    gap: 12px;
}

.about-portrait-copy h2 {
    font-size: var(--type-h2);
    line-height: var(--leading-tight);
}

.about-portrait-copy p:not(.eyebrow),
.about-section-heading p,
.about-timeline-body p {
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.about-fact-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.about-fact-list div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
    padding: 12px;
    background: color-mix(in srgb, var(--card-bg) 78%, transparent);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
}

.about-fact-list dt,
.about-fact-list dd {
    min-width: 0;
    margin: 0;
}

.about-fact-list dt {
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.about-timeline-panel {
    display: grid;
    gap: 28px;
    min-width: 0;
    padding: clamp(24px, 4vw, 38px);
}

.about-section-heading {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.about-section-heading h2 {
    font-size: var(--type-h2);
    line-height: var(--leading-tight);
}

.about-timeline {
    display: grid;
    gap: 22px;
    padding-left: 28px;
    border-left: 3px solid var(--color-yellow);
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
}

.about-timeline-item::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -40px;
    width: 15px;
    height: 15px;
    background: var(--card-bg);
    border: 3px solid var(--color-yellow);
    border-radius: 50%;
}

.about-timeline-date {
    display: grid;
    align-content: start;
    gap: 3px;
    min-width: 0;
    color: var(--page-fg);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    line-height: 1.18;
}

.about-timeline-date small {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: var(--type-small);
    font-weight: var(--weight-regular);
    line-height: 1.2;
}

.about-timeline-body {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    min-width: 0;
    padding: clamp(16px, 2.2vw, 20px);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.about-timeline-body img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    background: var(--card-bg);
    border-radius: calc(var(--radius) - 2px);
}

.about-timeline-body h3 {
    margin: 0 0 7px;
    font-size: var(--type-h4);
    line-height: 1.15;
}

.about-timeline-body-strip {
    grid-template-columns: 118px 118px minmax(0, 1fr);
}

.about-timeline-body-strip img {
    object-fit: contain;
    padding: 10px;
}

.legal-card {
    margin-bottom: clamp(36px, 5vw, 64px);
    padding: 0;
}

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

.legal-panel {
    display: grid;
    align-content: start;
    gap: 16px;
    min-width: 0;
    padding: clamp(22px, 3vw, 32px);
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
}

.legal-panel-primary {
    color: var(--panel-fg);
    background: var(--panel-bg);
}

.legal-panel h2 {
    margin: 0;
    color: var(--color-yellow);
    font-size: var(--type-h3);
    line-height: var(--leading-tight);
}

.legal-panel address,
.legal-panel dl {
    display: grid;
    gap: 12px;
    margin: 0;
    font-style: normal;
}

.legal-panel dl div {
    display: grid;
    gap: 4px;
}

.legal-panel dt {
    color: var(--text-muted);
    font-family: var(--font-accent);
    font-size: var(--type-small);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}

.legal-panel-primary dt {
    color: rgba(255, 255, 255, 0.68);
}

.legal-panel dd {
    margin: 0;
}

.legal-panel a {
    text-decoration: none;
}

.legal-panel a:hover,
.legal-panel a:focus {
    color: var(--color-yellow);
}

.network-page {
    padding-top: var(--header-offset, clamp(40px, 5vw, 72px));
}

.network-hero-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    min-height: auto;
    margin-bottom: clamp(32px, 5vw, 58px);
    padding: clamp(28px, 5vw, 56px);
    overflow: clip;
    color: var(--color-paper);
    background:
        linear-gradient(120deg, color-mix(in srgb, var(--color-yellow) 14%, transparent), transparent 42%),
        radial-gradient(circle at 88% 12%, rgba(252, 183, 22, 0.18), transparent 260px),
        linear-gradient(180deg, #151816, #222720);
    border: 1px solid color-mix(in srgb, var(--color-yellow) 30%, transparent);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.network-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
}

.network-hero-copy,
.network-cockpit-panel {
    position: relative;
    z-index: 1;
}

.network-hero-copy {
    display: grid;
    gap: 16px;
    min-width: 0;
    max-width: 780px;
}

.network-hero-copy h1,
.network-hub-card h2,
.network-hub-card p,
.network-hub-action {
    overflow-wrap: anywhere;
    hyphens: auto;
}

.network-hero-copy .lead {
    color: rgba(246, 244, 239, 0.82);
}

.network-hero-copy .text-reader {
    --reader-control-bg: rgba(255, 255, 255, 0.08);
    --reader-control-border: rgba(252, 183, 22, 0.38);
}

.network-hero-copy .text-reader-toggle:hover,
.network-hero-copy .text-reader-toggle:focus-visible {
    color: var(--color-paper);
    background: rgba(255, 255, 255, 0.08);
}

.network-cockpit-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
}

.network-cockpit-panel div {
    min-height: 112px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.network-cockpit-panel strong {
    display: block;
    color: var(--color-yellow);
    font-family: var(--font-accent);
    font-size: clamp(2.8em, 6vw, 4.6em);
    font-weight: var(--weight-bold);
    line-height: 0.92;
}

.network-cockpit-panel span {
    display: block;
    margin-top: 10px;
    color: rgba(246, 244, 239, 0.82);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    line-height: 1.2;
}

.network-hub-section {
    margin-bottom: clamp(42px, 6vw, 76px);
}

.network-hub-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.network-hub-card {
    display: flex;
    min-height: 250px;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: clamp(20px, 3vw, 28px);
    overflow: hidden;
    color: var(--card-fg);
    text-decoration: none;
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.network-hub-card:hover,
.network-hub-card:focus-visible {
    border-color: color-mix(in srgb, var(--color-yellow) 72%, var(--line-color));
    box-shadow: var(--shadow-soft);
    outline: none;
    transform: translateY(-3px);
}

.network-hub-card h2 {
    margin: 0;
    font-size: clamp(1.85em, 3.4vw, 2.8em);
    line-height: var(--leading-tight);
}

.network-hub-card p {
    max-width: 32rem;
    margin: 0;
    color: var(--text-secondary);
}

.network-hub-kicker,
.network-hub-action {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    line-height: 1.1;
}

.network-hub-kicker {
    color: color-mix(in srgb, var(--color-yellow) 78%, var(--page-fg));
    font-size: var(--type-small);
    text-transform: uppercase;
}

.network-hub-action {
    min-height: 38px;
    max-width: 100%;
    margin-top: 4px;
    padding: 9px 12px;
    color: var(--action-fg);
    background: var(--action-bg);
    border-radius: 4px;
    white-space: normal;
}

.network-hub-card-primary,
.network-hub-card-image {
    grid-column: span 3;
}

.network-hub-card-logo,
.network-hub-card-service {
    grid-column: span 2;
}

.network-hub-card-primary,
.network-hub-card-logo,
.network-hub-card-service {
    background:
        radial-gradient(circle at 16% 14%, color-mix(in srgb, var(--color-yellow) 20%, transparent), transparent 190px),
        var(--card-bg);
}

.network-hub-card-image {
    position: relative;
    min-height: 380px;
    color: var(--color-paper);
    background: #111411;
    border-color: rgba(255, 255, 255, 0.15);
}

.network-hub-card-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
}

.network-hub-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 20, 17, 0.9), rgba(17, 20, 17, 0.24));
}

.network-hub-card-image > div {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: 32rem;
}

.network-hub-card-image p,
.network-hub-card-logo p {
    color: rgba(246, 244, 239, 0.78);
}

.network-hub-card-logo {
    color: var(--color-paper);
    background:
        radial-gradient(circle at 18% 12%, rgba(252, 183, 22, 0.18), transparent 190px),
        #171a18;
    border-color: rgba(255, 255, 255, 0.14);
}

.network-hub-card-logo img {
    width: min(260px, 100%);
    max-height: 120px;
    margin-bottom: auto;
    object-fit: contain;
}

.network-hub-card-drone img {
    width: min(180px, 100%);
}

.network-hub-card-nli img {
    width: min(270px, 100%);
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
}

body.is-site-dark .network-hub-card:not(.network-hub-card-image, .network-hub-card-logo) {
    background:
        radial-gradient(circle at 16% 14%, rgba(252, 183, 22, 0.14), transparent 190px),
        var(--card-bg);
}

.error-hero {
    display: grid;
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    min-height: clamp(430px, 54vw, 620px);
    padding-top: 48px;
}

.error-code {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    max-width: 360px;
    color: var(--action-fg);
    background: var(--action-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-accent);
    font-size: clamp(5.2em, 14vw, 10.8em);
    font-weight: var(--weight-bold);
    line-height: 0.88;
}

.error-copy {
    display: grid;
    gap: 18px;
    max-width: 760px;
}

.error-copy h1 {
    margin: 0;
}

.error-copy .lead {
    max-width: 620px;
    margin: 0;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.error-suggestions {
    padding-top: 0;
    padding-bottom: clamp(56px, 7vw, 96px);
}

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

.error-suggestion-card {
    display: grid;
    align-content: start;
    gap: 13px;
    min-width: 0;
    padding: clamp(22px, 3vw, 30px);
    color: var(--card-fg);
    background: var(--card-bg);
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.error-suggestion-card:hover,
.error-suggestion-card:focus {
    border-color: var(--color-yellow);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.error-suggestion-card .fa-solid {
    color: var(--color-yellow);
    font-size: 1.35em;
}

.error-suggestion-card h2 {
    margin: 0;
    font-size: var(--type-h3);
    line-height: var(--leading-tight);
}

.error-suggestion-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: var(--leading-copy);
}

.contact-form-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 0;
    align-items: stretch;
    margin-bottom: clamp(36px, 5vw, 64px);
    padding: 0;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
}

.contact-form-aside {
    display: grid;
    align-content: start;
    gap: 24px;
    padding: clamp(26px, 4vw, 38px);
    color: var(--color-paper);
    background: var(--color-ink);
}

.contact-form-aside h2 {
    margin: 0;
    color: var(--color-yellow);
    font-size: var(--type-h3);
    line-height: var(--leading-tight);
}

.contact-form-aside p {
    margin: 0;
    color: #d8d8d8;
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.contact-form-aside address {
    display: grid;
    gap: 14px;
    margin: 0;
    color: var(--color-paper);
    font-style: normal;
}

.contact-form-aside address span,
.contact-form-aside address a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-paper);
    text-decoration: none;
}

.contact-form-aside address .fa-solid {
    color: var(--color-yellow);
}

.response-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 16px;
    color: var(--action-fg);
    background: var(--action-bg);
}

.response-note p {
    color: var(--action-fg);
}

.contact-status-slot {
    min-height: clamp(142px, 16vw, 210px);
}

.contact-status-slot:empty {
    display: block;
}

.contact-form {
    display: grid;
    align-content: start;
    gap: 20px;
    padding: clamp(26px, 4vw, 38px);
}

.form-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-left: 4px solid var(--color-yellow);
    background: var(--page-bg);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.contact-status-slot.is-updating .form-status {
    opacity: 0;
    transform: translateY(6px);
}

.form-status strong {
    color: var(--card-fg);
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
}

.form-status p,
.form-status ul {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.form-status ul {
    padding-left: 20px;
}

.form-status.error {
    border-color: #b42318;
}

.form-status.success {
    border-color: #18864b;
}

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

.contact-form label,
.choice-group legend {
    display: grid;
    gap: 8px;
    color: var(--card-fg);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--card-fg);
    background: var(--page-bg);
    border: 1px solid var(--line-color);
    border-radius: 4px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(252, 183, 22, 0.34);
    border-color: var(--color-yellow);
}

.choice-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin: 0;
    padding: 0;
    border: 0;
}

.choice-group legend {
    flex-basis: 100%;
}

.choice-group label,
.consent-line {
    display: flex;
    align-items: center;
    gap: 9px;
}

.choice-group input,
.consent-line input {
    width: auto;
    min-height: auto;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
    accent-color: var(--color-yellow);
}

.contact-form .consent-line {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    color: var(--text-secondary);
    background: var(--page-bg);
}

.contact-form .consent-line input {
    margin: 0.24em 0 0;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.turnstile-container {
    margin-top: 4px;
}

.turnstile-container:empty {
    display: none;
}

.form-actions p {
    max-width: 360px;
    margin: 0;
    color: var(--text-muted);
    font-size: var(--type-small);
    line-height: var(--leading-copy);
}

.contact-map-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
    gap: clamp(22px, 4vw, 44px);
    align-items: center;
    margin-bottom: clamp(56px, 7vw, 96px);
    padding: clamp(24px, 4vw, 40px);
    color: var(--card-fg);
    background: var(--card-bg);
    box-shadow: var(--shadow-soft);
}

.contact-map-copy {
    display: grid;
    align-content: center;
}

.contact-map-copy h2 {
    font-size: var(--type-h3);
}

.contact-map-copy p:not(.eyebrow) {
    margin: 14px 0 22px;
    color: var(--text-secondary);
    font-size: var(--type-body);
    line-height: var(--leading-copy);
}

.contact-map-frame {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line-color);
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    background: var(--page-bg);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    --footer-bg: #181818;
    --footer-fg: #d8d8d8;
    --footer-line: rgba(255, 255, 255, 0.26);
    position: relative;
    overflow: hidden;
    color: var(--footer-fg);
    background: var(--footer-bg);
    border-top: 4px solid var(--color-yellow);
}

.site-footer::before {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 200;
    width: 100px;
    height: 100px;
    content: "";
    pointer-events: none;
    background: no-repeat url(../img/bottom-left-corner.svg) 0 0 / 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(150px, 190px) minmax(260px, 1fr) minmax(280px, 1.05fr);
    gap: 48px;
    width: min(var(--content-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 0 38px;
}

.footer-brand {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 22px;
}

.footer-mark {
    width: 116px;
    height: auto;
}

.footer-google {
    display: block;
    width: 138px;
    text-decoration: none;
}

.footer-swiss {
    width: 136px;
    height: auto;
}

.footer-links,
.footer-about {
    min-width: 0;
}

.footer-links h2,
.footer-about h2 {
    margin: 0 0 20px;
    padding-left: 14px;
    color: var(--color-yellow);
    border-left: 3px solid var(--color-yellow);
    font-size: calc(var(--type-footer) * 1.18);
    line-height: 1.1;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    display: block;
    padding: 9px 0;
    color: var(--color-yellow);
    border-top: 1px solid var(--footer-line);
    font-family: var(--font-accent);
    font-size: var(--type-footer);
    font-weight: var(--weight-bold);
    line-height: 1.25;
    text-decoration: none;
}

.footer-links a:last-child {
    border-bottom: 1px solid var(--footer-line);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--color-yellow-strong);
}

.footer-about p {
    margin: 0 0 8px;
    color: var(--footer-fg);
    font-size: var(--type-footer);
    line-height: 1.55;
}

.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 100px;
    color: var(--action-fg);
    background: var(--action-bg);
}

.copyright-note {
    margin: 0;
    font-size: var(--type-small);
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
    line-height: 1;
    text-align: center;
}

em,
i:not([class^="fa"]):not([class*=" fa-"]) {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: var(--weight-regular);
}

strong,
b {
    font-family: var(--font-accent);
    font-weight: var(--weight-bold);
}

.return-top {
    position: absolute;
    right: 14px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 2px;
    color: var(--color-yellow-strong);
    background: #c89205;
    font-size: 0.9em;
    text-decoration: none;
    transform: translateY(-50%);
}

.return-top:hover,
.return-top:focus {
    background: var(--page-fg);
}

@media (max-width: 900px) {
    body {
        --type-hero: 3.35em;
        --type-h2: 2.45em;
        --type-h3: 1.34em;
        --type-h4: 1.16em;
        --type-h5: 1.02em;
        --type-h6: 0.84em;
        --type-lead: 1.1em;
    }

    .site-header-inner,
    .hero-actions {
        align-items: flex-start;
    }

    .hero,
    .section-heading,
    .home-blog-header,
    .home-blog-feature-layout,
    .newsletter-signup-section,
    .split-section,
    .blog-search-row,
    .blog-list-heading,
    .blog-card,
    .about-timeline-section,
    .service-hero,
    .service-detail-grid,
    .contact-section,
    .legal-grid,
    .error-hero,
    .error-suggestion-grid,
    .contact-form-section,
    .contact-map-section {
        grid-template-columns: 1fr;
    }

    .network-hero-section {
        grid-template-columns: 1fr;
    }

    .network-cockpit-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .network-hub-card-primary,
    .network-hub-card-image,
    .network-hub-card-logo,
    .network-hub-card-service {
        grid-column: span 1;
    }

    .service-page .text-reader {
        grid-template-columns: 1fr;
    }

    .about-page .text-reader {
        grid-template-columns: 1fr;
    }

    .about-page .text-reader-voice {
        grid-column: auto;
    }

    .about-portrait-panel {
        position: static;
    }

    .service-page .text-reader-voice {
        grid-column: auto;
    }

    .section-heading .eyebrow,
    .section-heading h1,
    .section-heading h2,
    .section-heading p:last-child {
        grid-column: 1;
    }

    .site-header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
    }

    .utility-strip-inner {
        justify-content: center;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        z-index: 5;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        padding: 8px;
        color: var(--header-fg);
        background: var(--header-bg-compact);
        border: 1px solid rgba(252, 183, 22, 0.38);
        border-radius: 4px;
        box-shadow: var(--shadow-soft);
    }

    .main-nav a {
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav > a:last-child {
        border-bottom: 0;
    }

    .nav-mega-item {
        position: static;
    }

    .nav-mega-item::after {
        content: none;
    }

    .nav-mega-trigger {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 0;
        align-items: stretch;
    }

    .nav-mega-link {
        display: flex;
        align-items: center;
    }

    .nav-mega-toggle {
        width: 42px;
        height: auto;
        min-height: 42px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }

    .services-mega-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 8px 0 10px 12px;
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
        box-shadow: none;
        transform: none;
        transition: none;
    }

    .nav-mega-item:hover .services-mega-menu,
    .nav-mega-item:focus-within .services-mega-menu {
        display: none;
    }

    .nav-mega-item.is-services-menu-open .services-mega-menu {
        display: block;
    }

    .services-overview-link,
    .services-mega-link {
        grid-template-columns: 20px minmax(0, 1fr);
        gap: 9px;
        color: var(--header-fg);
        border-bottom: 0;
    }

    .services-overview-link {
        margin: 0 0 4px;
        padding: 9px 10px;
        background: rgba(255, 255, 255, 0.06);
        border-left: 3px solid var(--color-yellow);
    }

    .services-mega-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .services-mega-link {
        min-height: 0;
        padding: 9px 10px;
        font-size: 0.98em;
    }

    .is-menu-open .main-nav {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

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

    .blog-list-heading {
        display: grid;
        align-items: start;
    }

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

    .home-blog-actions {
        justify-content: flex-start;
    }

    .home-blog-slider-compact {
        grid-auto-columns: 100%;
        grid-template-rows: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: minmax(140px, 180px) 1fr;
        gap: 34px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

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

    .error-code {
        max-width: 280px;
    }
}

@media (max-width: 760px) {
    .network-cockpit-panel,
    .network-hub-grid {
        grid-template-columns: 1fr;
    }

    .network-hub-card,
    .network-hub-card-image {
        min-height: 0;
    }
}

@media (min-width: 1180px) {
    .corner-ribbon {
        display: block;
    }
}

@media (max-width: 620px) {
    body {
        --type-hero: 2.82em;
        --type-h2: 2em;
        --type-h3: 1.22em;
        --type-h4: 1.08em;
        --type-h5: 0.98em;
        --type-h6: 0.78em;
        --type-lead: 1em;
        --type-nav: 0.9em;
        --type-main-nav: 1.04em;
        --type-footer: 0.9em;
    }

    .utility-strip-inner,
    .site-header-inner {
        width: min(82vw, 320px);
        max-width: 320px;
    }

    .brand {
        width: min(280px, 82vw);
        max-width: 100%;
    }

    .is-header-compact .brand {
        width: 44px;
    }

    .hero,
    .section {
        width: min(82vw, 320px);
        max-width: 320px;
    }

    .about-timeline-section {
        width: min(82vw, 320px);
        max-width: 320px;
    }

    .network-hero-section {
        padding: 22px;
    }

    .network-hero-copy h1 {
        font-size: clamp(2.15em, 13vw, var(--type-hero));
    }

    .network-hub-card,
    .network-hub-card-image {
        min-height: 0;
    }

    .network-hub-card-image::after {
        background: linear-gradient(180deg, rgba(17, 20, 17, 0.58), rgba(17, 20, 17, 0.9));
    }

    .hero-copy {
        max-width: 100%;
    }

    .main-nav {
        font-size: var(--type-main-nav);
    }

    .text-reader {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .text-reader-toggle {
        width: 100%;
    }

    .auth-modal {
        padding: 12px;
    }

    .auth-modal-dialog {
        max-height: calc(100vh - 24px);
    }

    .auth-modal-body {
        padding: 12px;
    }

    .text-reader-time,
    .text-reader-speed,
    .text-reader-voice {
        width: 100%;
    }

    .text-reader-wave,
    .text-reader-time {
        justify-self: center;
    }

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

    .blog-card-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-feature-layout {
        --home-blog-feature-height: auto;
    }

    .home-blog-feature-card {
        height: auto;
    }

    .home-blog-slider-compact {
        grid-template-rows: 1fr;
        grid-auto-columns: minmax(260px, 88%);
        height: auto;
    }

    .home-blog-slider-compact .blog-card {
        grid-template-columns: 1fr;
    }

    .home-blog-slider-compact .blog-card-media img {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-code {
        max-width: 220px;
        font-size: 5.4em;
    }

    .button {
        max-width: 100%;
        width: 100%;
    }

    .contact-section,
    .quote-panel {
        padding: 24px;
    }

    .about-portrait-panel,
    .about-timeline-panel {
        padding: 18px;
    }

    .about-fact-list div,
    .about-timeline-item,
    .about-timeline-body,
    .about-timeline-body-strip {
        grid-template-columns: 1fr;
    }

    .about-timeline {
        padding-left: 18px;
    }

    .about-timeline-item::before {
        left: -28.5px;
    }

    .about-timeline-body img {
        height: auto;
        max-height: 260px;
    }

    .newsletter-signup-section {
        margin-top: 0;
        padding: 24px;
    }

    .contact-mark {
        min-height: 170px;
    }

    .contact-mark img {
        width: 110px;
    }

    .contact-mark .contact-profile-photo {
        width: min(170px, 100%);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        width: min(82vw, 320px);
        padding-top: 30px;
    }

    .footer-brand {
        justify-items: start;
    }

    .footer-mark {
        width: 104px;
    }

    .footer-bottom {
        min-height: 44px;
        padding: 0 58px 0 84px;
    }

    .copyright-note {
        font-size: 0.74em;
    }

    .return-top {
        right: 10px;
    }
}

@keyframes text-reader-wave {
    0%,
    100% {
        transform: scaleY(0.58);
    }

    50% {
        transform: scaleY(1.28);
    }
}
