@font-face {
    font-family: "PlusJakartaSans";
    src: url("../fonts/PlusJakartaSans-LatinExt.woff2") format("woff2");
    font-display: swap;
    font-weight: 400 700;
    font-style: normal;
    unicode-range:
        U+0100-02BA,
        U+02BD-02C5,
        U+02C7-02CC,
        U+02CE-02D7,
        U+02DD-02FF,
        U+0304,
        U+0308,
        U+0329,
        U+1D00-1DBF,
        U+1E00-1E9F,
        U+1EF2-1EFF,
        U+2020,
        U+20A0-20AB,
        U+20AD-20C0,
        U+2113,
        U+2C60-2C7F,
        U+A720-A7FF;
}

@font-face {
    font-family: "PlusJakartaSans";
    src: url("../fonts/PlusJakartaSans-Latin.woff2") format("woff2");
    font-display: swap;
    font-weight: 400 700;
    font-style: normal;
    unicode-range:
        U+0000-00FF,
        U+0131,
        U+0152-0153,
        U+02BB-02BC,
        U+02C6,
        U+02DA,
        U+02DC,
        U+0304,
        U+0308,
        U+0329,
        U+2000-206F,
        U+20AC,
        U+2122,
        U+2191,
        U+2193,
        U+2212,
        U+2215,
        U+FEFF,
        U+FFFD;
}

:root {
    --bg: #f5f8ff;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --text: #182233;
    --muted: #677388;
    --line: rgba(223, 232, 248, 0.86);
    --brand: #4d72ff;
    --brand-dark: #143059;
    --brand-soft: #dce6ff;
    --brand-bright: #eef4ff;
    --accent-soft: #f4f8ff;
    --accent-lime: #7fe0ff;
    --glass-stroke: rgba(255, 255, 255, 0.82);
    --glass-shadow: 0 26px 56px rgba(34, 53, 95, 0.1);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 14px 32px rgba(14, 28, 40, 0.08);
    --container: 1160px;
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100%;
    font-family: "PlusJakartaSans", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.68;
    background:
        radial-gradient(980px 460px at 100% 0%, rgba(161, 193, 255, 0.26), transparent 64%),
        radial-gradient(760px 340px at 18% 0%, rgba(132, 231, 255, 0.16), transparent 72%),
        radial-gradient(720px 280px at 52% 0%, rgba(255, 255, 255, 0.98), transparent 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.12)),
        var(--bg);
}

a {
    color: var(--text);
    text-decoration-color: rgba(77, 114, 255, 0.18);
    text-underline-offset: 0.16em;
    text-decoration-thickness: 1px;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

a:hover {
    color: var(--brand-dark);
    text-decoration-color: rgba(77, 114, 255, 0.42);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid rgba(110, 150, 255, 0.5);
    outline-offset: 2px;
}

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(229, 238, 255, 0.86);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.92));
    backdrop-filter: blur(24px);
    box-shadow: 0 18px 36px rgba(41, 65, 120, 0.06);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(191, 211, 245, 0.56) 18%, rgba(216, 228, 248, 0.9) 50%, rgba(191, 211, 245, 0.56) 82%, transparent 100%);
    pointer-events: none;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    position: relative;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.78rem;
    text-decoration: none;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.site-brand-copy {
    display: inline-flex;
    flex-direction: column;
}

.site-brand-logo {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 18px;
}

.site-brand span {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.site-brand small {
    margin-top: 0.3rem;
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
}

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

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.28rem;
    border-radius: 999px;
    border: 1px solid rgba(222, 233, 250, 0.82);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(244, 248, 255, 0.66));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
    flex: 0 0 auto;
}

.lang-switcher-mobile {
    display: none;
}

.lang-switcher-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 2.5rem;
    padding: 0.48rem 0.68rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.lang-switcher-link:hover {
    color: var(--brand-dark);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 255, 0.88));
    border-color: rgba(210, 224, 255, 0.92);
    box-shadow: 0 12px 20px rgba(48, 74, 126, 0.08);
    transform: translateY(-1px);
}

.lang-switcher-link.is-current {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 255, 0.94));
    border-color: rgba(206, 222, 250, 0.96);
    color: var(--brand-dark);
    box-shadow: 0 14px 24px rgba(48, 74, 126, 0.1);
}

.lang-switcher-link.is-disabled {
    opacity: 0.56;
}

.lang-switcher-code {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lang-switcher-name {
    font-size: 0.78rem;
    color: var(--muted);
}

.site-nav-backdrop {
    display: none;
}

.primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.32rem;
    margin: 0;
    padding: 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(222, 233, 250, 0.82);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 248, 255, 0.66));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.primary-menu a {
    display: inline-flex;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 560;
    letter-spacing: 0.005em;
    padding: 0.56rem 0.86rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.menu-item-label {
    display: block;
}

.menu-item-subtitle {
    display: none;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a,
.primary-menu .current_page_item a {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 255, 0.88));
    border-color: rgba(210, 224, 255, 0.92);
    color: var(--brand-dark);
    box-shadow: 0 14px 26px rgba(48, 74, 126, 0.08);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 0.45rem;
    width: 2.6rem;
    height: 2.6rem;
}

.nav-toggle-box {
    width: 1.1rem;
    height: 0.8rem;
    display: grid;
    align-content: space-between;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.6px;
    border-radius: 999px;
    background: currentColor;
    justify-self: end;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle-line:nth-child(1) {
    width: 100%;
}

.nav-toggle-line:nth-child(2) {
    width: 74%;
}

.nav-toggle-line:nth-child(3) {
    width: 52%;
}

.nav-toggle:hover .nav-toggle-line:nth-child(2) {
    width: 82%;
}

.nav-toggle:hover .nav-toggle-line:nth-child(3) {
    width: 66%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    width: 100%;
    transform: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 1;
    width: 82%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    width: 66%;
    transform: none;
}

.site-main {
    padding: 0 0 var(--space-7);
}

.section-block {
    margin-bottom: clamp(3.5rem, 7vw, 5.25rem);
}

.home .section-block:last-child {
    margin-bottom: 0;
}

.hero {
    padding-top: var(--space-4);
    padding-bottom: 0.5rem;
    position: relative;
    isolation: isolate;
}

.hero-has-bg {
    border-radius: 0;
    padding-block: calc(var(--space-6) + 0.5rem);
}

.hero-media,
.page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-media-image,
.page-hero-media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(200, 223, 255, 0.18), rgba(200, 223, 255, 0) 56%),
        linear-gradient(120deg, rgba(16, 24, 38, 0.56), rgba(16, 24, 38, 0.34));
    z-index: 1;
}

.hero-has-bg .container {
    position: relative;
    z-index: 2;
}

.hero-has-bg h1,
.hero-has-bg .lead,
.hero-has-bg .eyebrow,
.hero-has-bg .hero-highlight-list li {
    color: #f6fbf9;
}

.hero-has-bg .hero-visual-main {
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(214, 229, 255, 0.52), rgba(214, 229, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 247, 255, 0.64));
    border-color: rgba(255, 255, 255, 0.66);
    box-shadow: 0 32px 62px rgba(11, 24, 34, 0.18);
}

.hero-has-bg .hero-visual-kicker,
.hero-has-bg .hero-visual-main > p,
.hero-has-bg .hero-visual-main h2,
.hero-has-bg .hero-visual-block span,
.hero-has-bg .hero-visual-block strong,
.hero-has-bg .hero-visual-stat span,
.hero-has-bg .hero-visual-stat strong {
    color: #1a2840;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, 460px);
    gap: calc(var(--space-5) + 0.2rem);
    align-items: end;
}

.hero-copy {
    max-width: 46rem;
    padding-block: 0.9rem 1.2rem;
}

.hero-copy h1 {
    font-size: clamp(2.62rem, 5vw, 4.55rem);
    max-width: 11.5ch;
    margin-bottom: 1rem;
    letter-spacing: -0.048em;
    line-height: 0.96;
}

.hero-copy .lead {
    max-width: 50ch;
    font-size: clamp(1.1rem, 1.9vw, 1.34rem);
    line-height: 1.72;
    margin-bottom: 1.55rem;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.4rem 0.82rem;
    border: 1px solid rgba(220, 232, 255, 0.72);
    border-radius: 999px;
    background: rgba(244, 249, 255, 0.5);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 28px rgba(34, 53, 95, 0.1);
    margin-bottom: 1.1rem;
}

.hero-highlight-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.66rem;
    max-width: 46ch;
}

.hero-highlight-list li {
    padding: 0.72rem 0.96rem;
    font-size: 1rem;
    line-height: 1.56;
    color: color-mix(in srgb, var(--brand-dark) 74%, #8ca4d8 26%);
    border: 1px solid rgba(214, 228, 255, 0.9);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(250, 253, 255, 0.92), rgba(241, 247, 255, 0.72));
    box-shadow: 0 18px 30px rgba(36, 60, 112, 0.07);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.hero-highlight-list li::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(127, 224, 255, 0.94), rgba(77, 114, 255, 0.96));
}

.hero-has-bg .hero-highlight-list li {
    color: #edf5ff;
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(230, 240, 255, 0.08));
    box-shadow: 0 18px 34px rgba(12, 24, 43, 0.12);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-top: 0.42rem;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    align-items: center;
    padding: 0.4rem 0 0.8rem;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orbit-top {
    inset: 0% 8% auto auto;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.86), rgba(205, 225, 255, 0.28) 42%, rgba(205, 225, 255, 0) 72%);
}

.hero-orbit-bottom {
    inset: auto auto -2% 0%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(135, 232, 255, 0.18), rgba(135, 232, 255, 0.06) 34%, rgba(135, 232, 255, 0) 72%);
}

