:root {
  --bg: #0f1117;
  --ink: #f8fafc;
  --muted: #c4ceda;
  --panel: #171c25;
  --line: rgba(255, 255, 255, 0.13);
  --navy: #11151d;
  --navy-2: #1b222e;
  --cyan: #00b8d9;
  --green: #18a058;
  --amber: #f6a609;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #121721 0%, #171c25 48%, #0f1117 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--navy);
  color: #ffffff;
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(193, 205, 219, 0.95);
  background: rgba(232, 238, 245, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.nav-cluster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #e9f8fb;
  color: #075766;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 2px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  padding: 3px;
}

.language-switch a {
  min-width: 38px;
  padding: 7px 9px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.language-switch a.active,
.language-switch a[aria-current="page"] {
  background: var(--navy);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding: 52px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #087487;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 3.85rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

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

.button.primary {
  background: var(--cyan);
  color: #06151a;
  box-shadow: 0 14px 28px rgba(0, 184, 217, 0.2);
}

.button.primary:hover {
  background: #10cce8;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--navy);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px 18px;
  border: 1px solid rgba(0, 184, 217, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 184, 217, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 217, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: gridDrift 18s linear infinite;
}

.window-frame {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  animation: dashboardFloat 7s ease-in-out infinite;
}

.window-bar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #1f2937;
}

.window-control {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
}

.window-control::before,
.window-control::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.window-control.minimize::before {
  transform: translate(-50%, -50%);
}

.window-control.minimize::after {
  display: none;
}

.window-control.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.window-control.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
}

.metric-card,
.code-lines,
.status-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.metric-card {
  position: relative;
  min-height: 122px;
  overflow: hidden;
  padding: 18px;
  transition: border-color 220ms ease, background 220ms ease;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: cardSweep 5.6s ease-in-out infinite;
}

.metric-card.accent::after {
  animation-delay: 900ms;
}

.metric-card small {
  display: block;
  margin-bottom: 16px;
  color: #a7b4c2;
  font-weight: 700;
}

.metric-card strong {
  display: block;
  font-size: 1.4rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.metric-card.is-changing strong,
.status-panel.is-changing [data-status-text] {
  opacity: 0;
  transform: translateY(6px);
}

.metric-card.accent {
  background: rgba(0, 184, 217, 0.15);
}

.code-lines {
  grid-column: 1 / -1;
  padding: 22px;
}

.code-lines span {
  display: block;
  height: 12px;
  margin-bottom: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, #00b8d9, #18a058);
  transform-origin: left center;
  animation: codeProgress 4.8s ease-in-out infinite;
}

.code-lines span:nth-child(1) {
  width: 92%;
  animation-delay: 0ms;
}

.code-lines span:nth-child(2) {
  width: 72%;
  animation-delay: 260ms;
}

.code-lines span:nth-child(3) {
  width: 88%;
  animation-delay: 520ms;
}

.code-lines span:nth-child(4) {
  width: 56%;
  margin-bottom: 0;
  animation-delay: 780ms;
}

.status-panel {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: #dce8f4;
  font-weight: 700;
}

.status-panel [data-status-text] {
  transition: opacity 180ms ease, transform 180ms ease;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(24, 160, 88, 0.18);
  animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 34px 34px, 34px 34px;
  }
}

@keyframes cardSweep {
  0%,
  42% {
    transform: translateX(-110%);
  }

  58% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes codeProgress {
  0% {
    transform: scaleX(0.28);
    opacity: 0.65;
  }

  45%,
  68% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.46);
    opacity: 0.72;
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(24, 160, 88, 0.18);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(24, 160, 88, 0.08);
  }
}

.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.trust-strip div {
  padding: 24px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

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

.content-section,
.process-section {
  padding: 104px 0 0;
}

.section-heading {
  max-width: none;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: none;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 2.04rem;
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-card {
  position: relative;
  min-height: 316px;
  overflow: hidden;
  border: 1px solid rgba(200, 211, 223, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 250, 252, 0.96)),
    var(--panel);
  padding: 26px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 118px;
  height: 92px;
  border: 1px solid rgba(0, 184, 217, 0.16);
  background:
    linear-gradient(rgba(0, 184, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 217, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 184, 217, 0.44);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 46px;
  color: #075766;
}

.service-icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(0, 184, 217, 0.1);
  color: #075766;
  font-size: 0.86rem;
  font-weight: 800;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
}

.service-card:hover .service-icon svg {
  opacity: 1;
  transform: translateY(-3px);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.service-card p,
.timeline p,
.case-card p,
.case-card li,
.solution-list p,
.contact-box p {
  color: var(--muted);
}

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

.case-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.96);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.case-media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: -12px -12px 24px;
  border: 1px solid rgba(217, 226, 236, 0.85);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 184, 217, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 217, 0.08) 1px, transparent 1px),
    var(--navy);
  background-size: 28px 28px;
}

