:root {
    color-scheme: dark;
    --bg: #06101d;
    --bg-2: #0a1729;
    --surface: rgba(9, 18, 32, 0.74);
    --surface-strong: rgba(11, 22, 40, 0.9);
    --border: rgba(130, 168, 208, 0.16);
    --border-strong: rgba(159, 194, 235, 0.3);
    --text: #eaf2ff;
    --muted: #98abca;
    --soft: #b5c6df;
    --accent: #6ef3d6;
    --accent-2: #76b8ff;
    --accent-3: #f7b267;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    --shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.24);
    --header-control-height: 3rem;
    --page-gutter: clamp(0.5rem, 0.9vw, 1rem);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --font-display: "Aptos", "Segoe UI Variable Display", "SF Pro Display", "Trebuchet MS", sans-serif;
    --font-body: "Aptos", "Segoe UI Variable Text", "SF Pro Text", "Trebuchet MS", sans-serif;
    --container: min(calc(100vw - clamp(2rem, 3vw, 5rem)), 3840px);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    background:
        radial-gradient(circle at top left, rgba(110, 243, 214, 0.13), transparent 28%),
        radial-gradient(circle at 80% 8%, rgba(118, 184, 255, 0.14), transparent 32%),
        radial-gradient(circle at 70% 85%, rgba(247, 178, 103, 0.1), transparent 25%),
        linear-gradient(180deg, #06101d 0%, #081321 35%, #08111d 100%);
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 82%);
    opacity: 0.55;
}

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

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

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

button {
    cursor: pointer;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.2rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    max-width: 14ch;
}

h3 {
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

.skip-link {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -120%);
    z-index: 1000;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #03111a;
    font-weight: 700;
    transition: transform 0.18s ease;
}

.skip-link:focus {
    transform: translate(-50%, 1rem);
}