.hero-visual-main {
    position: relative;
    border: 1px solid var(--glass-stroke);
    backdrop-filter: blur(18px);
}

.hero-visual-main {
    z-index: 2;
    width: 100%;
    border-radius: 32px;
    padding: 1.48rem;
    background:
        radial-gradient(115% 115% at 100% 0%, rgba(255, 255, 255, 0.88), rgba(213, 229, 255, 0.22) 38%, rgba(213, 229, 255, 0) 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 251, 255, 0.93) 56%, rgba(241, 246, 255, 0.84) 100%);
    box-shadow: 0 30px 72px rgba(39, 63, 112, 0.1);
}

.hero-visual-main::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 31px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 26%),
        radial-gradient(80% 50% at 50% 0%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.hero-visual-main::after {
    content: "";
    position: absolute;
    inset: auto -8% -12% 48%;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(127, 224, 255, 0.14), rgba(127, 224, 255, 0) 72%);
    pointer-events: none;
}

.hero-visual-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: color-mix(in srgb, var(--brand-dark) 52%, #7f9fd6 48%);
}

.hero-visual-main h2 {
    margin-bottom: 0.85rem;
    font-size: clamp(1.72rem, 2.8vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 11ch;
}

.hero-visual-main > p {
    margin: 0 0 1.15rem;
    color: color-mix(in srgb, var(--muted) 84%, #fff 16%);
    max-width: 31ch;
    font-size: 0.98rem;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.82rem;
}

.hero-visual-block {
    border: 1px solid rgba(232, 239, 255, 0.88);
    border-radius: 20px;
    padding: 0.9rem 0.96rem;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(255, 255, 255, 0.72), rgba(226, 236, 255, 0.24) 34%, rgba(226, 236, 255, 0) 66%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 14px 24px rgba(39, 63, 112, 0.06);
}

.hero-visual-block-wide {
    grid-column: 1 / -1;
}

.hero-visual-block span,
.hero-visual-stat span {
    display: block;
    margin-bottom: 0.36rem;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: color-mix(in srgb, var(--brand-dark) 44%, #87a6d8 56%);
}

.hero-visual-block strong,
.hero-visual-stat strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.hero-visual-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.82rem;
    margin-top: 0.92rem;
}

.hero-visual-stat {
    border: 1px solid rgba(219, 231, 255, 0.9);
    border-radius: 20px;
    padding: 0.88rem 0.9rem 0.84rem;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(255, 255, 255, 0.62), rgba(222, 236, 255, 0) 56%),
        linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(235, 243, 255, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 14px 24px rgba(39, 63, 112, 0.07);
}

.hero-visual-stat span,
.hero-visual-stat strong {
    color: #2b2f31;
}

.hero-visual-stat span {
    opacity: 0.72;
}

.front-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-stroke);
    border-radius: calc(var(--radius-lg) - 2px);
    padding: 1.22rem 1.18rem 1.08rem;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(205, 221, 255, 0.38), rgba(205, 221, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.86));
    box-shadow: 0 22px 42px rgba(34, 53, 95, 0.09);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: auto -8% -26% 42%;
    height: 160px;
    background: radial-gradient(circle, rgba(127, 224, 255, 0.18), rgba(127, 224, 255, 0) 72%);
    pointer-events: none;
}

.showcase-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(127, 224, 255, 0.92), rgba(77, 114, 255, 0.96));
}

.showcase-kicker {
    margin: 0 0 0.72rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--brand-dark) 48%, #83a3da 52%);
    font-weight: 700;
}

.showcase-card h2 {
    margin-bottom: 0.82rem;
    font-size: clamp(1.28rem, 2vw, 1.68rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    max-width: 14ch;
}

.showcase-card p:last-child {
    margin-bottom: 0;
    margin-top: auto;
    color: color-mix(in srgb, var(--muted) 92%, #fff 8%);
    line-height: 1.68;
}

.showcase-card:hover {
    box-shadow: 0 28px 52px rgba(34, 53, 95, 0.12);
    border-color: rgba(214, 228, 255, 0.96);
}

.section-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233, 240, 255, 0.84);
    border-radius: calc(var(--radius-lg) + 2px);
    padding: clamp(1.05rem, 2vw, 1.45rem);
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(210, 225, 255, 0.22), rgba(210, 225, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 251, 255, 0.34));
}

.section-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.section-lead {
    max-width: 64ch;
    color: var(--muted);
    margin-top: -0.2rem;
    margin-bottom: var(--space-4);
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: var(--space-5);
    align-items: center;
}

.split-copy p {
    max-width: 62ch;
    color: var(--muted);
}

.capabilities-shell {
    padding: clamp(1.2rem, 2.2vw, 1.7rem);
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(203, 219, 255, 0.28), rgba(203, 219, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.42));
    box-shadow: 0 26px 50px rgba(34, 53, 95, 0.08);
}

.capabilities-shell .split-copy {
    position: relative;
    padding-right: 0.4rem;
}

.capabilities-shell .section-title {
    max-width: 13ch;
    margin-bottom: 0.95rem;
}

.capabilities-shell .split-copy > p {
    max-width: 56ch;
    font-size: 1.02rem;
    line-height: 1.76;
    margin-bottom: 1.2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 0;
    display: grid;
    gap: 0.65rem;
}

.feature-list li {
    border: 1px solid var(--glass-stroke);
    background:
        radial-gradient(140% 100% at 100% 0%, rgba(210, 225, 255, 0.28), rgba(210, 225, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.78));
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.8rem;
    font-weight: 500;
    box-shadow: 0 12px 22px rgba(19, 34, 49, 0.06);
    backdrop-filter: blur(12px);
}

.capabilities-shell .feature-list {
    gap: 0.72rem;
    max-width: 38rem;
}

.capabilities-shell .feature-list li {
    position: relative;
    padding: 0.78rem 0.92rem 0.78rem 1.2rem;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    box-shadow: 0 14px 24px rgba(34, 53, 95, 0.06);
}

.capabilities-shell .feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64rem;
    bottom: 0.64rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(127, 224, 255, 0.96), rgba(77, 114, 255, 0.96));
}

.split-media img,
.media-placeholder {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    max-height: 350px;
}

.capabilities-shell .split-media {
    position: relative;
}

.capabilities-shell .split-media::before {
    content: "";
    position: absolute;
    inset: -6% -6% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 224, 255, 0.22), rgba(127, 224, 255, 0) 72%);
    pointer-events: none;
}

.capabilities-shell .split-media img,
.capabilities-shell .media-placeholder {
    border-radius: calc(var(--radius-lg) + 2px);
    border: 1px solid rgba(233, 240, 255, 0.96);
    box-shadow: 0 30px 56px rgba(34, 53, 95, 0.12);
    max-height: 420px;
}

.media-placeholder {
    background:
        linear-gradient(160deg, rgba(77, 114, 255, 0.12), rgba(127, 224, 255, 0.14)),
        #eef5ff;
}

.eyebrow {
    margin: 0 0 var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.45rem, 5vw, 4.55rem);
    max-width: 15ch;
    margin-bottom: 1rem;
    text-wrap: balance;
    letter-spacing: -0.045em;
}

h2.section-title {
    font-size: clamp(1.55rem, 2.7vw, 2.35rem);
    margin-bottom: 1.1rem;
    letter-spacing: -0.035em;
}

.lead {
    max-width: 58ch;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.72;
    margin-bottom: 1.35rem;
}

.hero-panel {
    border: 1px solid var(--glass-stroke);
    background:
        radial-gradient(120% 90% at 100% -10%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 56%),
        radial-gradient(90% 70% at 0% 0%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 54%),
        linear-gradient(175deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 248, 255, 0.82) 100%);
    border-radius: var(--radius-lg);
    padding: 1rem 1.05rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px);
}

.hero-panel-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--muted);
}

.hero-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.46rem;
}

.hero-panel li {
    margin: 0;
    padding-left: 0;
    font-size: 0.94rem;
    color: #223251;
    line-height: 1.4;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(143, 178, 255, 0.16);
    background:
        linear-gradient(180deg, #5b7bff 0%, #3455df 100%);
    box-shadow: 0 18px 34px rgba(77, 114, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    color: #fdfefe;
    padding: 0.76rem 1.28rem;
    font-weight: 600;
    letter-spacing: 0.018em;
    transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
    color: #ffffff;
    background:
        linear-gradient(180deg, #6a88ff 0%, #3f60e8 100%);
    border-color: rgba(164, 194, 255, 0.28);
    box-shadow: 0 22px 40px rgba(77, 114, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
}

.grid > .card {
    grid-column: span 4;
    align-self: stretch;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-3);
}

.process-card {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(242, 248, 255, 0.82) 100%);
    padding: 1.05rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
}

.process-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.04rem;
    letter-spacing: -0.02em;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.card {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 248, 255, 0.84) 100%);
    padding: 1.14rem 1.14rem 1.04rem;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    backdrop-filter: blur(18px);
}

.card:hover {
    box-shadow: 0 20px 38px rgba(36, 33, 42, 0.06);
}

.card:focus-within {
    box-shadow: 0 0 0 2px rgba(110, 150, 255, 0.2), 0 10px 24px rgba(15, 23, 42, 0.08);
}