.case-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-logo {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--navy);
  padding: 0;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.case-card.dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--navy);
  color: #ffffff;
}

.case-top {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.case-top a {
  color: #075766;
  font-size: 0.92rem;
  font-weight: 800;
}

.case-card.dark .case-top a {
  color: #60d9eb;
}

.case-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 6px;
  background: #e9f8fb;
  color: #075766;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.case-card.dark .case-badge {
  background: rgba(96, 217, 235, 0.14);
  color: #baf2fb;
}

.case-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.15;
}

.case-card.dark h3 {
  color: #ffffff;
}

.case-card p {
  margin-bottom: 22px;
}

.case-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.case-card li {
  position: relative;
  padding-left: 20px;
}

.case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
}

.case-card.dark p,
.case-card.dark li {
  color: #dce8f4;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.timeline li {
  position: relative;
  min-height: 248px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(200, 211, 223, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 250, 252, 0.96)),
    var(--panel);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.timeline li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 217, 0.44);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.timeline span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--panel);
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  font-weight: 800;
}

.timeline h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.timeline p {
  max-width: 28ch;
  margin-bottom: 0;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  padding: 42px;
}

.split-panel h2 {
  color: #ffffff;
}

.split-panel .eyebrow {
  color: #60d9eb;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.solution-list.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.solution-list p {
  position: relative;
  min-height: 106px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #dce8f4;
  padding: 38px 18px 18px;
  overflow: hidden;
}

.solution-list p::before {
  content: "0" counter(solution);
  counter-increment: solution;
  position: absolute;
  left: 18px;
  top: 14px;
  color: #60d9eb;
  font-size: 0.74rem;
  font-weight: 800;
}

