/* Volledige CSS uit index2.html, 1-op-1 overgenomen */
:root {
  --bg: #07111f;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #edf4ff;
  --muted: #aebdd1;
  --muted-2: #7f90a8;
  --accent: #5f9cff;
  --accent-2: #8dbbff;
  --shadow: rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --max: 1120px;
}

[data-theme="light"] {
  --bg: #f0f4fa;
  --card: rgba(255, 255, 255, 0.72);
  --card-border: rgba(0, 0, 0, 0.10);
  --text: #0d1a2d;
  --muted: #3d5470;
  --muted-2: #647a96;
  --accent: #2670e8;
  --accent-2: #1a5dc2;
  --shadow: rgba(0, 0, 0, 0.10);
}

[data-theme="light"] body {
  background:
    radial-gradient(circle at top left, rgba(38,112,232,0.12), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(80,160,255,0.07), transparent 30rem),
    linear-gradient(180deg, #f0f4fa 0%, #e8eef8 52%, #dce5f3 100%);
}

[data-theme="light"] body::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(38,112,232,0.07), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(26,93,194,0.05), transparent 26rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(95,156,255,0.22), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(80,220,255,0.09), transparent 30rem),
    linear-gradient(180deg, #07111f 0%, #081323 52%, #050b14 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(95,156,255,0.12), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(141,187,255,0.08), transparent 26rem);
  animation: ambientMove 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes ambientMove {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.04); }
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7,17,31,0.76);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  width: min(1400px, calc(100% - 48px));
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 12px 24px rgba(95,156,255,0.22));
  flex: 0 0 auto;
}

.brand-text {
  font-size: 1.22rem;
  white-space: nowrap;
}