.card-media {
    display: block;
    margin: -1.1rem -1.1rem 0.9rem;
    border-radius: calc(var(--radius-md) - 1px) calc(var(--radius-md) - 1px) 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #deebff;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-kicker {
    margin: 0 0 0.6rem;
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.card h3 {
    font-size: 1.18rem;
    margin-bottom: 0.62rem;
    letter-spacing: -0.025em;
}

.card p {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: color-mix(in srgb, var(--muted) 88%, #fff 12%);
}

.card a:not(.btn) {
    color: inherit;
    text-decoration: none;
}

.card h3 a:hover {
    color: var(--brand);
}

.card-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.card-more {
    margin-top: auto !important;
    margin-bottom: 0;
    padding-top: 0.7rem;
    display: flex;
    align-items: flex-end;
}

.card-more .btn {
    margin-top: auto;
    width: 100%;
    justify-content: space-between;
}

.btn-small {
    padding: 0.64rem 0.92rem;
    font-size: 0.8rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-band {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(210, 225, 255, 0.26), rgba(210, 225, 255, 0) 52%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.84));
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px);
}

.cta-band .btn,
.footer-cta .btn {
    min-width: 13rem;
}

.cta-band-has-bg {
    background-image: var(--cta-band-bg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-band-has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14, 29, 56, 0.76), rgba(14, 29, 56, 0.52));
}

.cta-band-inner {
    position: relative;
    z-index: 2;
    padding: var(--space-6) var(--space-5);
}

.cta-band h2 {
    margin-bottom: 0.7rem;
    max-width: 20ch;
}

.cta-band p {
    max-width: 62ch;
    color: var(--muted);
}

.cta-band-has-bg h2,
.cta-band-has-bg p {
    color: #f6f8fc;
}

.archive-header {
    margin-bottom: var(--space-4);
    padding: 1.2rem 1.25rem 1rem;
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.76));
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
}

.archive-header p {
    max-width: 60ch;
    color: var(--muted);
}

.page-hero {
    position: relative;
    margin-bottom: var(--space-5);
    padding: var(--space-6) 0 var(--space-5);
    min-height: clamp(280px, 32vw, 390px);
    display: flex;
    align-items: end;
    border-bottom: 1px solid rgba(255, 247, 238, 0.9);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.18), rgba(210, 225, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 252, 247, 0.2));
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -28% 42%;
    height: 260px;
    background: radial-gradient(circle, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 70%);
    pointer-events: none;
}

.page-hero h1 {
    margin-bottom: 0.72rem;
    max-width: 12ch;
}

.page-hero .meta-line,
.page-hero p {
    max-width: 64ch;
}

.page-hero-has-bg {
    border-bottom: 0;
}

.page-hero-has-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 0%, rgba(210, 225, 255, 0.16), rgba(210, 225, 255, 0) 58%),
        linear-gradient(120deg, rgba(33, 30, 28, 0.68), rgba(33, 30, 28, 0.44));
    z-index: 1;
}

.page-hero-has-bg > .container {
    position: relative;
    z-index: 2;
}

.page-hero-has-bg h1,
.page-hero-has-bg p,
.page-hero-has-bg .meta-line,
.page-hero-has-bg a {
    color: #f6fbf9;
}

.content-single {
    width: 100%;
    max-width: none;
}

.content-body {
    font-size: 1.02rem;
    max-width: 78ch;
}

.content-body a {
    color: var(--brand-dark);
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1.5px;
}

.content-body a:hover {
    color: var(--brand);
}

.content-body strong {
    color: #0b1220;
}

.content-body h2,
.content-body h3,
.content-body h4 {
    margin-top: 1.65em;
    margin-bottom: 0.55em;
    line-height: 1.2;
}

.content-body p,
.content-body ul,
.content-body ol {
    margin-block: 1em;
}

.content-body ul,
.content-body ol {
    padding-left: 1.3rem;
}

.content-body li + li {
    margin-top: 0.35rem;
}

.content-body blockquote {
    margin: 1.4rem 0;
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--brand-soft);
    background: rgba(111, 159, 180, 0.12);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.content-body code {
    font-family: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
    font-size: 0.92em;
    background: rgba(15, 23, 42, 0.08);
    padding: 0.12em 0.36em;
    border-radius: 6px;
}

.content-body pre {
    overflow: auto;
    padding: 0.9rem;
    background: #0f1d35;
    color: #ecf7f3;
    border-radius: var(--radius-sm);
}

.content-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.content-body > *:first-child {
    margin-top: 0;
}

.content-body > *:last-child {
    margin-bottom: 0;
}

.page-entry > * + * {
    margin-top: var(--space-6);
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.service-single-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--space-4);
    align-items: start;
    padding: calc(var(--space-4) + 0.1rem);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 56%),
        radial-gradient(90% 72% at 0% 0%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 52%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 248, 255, 0.8) 100%);
    box-shadow: 0 24px 46px rgba(34, 53, 95, 0.08);
    backdrop-filter: blur(18px);
}

.service-single-aside {
    position: sticky;
    top: 108px;
}

.service-summary {
    padding: 1.14rem;
    border: 1px solid var(--glass-stroke);
    border-radius: calc(var(--radius-md) - 2px);
    box-shadow: 0 22px 38px rgba(17, 30, 44, 0.07);
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(210, 225, 255, 0.22), rgba(210, 225, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 248, 255, 0.8) 100%);
    backdrop-filter: blur(16px);
}

.service-chip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.service-chip-list li {
    border: 1px solid rgba(228, 238, 255, 0.74);
    border-radius: 999px;
    padding: 0.32rem 0.64rem;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    color: var(--muted);
    background: rgba(246, 250, 255, 0.8);
    box-shadow: 0 8px 18px rgba(20, 34, 49, 0.05);
}

.service-summary-points {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.service-summary-points li {
    border: 1px solid rgba(228, 238, 255, 0.78);
    border-radius: 12px;
    background: rgba(246, 250, 255, 0.82);
    padding: 0.64rem 0.76rem;
    box-shadow: 0 14px 24px rgba(20, 34, 49, 0.045);
}

.service-summary-points span {
    display: block;
    margin-bottom: 0.16rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.service-summary-points strong {
    font-size: 0.94rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.service-summary-cta {
    margin-top: 1rem;
    margin-bottom: 0;
}

.service-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1.1rem 0 0;
    padding: 0.88rem;
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(210, 225, 255, 0.2), rgba(210, 225, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(242, 248, 255, 0.8) 100%);
    box-shadow: 0 16px 30px rgba(19, 33, 48, 0.06);
    backdrop-filter: blur(14px);
}

.service-jump-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    border: 1px solid rgba(228, 238, 255, 0.78);
    border-radius: 999px;
    padding: 0.38rem 0.76rem;
    text-decoration: none;
    font-size: 0.82rem;
    color: var(--text);
    background: rgba(246, 250, 255, 0.82);
    box-shadow: 0 10px 20px rgba(21, 33, 45, 0.05);
}

.service-jump-nav a:hover {
    color: var(--brand-dark);
    border-color: rgba(110, 150, 255, 0.48);
    transform: translateY(-1px);
}

.service-single [id^="service-"] {
    scroll-margin-top: 108px;
}

.project-single [id^="project-"] {
    scroll-margin-top: 108px;
}

.service-list-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.78rem;
}

.service-list-grid li {
    position: relative;
    border: 1px solid rgba(228, 238, 255, 0.78);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(140% 100% at 100% 0%, rgba(210, 225, 255, 0.22), rgba(210, 225, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.8));
    padding: 0.92rem 1rem 0.92rem 1.18rem;
    font-weight: 500;
    box-shadow: 0 14px 22px rgba(19, 33, 48, 0.045);
}

.service-list-grid li::before {
    content: "";
    position: absolute;
    left: 0.72rem;
    top: 0.94rem;
    width: 3px;
    height: calc(100% - 1.88rem);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(110, 150, 255, 0.72), rgba(157, 198, 255, 0.28));
}

.service-process-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: service-step;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
}

.service-process-item {
    position: relative;
    border: 1px solid rgba(228, 238, 255, 0.78);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(130% 100% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.78));
    padding: 1rem 1rem 1rem 1.08rem;
    box-shadow: 0 16px 26px rgba(19, 33, 48, 0.055);
}

.service-process-item strong {
    display: block;
    margin-bottom: 0.52rem;
    letter-spacing: -0.02em;
    font-size: 1.02rem;
}

.service-process-item::before {
    counter-increment: service-step;
    content: counter(service-step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(206, 222, 250, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 255, 0.9));
    box-shadow: 0 12px 22px rgba(48, 74, 126, 0.08);
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.service-section {
    padding: calc(var(--space-4) + 0.05rem);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.22), rgba(210, 225, 255, 0) 58%),
        radial-gradient(84% 64% at 0% 0%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 248, 255, 0.82) 100%);
    box-shadow: 0 22px 40px rgba(34, 53, 95, 0.07);
    backdrop-filter: blur(16px);
}

.service-section .section-title {
    margin-bottom: var(--space-3);
    max-width: 18ch;
}

.service-section .grid {
    margin-top: 0.58rem;
}

.project-single-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--space-4);
    align-items: start;
}

.project-single-main > * + * {
    margin-top: var(--space-4);
}

.project-single-aside {
    position: sticky;
    top: 108px;
}

.project-summary-aside {
    padding: 1rem;
}

.project-summary-points {
    margin-top: 0;
}

.project-jump-nav {
    margin-top: 1rem;
}

.project-quote {
    margin: 0;
}

.service-card {
    padding: 1.06rem;
    background:
        radial-gradient(140% 100% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 248, 255, 0.82) 100%);
    border-color: rgba(255, 255, 255, 0.7);
}

.service-card h3 {
    margin-bottom: 0.48rem;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.faq-accordion {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.72));
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
}

.faq-panel-inner {
    color: var(--muted);
}

.faq-item + .faq-item {
    border-top: 1px solid var(--line);
}

.faq-title {
    margin: 0;
}

.faq-trigger {
    width: 100%;
    border: 0;
    margin: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 1rem 1.02rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font: inherit;
    font-size: 1.02rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: -0.015em;
}

.faq-trigger:hover {
    background: rgba(246, 250, 255, 0.5);
}