.solution-list p::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 78px;
  height: 58px;
  border: 1px solid rgba(96, 217, 235, 0.16);
  background:
    linear-gradient(rgba(96, 217, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 217, 235, 0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.solution-list {
  counter-reset: solution;
}

.solution-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.solution-controls button {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.solution-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 217, 235, 0.46);
  background: rgba(96, 217, 235, 0.14);
}

.solution-controls button span {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.solution-controls [data-solution-prev] span {
  transform: rotate(-135deg);
}

.solution-controls [data-solution-next] span {
  transform: rotate(45deg);
}

.solution-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.solution-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.solution-dots span.active {
  width: 20px;
  background: var(--cyan);
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.contact-box {
  max-width: 860px;
}

.contact-box h2 {
  margin-bottom: 18px;
}

.contact-box p {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(280px, 1.4fr) minmax(180px, 0.7fr);
  align-items: start;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 34px 0 38px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-brand,
.footer-contact,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-brand strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.site-footer .linkedin-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #075766;
  color: #ffffff;
}

.site-footer .linkedin-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.site-footer .linkedin-link:hover {
  background: #00a3c4;
  color: #ffffff;
}

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

.site-footer a,
.site-footer button,
.legal-document a {
  color: #075766;
  font-weight: 800;
}

.site-footer button {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.site-footer a:hover,
.site-footer button:hover,
.legal-document a:hover {
  color: #00a3c4;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 86px;
}

.legal-document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.96);
  padding: 42px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.legal-document h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: 2.6rem;
}

.legal-document h2 {
  max-width: none;
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.legal-document p {
  color: var(--muted);
}

.legal-updated {
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(760px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.96);
  color: #ffffff;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  color: #dce8f4;
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 42px;
  border: 0;
  cursor: pointer;
}

.cookie-actions .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(15, 17, 23, 0.9);
}

.brand,
h1,
h2,
.trust-strip strong,
.service-card h3,
.case-card h3,
.timeline h3,
.footer-brand strong,
.legal-document h1,
.legal-document h2 {
  color: #ffffff;
}

.nav-links a,
.language-switch a,
.hero-text,
.trust-strip span,
.service-card p,
.timeline p,
.case-card p,
.case-card li,
.contact-box p,
.legal-document p,
.site-footer {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(0, 184, 217, 0.13);
  color: #ffffff;
}

.language-switch,
.nav-toggle,
.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.language-switch a.active,
.language-switch a[aria-current="page"] {
  background: #ffffff;
  color: #0f1117;
}

.nav-toggle span {
  background: #ffffff;
}

.button.secondary {
  color: #ffffff;
}

.trust-strip,
.service-card,
.case-card,
.timeline li,
.legal-document {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.service-card:hover,
.timeline li:hover {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.service-icon,
.service-icon span {
  color: #7ce7f5;
}

.service-icon span {
  background: rgba(0, 184, 217, 0.14);
}

.case-card.dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--navy);
}

.case-top a,
.site-footer a,
.site-footer button,
.legal-document a {
  color: #60d9eb;
}

.case-badge {
  background: rgba(96, 217, 235, 0.14);
  color: #baf2fb;
}

.timeline span {
  border-color: var(--panel);
}

.split-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 184, 217, 0.08), transparent 44%),
    #10141c;
}

.solution-list p {
  background: rgba(255, 255, 255, 0.055);
  color: #eef6ff;
}

.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  border-top-color: var(--line);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .service-grid,
  .case-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline li:nth-child(2) {
    border-right: 0;
  }

  .timeline::before {
    display: none;
  }

  .split-panel {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.64rem;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 68px;
    width: min(1180px, calc(100% - 24px));
    max-width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .nav-cluster {
    position: static;
    width: auto;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    z-index: 12;
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    flex: 0 0 42px;
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--panel);
    padding: 12px 16px 18px;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 10px;
  }

  .language-switch {
    margin: 0;
    flex: 0 0 86px;
    height: 42px;
  }

  .language-switch a {
    min-width: 32px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .hero {
    padding: 34px 0 52px;
    gap: 28px;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.05rem;
    line-height: 1.08;
  }

  h2 {
    max-width: none;
    font-size: 1.28rem;
    line-height: 1.12;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 340px;
  }

  .terminal-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .metric-card,
  .code-lines,
  .status-panel {
    grid-column: 1;
  }

  .trust-strip,
  .service-grid,
  .case-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .case-media {
    aspect-ratio: 4 / 3;
    margin: -8px -4px 22px;
  }

  .case-shot {
    object-fit: contain;
  }

  .case-logo {
    left: 12px;
    bottom: 12px;
    width: 84px;
    height: 84px;
  }

  .case-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .trust-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .content-section,
  .process-section {
    padding-top: 74px;
  }

  .timeline li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 211, 223, 0.9);
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .timeline li:last-child {
    border-bottom: 1px solid rgba(200, 211, 223, 0.9);
  }

  .timeline span {
    width: 42px;
    height: 42px;
    border-width: 5px;
  }

  .timeline p {
    max-width: none;
  }

  .split-panel {
    padding: 28px 20px;
  }

  .solution-list {
    grid-template-columns: 1fr;
  }

  .solution-list p {
    min-height: 96px;
  }

  .solution-controls {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .legal-page {
    padding: 42px 0 64px;
  }

  .legal-document {
    padding: 28px 20px;
  }

  .legal-document h1 {
    max-width: none;
    font-size: 2rem;
  }

  .legal-document h2 {
    max-width: none;
    font-size: 1.2rem;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    bottom: 12px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .section-band,
  .contact-section,
  .site-footer,
  .legal-page,
  .trust-strip {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 8px;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