.brand-text span {
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.45vw, 22px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links > a,
.nav-tools > a {
  white-space: nowrap;
}

.nav-links > .button-disabled {
  padding-inline: 17px;
  font-size: 0.9rem;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle,
.mobile-nav-panel,
.mobile-nav-backdrop,
.mobile-section-nav {
  display: none;
}

.mobile-menu-open {
  overflow: hidden;
}

.lang-switch {
  position: relative;
  isolation: isolate;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(150, 183, 236, 0.34);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.20), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    var(--card);
  color: var(--text);
  height: 40px;
  border-radius: 999px;
  padding: 0 40px 0 14px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: "Sora", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow:
    0 10px 22px rgba(3, 10, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.lang-switch::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid rgba(195, 214, 247, 0.9);
  border-bottom: 1.8px solid rgba(195, 214, 247, 0.9);
  transform: translateY(-56%) rotate(45deg);
  transition: transform 0.18s ease, border-color 0.2s ease;
  pointer-events: none;
  z-index: 1;
}

.lang-select:hover {
  border-color: rgba(141, 187, 255, 0.62);
  transform: translateY(-1px);
  box-shadow:
    0 14px 26px rgba(3, 10, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.lang-switch:hover::after {
  border-right-color: rgba(170, 210, 255, 1);
  border-bottom-color: rgba(170, 210, 255, 1);
}

.lang-select:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  box-shadow:
    0 0 0 4px rgba(73, 148, 255, 0.18),
    0 14px 30px rgba(4, 10, 24, 0.33),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.lang-switch:focus-within::after {
  transform: translateY(-34%) rotate(225deg);
}

.lang-select option {
  font-weight: 600;
}

.js .lang-switch > .lang-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.js .lang-switch::after {
  display: none;
}

.lang-picker {
  position: relative;
}

.lang-picker-button,
.lang-picker-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(150, 183, 236, 0.34);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.20), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    var(--card);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  line-height: 1.4;
  box-sizing: border-box;
  overflow: visible;
}

.lang-picker-label {
  display: block;
  padding-block: 2px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: visible;
}

.lang-picker-button .lang-picker-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-picker-button {
  min-width: 170px;
  justify-content: space-between;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow:
    0 10px 22px rgba(3, 10, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.lang-picker-button:hover {
  border-color: rgba(141, 187, 255, 0.62);
  transform: translateY(-1px);
  box-shadow:
    0 14px 26px rgba(3, 10, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.lang-picker-button:focus-visible,
.lang-picker-option:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.lang-picker-caret {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid rgba(195, 214, 247, 0.9);
  border-bottom: 1.8px solid rgba(195, 214, 247, 0.9);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.lang-picker.is-open .lang-picker-caret {
  transform: rotate(225deg);
}

.lang-picker-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  --menu-shift-x: 0px;
  min-width: 100%;
  display: grid;
  gap: 8px;
  padding: 10px;
  max-height: min(680px, calc(100vh - 96px));
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 18px;
  border: 1px solid rgba(150, 183, 236, 0.34);
  background: rgba(14, 25, 45, 0.95);
  box-shadow: 0 16px 36px rgba(3, 10, 24, 0.45);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--menu-shift-x), -6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.lang-picker-menu.is-align-left {
  left: 0;
  right: auto;
}

.lang-picker-menu.is-align-right {
  right: 0;
  left: auto;
}

.lang-picker.is-open .lang-picker-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--menu-shift-x), 0);
}

.lang-picker-option {
  width: 100%;
  justify-content: flex-start;
  cursor: pointer;
}

.lang-picker-option.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #74d7ff, #4f9bff 36%, #1664ea 78%);
  color: #fff;
}

.lang-picker-flag {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  flex: 0 0 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #4b6fa9, #2a4574);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}

.lang-picker-flag[data-locale="nl"] {
  background: linear-gradient(180deg, #c7353b 0 33.33%, #ffffff 33.33% 66.66%, #21468b 66.66% 100%);
}

.lang-picker-flag[data-locale="en"] {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Crect width='20' height='20' fill='%23012169'/%3E%3Cpath d='M0 0L20 20M20 0L0 20' stroke='%23ffffff' stroke-width='6'/%3E%3Cpath d='M0 0L20 20M20 0L0 20' stroke='%23C8102E' stroke-width='3'/%3E%3Crect x='7' width='6' height='20' fill='%23ffffff'/%3E%3Crect y='7' width='20' height='6' fill='%23ffffff'/%3E%3Crect x='8.5' width='3' height='20' fill='%23C8102E'/%3E%3Crect y='8.5' width='20' height='3' fill='%23C8102E'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.lang-picker-flag[data-locale="de"] {
  background: linear-gradient(180deg, #111111 0 33.33%, #cf2f3e 33.33% 66.66%, #f2c335 66.66% 100%);
}

.lang-picker-flag[data-locale="fr"] {
  background: linear-gradient(90deg, #244aa5 0 33.33%, #ffffff 33.33% 66.66%, #cf2f3e 66.66% 100%);
}

.lang-picker-flag[data-locale="es"] {
  background: linear-gradient(180deg, #c7353b 0 28%, #f2c335 28% 72%, #c7353b 72% 100%);
}

.lang-picker-flag[data-locale="pl"] {
  background: linear-gradient(180deg, #ffffff 0 50%, #d42e36 50% 100%);
}

.lang-picker-flag[data-locale="it"] {
  background: linear-gradient(90deg, #1b7c4b 0 33.33%, #ffffff 33.33% 66.66%, #cf2f3e 66.66% 100%);
}

.lang-picker-flag[data-locale="tr"] {
  background:
    radial-gradient(circle at 37% 50%, #ffffff 0 20%, transparent 20% 100%),
    radial-gradient(circle at 42% 50%, #d42e36 0 20%, transparent 20% 100%),
    #d42e36;
}

.lang-picker-flag[data-locale="pt-br"] {
  background-color: #009b3a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Crect width='20' height='20' fill='%23009b3a'/%3E%3Cpolygon points='10,2 18,10 10,18 2,10' fill='%23ffdf00'/%3E%3Ccircle cx='10' cy='10' r='4.2' fill='%23002776'/%3E%3Cpath d='M6.4 10.5c1.5-1.2 5.3-1.2 7.2 0' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.lang-picker-flag[data-locale="uk"] {
  background: linear-gradient(180deg, #1b4db6 0 50%, #f2c335 50% 100%);
}

[data-theme="light"] .lang-picker-button,
[data-theme="light"] .lang-picker-option {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.75), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  border-color: rgba(123, 152, 202, 0.28);
  box-shadow:
    0 8px 18px rgba(20, 52, 105, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .lang-picker-option.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #74d7ff, #4f9bff 36%, #1664ea 78%);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(22, 100, 234, 0.28);
}

[data-theme="light"] .lang-picker-caret {
  border-right-color: rgba(84, 109, 152, 0.82);
  border-bottom-color: rgba(84, 109, 152, 0.82);
}

[data-theme="light"] .lang-picker-menu {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(123, 152, 202, 0.28);
  box-shadow: 0 14px 30px rgba(20, 52, 105, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.is-current {
  color: var(--text);
}

.nav-links a.is-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Light/dark mode toggle slider */
.theme-toggle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid var(--card-border);
  border-radius: 999px;
  width: 52px;
  height: 28px;
  position: relative;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.theme-toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #d7e3f8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a1830' d='M16.9 14.9A8 8 0 0 1 9.1 4.3a.75.75 0 0 0-1.05-.84A9.5 9.5 0 1 0 20.54 15.95a.75.75 0 0 0-.84-1.05 7.96 7.96 0 0 1-2.8.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, background-image 0.3s ease;
}

[data-theme="light"] .theme-toggle {
  background: linear-gradient(180deg, #2f7bf0, #1f64cf);
  border-color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

[data-theme="light"] .theme-toggle::after {
  transform: translateX(24px);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%231f64cf' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='3.5' fill='%231f64cf' stroke='none'/%3E%3Cpath d='M12 2.75v2.25M12 19v2.25M2.75 12H5M19 12h2.25M5.4 5.4l1.6 1.6M17 17l1.6 1.6M18.6 5.4L17 7M7 17l-1.6 1.6'/%3E%3C/g%3E%3C/svg%3E");
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  transition: 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 34px rgba(95,156,255,0.24);
}

.button-primary:hover {
  background: #78adff;
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255,255,255,0.055);
  color: var(--text);
  border-color: rgba(255,255,255,0.14);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-1px);
}

.button-disabled {
  opacity: 0.74;
  cursor: default;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(95,156,255,0.72),
    rgba(141,187,255,0.72)
  );
}

.hero {
  padding: 94px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: center;
  gap: 42px;
}

body[data-page="services"] .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 74px);
}

body[data-page="services"] h1 {
  font-size: clamp(2.35rem, 4.1vw, 4rem);
  max-width: 720px;
  overflow-wrap: normal;
  hyphens: none;
}

body[data-page="services"] .visual-card {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.about-hero {
  padding: 92px 0 64px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

body[data-page="about-me"] h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.6vw, 5.35rem);
}

.about-signature {
  display: grid;
  gap: 3px;
  width: fit-content;
  margin-top: 30px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.about-signature strong {
  color: var(--text);
  font-size: 1.05rem;
}

.about-signature span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-portrait-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 35%, rgba(95,156,255,0.26), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    #0a1729;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.about-portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(141,187,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141,187,255,0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
  z-index: 1;
}

.about-portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.9) contrast(1.02) brightness(0.82);
  transform: scale(1.015);
}

.about-portrait-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 22px;
  background: rgba(5,12,22,0.68);
  backdrop-filter: blur(12px);
}

.about-portrait-caption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.about-portrait-caption strong {
  color: var(--text);
  font-size: 1.04rem;
}

.about-story-section {
  padding-top: 46px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(38px, 7vw, 88px);
  align-items: start;
}

.about-story-intro {
  position: sticky;
  top: 120px;
}

.about-story-intro h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.08;
}

.about-story {
  display: grid;
  gap: 18px;
}

.about-story-block {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--card-border);
  border-radius: 26px;
  background: var(--card);
  box-shadow: 0 18px 46px rgba(0,0,0,0.12);
}

.about-story-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(141,187,255,0.28);
  border-radius: 16px;
  color: var(--accent-2);
  background: rgba(95,156,255,0.1);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-story-block h3 {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 1.25rem;
}

.about-story-block p {
  color: var(--muted);
}

.about-story-block p + p {
  margin-top: 16px;
}

.about-closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  align-items: end;
  gap: 36px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(95,156,255,0.17), transparent 25rem),
    var(--card);
}

.about-closing-card h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.about-closing-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-closing-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

[data-theme="light"] .about-portrait-card {
  background:
    radial-gradient(circle at 50% 35%, rgba(38,112,232,0.18), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,0.9), rgba(228,237,251,0.8));
}

[data-theme="light"] .about-portrait-caption {
  background: rgba(255,255,255,0.76);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(95,156,255,0.9);
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  max-width: 880px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-note {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.visual-card,
.card,
.product-card,
.coming,
.cta {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.card:hover,
.product-card:hover,
.coming:hover,
.cta:hover {
  transform: translateY(-4px);
  border-color: rgba(141,187,255,0.26);
  box-shadow: 0 28px 80px rgba(0,0,0,0.26);
}

.visual-card {
  position: relative;
  min-height: 460px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    radial-gradient(circle at top, rgba(95,156,255,0.28), transparent 70%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 80px var(--shadow);
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: -60px -70px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(95,156,255,0.22);
  filter: blur(2px);
}

.company-visual {
  justify-content: space-between;
  gap: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    radial-gradient(circle at 54% 22%, rgba(84,190,255,0.24), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(78,128,255,0.18), transparent 42%);
}

.company-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(250px, 74vw);
  aspect-ratio: 1;
  margin-top: 2px;
  z-index: 1;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(141,187,255,0.22);
  box-shadow: inset 0 0 34px rgba(95,156,255,0.08);
}

.orbit-ring-one {
  inset: 18%;
}

.orbit-ring-two {
  inset: 4%;
}

.core-symbol {
  position: relative;
  width: 165px;
  height: 165px;
  filter: drop-shadow(0 30px 60px rgba(95,156,255,0.22));
  opacity: 0.95;
  z-index: 1;
  margin-bottom: 34px;
}

.company-visual .core-symbol {
  width: 132px;
  height: 132px;
  margin-bottom: 0;
}

.company-pill-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.company-pill-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(5,12,22,0.68);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.company-pill-grid article span {
  grid-row: span 2;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.company-pill-grid strong {
  color: var(--text);
}

.company-pill-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stat-slider {
  position: relative;
  width: 100%;
  height: 96px;
  overflow: hidden;
  z-index: 2;
}

.stat {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(5,12,22,0.72);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
  opacity: 0;
  transform: translateX(44px);
  animation: slideCard 15s infinite;
}

.stat:nth-child(2) {
  animation-delay: 5s;
}

.stat:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideCard {
  0% { opacity: 0; transform: translateX(44px); }
  8% { opacity: 1; transform: translateX(0); }
  31% { opacity: 1; transform: translateX(0); }
  39% { opacity: 0; transform: translateX(-44px); }
  100% { opacity: 0; transform: translateX(-44px); }
}

.stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

section {
  padding: 70px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.showcase {
  padding-top: 10px;
}

.product-showcase {
  margin-top: 54px;
}

.product-showcase .section-head {
  margin-bottom: 20px;
}

.product-showcase .showcase-grid {
  min-height: 640px;
}

.showcase-grid {
  position: relative;
  min-height: 760px;
  margin-top: 40px;
  isolation: isolate;
}

.showcase-main {
  position: relative;
  width: 78%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 40px 100px rgba(0,0,0,0.34);
  z-index: 2;
}

.showcase-main img,
.floating-shot img {
  width: 100%;
  display: block;
}

.floating-shot {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  cursor: zoom-in;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    z-index 0s;
}

.floating-shot.is-hovered {
  z-index: 40;
  transform: scale(1.06);
  animation-play-state: paused;
  box-shadow: 0 32px 80px rgba(0,0,0,0.52);
  border-color: rgba(141,187,255,0.52);
}

.shot-one {
  width: 34%;
  top: 60px;
  right: 0;
  z-index: 3;
  transform-origin: top right;
  animation: floatOne 6s ease-in-out infinite;
}

.shot-two {
  width: 30%;
  bottom: 120px;
  right: 6%;
  z-index: 4;
  transform-origin: bottom right;
  animation: floatTwo 7s ease-in-out infinite;
}

.shot-three {
  width: 28%;
  bottom: 0;
  left: 50%;
  z-index: 5;
  transform-origin: bottom left;
  animation: floatThree 8s ease-in-out infinite;
}

@keyframes floatOne {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes floatTwo {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes floatThree {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}




.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-image-rail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin: 28px 0 18px;
}

.home-image-rail img {
  width: 100%;
  height: clamp(190px, 24vw, 290px);
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(141,187,255,0.16);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  filter: saturate(0.9) contrast(1.02) brightness(0.78);
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fit-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.fit-card-media {
  position: relative;
  height: 145px;
  margin: -24px -24px 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(141,187,255,0.16);
  background: rgba(8, 19, 38, 0.55);
}

.fit-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,30,0.08), rgba(6,15,30,0.72)),
    radial-gradient(circle at 18% 18%, rgba(105,183,255,0.22), transparent 42%);
  pointer-events: none;
}

.fit-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.8);
}

.fit-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.fit-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.fit-roadmap {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.032));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card-media {
  position: relative;
  height: 154px;
  margin: -26px -26px 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(141,187,255,0.16);
  background: rgba(8, 19, 38, 0.55);
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,30,0.08), rgba(6,15,30,0.72)),
    radial-gradient(circle at 18% 18%, rgba(105,183,255,0.24), transparent 42%);
  pointer-events: none;
}

.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.82);
  transform: scale(1.02);
}