.faq-icon {
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid var(--brand-dark);
    border-bottom: 2px solid var(--brand-dark);
    transform: rotate(-45deg);
    flex-shrink: 0;
}

.faq-item.is-open .faq-icon,
.faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
}

.faq-panel-inner {
    padding: 0 1rem 1rem;
    color: var(--muted);
}

.faq-panel-inner p:last-child {
    margin-bottom: 0;
}

.site-footer {
    --footer-bg: #111a2c;
    --footer-surface: rgba(28, 43, 72, 0.72);
    --footer-line: rgba(162, 190, 255, 0.18);
    --footer-text: #f4f8ff;
    --footer-muted: #b2c0de;
    --footer-accent: #8de7ff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(760px 220px at 10% 0%, rgba(77, 114, 255, 0.2), transparent 74%),
        radial-gradient(680px 240px at 88% -8%, rgba(127, 224, 255, 0.12), transparent 74%),
        linear-gradient(180deg, #162138 0%, var(--footer-bg) 100%);
}

.site-footer a:not(.btn) {
    color: var(--footer-muted);
    transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer a:not(.btn):hover {
    color: var(--footer-accent);
}

.site-footer a.btn,
.site-footer a.btn:hover {
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: var(--space-4);
    padding-block: calc(var(--space-5) + 0.45rem) calc(var(--space-4) + 0.2rem);
}

.footer-col {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(140% 120% at 100% 0%, rgba(162, 190, 255, 0.14), rgba(162, 190, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    padding: 1.08rem 1.08rem 1rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 34px rgba(6, 12, 20, 0.2);
}

.footer-col p {
    margin: 0 0 0.5rem;
}

.footer-title {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--footer-muted);
}

.footer-meta {
    color: var(--footer-muted);
    font-size: 0.9rem;
}

.footer-desc {
    color: var(--footer-text);
    font-size: 0.96rem;
    line-height: 1.62;
}

.footer-menu,
.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.46rem;
}

.footer-menu a,
.footer-social a {
    text-decoration: none;
    font-size: 0.93rem;
}

.footer-menu a:hover,
.footer-social a:hover {
    color: var(--footer-accent);
    transform: translateX(1px);
}

.footer-bottom {
    border-top: 1px solid var(--footer-line);
    padding-block: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-top-link {
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    padding: 0.42rem 0.78rem;
    background: rgba(255, 255, 255, 0.06);
}

.footer-top-link:hover {
    color: var(--footer-accent);
    border-color: rgba(162, 190, 255, 0.48);
}

.footer-badges {
    list-style: none;
    margin: 0.8rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-badges li {
    border: 1px solid rgba(162, 190, 255, 0.34);
    color: var(--footer-accent);
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.03);
}

.footer-legal {
    display: grid;
    gap: 0.3rem;
}

.footer-legal-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    margin: 0;
    padding: 0;
}

.footer-legal-links a {
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal-links a:hover {
    color: var(--footer-accent);
    transform: translateX(1px);
}

/* Contact Form 7 - Kontakt page */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.95fr);
    gap: var(--space-4);
    align-items: start;
}

.contact-aside {
    align-self: start;
    position: sticky;
    top: 102px;
    max-height: calc(100vh - 122px);
}

.contact-main > * + * {
    margin-top: 0;
}

.contact-main > .content-body {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    padding: 1.24rem 1.18rem;
    background:
        radial-gradient(110% 92% at 100% 0%, rgba(214, 229, 255, 0.22), rgba(214, 229, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.78));
    box-shadow: 0 20px 38px rgba(19, 33, 48, 0.05);
    backdrop-filter: blur(14px);
}

.contact-page .page-hero {
    margin-bottom: calc(var(--space-5) + 0.2rem);
}

.contact-form-shell {
    margin-top: 1.45rem;
    display: grid;
    gap: 1.16rem;
}

.contact-form-intro {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    padding: 1.28rem 1.2rem 1.12rem;
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(214, 229, 255, 0.3), rgba(214, 229, 255, 0) 58%),
        radial-gradient(90% 80% at 0% 0%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.84));
    box-shadow: 0 22px 40px rgba(19, 33, 48, 0.06);
    backdrop-filter: blur(16px);
}

.contact-form-eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-form-intro h2 {
    margin: 0 0 0.72rem;
    font-size: clamp(1.72rem, 2.7vw, 2.34rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.contact-form-intro > p {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.65;
}

.contact-form-notes {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.contact-form-notes li {
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255, 250, 244, 0.82);
    border-radius: 14px;
    background: rgba(246, 250, 255, 0.78);
    color: color-mix(in srgb, var(--muted) 87%, #fff 13%);
    box-shadow: 0 12px 20px rgba(19, 33, 48, 0.04);
}

.contact-form-panel {
    position: relative;
}

.contact-form-panel::before {
    content: "";
    position: absolute;
    inset: -10px -10px auto auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210, 225, 255, 0.34) 0%, rgba(210, 225, 255, 0) 68%);
    pointer-events: none;
}

.contact-aside-card {
    position: static;
    max-height: 100%;
    overflow: auto;
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(140% 120% at 100% 0%, rgba(210, 225, 255, 0.26), rgba(210, 225, 255, 0) 56%),
        radial-gradient(84% 70% at 0% 0%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 248, 255, 0.82) 100%);
    padding: 1.18rem 1.12rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px);
}

.contact-aside-card::-webkit-scrollbar {
    width: 8px;
}

.contact-aside-card::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(47, 51, 54, 0.18);
}

.contact-aside-eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-aside-card h2 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.24rem, 2vw, 1.56rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.contact-aside-card > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.contact-points {
    list-style: none;
    margin: 1.06rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.contact-points li {
    display: grid;
    gap: 0.12rem;
    border: 1px solid rgba(228, 238, 255, 0.8);
    border-radius: 12px;
    background: rgba(246, 250, 255, 0.82);
    padding: 0.68rem 0.78rem;
    box-shadow: 0 12px 24px rgba(20, 34, 49, 0.045);
}

.contact-points span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--muted);
}

.contact-points strong,
.contact-points a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.contact-points a:hover {
    color: var(--brand-dark);
}

.contact-aside-block {
    margin-top: 1.06rem;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(246, 250, 255, 0.88), rgba(234, 242, 255, 0.72));
    padding: 0.88rem 0.92rem;
    box-shadow: 0 14px 26px rgba(20, 34, 49, 0.045);
}

.contact-aside-block h3 {
    margin: 0;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.contact-process-list {
    margin: 0.55rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
}

.contact-process-list li + li {
    margin-top: 0.42rem;
}

.contact-aside-action {
    margin: 0.95rem 0 0;
}

.contact-aside-action .btn {
    width: 100%;
}

.contact-social-list {
    list-style: none;
    margin: 0.9rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.contact-social-list a {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(228, 238, 255, 0.8);
    border-radius: 999px;
    padding: 0.34rem 0.74rem;
    background: rgba(246, 250, 255, 0.84);
    font-size: 0.82rem;
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 12px 20px rgba(20, 34, 49, 0.05);
}

.contact-social-list a:hover {
    border-color: rgba(110, 150, 255, 0.44);
    color: var(--brand-dark);
}

/* Studio page */
.studio-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.46fr) minmax(280px, 0.95fr);
    gap: var(--space-4);
    align-items: start;
}

.studio-aside {
    align-self: start;
    position: sticky;
    top: 102px;
}

.studio-main > * + * {
    margin-top: var(--space-5);
}

.studio-intro-shell {
    display: grid;
    gap: 1rem;
}

.studio-intro-copy {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    padding: 1.26rem 1.18rem;
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(214, 229, 255, 0.28), rgba(214, 229, 255, 0) 58%),
        radial-gradient(82% 76% at 0% 0%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.82));
    box-shadow: 0 22px 40px rgba(19, 33, 48, 0.055);
    backdrop-filter: blur(16px);
}

.studio-intro-copy .section-title,
.studio-intro-copy h2,
.studio-intro-copy h3 {
    letter-spacing: -0.03em;
}

.studio-intro-copy > *:first-child {
    margin-top: 0;
}

.studio-intro-copy > *:last-child {
    margin-bottom: 0;
}

.studio-intro-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}

.studio-intro-note {
    border: 1px solid rgba(255, 250, 244, 0.82);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(246, 250, 255, 0.9), rgba(234, 242, 255, 0.72));
    padding: 0.92rem 0.94rem;
    box-shadow: 0 14px 24px rgba(20, 34, 49, 0.045);
}

.studio-intro-note span {
    display: block;
    margin-bottom: 0.22rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.studio-intro-note strong {
    font-size: 0.98rem;
    line-height: 1.48;
    letter-spacing: -0.015em;
    color: var(--text);
}

.studio-section .section-title {
    margin-bottom: 1rem;
}

.studio-section {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    padding: 1.22rem 1.14rem;
    background:
        radial-gradient(110% 92% at 100% 0%, rgba(214, 229, 255, 0.22), rgba(214, 229, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.78));
    box-shadow: 0 20px 36px rgba(19, 33, 48, 0.05);
    backdrop-filter: blur(14px);
}

.studio-section + .studio-section {
    margin-top: 1rem;
}

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

.studio-value-card {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(130% 100% at 100% 0%, rgba(210, 225, 255, 0.22), rgba(210, 225, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 248, 255, 0.78) 100%);
    padding: 1.02rem;
    box-shadow: 0 16px 30px rgba(19, 33, 48, 0.055);
    backdrop-filter: blur(14px);
}

.studio-value-index {
    margin: 0 0 0.45rem;
    font-size: 0.74rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--muted);
}

.studio-value-card h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.14;
    letter-spacing: -0.026em;
}