.page-shell {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    padding-inline: var(--page-gutter);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0 0.5rem;
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0 -2rem auto;
    height: 92px;
    background: linear-gradient(180deg, rgba(6, 16, 29, 0.9), rgba(6, 16, 29, 0.12));
    z-index: -1;
    pointer-events: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-block {
    min-width: 0;
}

.brand-mark {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 1.05rem;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    flex: 0 0 auto;
}

.brand-text {
    display: grid;
    gap: 0.15rem;
}

.brand-text strong,
.footer-brand {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-text span {
    color: var(--muted);
    font-size: 0.86rem;
}

.menu-shell {
    display: grid;
    gap: 0.9rem;
    justify-items: end;
    position: relative;
}

.menu-shell-content {
    display: grid;
    gap: 0.9rem;
    justify-items: end;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: var(--header-control-height);
    padding: 0.52rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(8, 16, 28, 0.74);
    color: var(--text);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.menu-toggle-icon {
    width: 1rem;
    height: 0.72rem;
    display: block;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    position: relative;
    flex: 0 0 auto;
}

.menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid currentColor;
    transform: translateY(-50%);
}

.menu-backdrop {
    display: none;
}

.menu-shell-close {
    display: none;
}

.menu-close-icon {
    width: 1rem;
    height: 1rem;
    display: block;
    position: relative;
    flex: 0 0 auto;
}

.menu-close-icon::before,
.menu-close-icon::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 50%;
    border-top: 2px solid currentColor;
    transform-origin: center;
}

.menu-close-icon::before {
    transform: translateY(-50%) rotate(45deg);
}

.menu-close-icon::after {
    transform: translateY(-50%) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav > a,
.nav-dropdown > summary {
    display: inline-flex;
    align-items: center;
    min-height: var(--header-control-height);
    padding: 0.52rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--soft);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible {
    color: var(--text);
    background: var(--surface-strong);
    border-color: var(--border-strong);
    transform: translateY(-1px);
}

.site-nav > a[aria-current="page"] {
    color: #03111a;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
    font-weight: 700;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > summary {
    cursor: pointer;
    list-style: none;
    gap: 0.35rem;
}

.nav-dropdown > summary::after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-dropdown[open] > summary::after {
    transform: rotate(225deg) translateY(1px);
}

.nav-dropdown-panel {
    display: grid;
    gap: 0.3rem;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    min-width: 17rem;
    padding: 0.6rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(6, 15, 28, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    z-index: 20;
}

.nav-dropdown-panel a {
    padding: 0.8rem 0.85rem;
    border-radius: 0.8rem;
    color: var(--soft);
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.locale-switcher {
    position: relative;
    align-self: start;
    min-width: 13.25rem;
}

.locale-switcher > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    width: 100%;
    min-height: var(--header-control-height);
    padding: 0.55rem 0.75rem 0.55rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(8, 16, 28, 0.74);
    color: var(--text);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.locale-switcher-current {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.locale-switcher-copy {
    display: grid;
    gap: 0.04rem;
}

.locale-switcher-copy strong {
    font-size: 0.96rem;
    letter-spacing: -0.01em;
}

.locale-switcher-copy span {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.locale-switcher-caret {
    width: 0.7rem;
    height: 0.7rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
}

.locale-switcher[open] .locale-switcher-caret {
    transform: rotate(225deg) translateY(1px);
}

.locale-switcher-panel {
    display: grid;
    gap: 0.35rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    min-width: 19rem;
    padding: 0.7rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(6, 15, 28, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    z-index: 40;
}

.locale-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.78rem 0.85rem;
    border-radius: 0.9rem;
    color: var(--soft);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.locale-option:hover,
.locale-option:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.locale-option.is-active {
    color: #03111a;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    font-weight: 700;
}

.locale-option-copy {
    display: grid;
    gap: 0.05rem;
}

.locale-option-copy strong {
    font-size: 0.95rem;
}

.locale-option-copy span {
    color: inherit;
    font-size: 0.73rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.72;
}

.locale-option.is-active .locale-option-copy span {
    opacity: 0.85;
}

.locale-flag {
    width: 2.15rem;
    height: 1.45rem;
    display: block;
    border-radius: 0.42rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

.locale-flag--uk {
    background: linear-gradient(180deg, #005bbb 0 50%, #ffd500 50% 100%);
}

.locale-flag--ru {
    background: linear-gradient(180deg, #ffffff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.locale-flag--en {
    background:
        linear-gradient(45deg, transparent 42%, #ffffff 42% 46%, #c8102e 46% 54%, #ffffff 54% 58%, transparent 58%),
        linear-gradient(-45deg, transparent 42%, #ffffff 42% 46%, #c8102e 46% 54%, #ffffff 54% 58%, transparent 58%),
        linear-gradient(0deg, transparent 40%, #ffffff 40% 60%, transparent 60%),
        linear-gradient(90deg, transparent 40%, #ffffff 40% 60%, transparent 60%),
        #012169;
}

.locale-flag--pl {
    background: linear-gradient(180deg, #ffffff 0 50%, #dc143c 50% 100%);
}

.locale-flag--de {
    background: linear-gradient(180deg, #000000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.locale-option.is-active .locale-flag,
.locale-switcher[open] > summary .locale-flag {
    filter: saturate(1.08) brightness(1.08);
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    flex-wrap: wrap;
    min-width: 0;
}

.header-action {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: var(--header-control-height);
    padding: 0.48rem 0.74rem 0.48rem 0.56rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(8, 16, 28, 0.74);
    color: var(--text);
    box-shadow: var(--shadow-soft);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-action:hover,
.header-action:focus-visible {
    transform: translateY(-1px);
    border-color: var(--border-strong);
    color: var(--text);
}

.header-action-icon {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    flex: 0 0 auto;
}

.header-action-copy {
    display: grid;
    gap: 0.05rem;
    min-width: 0;
}

.header-action-copy strong {
    font-size: 0.94rem;
    letter-spacing: -0.01em;
}

.header-action-copy span {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-action[aria-pressed="true"] {
    color: #03111a;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    border-color: transparent;
    font-weight: 700;
}

.header-action[aria-pressed="true"] .header-action-icon {
    background: rgba(7, 17, 31, 0.12);
    color: #03111a;
}

.header-action[aria-pressed="true"] .header-action-copy span {
    color: inherit;
    opacity: 0.82;
}

.site-main {
    padding: clamp(1.25rem, 3vw, 2.6rem) 0 4rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumbs a {
    color: var(--soft);
}

.breadcrumbs span[aria-current="page"] {
    color: var(--text);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(1.25rem, 2.1vw, 2rem);
    align-items: start;
    padding: clamp(1.15rem, 2.4vw, 2rem);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(145deg, rgba(18, 30, 48, 0.84), rgba(8, 16, 28, 0.76)),
        radial-gradient(circle at top right, rgba(118, 184, 255, 0.16), transparent 28%);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.hero::before {
    inset: auto auto -8rem -5rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(110, 243, 214, 0.18), transparent 66%);
}

.hero::after {
    inset: -6rem -7rem auto auto;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(118, 184, 255, 0.16), transparent 66%);
}

.hero-home {
    min-height: clamp(30rem, 68svh, 46rem);
}

.hero-slim {
    min-height: clamp(24rem, 54vh, 34rem);
}

.hero-copy,
.hero-visual,
.section,
.site-footer {
    position: relative;
    z-index: 1;
}

.hero-copy {
    display: grid;
    gap: 1rem;
    max-width: 52rem;
}

.hero-home .hero-copy {
    max-width: 100%;
    align-content: start;
}

.hero-lead,
.section-heading > p,
.glass-card p,
.case-card p,
.legal-block p,
.site-footer p,
.contact-form label span,
.visual-card span,
.visual-card p,
.service-tile p {
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.42rem 0.75rem;
    border: 1px solid rgba(110, 243, 214, 0.2);
    border-radius: 999px;
    color: var(--accent);
    background: rgba(110, 243, 214, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-lead {
    font-size: clamp(1rem, 1.08vw, 1.14rem);
    max-width: 60ch;
}

.hero-home h1 {
    max-width: 19ch;
    font-size: clamp(2.8rem, 4.1vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: var(--header-control-height);
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-trust-dot {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 6px rgba(110, 243, 214, 0.08);
    flex: 0 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.78rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #05131b;
    background: linear-gradient(135deg, var(--accent) 0%, #87c2ff 100%);
    box-shadow: 0 18px 40px rgba(110, 243, 214, 0.18);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--border);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.chip-row li,
.tag-cloud span {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 176, 214, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--soft);
    font-size: 0.9rem;
}

.hero-visual {
    display: grid;
    gap: 1rem;
    align-content: stretch;
}

.hero-visual-stack {
    align-self: stretch;
}

.hero-panel {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 1.8vw, 1.35rem);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(118, 184, 255, 0.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(110, 243, 214, 0.14), transparent 32%),
        linear-gradient(160deg, var(--surface-strong), var(--surface));
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 100%;
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-panel::before {
    inset: auto auto -7rem -5rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(110, 243, 214, 0.18), transparent 66%);
}

.hero-panel::after {
    inset: -6rem -4rem auto auto;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(118, 184, 255, 0.18), transparent 66%);
}

.hero-panel-head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.45rem;
}

.hero-panel-badge {
    margin-bottom: 0;
}

.hero-panel-head h2 {
    margin: 0;
    max-width: 12ch;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-panel-head p {
    margin: 0;
    max-width: 48ch;
    color: var(--soft);
}

.hero-panel-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero-service-card {
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem 0.95rem;
    min-height: 7.7rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-service-card:hover,
.hero-service-card:focus-within {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    background: var(--surface-strong);
}

.hero-service-card--wide {
    grid-column: 1 / -1;
    min-height: 6.8rem;
}

.hero-service-index {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-service-card strong {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.12;
    color: var(--text);
}

.hero-service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.visual-grid,
.card-grid,
.case-grid,
.steps-grid,
.footer-grid,
.contact-layout {
    display: grid;
    gap: 1rem;
}

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

.visual-card,
.glass-card,
.service-tile,
.contact-panel,
.contact-aside,
.site-footer,
.notice {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.visual-card {
    padding: 1rem 1.05rem;
    display: grid;
    gap: 0.35rem;
}

.visual-main {
    min-height: 19.5rem;
    padding: 1.5rem;
    background:
        linear-gradient(165deg, rgba(20, 33, 51, 0.94), rgba(8, 16, 28, 0.78)),
        radial-gradient(circle at top right, rgba(247, 178, 103, 0.15), transparent 25%);
}

.visual-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-3);
    font-weight: 700;
}

.visual-card strong {
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1.7vw, 1.55rem);
}

.section {
    padding: clamp(1.2rem, 3vw, 2.2rem) 0 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}

.section-heading {
    display: grid;
    gap: 0.8rem;
    max-width: 52rem;
    margin-bottom: 1.2rem;
}

.section-heading.compact {
    margin-bottom: 0.95rem;
}

.section-heading--feature h2 {
    max-width: 22ch;
}

.section-heading--feature > p:not(.eyebrow) {
    max-width: 70ch;
}

.section-heading > p:not(.eyebrow) {
    font-size: 1.02rem;
    max-width: 72ch;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(24rem, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1rem, 2vw, 1.6rem);
    align-items: start;
}

.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.glass-card {
    padding: 1.2rem;
    display: grid;
    gap: 0.7rem;
}

.glass-card--icon {
    align-content: start;
}

.competencies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.competencies-grid .glass-card {
    min-height: clamp(14rem, 18vw, 16rem);
    padding: clamp(1rem, 1.25vw, 1.25rem);
    gap: 0.85rem;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.competencies-grid .glass-card:hover,
.competencies-grid .glass-card:focus-within {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: rgba(15, 27, 47, 0.86);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.competency-card-icon {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(110, 243, 214, 0.14), rgba(118, 184, 255, 0.18));
    color: var(--accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.competency-card-icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.competencies-grid .glass-card h3 {
    max-width: 20ch;
}

.competencies-grid .glass-card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.competencies-grid .glass-card .text-link {
    margin-top: auto;
}

.webit-cases {
    display: grid;
    gap: 1rem;
}

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

.webit-cases__card {
    display: grid;
    gap: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    align-content: start;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

.webit-cases__card:hover,
.webit-cases__card:focus-within {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: rgba(15, 27, 47, 0.86);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.webit-cases__media {
    position: relative;
    display: block;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(14, 26, 45, 0.2), rgba(14, 26, 45, 0.02)),
        rgba(10, 18, 32, 0.9);
    border-bottom: 1px solid var(--border);
}

.webit-cases__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform 0.35s ease;
}

.webit-cases__card:hover .webit-cases__media img,
.webit-cases__card:focus-within .webit-cases__media img {
    transform: scale(1.04);
}

.webit-cases__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.1rem;
}

.webit-cases__eyebrow {
    margin-bottom: 0;
}

.webit-cases__summary {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

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

.webit-cases__works li {
    position: relative;
    padding-left: 1rem;
    color: var(--soft);
    font-size: 0.9rem;
    line-height: 1.35;
}

.webit-cases__works li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

.webit-cases__actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.webit-cases__site {
    color: var(--accent-2);
    font-weight: 700;
    font-size: 0.94rem;
}

.webit-cases__details {
    min-width: 8.9rem;
    margin-left: auto;
    justify-content: center;
}

.webit-cases__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(110, 243, 214, 0.16);
    background:
        linear-gradient(135deg, rgba(10, 20, 36, 0.9), rgba(9, 18, 32, 0.78)),
        radial-gradient(circle at right center, rgba(118, 184, 255, 0.14), transparent 32%);
    box-shadow: var(--shadow);
}

.webit-cases__cta-copy {
    display: grid;
    gap: 0.4rem;
}

.webit-cases__cta h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.glass-card p:last-child {
    margin-bottom: 0;
}

.glass-card h3,
.service-tile strong {
    color: var(--text);
}

.service-tiles {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.service-tile {
    padding: 1.15rem;
    display: grid;
    gap: 0.55rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-tile:hover,
.service-tile:focus-visible {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    background: rgba(15, 27, 47, 0.88);
}

.service-tile-index,
.step-number {
    width: 2.1rem;
    height: 2.1rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(110, 243, 214, 0.18), rgba(118, 184, 255, 0.18));
    color: var(--accent);
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    counter-reset: step;
}

.steps-grid .glass-card {
    min-height: 14rem;
}

.webit-process {
    display: grid;
    gap: 1.1rem;
}

.webit-process__grid {
    position: relative;
    display: grid;
    gap: 0.95rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    grid-auto-rows: 1fr;
    list-style: none;
    margin: 0;
    padding: 1rem 0 0;
}

.webit-process__grid::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 2.35rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(110, 243, 214, 0.02), rgba(118, 184, 255, 0.35), rgba(110, 243, 214, 0.02));
    pointer-events: none;
}

.webit-process__item {
    min-width: 0;
    display: flex;
}

.webit-process__card {
    width: 100%;
    display: grid;
    gap: 0.85rem;
    min-height: clamp(14rem, 18vw, 16.5rem);
    padding: 1.1rem;
    align-content: start;
    opacity: 0;
    transform: translateY(18px);
    transition:
        transform 0.25s ease,
        opacity 0.55s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

.webit-process__card:hover,
.webit-process__card:focus-within {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.webit-process__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    min-height: 3rem;
}

.webit-process__index {
    font-size: clamp(1.45rem, 2vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: var(--text);
    min-width: 2.6rem;
}

.webit-process__icon {
    width: 3rem;
    height: 3rem;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(110, 243, 214, 0.12), rgba(118, 184, 255, 0.16));
    color: var(--accent);
    flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.webit-process__icon svg {
    width: 1.38rem;
    height: 1.38rem;
}

.webit-process__card h3 {
    max-width: 18ch;
}

.webit-process__card p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.webit-process__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: clamp(1.1rem, 1.4vw, 1.45rem);
    border: 1px solid var(--border-strong);
    background:
        linear-gradient(135deg, var(--surface-strong), var(--surface)),
        radial-gradient(circle at right center, rgba(118, 184, 255, 0.14), transparent 32%);
    box-shadow: var(--shadow);
}

.webit-process__cta-copy {
    display: grid;
    gap: 0.4rem;
}

.webit-process__cta h3 {
    max-width: 21ch;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

@media (max-width: 1199px) {
    .webit-process__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}

.faq-item summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
    color: var(--text);
}

.faq-item summary::after {
    content: "+";
    color: var(--accent);
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    padding-top: 0.8rem;
    max-width: 70ch;
}

.cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.35rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(110, 243, 214, 0.16);
    background:
        linear-gradient(135deg, rgba(10, 20, 36, 0.9), rgba(9, 18, 32, 0.78)),
        radial-gradient(circle at right center, rgba(118, 184, 255, 0.14), transparent 32%);
    box-shadow: var(--shadow);
}

.cta-band h2 {
    max-width: 18ch;
}

.case-grid {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.case-card {
    padding: 1.2rem;
}

.case-points {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.25rem;
}

.case-points li {
    padding-left: 1rem;
    position: relative;
    color: var(--soft);
}

.case-points li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
    align-items: start;
}

.contact-panel,
.contact-aside {
    padding: 1.2rem;
}

.aside-stack {
    display: grid;
    gap: 0.85rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
}

.contact-form label.full-width,
.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text);
    background: rgba(4, 10, 18, 0.55);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(110, 243, 214, 0.5);
    box-shadow: 0 0 0 4px rgba(110, 243, 214, 0.14);
}

.contact-form small {
    color: #f7b267;
}

.contact-form textarea {
    resize: vertical;
    min-height: 9rem;
}

.contact-form .button {
    width: fit-content;
}

.notice {
    padding: 0.9rem 1rem;
    margin-bottom: 0.95rem;
}

.notice.success {
    border-color: rgba(110, 243, 214, 0.25);
    background: rgba(110, 243, 214, 0.07);
}

.notice.error {
    border-color: rgba(247, 178, 103, 0.25);
    background: rgba(247, 178, 103, 0.08);
}

.legal-hero .hero-copy {
    max-width: 54rem;
}

.legal-date {
    color: var(--accent-3);
    font-size: 0.94rem;
    font-weight: 700;
}

.legal-content {
    display: grid;
    gap: 1rem;
}

.legal-block {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
}

.legal-block h2 {
    margin-bottom: 0.75rem;
}

.legal-block ul {
    display: grid;
    gap: 0.5rem;
    padding-left: 1.15rem;
    list-style: disc;
    color: var(--soft);
}

.site-footer {
    margin: 2rem 0 1.5rem;
    padding: 1.3rem;
    background: rgba(6, 15, 28, 0.82);
}

.footer-grid {
    grid-template-columns: 1.1fr repeat(2, minmax(0, 0.45fr));
    margin-bottom: 1.1rem;
}

.footer-grid h2 {
    font-size: 1rem;
    margin-bottom: 0.55rem;
}

.footer-grid ul {
    display: grid;
    gap: 0.45rem;
}

.footer-grid a {
    color: var(--soft);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--text);
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 0.55rem;
}

.footer-note {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
    color: var(--muted);
    padding-top: 0.9rem;
    border-top: 1px solid rgba(140, 170, 210, 0.12);
    font-size: 0.94rem;
}

.text-link {
    color: var(--accent);
    font-weight: 700;
}

html[data-menu-open="on"] body {
    overflow: hidden;
}

html[data-theme="light"] {
    color-scheme: light;
    --bg: #f2f5fa;
    --bg-2: #e8eff7;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --border: rgba(14, 26, 41, 0.12);
    --border-strong: rgba(14, 26, 41, 0.18);
    --text: #0b1724;
    --muted: #4b5d72;
    --soft: #304153;
    --accent: #005bbb;
    --accent-2: #0d9488;
    --accent-3: #a16207;
    --shadow: 0 24px 70px rgba(11, 24, 39, 0.12);
    --shadow-soft: 0 14px 42px rgba(11, 24, 39, 0.08);
}

html[data-theme="light"] body {
    background:
        radial-gradient(circle at top left, rgba(0, 91, 187, 0.12), transparent 28%),
        radial-gradient(circle at 80% 8%, rgba(13, 148, 136, 0.1), transparent 32%),
        radial-gradient(circle at 70% 85%, rgba(161, 98, 7, 0.08), transparent 25%),
        linear-gradient(180deg, #f6f8fc 0%, #eef3f8 35%, #e8edf5 100%);
}

html[data-theme="light"] body::before {
    background-image:
        linear-gradient(rgba(11, 23, 36, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 23, 36, 0.04) 1px, transparent 1px);
    opacity: 0.38;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 82%);
}

html[data-theme="light"] .site-header::before {
    background: linear-gradient(180deg, rgba(242, 245, 250, 0.96), rgba(242, 245, 250, 0.12));
}

html[data-theme="light"] .hero {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.92)),
        radial-gradient(circle at top right, rgba(13, 148, 136, 0.1), transparent 28%);
}

html[data-theme="light"] .hero::before {
    background: radial-gradient(circle, rgba(0, 91, 187, 0.08), transparent 66%);
}

html[data-theme="light"] .hero::after {
    background: radial-gradient(circle, rgba(13, 148, 136, 0.08), transparent 66%);
}

html[data-theme="light"] .visual-main {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 254, 0.94)),
        radial-gradient(circle at top right, rgba(161, 98, 7, 0.08), transparent 25%);
}

html[data-theme="light"] .cta-band {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.94)),
        radial-gradient(circle at right center, rgba(13, 148, 136, 0.08), transparent 32%);
}

html[data-theme="light"] .site-footer {
    background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .nav-dropdown-panel,
html[data-theme="light"] .locale-switcher > summary,
html[data-theme="light"] .locale-switcher-panel,
html[data-theme="light"] .header-action,
html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .button-secondary,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .legal-block {
    background: var(--surface);
}

html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form select,
html[data-theme="light"] .contact-form textarea {
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
}

html[data-theme="light"] .contact-form input:focus,
html[data-theme="light"] .contact-form select:focus,
html[data-theme="light"] .contact-form textarea:focus {
    border-color: rgba(0, 91, 187, 0.42);
    box-shadow: 0 0 0 4px rgba(0, 91, 187, 0.12);
}

html[data-theme="light"] .service-tile:hover {
    background: var(--surface-strong);
    border-color: var(--border-strong);
}

html[data-theme="light"] .button-secondary {
    border-color: var(--border);
}

html[data-theme="light"] .chip-row li,
html[data-theme="light"] .tag-cloud span {
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--border);
    color: var(--soft);
}

html[data-accessibility="on"] {
    font-size: 112.5%;
}

html[data-accessibility="on"] body {
    line-height: 1.75;
}

html[data-accessibility="on"] h1,
html[data-accessibility="on"] h2,
html[data-accessibility="on"] h3,
html[data-accessibility="on"] h4 {
    letter-spacing: -0.015em;
}

html[data-accessibility="on"] a {
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

html[data-accessibility="on"] body::before {
    opacity: 0.08;
}

html[data-accessibility="on"] .hero::before,
html[data-accessibility="on"] .hero::after {
    opacity: 0.24;
}

html[data-accessibility="on"] *,
html[data-accessibility="on"] *::before,
html[data-accessibility="on"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

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

.locale-switcher,
.menu-shell,
.nav-dropdown-panel,
.site-nav {
    min-width: 0;
}

@media (min-width: 960px) {
    .menu-toggle {
        display: none;
    }

    .menu-shell-content {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.65rem;
        justify-content: flex-end;
    }

    .site-nav {
        flex-wrap: nowrap;
    }

    .header-tools {
        flex-wrap: nowrap;
    }
}

@media (max-width: 959px) {
    .site-header {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding-top: 1rem;
    }

    .site-header::before {
        inset: 0;
    }

    .brand-block {
        flex: 1 1 auto;
    }

    .menu-shell {
        flex: 0 0 auto;
        width: auto;
        justify-items: end;
        align-self: center;
    }

    .menu-shell-content {
        position: fixed;
        top: clamp(5.2rem, 17vw, 5.9rem);
        right: 0;
        width: min(88vw, 24rem);
        max-height: calc(100svh - clamp(5.2rem, 17vw, 5.9rem) - 1rem);
        padding: 0.85rem 0.85rem 0.95rem;
        border: 1px solid var(--border);
        border-right: 0;
        border-radius: 1.4rem 0 0 1.4rem;
        background:
            linear-gradient(160deg, rgba(11, 21, 36, 0.98), rgba(6, 14, 26, 0.96)),
            radial-gradient(circle at top right, rgba(118, 184, 255, 0.14), transparent 30%);
        box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
        backdrop-filter: blur(24px) saturate(110%);
        transform: translate3d(110%, 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, visibility 0s linear 0.32s;
        overflow: auto;
        z-index: 36;
        justify-items: stretch;
    }

    .menu-shell[open] .menu-shell-content {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background:
            radial-gradient(circle at 82% 12%, rgba(118, 184, 255, 0.18), transparent 22%),
            radial-gradient(circle at 68% 76%, rgba(110, 243, 214, 0.12), transparent 20%),
            rgba(0, 4, 10, 0.82);
        backdrop-filter: blur(16px) saturate(80%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        z-index: 30;
    }

    .menu-shell[open] ~ .menu-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle {
        min-width: 4rem;
        margin-inline-end: calc(var(--page-gutter) * -1);
        border-radius: 999px 0 0 999px;
        padding-inline: 0.9rem 1rem;
        justify-content: center;
        position: relative;
        z-index: 37;
    }

    .menu-shell-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: flex-end;
        width: 2.7rem;
        height: 2.7rem;
        padding: 0;
        border: 1px solid var(--border);
        border-radius: 0.95rem;
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
        box-shadow: var(--shadow-soft);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .menu-shell-close:hover,
    .menu-shell-close:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--border-strong);
    }

    .menu-toggle-icon {
        width: 1.05rem;
        height: 0.78rem;
    }

    .site-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0.7rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.035);
        box-shadow: var(--shadow-soft);
        gap: 0.35rem;
    }

    .site-nav > a,
    .nav-dropdown > summary {
        display: flex;
        width: 100%;
        align-self: stretch;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
        min-height: 3.05rem;
        padding: 0.72rem 1rem;
    }

    .nav-dropdown {
        width: 100%;
        align-self: stretch;
    }

    .nav-dropdown > summary {
        position: relative;
        padding-right: 2.4rem;
        padding-left: 1rem;
    }

    .nav-dropdown > summary::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .nav-dropdown[open] > summary::after {
        transform: translateY(-50%) rotate(225deg);
    }

    .nav-dropdown-panel {
        position: static;
        width: 100%;
        min-width: 100%;
        box-sizing: border-box;
        margin-top: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: none;
        transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.2s ease;
    }

    .nav-dropdown[open] .nav-dropdown-panel {
        max-height: 30rem;
        margin-top: 0.35rem;
        opacity: 1;
    }

    .nav-dropdown-panel a {
        display: flex;
        align-items: center;
        align-self: stretch;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: 0.9rem;
        padding: 0.82rem 0.95rem;
        background: rgba(255, 255, 255, 0.025);
    }

    .header-tools {
        width: 100%;
        justify-content: flex-start;
        align-items: stretch;
        flex-direction: column;
    }

    .locale-switcher-panel {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 0.5rem;
    }

    .header-action {
        width: 100%;
        justify-content: flex-start;
    }

    .locale-switcher {
        width: 100%;
        min-width: 0;
    }

    .locale-switcher > summary {
        width: 100%;
    }

    html[data-theme="light"] .site-nav,
    html[data-accessibility="on"] .site-nav {
        background: var(--surface);
    }

    .hero,
    .split-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-service-card--wide {
        grid-column: auto;
    }

    .visual-grid,
    .card-grid,
    .competencies-grid,
    .webit-cases__grid,
    .case-grid,
    .steps-grid,
    .service-tiles {
        grid-template-columns: 1fr;
    }

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

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

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 639px) {
    :root {
        --container: 100vw;
    }

    .site-main {
        padding-top: 1rem;
    }

    .page-shell {
        width: var(--container);
    }

    h1 {
        font-size: clamp(2.05rem, 8.4vw, 3rem);
    }

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

    .hero-actions .button {
        min-height: 2.6rem;
        padding: 0.68rem 0.8rem;
        font-size: 0.95rem;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .hero-trust li {
        min-height: 0;
        padding: 0.55rem 0.7rem;
        font-size: 0.8rem;
    }

    .hero-trust li:last-child {
        grid-column: 1 / -1;
    }

    .hero-panel-head h2 {
        max-width: none;
        font-size: clamp(1.15rem, 5.8vw, 1.6rem);
    }

    .hero-panel-grid {
        gap: 0.55rem;
    }

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

    .webit-cases__grid {
        grid-template-columns: 1fr;
    }

    .section-heading--feature h2 {
        max-width: none;
    }

    .section-heading--feature > p:not(.eyebrow) {
        max-width: none;
    }

    .competencies-grid .glass-card {
        min-height: 0;
    }

    .competency-card-icon {
        width: 2.8rem;
        height: 2.8rem;
    }

    .competency-card-icon svg {
        width: 1.3rem;
        height: 1.3rem;
    }

    .webit-cases__works {
        grid-template-columns: 1fr;
    }

    .webit-cases__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .webit-cases__details {
        width: 100%;
        margin-left: 0;
    }

    .webit-cases__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .webit-process__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-left: 1.25rem;
    }

    .webit-process__grid::before {
        left: 0.45rem;
        right: auto;
        top: 0.85rem;
        bottom: 0.15rem;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, rgba(110, 243, 214, 0.02), rgba(118, 184, 255, 0.42), rgba(110, 243, 214, 0.02));
    }

    .webit-process__item {
        position: relative;
    }

    .webit-process__item::before {
        content: "";
        position: absolute;
        left: -1.05rem;
        top: 1.35rem;
        width: 0.7rem;
        height: 0.7rem;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(110, 243, 214, 0.86), rgba(118, 184, 255, 0.92));
        box-shadow: 0 0 0 5px rgba(110, 243, 214, 0.12);
    }

    .webit-process__card {
        min-height: 0;
        padding: 1rem;
    }

    .webit-process__meta {
        min-height: 2.55rem;
    }

    .webit-process__card h3 {
        max-width: none;
    }

    .webit-process__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .webit-process__cta .button {
        width: 100%;
    }

    .hero-service-card {
        min-height: 6rem;
        padding: 0.75rem 0.8rem;
    }

    .hero-service-card strong {
        font-size: 0.95rem;
    }

    .hero-service-card p {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .hero,
    .hero-panel,
    .site-footer,
    .contact-panel,
    .contact-aside,
    .legal-block,
    .glass-card,
    .service-tile {
        border-radius: 20px;
    }

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

    .footer-note {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .webit-cases__card[data-reveal] {
        opacity: 1;
        transform: none;
    }

    .webit-process__card[data-reveal] {
        opacity: 1;
        transform: none;
    }
}