.service-card .card-icon,
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141,187,255,0.26);
  box-shadow: 0 28px 80px rgba(0,0,0,0.26);
}

.service-card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

.service-note {
  margin-top: 18px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(95,156,255,0.09);
  border: 1px solid rgba(95,156,255,0.18);
  color: var(--muted);
}

.service-note strong {
  color: var(--text);
  font-size: 1.02rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-card,
.faq-list article {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(95,156,255,0.14), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.028));
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}

.seo-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.seo-card-media {
  position: relative;
  height: 132px;
  margin: -24px -24px 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(141,187,255,0.16);
  background: rgba(8, 19, 38, 0.55);
}

.seo-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,15,30,0.08), rgba(6,15,30,0.74)),
    radial-gradient(circle at 18% 18%, rgba(105,183,255,0.22), transparent 42%);
  pointer-events: none;
}

.seo-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) brightness(0.8);
}

.seo-card h3,
.faq-list h3 {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.seo-card p,
.faq-list p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 22px 24px;
}

.custom-pc-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  padding: 30px;
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 18% 20%, rgba(94, 185, 255, 0.2), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(70, 231, 176, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.028));
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.custom-pc-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(141,187,255,0.1);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
}

.custom-pc-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
}

.custom-pc-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
}

.custom-pc-copy p {
  color: var(--muted);
  max-width: 760px;
}