.studio-value-card p {
    margin: 0.48rem 0 0;
    color: var(--muted);
    line-height: 1.64;
}

.studio-stack-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.studio-stack-list li {
    border: 1px solid rgba(228, 238, 255, 0.8);
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    background: rgba(246, 250, 255, 0.82);
    font-size: 0.84rem;
    color: var(--text);
    box-shadow: 0 10px 18px rgba(20, 34, 49, 0.05);
}

.studio-aside-card {
    position: static;
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(140% 120% at 100% 0%, rgba(210, 225, 255, 0.26), rgba(210, 225, 255, 0) 56%),
        radial-gradient(84% 70% at 0% 0%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(242, 248, 255, 0.82) 100%);
    padding: 1.14rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(18px);
}

.studio-aside-eyebrow {
    margin: 0 0 0.42rem;
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--muted);
}

.studio-aside-card h2 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.24rem, 2vw, 1.52rem);
    line-height: 1.08;
    letter-spacing: -0.026em;
}

.studio-aside-card > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.studio-aside-points {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.52rem;
}

.studio-aside-points li {
    border: 1px solid rgba(228, 238, 255, 0.8);
    border-radius: 12px;
    background: rgba(246, 250, 255, 0.82);
    padding: 0.66rem 0.76rem;
    box-shadow: 0 12px 22px rgba(20, 34, 49, 0.045);
}

.studio-aside-points span {
    display: block;
    margin-bottom: 0.12rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
}

.studio-aside-points strong,
.studio-aside-points a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.studio-aside-points a:hover {
    color: var(--brand-dark);
}

.studio-aside-actions {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.5rem;
}

.studio-aside-actions .btn {
    width: 100%;
}

.page-template-page-kontakt .wpcf7 {
    margin-top: 0;
}

.page-template-page-kontakt .wpcf7 form {
    max-width: 860px;
    padding: 1.45rem;
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.28), rgba(210, 225, 255, 0) 58%),
        radial-gradient(84% 70% at 0% 0%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 248, 255, 0.84) 100%);
    box-shadow: 0 30px 64px rgba(19, 34, 49, 0.1);
    backdrop-filter: blur(20px);
}

.page-template-page-kontakt .wpcf7 form > p {
    margin: 0;
}

.page-template-page-kontakt .wpcf7 label {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.page-template-page-kontakt .wpcf7 input[type="text"],
.page-template-page-kontakt .wpcf7 input[type="email"],
.page-template-page-kontakt .wpcf7 textarea {
    width: 100%;
    border: 1px solid rgba(84, 88, 90, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    color: #1f2624;
    font: inherit;
    line-height: 1.5;
    padding: 0.86rem 0.92rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    box-shadow: 0 1px 2px rgba(18, 24, 28, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.page-template-page-kontakt .wpcf7 input[type="text"]::placeholder,
.page-template-page-kontakt .wpcf7 input[type="email"]::placeholder,
.page-template-page-kontakt .wpcf7 textarea::placeholder {
    color: rgba(93, 100, 102, 0.72);
}

.page-template-page-kontakt .wpcf7 textarea {
    min-height: 190px;
    resize: vertical;
}

.page-template-page-kontakt .wpcf7 input[type="text"]:focus,
.page-template-page-kontakt .wpcf7 input[type="email"]:focus,
.page-template-page-kontakt .wpcf7 textarea:focus {
    border-color: rgba(76, 84, 88, 0.3);
    box-shadow: 0 0 0 4px rgba(162, 190, 255, 0.16), 0 14px 26px rgba(22, 36, 52, 0.06);
    background: #ffffff;
    outline: none;
}

.page-template-page-kontakt .wpcf7 .wpcf7-acceptance {
    display: block;
    margin: 0.2rem 0 1rem;
}

.page-template-page-kontakt .wpcf7 .wpcf7-list-item {
    margin: 0;
}

.page-template-page-kontakt .wpcf7 .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 0.58rem;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--muted);
}

.page-template-page-kontakt .wpcf7 input[type="checkbox"] {
    margin-top: 0.18rem;
    accent-color: var(--brand-dark);
}

.page-template-page-kontakt .wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(143, 178, 255, 0.16);
    background:
        linear-gradient(180deg, #5b7bff 0%, #3455df 100%);
    box-shadow: 0 18px 34px rgba(77, 114, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    color: #fdfefe;
    min-height: 3.2rem;
    padding: 0.82rem 1.34rem;
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.018em;
    cursor: pointer;
    transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.page-template-page-kontakt .wpcf7 input[type="submit"]:hover {
    background:
        linear-gradient(180deg, #6a88ff 0%, #3f60e8 100%);
    border-color: rgba(164, 194, 255, 0.28);
    box-shadow: 0 22px 40px rgba(77, 114, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.page-template-page-kontakt .wpcf7 .wpcf7-not-valid-tip {
    margin-top: 0.35rem;
    font-size: 0.82rem;
}

.page-template-page-kontakt .wpcf7 .wpcf7-response-output {
    margin: 1rem 0 0;
    border-radius: var(--radius-sm);
    padding: 0.78rem 0.92rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.42rem 0.6rem;
    z-index: 100;
}

.nav-links {
    margin-top: var(--space-4);
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.7rem;
    height: 2.7rem;
    padding-inline: 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(223, 234, 255, 0.92);
    text-decoration: none;
    color: var(--text);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.84));
    font-size: 0.92rem;
    box-shadow: 0 12px 24px rgba(19, 33, 48, 0.06);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.page-numbers.current {
    color: #fff;
    background: linear-gradient(180deg, #5b7bff 0%, #3455df 100%);
    border-color: rgba(143, 178, 255, 0.24);
    box-shadow: 0 18px 34px rgba(77, 114, 255, 0.22);
}

.page-numbers:hover {
    color: var(--brand-dark);
    border-color: rgba(167, 196, 255, 0.92);
    box-shadow: 0 16px 28px rgba(19, 33, 48, 0.08);
    transform: translateY(-1px);
}

.navigation.pagination {
    margin-top: 1.35rem;
}

.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}


@media (max-width: 1040px) {
    .front-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .grid > .card {
        grid-column: span 6;
    }

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

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

    .service-single-intro {
        grid-template-columns: 1fr;
    }

    .service-single-aside {
        position: static;
    }

    .project-single-intro {
        grid-template-columns: 1fr;
    }

    .project-single-aside {
        position: static;
    }

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

    .service-jump-nav {
        margin-top: 0.8rem;
    }
}

@media (max-width: 860px) {
    body {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.72)),
            var(--bg);
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-header,
    .hero .eyebrow,
    .hero-highlight-list li,
    .hero-visual-main,
    .hero-visual-block,
    .hero-visual-stat,
    .showcase-card,
    .section-shell,
    .feature-list li,
    .card,
    .process-card,
    .archive-header,
    .service-single-intro,
    .service-summary,
    .service-jump-nav,
    .service-section,
    .project-summary,
    .contact-main > .content-body,
    .contact-form-intro,
    .contact-aside-card,
    .studio-intro-copy,
    .studio-section,
    .studio-aside-card,
    .logo-wall,
    .cookie-consent-panel,
    .cta-band {
        backdrop-filter: none;
    }

    .site-header {
        box-shadow: 0 12px 24px rgba(41, 65, 120, 0.05);
    }

    .hero-has-bg::before,
    .page-hero-has-bg::before {
        background: linear-gradient(180deg, rgba(16, 24, 38, 0.42), rgba(16, 24, 38, 0.2));
    }

    .hero-orbit {
        display: none;
    }

    .hero-visual-main,
    .hero-highlight-list li,
    .showcase-card,
    .card,
    .process-card,
    .service-summary,
    .studio-aside-card,
    .contact-aside-card,
    .cookie-consent-panel {
        box-shadow: 0 14px 28px rgba(34, 53, 95, 0.08);
    }

    .hero-visual-main {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.92));
    }

    .hero-visual-block,
    .hero-visual-stat,
    .hero-highlight-list li {
        background: linear-gradient(180deg, rgba(250, 253, 255, 0.96), rgba(241, 247, 255, 0.9));
    }

    .container {
        width: min(100% - 1.35rem, var(--container));
    }

    .header-inner {
        min-height: 68px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 0.55rem;
        row-gap: 0.35rem;
        padding-block: 0.4rem;
    }

    .site-brand span {
        font-size: 1.12rem;
        letter-spacing: -0.028em;
    }

    .site-brand-logo {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .site-brand small {
        font-size: 0.55rem;
        letter-spacing: 0.16em;
    }

    .lang-switcher {
        display: none;
    }

    .lang-switcher-mobile {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        padding: 0.56rem 0.62rem 0.1rem;
        margin-top: 0.28rem;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .lang-switcher-mobile .lang-switcher-link {
        justify-content: flex-start;
        min-width: 0;
        padding: 0.82rem 0.92rem;
        border-radius: 16px;
        background: linear-gradient(180deg, rgba(250, 252, 255, 0.82), rgba(243, 248, 255, 0.74));
        border-color: rgba(226, 236, 252, 0.92);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
    }

    .lang-switcher-mobile .lang-switcher-link.is-current {
        box-shadow: 0 14px 24px rgba(48, 74, 126, 0.12);
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        position: relative;
        z-index: 1002;
        transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }

    .nav-toggle[aria-expanded="true"] {
        border-color: rgba(110, 150, 255, 0.42);
        background: rgba(162, 190, 255, 0.14);
        color: var(--brand-dark);
        box-shadow: 0 8px 18px rgba(34, 28, 24, 0.06);
    }

    .site-nav {
        position: fixed;
        top: calc(68px + env(safe-area-inset-top, 0px) + 0.3rem);
        left: 0.7rem;
        right: 0.7rem;
        width: auto;
        display: block;
        margin-left: 0;
        margin-top: 0;
        padding: 0 0 0.82rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.985);
        border-radius: 18px;
        border: 1px solid rgba(228, 238, 255, 0.92);
        background: #fbfdff;
        box-shadow: 0 18px 32px rgba(17, 30, 44, 0.12);
        z-index: 1001;
        transition: max-height 0.2s ease, opacity 0.18s ease, transform 0.18s ease, padding 0.18s ease, visibility 0s linear 0.2s;
    }

    .site-nav::before {
        content: "Menu";
        display: block;
        padding: 0.78rem 0.9rem 0.18rem;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .site-nav.is-open {
        max-height: 70vh;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        padding: 0 0 0.72rem;
        transition: max-height 0.2s ease, opacity 0.18s ease, transform 0.18s ease, padding 0.18s ease, visibility 0s linear 0s;
    }

    .site-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        border: 0;
        padding: 0;
        background: rgba(14, 30, 52, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.22s ease, visibility 0s linear 0.22s;
        z-index: 1000;
    }

    .site-nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.22s ease, visibility 0s linear 0s;
    }

    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.32rem;
        width: 100%;
        padding: 0.3rem 0.56rem 0;
        border-radius: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu a {
        width: 100%;
        justify-content: space-between;
        border-radius: 14px;
        padding: 0.82rem 0.9rem;
        background: #f7faff;
        border-color: rgba(226, 236, 252, 0.92);
        box-shadow: none;
        opacity: 1;
        transform: none;
        transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    }

    .primary-menu a > span:first-child {
        flex: 1 1 auto;
    }

    .menu-item-label {
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .menu-item-subtitle {
        display: none;
    }

    .primary-menu a::after {
        content: "";
        align-self: flex-start;
        margin-top: 0.16rem;
        margin-left: 0.55rem;
        width: 0.44rem;
        height: 0.44rem;
        border-top: 1.4px solid rgba(85, 110, 160, 0.72);
        border-right: 1.4px solid rgba(85, 110, 160, 0.72);
        transform: rotate(45deg);
        transition: border-color 0.18s ease;
    }

    .primary-menu a:hover,
    .primary-menu .current-menu-item a,
    .primary-menu .current_page_item a {
        background: #ffffff;
        color: var(--brand-dark);
        box-shadow: none;
    }

    .primary-menu a:hover::after,
    .primary-menu .current-menu-item a::after,
    .primary-menu .current_page_item a::after {
        border-color: var(--brand-dark);
    }

    .grid {
        gap: 0.85rem;
    }

    .grid > .card {
        grid-column: 1 / -1;
    }

    .section-split {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .capabilities-shell {
        padding: 1rem;
    }

    .capabilities-shell .split-copy {
        padding-right: 0;
    }

    .capabilities-shell .section-title,
    .capabilities-shell .split-copy > p,
    .capabilities-shell .feature-list {
        max-width: none;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.62rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
        padding-top: 0.45rem;
    }

    .hero-visual-main {
        width: 100%;
        border-radius: 20px;
        padding: 0.92rem;
    }

    .hero-visual-main::before,
    .hero-visual-main::after {
        display: none;
    }

    .hero-copy {
        padding-block: 0.12rem 0.4rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.14rem, 9.2vw, 3rem);
        max-width: 11ch;
    }

    .hero-copy .lead {
        font-size: 0.98rem;
        margin-bottom: 1rem;
        line-height: 1.64;
    }

    .hero .eyebrow {
        margin-bottom: 0.8rem;
    }

    .hero-highlight-list li {
        padding: 0.5rem 0.68rem;
        border-radius: 12px;
        font-size: 0.94rem;
    }

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

    .hero-visual-block-wide {
        grid-column: auto;
    }

    .hero-visual-footer {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 220px;
        padding: var(--space-4) 0 var(--space-4);
    }

    .page-hero h1 {
        max-width: 10ch;
    }

    .front-showcase-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .showcase-card {
        padding: 1rem 0.96rem 0.92rem;
    }

    .showcase-card h2 {
        max-width: none;
    }

    .services-shell {
        padding: 1rem;
    }

    .services-shell .section-title,
    .services-shell .section-lead,
    .card-service h3 {
        max-width: none;
    }

    .card-service {
        padding: 1rem 0.96rem 0.94rem;
    }

    .card-service .card-media {
        margin: -1rem -0.96rem 0.92rem;
    }

    .projects-shell,
    .logos-shell,
    .process-shell,
    .knowledge-shell {
        padding: 1rem;
    }

    .projects-shell .section-title,
    .knowledge-shell .section-title,
    .process-shell .section-title,
    .card-project h3,
    .card-knowledge h3 {
        max-width: none;
    }

    .projects-shell .section-lead,
    .knowledge-shell .section-lead {
        max-width: none;
    }

    .card-project,
    .card-knowledge {
        padding: 1rem 0.96rem 0.94rem;
    }

    .card-project .card-media,
    .card-knowledge .card-media {
        margin: -1rem -0.96rem 0.92rem;
    }

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

    .page-entry > * + * {
        margin-top: var(--space-5);
    }

    .service-single-intro,
    .project-summary,
    .service-section {
        border-radius: 18px;
    }

    .page-hero {
        min-height: 220px;
        padding: var(--space-4) 0 var(--space-4);
    }

    .page-hero h1 {
        max-width: 10ch;
    }

    .archive-header {
        padding: 1rem 1rem 0.92rem;
    }

    .service-list-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-single-intro,
    .service-section {
        padding: var(--space-3);
    }

    .project-summary {
        padding: var(--space-3);
    }

    .contact-aside-card,
    .studio-aside-card,
    .service-summary {
        padding: 0.96rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding-block: var(--space-4) 1rem;
    }

    .footer-col {
        padding: 0.92rem 0.96rem;
        border-radius: 14px;
    }

    .footer-title {
        font-size: 0.7rem;
        letter-spacing: 0.16em;
    }

    .footer-desc {
        font-size: 0.92rem;
        line-height: 1.56;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
        padding-block: 0.9rem 1.05rem;
    }

    .footer-legal-links {
        gap: 0.35rem 0.65rem;
    }

    .footer-top-link {
        padding: 0.48rem 0.82rem;
    }

    .footer-cta .btn,
    .cta-band .btn {
        width: 100%;
        min-width: 0;
    }

    .service-jump-nav {
        padding: 0.62rem;
        gap: 0.35rem;
    }

    .service-jump-nav a {
        font-size: 0.78rem;
    }

    .service-summary-points li,
    .contact-points li,
    .studio-aside-points li {
        padding: 0.62rem 0.7rem;
    }

    .service-process-item,
    .service-list-grid li {
        padding: 0.84rem;
    }

    .service-list-grid li {
        padding-left: 1.18rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .studio-layout {
        grid-template-columns: 1fr;
    }

    .studio-values-grid {
        grid-template-columns: 1fr;
    }

    .studio-intro-notes {
        grid-template-columns: 1fr;
    }

.contact-aside-card {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .contact-aside {
        position: static;
        top: auto;
        max-height: none;
    }

    .studio-aside-card {
        position: static;
        top: auto;
    }

    .studio-aside {
        position: static;
        top: auto;
    }

    .navigation.pagination .nav-links {
        gap: 0.45rem;
    }

    .page-numbers {
        min-width: 2.5rem;
        height: 2.5rem;
        padding-inline: 0.74rem;
    }

    .page-template-page-kontakt .wpcf7 form {
        padding: 0.9rem;
    }

    .page-template-page-kontakt .wpcf7 input[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 0.85rem;
    }

    .hero-layout {
        gap: 1rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
        max-width: 10ch;
    }
}

/* Enterprise polish additions */
.btn-secondary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.92));
    color: #183154;
    border-color: rgba(174, 198, 255, 0.64);
    box-shadow: 0 14px 26px rgba(40, 65, 118, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    color: #10294e;
    box-shadow: 0 18px 32px rgba(40, 65, 118, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(232, 241, 255, 0.96));
    border-color: rgba(145, 178, 255, 0.8);
}

.card-more .btn-secondary::after {
    content: "\2192";
    font-size: 0.9rem;
    line-height: 1;
    opacity: 0.88;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.card-more .btn-secondary:hover::after {
    transform: translateX(2px);
    opacity: 1;
}

.services-shell {
    padding: clamp(1.22rem, 2.2vw, 1.7rem);
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(195, 215, 255, 0.28), rgba(195, 215, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 249, 255, 0.48));
    box-shadow: 0 28px 54px rgba(34, 53, 95, 0.08);
}

.services-kicker {
    margin: 0 0 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: color-mix(in srgb, var(--brand-dark) 46%, #88a6dc 54%);
}

.services-shell .section-title {
    max-width: 12ch;
    margin-bottom: 0.9rem;
}

.services-shell .section-lead {
    max-width: 60ch;
    margin-bottom: 1.35rem;
    font-size: 1.02rem;
    line-height: 1.74;
}

.services-grid {
    gap: 1rem;
}

.card-service {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-md) + 2px);
    padding: 1.16rem 1.14rem 1.08rem;
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(203, 220, 255, 0.34), rgba(203, 220, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.86));
    box-shadow: 0 22px 40px rgba(34, 53, 95, 0.09);
}

.card-service::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(127, 224, 255, 0.94), rgba(77, 114, 255, 0.98));
}

.card-service:hover {
    border-color: rgba(211, 226, 255, 0.96);
    box-shadow: 0 30px 52px rgba(34, 53, 95, 0.12);
}

.card-service .card-media {
    margin: -1.16rem -1.14rem 1rem;
    border-bottom: 1px solid rgba(223, 234, 255, 0.92);
    background:
        linear-gradient(160deg, rgba(77, 114, 255, 0.12), rgba(127, 224, 255, 0.16)),
        #e7f1ff;
}

.card-service .card-kicker {
    margin-bottom: 0.68rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: color-mix(in srgb, var(--brand-dark) 48%, #83a4dd 52%);
}

.card-service h3 {
    margin-bottom: 0.74rem;
    font-size: 1.26rem;
    line-height: 1.06;
    letter-spacing: -0.035em;
    max-width: 14ch;
}

.card-service > p:not(.card-kicker):not(.card-more):not(.card-meta) {
    color: color-mix(in srgb, var(--muted) 90%, #fff 10%);
    line-height: 1.68;
    margin-bottom: 0.82rem;
}

.card-service .card-more {
    padding-top: 0.76rem;
}

.projects-shell,
.logos-shell,
.process-shell,
.knowledge-shell {
    padding: clamp(1.18rem, 2.1vw, 1.62rem);
    box-shadow: 0 26px 50px rgba(34, 53, 95, 0.08);
}

.projects-shell {
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(198, 219, 255, 0.28), rgba(198, 219, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 255, 0.44));
}

.logos-shell {
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(186, 240, 255, 0.18), rgba(186, 240, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 255, 0.4));
}

.process-shell {
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(198, 219, 255, 0.22), rgba(198, 219, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.46));
}