.custom-pc-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.custom-pc-steps article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(141,187,255,0.16);
  border-radius: 18px;
  background: rgba(5, 13, 28, 0.42);
}

.custom-pc-steps strong {
  color: var(--text);
}

.custom-pc-steps span {
  color: var(--muted);
  font-size: 0.94rem;
}

.custom-pc-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.custom-pc-visual img {
  position: absolute;
  width: min(78%, 390px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(141,187,255,0.2);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}

.custom-pc-visual img:first-child {
  top: 0;
  right: 8%;
  transform: rotate(2deg);
}

.custom-pc-visual img:last-child {
  left: 2%;
  bottom: 0;
  transform: rotate(-4deg);
}

.service-teaser {
  align-items: center;
}

.service-teaser > div:first-child {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-teaser > div:first-child .cta-actions {
  margin-top: auto;
  padding-top: 28px;
  justify-content: flex-start;
}

.home-service-mosaic {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr 1fr auto;
  gap: 14px;
  align-content: stretch;
}

.home-service-mosaic img,
.home-service-mosaic .service-note {
  border-radius: 22px;
  border: 1px solid rgba(141,187,255,0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
}

.home-service-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.76);
}

.home-service-mosaic img:first-child {
  grid-row: 1 / 3;
}

.home-service-mosaic .service-note {
  grid-column: 1 / -1;
  margin-top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px 18px;
  min-height: auto;
  padding: 16px 18px;
}

.home-service-mosaic .service-note strong,
.home-service-mosaic .service-note span {
  min-width: 0;
}

.home-service-mosaic .service-note span {
  font-size: 0.95rem;
}

.services-visual {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 28px;
}

.services-visual .service-region-card {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 16px;
}

.services-visual .service-region-map {
  min-height: 280px;
}

.services-visual .service-region-copy {
  align-content: start;
}

.service-region-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 20px;
  align-items: stretch;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 22%, rgba(95,156,255,0.18), transparent 42%),
    rgba(95,156,255,0.08);
  border: 1px solid rgba(95,156,255,0.18);
  color: var(--muted);
  overflow: hidden;
}