.knowledge-shell {
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(188, 229, 255, 0.24), rgba(188, 229, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.48));
}

.projects-kicker,
.logos-kicker,
.process-kicker,
.knowledge-kicker {
    margin: 0 0 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: color-mix(in srgb, var(--brand-dark) 46%, #88a6dc 54%);
}

.projects-shell .section-title,
.knowledge-shell .section-title {
    max-width: 12ch;
}

.projects-shell .section-lead,
.knowledge-shell .section-lead {
    max-width: 60ch;
    font-size: 1.01rem;
    line-height: 1.72;
    margin-bottom: 1.3rem;
}

.projects-grid,
.knowledge-grid {
    gap: 1rem;
}

.card-project,
.card-knowledge {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-md) + 2px);
    padding: 1.16rem 1.14rem 1.08rem;
    box-shadow: 0 22px 40px rgba(34, 53, 95, 0.09);
}

.card-project {
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(202, 222, 255, 0.34), rgba(202, 222, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.86));
}

.card-knowledge {
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(188, 229, 255, 0.26), rgba(188, 229, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.9));
}

.card-project::before,
.card-knowledge::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(127, 224, 255, 0.94), rgba(77, 114, 255, 0.98));
}

.card-project:hover,
.card-knowledge:hover {
    border-color: rgba(211, 226, 255, 0.96);
    box-shadow: 0 30px 52px rgba(34, 53, 95, 0.12);
}

.card-project .card-media,
.card-knowledge .card-media {
    margin: -1.16rem -1.14rem 1rem;
    border-bottom: 1px solid rgba(223, 234, 255, 0.92);
    background:
        linear-gradient(160deg, rgba(77, 114, 255, 0.12), rgba(127, 224, 255, 0.16)),
        #e7f1ff;
}

.card-project .card-kicker,
.card-knowledge .card-kicker {
    margin-bottom: 0.68rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: color-mix(in srgb, var(--brand-dark) 48%, #83a4dd 52%);
}

.card-project h3,
.card-knowledge h3 {
    margin-bottom: 0.74rem;
    font-size: 1.24rem;
    line-height: 1.06;
    letter-spacing: -0.035em;
    max-width: 14ch;
}

.card-project > p:not(.card-kicker):not(.card-more):not(.card-meta),
.card-knowledge > p:not(.card-kicker):not(.card-more):not(.card-meta) {
    color: color-mix(in srgb, var(--muted) 90%, #fff 10%);
    line-height: 1.68;
}

.card-project .card-meta,
.card-knowledge .card-meta {
    color: color-mix(in srgb, var(--muted) 86%, #fff 14%);
    font-size: 0.88rem;
}

.process-shell .section-title {
    max-width: 12ch;
}

.process-grid {
    gap: 1rem;
}

.process-card {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius-md) + 2px);
    padding: 1.12rem 1.04rem 1rem;
    box-shadow: 0 20px 38px rgba(34, 53, 95, 0.08);
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(127, 224, 255, 0.94), rgba(77, 114, 255, 0.98));
}

.process-card h3 {
    margin-bottom: 0.64rem;
    font-size: 1.08rem;
    line-height: 1.08;
    max-width: 14ch;
}

.logo-wall {
    margin-top: 0.25rem;
}

.logo-wall-item {
    border-radius: calc(var(--radius-md) + 2px);
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(196, 218, 255, 0.22), rgba(196, 218, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.82));
    border: 1px solid rgba(229, 238, 255, 0.92);
    box-shadow: 0 18px 34px rgba(34, 53, 95, 0.08);
}

.logo-wall-nav {
    border: 1px solid rgba(203, 220, 255, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.84));
    box-shadow: 0 16px 28px rgba(34, 53, 95, 0.08);
}

.cta-band {
    box-shadow: 0 28px 58px rgba(34, 53, 95, 0.1);
}

.cta-band-inner {
    padding: calc(var(--space-6) + 0.2rem) calc(var(--space-5) + 0.1rem);
}

.cta-band h2 {
    max-width: 16ch;
    margin-bottom: 0.82rem;
}

.cta-band p {
    max-width: 58ch;
    font-size: 1.02rem;
    line-height: 1.72;
}

.archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: last baseline;
    margin-bottom: var(--space-4);
    padding: 0.96rem;
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.72));
    box-shadow: 0 18px 32px rgba(19, 33, 48, 0.07);
    backdrop-filter: blur(14px);
}

.knowledge-page-shell {
    display: grid;
    gap: 1.22rem;
}

.archive-filters label {
    display: grid;
    gap: 0.3rem;
    min-width: 180px;
}

.archive-filters label span {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.archive-filters select {
    height: 2.5rem;
    border: 1px solid rgba(229, 238, 255, 0.9);
    border-radius: 10px;
    padding: 0 0.65rem;
    background: rgba(249, 252, 255, 0.86);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.filter-reset {
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration: none;
    padding: 0.3rem 0;
}

.filter-reset:hover {
    color: var(--brand);
}

.project-summary {
    padding: calc(var(--space-4) + 0.05rem);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.24), rgba(210, 225, 255, 0) 58%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.72));
    box-shadow: 0 22px 40px rgba(34, 53, 95, 0.07);
    backdrop-filter: blur(16px);
}

.project-summary .service-chip-list {
    margin-bottom: 1rem;
}

.project-summary .content-body {
    margin-top: 1rem;
}

.project-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-meta-strip span {
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    padding: 0.28rem 0.66rem;
    font-size: 0.8rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 8px 18px rgba(19, 33, 48, 0.04);
}

.service-summary-cta-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 1rem;
}

.service-summary-cta {
    margin: 0;
}

.service-summary-cta-group .btn {
    width: 100%;
    min-width: 0;
    min-height: 2.7rem;
    padding: 0.64rem 0.82rem;
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-align: center;
}

.service-meta-strip span {
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    padding: 0.28rem 0.68rem;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.12);
}

.service-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-3);
}

.service-kpi-item {
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-sm);
    padding: 0.85rem 0.9rem;
    background:
        radial-gradient(130% 100% at 100% 0%, rgba(210, 225, 255, 0.22), rgba(210, 225, 255, 0) 56%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.74));
    box-shadow: 0 14px 24px rgba(19, 33, 48, 0.06);
}

.service-kpi-value {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--brand-dark);
}

.service-kpi-label {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.service-testimonial {
    margin: 1.1rem 0 0;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-sm);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.2), rgba(210, 225, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 248, 255, 0.72));
    padding: 0.95rem 1rem;
    box-shadow: 0 14px 24px rgba(19, 33, 48, 0.05);
}

.service-testimonial p {
    margin: 0 0 0.65rem;
}

.service-testimonial cite {
    display: block;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--muted);
}

.service-logo-strip {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem;
}

.service-logo-strip figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 0.55rem;
    min-height: 76px;
    display: grid;
    place-items: center;
}

.service-logo-strip img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
}

.knowledge-grid .card-featured {
    grid-column: span 12;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) + 2px);
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(198, 219, 255, 0.3), rgba(198, 219, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.9));
    box-shadow: 0 26px 48px rgba(34, 53, 95, 0.1);
    border: 1px solid rgba(224, 235, 252, 0.92);
}

.knowledge-grid .card-featured .card-media {
    margin: 0;
    height: 100%;
    min-height: 100%;
    border-radius: 0;
    aspect-ratio: auto;
    position: relative;
}

.knowledge-grid .card-featured .card-media img {
    height: 100%;
}

.knowledge-grid .card-featured .card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 33, 60, 0.02), rgba(15, 33, 60, 0.12)),
        radial-gradient(90% 80% at 78% 22%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 58%);
    pointer-events: none;
}

.knowledge-grid .card-featured .card-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.42rem 1.34rem 1.2rem;
    min-width: 0;
}

.knowledge-grid .card-featured .card-kicker {
    margin-top: 0;
    margin-bottom: 0.72rem;
    align-self: flex-start;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(211, 225, 250, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9));
    box-shadow: 0 10px 20px rgba(48, 74, 126, 0.06);
}

.knowledge-grid .card-featured .card-featured-copy > p {
    max-width: 56ch;
}

.knowledge-grid .card-featured .card-featured-copy > p:not(.card-kicker):not(.card-meta):not(.card-more) {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.72;
}

.knowledge-grid .card-featured .card-meta {
    margin-bottom: 0;
    margin-top: 0.8rem;
    padding-top: 0.82rem;
    border-top: 1px solid rgba(224, 235, 252, 0.88);
}

.knowledge-grid .card-featured .card-more {
    margin-top: 0.95rem;
}

.card-featured h2 {
    margin-top: 0;
    margin-bottom: 0.78rem;
    font-size: clamp(1.56rem, 2.6vw, 2.16rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.knowledge-empty-state {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.14rem;
    background:
        radial-gradient(110% 110% at 100% 0%, rgba(188, 229, 255, 0.22), rgba(188, 229, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 249, 255, 0.8));
    box-shadow: 0 18px 34px rgba(34, 53, 95, 0.08);
}

.logo-wall {
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-md);
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(210, 225, 255, 0.22), rgba(210, 225, 255, 0) 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(242, 248, 255, 0.7));
    padding: 0.85rem;
    box-shadow: 0 14px 26px rgba(19, 33, 48, 0.06);
    backdrop-filter: blur(16px);
}

.logo-wall-track {
    display: grid;
    gap: 0.7rem;
}

.logo-wall-grid .logo-wall-track {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-wall-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.logo-wall-viewport {
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.logo-wall-slider .logo-wall-viewport::before,
.logo-wall-slider .logo-wall-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3rem;
    z-index: 2;
    pointer-events: none;
}

.logo-wall-slider .logo-wall-viewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(247, 250, 255, 0.96), rgba(247, 250, 255, 0));
}

.logo-wall-slider .logo-wall-viewport::after {
    right: 0;
    background: linear-gradient(270deg, rgba(247, 250, 255, 0.96), rgba(247, 250, 255, 0));
}

.logo-wall-slider .logo-wall-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: 0.7rem;
    padding: 0.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.logo-wall-slider .logo-wall-track::-webkit-scrollbar {
    display: none;
}

.logo-wall-item {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.74);
    min-height: 74px;
    padding: 0.5rem;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 20px rgba(19, 33, 48, 0.05);
}

.logo-wall-grid .logo-wall-item {
    min-width: 0;
}

.logo-wall-slider .logo-wall-item {
    min-width: clamp(170px, 18vw, 220px);
    scroll-snap-align: start;
}

.logo-wall-item img {
    max-width: 100%;
    max-height: 42px;
    width: auto;
    height: auto;
}

.logo-wall-nav {
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(216, 228, 251, 0.94);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.88));
    color: var(--brand-dark);
    font-weight: 700;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 14px 24px rgba(34, 53, 95, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.logo-wall-nav:hover {
    transform: translateY(-1px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(236, 245, 255, 0.94));
    box-shadow: 0 18px 28px rgba(34, 53, 95, 0.12);
}

.logo-wall-nav[disabled] {
    opacity: 0.38;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.cookie-consent {
    position: fixed;
    inset: auto 0 0;
    z-index: 1200;
    pointer-events: none;
}

.cookie-consent.is-visible {
    inset: 0;
}

.cookie-consent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19, 30, 48, 0.26);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.cookie-consent.is-visible .cookie-consent-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent-panel {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    width: min(520px, calc(100vw - 2rem));
    padding: 1.2rem 1.18rem;
    border: 1px solid rgba(220, 232, 252, 0.94);
    border-radius: calc(var(--radius-lg) + 2px);
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(196, 221, 255, 0.28), rgba(196, 221, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.92));
    box-shadow: 0 32px 68px rgba(24, 38, 67, 0.18);
    backdrop-filter: blur(16px);
    transform: translateY(1rem);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease;
    pointer-events: none;
}

.cookie-consent.is-visible .cookie-consent-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-consent-eyebrow {
    margin: 0 0 0.42rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-consent-panel h2 {
    margin: 0 0 0.72rem;
    font-size: clamp(1.28rem, 2vw, 1.6rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.cookie-consent-text,
.cookie-consent-links {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.cookie-consent-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.82rem;
}

.cookie-consent-links a {
    color: var(--brand-dark);
    text-decoration: none;
}

.cookie-consent-links a:hover {
    color: var(--brand);
}

.cookie-consent-preferences {
    display: grid;
    gap: 0.72rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(220, 232, 252, 0.88);
}

.cookie-consent-option {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(226, 236, 252, 0.92);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.72);
}

.cookie-consent-option-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-width: 0;
}

.cookie-consent-option-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.cookie-consent-option-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    font: inherit;
    cursor: default;
}

.cookie-consent-option strong {
    display: block;
    margin-bottom: 0.22rem;
    font-size: 0.96rem;
}

.cookie-consent-option-icon {
    display: none;
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid var(--brand-dark);
    border-bottom: 2px solid var(--brand-dark);
    transform: rotate(45deg);
    flex: 0 0 auto;
    opacity: 0.8;
    transition: transform 0.18s ease;
}

.cookie-consent-option.is-open .cookie-consent-option-icon {
    transform: rotate(-135deg);
}

.cookie-consent-option-body {
    margin-top: 0.18rem;
}

.cookie-consent-option p {
    margin: 0;
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.55;
    max-width: 38ch;
}

.cookie-consent-option.is-locked {
    align-items: flex-start;
}

.cookie-consent-state {
    flex-shrink: 0;
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 600;
}

.cookie-consent-toggle {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cookie-consent-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-consent-toggle span {
    position: relative;
    width: 2.9rem;
    height: 1.74rem;
    border-radius: 999px;
    background: rgba(190, 204, 228, 0.9);
    box-shadow: inset 0 0 0 1px rgba(159, 177, 210, 0.72);
    transition: background 0.18s ease;
}

.cookie-consent-toggle span::after {
    content: "";
    position: absolute;
    top: 0.16rem;
    left: 0.18rem;
    width: 1.42rem;
    height: 1.42rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(25, 39, 62, 0.16);
    transition: transform 0.18s ease;
}

.cookie-consent-toggle input:checked + span {
    background: linear-gradient(180deg, rgba(86, 149, 255, 0.95), rgba(77, 114, 255, 0.95));
}

.cookie-consent-toggle input:checked + span::after {
    transform: translateX(1.12rem);
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.62rem;
    margin-top: 1rem;
}

.cookie-consent-actions .btn {
    min-width: 0;
    white-space: nowrap;
}

.cookie-consent-actions .btn-secondary {
    font-size: 0.82rem;
    padding-inline: 0.95rem;
}

.cookie-consent-link {
    position: fixed;
    left: 1rem;
    bottom: 2.85rem;
    z-index: 1190;
    border: 1px solid rgba(220, 232, 252, 0.94);
    border-radius: 999px;
    padding: 0.7rem 0.92rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.9));
    color: var(--brand-dark);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 16px 28px rgba(24, 38, 67, 0.12);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cookie-consent-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 32px rgba(24, 38, 67, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(236, 245, 255, 0.92));
}

.footer-cookie-settings {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    color: var(--footer-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}

.footer-cookie-settings:hover {
    color: var(--footer-accent);
    transform: translateX(1px);
}

@media (max-width: 1040px) {
    .service-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .logo-wall-grid .logo-wall-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .archive-filters {
        padding: 0.75rem;
    }

    .archive-filters label {
        min-width: 100%;
    }

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

    .knowledge-grid .card-featured .card-featured-copy {
        padding: 0.96rem;
    }

    .knowledge-grid .card-featured .card-kicker {
        margin-bottom: 0.62rem;
    }

    .navigation.pagination .nav-links {
        gap: 0.45rem;
    }

    .page-numbers {
        min-width: 2.5rem;
        height: 2.5rem;
        padding-inline: 0.74rem;
    }

    .service-kpi-grid {
        grid-template-columns: 1fr;
    }

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

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

    .logo-wall-slider {
        grid-template-columns: auto 1fr auto;
        gap: 0.45rem;
    }

    .logo-wall-slider .logo-wall-viewport::before,
    .logo-wall-slider .logo-wall-viewport::after {
        width: 1.5rem;
    }

    .logo-wall-nav {
        display: inline-grid;
        width: 2.1rem;
        height: 2.1rem;
        font-size: 0.88rem;
        box-shadow: 0 10px 18px rgba(34, 53, 95, 0.08);
    }

    .logo-wall-nav span {
        transform: translateY(-1px);
    }

    .cookie-consent-panel {
        right: 1rem;
        left: 1rem;
        bottom: 1rem;
        width: auto;
        padding: 1rem 0.96rem;
    }

    .cookie-consent-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .cookie-consent-panel h2 {
        font-size: 1.12rem;
        line-height: 1.08;
        margin-bottom: 0.58rem;
    }

    .cookie-consent-text,
    .cookie-consent-links {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .cookie-consent-links,
    .cookie-consent-actions {
        gap: 0.56rem;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .cookie-consent-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .cookie-consent-actions .btn-secondary {
        font-size: 0.76rem;
        padding-inline: 0.7rem;
    }

    .cookie-consent-actions .btn:last-child {
        grid-column: 1 / -1;
    }

    .cookie-consent-option {
        padding: 0.76rem 0.8rem;
    }

    .cookie-consent-option strong {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .cookie-consent-option p {
        font-size: 0.8rem;
        line-height: 1.46;
        max-width: none;
    }

    .cookie-consent-state {
        font-size: 0.74rem;
        white-space: nowrap;
    }

    .cookie-consent-option-toggle {
        cursor: pointer;
    }

    .cookie-consent-option-icon {
        display: inline-block;
    }

    .cookie-consent-option-body {
        display: none;
        margin-top: 0.48rem;
        padding-right: 0.25rem;
    }

    .cookie-consent-option.is-open .cookie-consent-option-body {
        display: block;
    }

    .cookie-consent-option-main {
        align-items: flex-start;
    }

    .cookie-consent-link {
        left: auto;
        right: 1rem;
        bottom: 1rem;
    }
}