.service-region-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 4px 2px;
  min-width: 0;
}

.service-region-copy span,
.service-region-plain {
  overflow-wrap: anywhere;
  word-break: normal;
}

.service-region-copy strong,
.service-region-plain strong {
  color: var(--text);
  font-size: 1.05rem;
}

.service-region-plain {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  grid-column: 1 / -1;
}

.service-region-map {
  position: relative;
  min-height: 180px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 58% 46%, rgba(105, 199, 255, 0.20), transparent 32%),
    linear-gradient(145deg, rgba(8, 18, 34, 0.82), rgba(12, 38, 60, 0.56));
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.leaflet-service-map {
  z-index: 1;
}

.leaflet-service-map .leaflet-control-attribution {
  background: rgba(3, 9, 18, 0.72);
  color: rgba(238, 246, 255, 0.82);
  border-top-left-radius: 10px;
  padding: 3px 7px;
}

.leaflet-service-map .leaflet-control-attribution a {
  color: var(--accent-2);
}

.leaflet-service-map .leaflet-tile {
  filter: saturate(0.82) contrast(0.92) brightness(0.86);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.map-shape {
  position: absolute;
  inset: 24px 34px 20px 42px;
  background:
    linear-gradient(145deg, rgba(100, 185, 255, 0.22), rgba(58, 222, 180, 0.13));
  clip-path: polygon(40% 0%, 64% 8%, 78% 24%, 73% 44%, 86% 62%, 66% 78%, 53% 100%, 30% 91%, 16% 72%, 22% 52%, 11% 31%, 26% 14%);
  border: 1px solid rgba(141,187,255,0.22);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.24));
}

.map-radius {
  position: absolute;
  width: var(--service-radius-size);
  aspect-ratio: 1;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(105, 199, 255, 0.60);
  background: radial-gradient(circle, rgba(105,199,255,0.20), rgba(105,199,255,0.08) 45%, transparent 72%);
  box-shadow: 0 0 36px rgba(105,199,255,0.20);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 8px rgba(105,199,255,0.12), 0 0 28px rgba(105,199,255,0.55);
}

.map-pin span {
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: white;
  opacity: 0.85;
}

.map-label {
  position: absolute;
  left: calc(50% + 14px);
  top: calc(53% + 10px);
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(3, 9, 18, 0.68);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-icon {
  min-width: 42px;
  height: 42px;
  width: fit-content;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: rgba(95,156,255,0.18);
  border: 1px solid rgba(95,156,255,0.22);
  margin-bottom: 18px;
  font-weight: 900;
  line-height: 1.5;
  box-sizing: border-box;
  overflow: visible;
  white-space: nowrap;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.product-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  border: 1px solid var(--card-border);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.22);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(95,156,255,0.13);
  color: var(--accent-2);
  border: 1px solid rgba(95,156,255,0.18);
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  color: var(--muted);
}

.feature-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent-2);
  font-weight: 900;
}

.product-preview {
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(95,156,255,0.28), transparent 60%),
    rgba(4,10,18,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 22px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  background: #55d68b;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(85,214,139,0.7);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.preview-bars {
  display: grid;
  gap: 12px;
}

.bar {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: softBarMove 3.8s ease-in-out infinite alternate;
}

@keyframes softBarMove {
  from { filter: brightness(1); }
  to { filter: brightness(1.35); }
}

.preview-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.mini {
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 14px;
}

.mini strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.mini span {
  color: var(--muted-2);
  font-size: 0.8rem;
}

.coming {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.coming p {
  color: var(--muted);
  max-width: 700px;
}

.future-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  max-width: 780px;
}

.future-product {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.045);
  padding: 18px;
}

.future-product span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-product strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: var(--text);
}

.future-product p {
  font-size: 0.94rem;
}

.cta {
  text-align: center;
  padding: 82px 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(95,156,255,0.20), transparent 60%),
    rgba(255,255,255,0.055);
  border: 1px solid var(--card-border);
  box-shadow: 0 26px 80px rgba(0,0,0,0.22);
}

.cta p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 28px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form {
  max-width: 820px;
  margin: 30px auto 0;
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: rgba(5,12,22,0.44);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(141,187,255,0.58);
  box-shadow: 0 0 0 4px rgba(95,156,255,0.12);
}

.contact-form > .form-field {
  margin-top: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.contact-hint {
  display: block;
  margin: 40px auto 0;
  padding-top: 4px;
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.contact-actions + .contact-hint {
  margin-top: 40px;
}

.contact-status {
  min-height: 1.4em;
  margin-top: 14px;
  font-weight: 800;
  text-align: center;
}

.contact-status.is-success {
  color: #8ff0b4;
}

.contact-status.is-error {
  color: #ff9ca8;
}

.contact-status.is-info {
  color: var(--accent-2);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

footer {
  padding: 34px 0;
  color: var(--muted-2);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col-right {
  align-items: flex-end;
  text-align: right;
}

.footer-meta {
  font-size: 0.82rem;
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--accent-2);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer-links a:hover {
  color: var(--text);
  opacity: 0.85;
}

@media (max-width: 560px) {
  .footer-col-right {
    align-items: flex-start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  body[data-page="services"] .hero-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="services"] h1 {
    max-width: 900px;
  }
}

@media (max-width: 1000px) {
  body[data-page="services"] .hero-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="services"] h1 {
    max-width: 900px;
  }

  .showcase-grid {
    display: grid;
    gap: 20px;
    min-height: auto;
  }

  .showcase-main,
  .floating-shot {
    position: relative;
    width: 100%;
    inset: auto;
    animation: none;
    transform-origin: center center;
  }

  .floating-shot.is-hovered {
    transform: scale(1.03);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .product-card,
  .custom-pc-card,
  .about-hero-grid,
  .about-story-grid,
  .about-closing-card {
    grid-template-columns: 1fr;
  }

  .about-portrait-card {
    min-height: 440px;
  }

  .about-story-intro {
    position: static;
  }

  .about-closing-actions {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
  }

  .cards,
  .fit-grid,
  .services-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .home-image-rail {
    grid-template-columns: 1fr;
  }

  .nav-links {
    margin-left: auto;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links > a:not(.button),
  .nav-links .button-disabled,
  .nav-tools > a {
    display: none;
  }

  .nav-links > .mobile-menu-toggle,
  .nav-tools > .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(141, 187, 255, 0.25);
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }

  .mobile-menu-icon {
    width: 19px;
    display: grid;
    gap: 4px;
  }

  .mobile-menu-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: var(--mobile-header-height, 78px) 0 0;
    z-index: 79;
    width: 100%;
    border: 0;
    background: rgba(2, 8, 16, 0.64);
    backdrop-filter: blur(5px);
    cursor: default;
  }

  .mobile-nav-backdrop.is-open {
    display: block;
  }

  .mobile-nav-panel {
    position: fixed;
    top: calc(var(--mobile-header-height, 78px) + 12px);
    right: 16px;
    z-index: 80;
    width: min(360px, calc(100vw - 32px));
    padding: 18px;
    gap: 8px;
    border: 1px solid rgba(141, 187, 255, 0.22);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(95, 156, 255, 0.2), transparent 55%),
      rgba(8, 18, 34, 0.98);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  }

  .mobile-nav-panel.is-open {
    display: grid;
    animation: mobileMenuIn 180ms ease-out;
  }

  .mobile-nav-heading {
    margin: 0 4px 6px;
    color: var(--accent-2);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid rgba(141, 187, 255, 0.12);
    border-radius: 15px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.045);
    font-weight: 750;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:focus-visible,
  .mobile-nav-link.is-current {
    border-color: rgba(95, 156, 255, 0.42);
    background: rgba(95, 156, 255, 0.16);
  }

  .mobile-section-nav {
    display: block;
    width: 100%;
    padding: 11px 16px 10px;
    border-bottom: 1px solid rgba(141, 187, 255, 0.1);
    background: rgba(7, 17, 31, 0.88);
    backdrop-filter: blur(14px);
  }

  .mobile-section-nav-label {
    display: block;
    width: min(var(--max), 100%);
    margin: 0 auto 7px;
    color: var(--muted-2);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-section-nav-links {
    width: min(var(--max), 100%);
    display: flex;
    gap: 8px;
    margin: 0 auto;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-section-nav-links::-webkit-scrollbar {
    display: none;
  }

  .mobile-section-nav a {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid rgba(141, 187, 255, 0.16);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    font-weight: 750;
  }

  @keyframes mobileMenuIn {
    from {
      opacity: 0;
      transform: translateY(-8px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .lang-select {
    height: 36px;
    font-size: 0.8rem;
    padding: 0 34px 0 12px;
  }

  .nav-tools,
  .nav-links {
    min-width: 0;
  }

  .lang-picker-button {
    min-width: 150px;
  }

  .coming {
    flex-direction: column;
    align-items: flex-start;
  }

  .coming .button {
    width: 100%;
    text-align: center;
  }

  .future-product-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .custom-pc-visual {
    min-height: 360px;
  }

  .home-service-mosaic {
    min-height: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .home-service-mosaic img {
    min-height: 170px;
  }

  .home-service-mosaic img:first-child {
    grid-row: auto;
  }

  .home-service-mosaic .service-note {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .custom-pc-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    height: auto;
    min-height: 70px;
    padding: 10px 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .brand-text {
    font-size: 1.06rem;
  }

  .nav-tools,
  .nav-links {
    margin-left: 0;
    min-width: 0;
    gap: 8px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links > .mobile-menu-toggle,
  .nav-tools > .mobile-menu-toggle {
    order: 3;
    margin-left: auto;
  }

  .nav-links .lang-switch,
  .nav-tools .lang-switch {
    margin-right: auto;
  }

  .lang-picker-button {
    min-width: 0;
    max-width: 148px;
    min-height: 44px;
    padding: 5px 12px;
  }

  .lang-picker-menu {
    left: 0;
    right: auto;
    min-width: 148px;
    max-width: calc(100vw - 20px);
  }

  .theme-toggle {
    width: 48px;
    height: 28px;
    overflow: hidden;
  }

  [data-theme="light"] .theme-toggle::after {
    transform: translateX(20px);
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding: 64px 0 42px;
  }

  section {
    padding: 52px 0;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .product-card,
  .cta,
  .custom-pc-card,
  .about-closing-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-hero {
    padding: 64px 0 38px;
  }

  .about-portrait-card {
    min-height: 390px;
    padding: 18px;
    border-radius: 26px;
  }

  .about-portrait-placeholder {
    inset: 38px 24px 104px;
  }

  .about-story-block {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .about-closing-actions {
    display: grid;
  }

  .custom-pc-copy h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .custom-pc-visual {
    min-height: 300px;
  }

  .company-orbit {
    width: min(210px, 76vw);
  }

  .company-visual .core-symbol {
    width: 112px;
    height: 112px;
  }

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

  .home-service-mosaic img {
    min-height: 180px;
  }

  .custom-pc-visual img {
    width: 72%;
    border-radius: 22px;
  }

  .preview-bottom {
    grid-template-columns: 1fr;
  }
}

/* --- Mobiele carousel --- */
.showcase-carousel {
  display: none;
  margin-top: 28px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.carousel-track {
  display: flex;
  will-change: transform;
  touch-action: pan-y;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel-slide img {
  width: 100%;
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
  background: var(--accent-2);
  transform: scale(1.3);
}

@media (max-width: 1000px) {
  .showcase-grid {
    display: none;
  }

  .showcase-carousel {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .stat,
  .floating-shot,
  .preview-dot,
  .bar span {
    animation: none;
  }

  .stat {
    opacity: 1;
    transform: none;
    position: relative;
  }

  .stat-slider {
    height: auto;
    display: grid;
    gap: 14px;
  }
}

/* ============================================================
   LICHTE MODUS – leesbaarheidsverbeteringen
   ============================================================ */

/* Header: licht glasmorphism in plaats van donker */
[data-theme="light"] header {
  background: rgba(240, 244, 250, 0.88);
  border-bottom-color: rgba(0, 0, 0, 0.10);
}

/* Nav links leesbaar op lichte header */
[data-theme="light"] .nav-links {
  color: var(--muted);
}

[data-theme="light"] .nav-links a:hover {
  color: var(--text);
}

[data-theme="light"] .mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(38, 112, 232, 0.2);
}

[data-theme="light"] .mobile-nav-panel {
  background:
    radial-gradient(circle at top right, rgba(38, 112, 232, 0.14), transparent 55%),
    rgba(247, 250, 255, 0.98);
  border-color: rgba(38, 112, 232, 0.18);
  box-shadow: 0 26px 70px rgba(20, 52, 105, 0.2);
}

[data-theme="light"] .mobile-nav-backdrop {
  background: rgba(28, 45, 70, 0.32);
}

[data-theme="light"] .mobile-nav-link,
[data-theme="light"] .mobile-section-nav a {
  background: rgba(38, 112, 232, 0.06);
  border-color: rgba(38, 112, 232, 0.14);
}

[data-theme="light"] .mobile-section-nav {
  background: rgba(240, 244, 250, 0.92);
  border-bottom-color: rgba(38, 112, 232, 0.12);
}

/* Stat-kaartjes in het hero-vlak: licht in plaats van donker */
[data-theme="light"] .stat {
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  color: var(--text);
}

[data-theme="light"] .stat span {
  color: var(--muted);
}

/* Visuele hero-kaart: licht achtergrondkleur */
[data-theme="light"] .visual-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(230,238,252,0.60)),
    radial-gradient(circle at top, rgba(38,112,232,0.12), transparent 70%);
  border-color: rgba(0, 0, 0, 0.10);
}

/* Product-preview blok: licht */
[data-theme="light"] .product-preview {
  background:
    radial-gradient(circle at top left, rgba(38,112,232,0.10), transparent 60%),
    rgba(255, 255, 255, 0.80);
  border-color: rgba(0, 0, 0, 0.10);
}

[data-theme="light"] .preview-top {
  color: var(--muted);
}

/* Bars in product-preview */
[data-theme="light"] .bar {
  background: rgba(0, 0, 0, 0.08);
}

/* Mini-statistieken in product-preview */
[data-theme="light"] .mini {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .mini span {
  color: var(--muted);
}

/* "In ontwikkeling" blok: zichtbare dashed rand */
[data-theme="light"] .coming {
  background: rgba(255, 255, 255, 0.60);
  border-color: rgba(38, 112, 232, 0.28);
}

[data-theme="light"] .future-product {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(38, 112, 232, 0.18);
}

[data-theme="light"] .company-pill-grid article,
[data-theme="light"] .home-service-mosaic .service-note {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(38, 112, 232, 0.18);
}

[data-theme="light"] .home-service-mosaic img {
  filter: saturate(0.94) contrast(0.98) brightness(0.94);
}

[data-theme="light"] .fit-card-media img,
[data-theme="light"] .home-image-rail img {
  filter: saturate(0.92) contrast(0.98) brightness(0.96);
}

/* CTA blok */
[data-theme="light"] .cta {
  background:
    radial-gradient(circle at top, rgba(38,112,232,0.10), transparent 60%),
    rgba(255, 255, 255, 0.70);
  border-color: rgba(0, 0, 0, 0.10);
}

/* Knop secondary zichtbaar */
[data-theme="light"] .button-secondary {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--text);
}

[data-theme="light"] .button-secondary:hover {
  background: rgba(0, 0, 0, 0.10);
}

/* Card-icoontjes */
[data-theme="light"] .card-icon {
  background: rgba(38, 112, 232, 0.12);
  border-color: rgba(38, 112, 232, 0.20);
  color: var(--accent);
}

/* Showcase afbeeldingsranden zichtbaar */
[data-theme="light"] .showcase-main,
[data-theme="light"] .floating-shot {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.60);
}

/* Carousel dots in lichte modus */
[data-theme="light"] .carousel-dot {
  background: rgba(0, 0, 0, 0.20);
}

[data-theme="light"] .carousel-viewport {
  border-color: rgba(0, 0, 0, 0.12);
}

/* Pill badge in product-sectie */
[data-theme="light"] .pill {
  background: rgba(38, 112, 232, 0.10);
  border-color: rgba(38, 112, 232, 0.22);
}

/* Lang-select dropdown op lichte achtergrond */
[data-theme="light"] .lang-select {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.75), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  color: var(--text);
  border-color: rgba(123, 152, 202, 0.28);
  box-shadow:
    0 8px 18px rgba(20, 52, 105, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .lang-switch::after {
  border-right-color: rgba(84, 109, 152, 0.82);
  border-bottom-color: rgba(84, 109, 152, 0.82);
}

[data-theme="light"] .lang-select option {
  background: #ffffff;
  color: #0f1c34;
}

[data-theme="dark"] .lang-select option {
  background: #111c32;
  color: #ecf3ff;
}

/* Footer scheidingslijn licht */
[data-theme="light"] footer {
  border-top-color: rgba(0, 0, 0, 0.10);
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 1000;
  width: min(980px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(123, 152, 202, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(105, 199, 255, 0.14), transparent 55%),
    rgba(8, 18, 34, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.cookie-notice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
}

.cookie-notice-title {
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 800;
}

.cookie-notice-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-notice-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

[data-theme="light"] .cookie-notice {
  background:
    radial-gradient(circle at top left, rgba(38, 112, 232, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.12);
}

@media (max-width: 720px) {
  .service-region-card {
    grid-template-columns: 1fr;
  }

  .service-region-copy {
    display: none;
  }

  .service-region-plain {
    display: grid;
    gap: 8px;
  }

  .service-region-map {
    min-height: 210px;
  }

  .cookie-notice-content,
  .cookie-notice-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
