:root {
  --bg: #030b17;
  --bg-soft: #07162b;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #101a2d;
  --muted: #59677d;
  --blue: #2f7cf6;
  --blue-dark: #1e61d9;
  --purple: #7656ff;
  --line: rgba(15, 35, 68, 0.12);
  --white-line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 70px rgba(4, 18, 45, 0.15);
  --container: min(1320px, calc(100% - 48px));
  --header-height: 82px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #91c6ff;
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(2, 9, 19, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 205px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-left: 90px;
}

.primary-nav > a,
.nav-group > button {
  min-height: var(--header-height);
  display: inline-flex;
  align-items: center;
  padding: 3px 0 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #e2e9f4;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.primary-nav > a[aria-current="page"],
.nav-group > button:hover,
.nav-group > button:focus-visible {
  color: #fff;
  border-bottom-color: var(--blue);
}

.nav-group {
  position: relative;
}

.region-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  min-width: 245px;
  display: none;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #0b1a30;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
}

.region-menu.is-open {
  display: grid;
}

.region-menu a {
  padding: 10px 12px;
  border-radius: 9px;
  color: #e8eef7;
  text-decoration: none;
}

.region-menu a:hover,
.region-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
}

/* Buttons */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 11px 20px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: linear-gradient(135deg, #327ff6, #2867df);
  box-shadow: 0 12px 30px rgba(39, 104, 227, 0.24);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(39, 104, 227, 0.35);
}

.header-cta {
  margin-left: auto;
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(2, 10, 23, 0.52);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: #153567;
  box-shadow: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 15px;
}

.text-link {
  color: #1762d8;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eyebrow {
  margin-bottom: 12px;
  color: #4da0ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Approved hero composition */
.hero-home {
  position: relative;
  height: 535px;
  min-height: 535px;
  isolation: isolate;
  overflow: hidden;
  padding: 105px 0 35px;
  background: #030b17;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.76) 0%, rgba(2, 8, 18, 0.42) 35%, rgba(2, 8, 18, 0.03) 62%, rgba(2, 8, 18, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(2, 8, 18, 0.04) 70%, rgba(2, 8, 18, 0.2));
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(1.2) brightness(1.13);
  transform: translate3d(calc(var(--hero-x, 0px) * -0.24), calc(var(--hero-y, 0px) * -0.16), 0) scale(1.035);
  transition: transform 0.25s linear;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
  padding-bottom: 0;
}

.hero-home h1 {
  max-width: 610px;
  margin-bottom: 11px;
  color: #fff;
  font-size: clamp(2.72rem, 3.35vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-title-line {
  display: block;
}

.hero-home h1 strong {
  color: #4a83f2;
  font-weight: inherit;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 0;
  color: #e5ecf6;
  font-size: 1rem;
  line-height: 1.46;
}

.hero-home .button {
  min-height: 43px;
  padding: 8px 17px;
  font-size: 0.9rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 0;
  padding: 0;
  color: #e4ebf5;
  font-size: 0.82rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before {
  content: "✓";
  color: #79b8ff;
  font-weight: 900;
}

.device-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: calc(100% + 18px);
  max-width: 650px;
  justify-self: end;
  margin: -118px -10px -45px 0;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: translate3d(var(--shift-x, 0), var(--shift-y, 0), 0) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.48s cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.device-stage img {
  width: 100%;
  min-width: 0;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.42));
  transform: translateZ(28px);
}

/* White rounded surface below hero */
.section-light {
  background: var(--surface-soft);
  color: var(--text);
}

.home-surface {
  position: relative;
  z-index: 8;
  margin-top: -32px;
  padding: 18px 0 24px;
  border-radius: 76px 76px 0 0;
  background:
    radial-gradient(circle at 48% 0%, rgba(76, 133, 238, 0.08), transparent 32%),
    #f6f8fc;
  color: var(--text);
  box-shadow: 0 -22px 55px rgba(0, 0, 0, 0.08);
}

.home-surface .container {
  width: min(1180px, calc(100% - 48px));
}

.found-section {
  padding: 0;
}

.found-box {
  max-width: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 18px 13px;
}

.found-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #173d82;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.92), 0 7px 18px rgba(31, 81, 171, 0.22);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.found-box h2 {
  margin-bottom: 3px;
  color: #16223a;
  font-size: 1.2rem;
  font-weight: 800;
}

.found-box h2 span,
.found-box strong {
  color: #1d63d6;
}

.found-box p {
  margin: 0;
  color: #354259;
  font-size: 0.88rem;
  line-height: 1.42;
}

.benefits {
  padding: 0 0 13px;
}

.benefits-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  padding: 6px 8px;
  border: 1px solid #e6ebf2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 45px rgba(14, 31, 62, 0.055);
}

.benefit-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 7px 18px;
  border-right: 1px solid #e2e8f0;
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card img {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  padding: 8px;
  border-radius: 12px;
  background: #eef4ff;
}

.benefit-card h2 {
  margin: 1px 0 5px;
  font-size: 0.95rem;
  font-weight: 800;
}

.benefit-card p {
  margin: 0;
  color: #46536a;
  font-size: 0.72rem;
  line-height: 1.35;
}

.references-preview {
  padding: 0 0 14px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.references-preview .text-link {
  font-size: 0.82rem;
}

.reference-slider {
  position: relative;
}

.reference-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 50px) / 6);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 1px;
}

.reference-strip::-webkit-scrollbar {
  display: none;
}

.reference-card {
  min-width: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(25, 58, 104, 0.08);
  border-radius: 8px;
  background: #eef2f7;
  color: #111c30;
  text-decoration: none;
  scroll-snap-align: start;
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(var(--shift-x, 0), var(--shift-y, 0), 0);
  transition: transform 0.42s cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.reference-card:hover,
.reference-card:focus-visible {
  border-color: rgba(39, 112, 231, 0.28);
  box-shadow: 0 16px 30px rgba(15, 48, 100, 0.14);
}

.reference-card > img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  background: #eef2f7;
}

.reference-meta {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px 10px;
}

.reference-meta strong,
.reference-meta small {
  display: block;
}

.reference-meta strong {
  overflow: hidden;
  color: #111c30;
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.reference-meta small {
  margin-top: 3px;
  color: #48556c;
  font-size: 0.65rem;
  line-height: 1.25;
}


.reference-strip .reference-meta {
  display: block;
}

.reference-strip .reference-meta small {
  margin-top: 3px;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e8f1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 25px rgba(14, 35, 67, 0.08);
  color: #18345d;
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  background: #f0f5ff;
  transform: translateY(-50%) scale(1.05);
}

.slider-button-prev {
  left: -54px;
}

.slider-button-next {
  right: -54px;
}

.reference-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 9px 0 2px;
}

.reference-dots b,
.reference-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5cedc;
}

.reference-dots b {
  background: #236ee9;
}

.trust-bar {
  padding: 0;
}

.trust-bar-grid {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 7px;
  background: #06182f;
  color: #fff;
}

.trust-bar-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
}

.trust-bar-grid > div:last-child {
  border-right: 0;
}

.trust-bar-grid span {
  color: #fff;
  font-size: 1.55rem;
}

.trust-bar-grid strong {
  font-weight: 500;
}

/* Content after the approved first-screen composition */
.statement-section,
.digital-space,
.regions-section,
.cta-section,
.legal-section,
.contact-section,
.references-page,
.region-content,
.local-benefits {
  padding: 92px 0;
}

.statement-section {
  background: #07162b;
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 80px;
  align-items: start;
}

.split-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.035em;
}

.split-grid p {
  color: #c4cede;
}

.digital-space {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 40%, rgba(130, 73, 255, 0.2), transparent 35%),
    radial-gradient(circle at 30% 60%, rgba(34, 117, 255, 0.2), transparent 35%),
    #040d1c;
  text-align: center;
}

.digital-space::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/hero-wave.webp") center 68% / cover no-repeat;
  opacity: 0.32;
}

.digital-space .container {
  position: relative;
  max-width: 950px;
}

.digital-space h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.regions-section {
  background: #f5f7fb;
}

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

.region-card {
  overflow: hidden;
  border: 1px solid #e1e7f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(17, 47, 88, 0.07);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.region-card:hover,
.region-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(17, 47, 88, 0.13);
}

.region-card img {
  width: 100%;
  aspect-ratio: 8 / 5.2;
  object-fit: cover;
}

.region-card > div {
  padding: 17px;
}

.region-card span {
  color: #2e73de;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-card h3 {
  margin: 5px 0 7px;
  font-size: 1.05rem;
}

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

.cta-section {
  background: #06152a;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 46px 52px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 50%, rgba(129, 75, 255, 0.3), transparent 35%),
    linear-gradient(135deg, #0b2f65, #071a35);
}

.cta-box h2 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

/* Generic pages */
.page-hero {
  padding: 162px 0 90px;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.88), rgba(2, 8, 18, 0.18)),
    url("/assets/img/hero-wave.webp") center bottom / cover no-repeat,
    #030b17;
}

.page-hero.compact {
  padding-bottom: 65px;
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.045em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #cbd5e4;
  font-size: 1.08rem;
}

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

.reference-grid .reference-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(16, 43, 82, 0.08);
}

.reference-grid .reference-meta {
  min-height: 76px;
  display: flex;
  padding: 14px 16px 17px;
}

.reference-grid .reference-meta strong {
  font-size: 0.92rem;
}

.reference-grid .reference-meta small {
  font-size: 0.78rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
}

.contact-panel,
.form-panel {
  padding: 38px;
  border: 1px solid #e1e7f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(18, 48, 91, 0.07);
}

.contact-panel h2,
.form-panel h2 {
  font-size: 1.8rem;
}

.contact-panel p,
.contact-panel dd,
.form-panel {
  color: var(--muted);
}

.contact-panel dl {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px 16px;
  margin: 28px 0 0;
}

.contact-panel dt {
  color: #17243c;
  font-weight: 800;
}

.contact-panel dd {
  margin: 0;
}

.contact-panel a,
.legal-content a {
  color: #1d62cf;
}

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

.form-grid label,
.check-label {
  color: #1a2942;
  font-weight: 700;
}

.form-wide {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cdd6e3;
  border-radius: 9px;
  background: #fff;
  color: #111c30;
}

input {
  min-height: 48px;
  padding: 10px 13px;
}

textarea {
  min-height: 180px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #2d78e8;
  box-shadow: 0 0 0 3px rgba(45, 120, 232, 0.14);
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 20px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.check-label input {
  flex: 0 0 auto;
  width: 19px;
  min-height: 19px;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert {
  margin-bottom: 22px;
  padding: 15px 17px;
  border-radius: 10px;
}

.alert.success {
  border: 1px solid #9bd8ae;
  background: #ebf8ef;
  color: #174e29;
}

.alert.error {
  border: 1px solid #e3a8a8;
  background: #fff0f0;
  color: #7a1f1f;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.45rem;
}

.legal-content p {
  color: #3f4d63;
}

.region-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 75px;
}

.region-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 18, 0.93) 0%, rgba(2, 8, 18, 0.7) 50%, rgba(2, 8, 18, 0.2) 100%);
}

.region-hero-content {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

.region-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

.region-hero-content > p:not(.eyebrow) {
  max-width: 760px;
  color: #d5deea;
  font-size: 1.08rem;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  color: #17243b;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #256ee0;
  font-weight: 900;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

.info-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: #0a1b33;
}

.info-card > span {
  color: #65a9ff;
  font-size: 1.55rem;
  font-weight: 800;
}

.info-card h2 {
  margin: 12px 0 8px;
  font-size: 1.45rem;
}

.info-card p {
  margin: 0;
  color: #bdc9db;
}

/* Footer */
.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #020913;
  color: #b7c3d5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.8fr;
  gap: 48px;
}

.brand-footer img {
  width: 210px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid p {
  max-width: 420px;
  font-size: 0.9rem;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 7px 0;
  color: #c4cfdd;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8290a5;
  font-size: 0.84rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1420px) {
  .slider-button-prev { left: -18px; }
  .slider-button-next { right: -18px; }
}

@media (max-width: 1180px) {
  :root {
    --container: min(1100px, calc(100% - 40px));
  }

  .primary-nav {
    gap: 17px;
    margin-left: 80px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 24px;
  }

  .hero-home h1 {
    font-size: clamp(2.75rem, 4.6vw, 3.35rem);
  }

  .device-stage {
    margin-right: -38px;
    margin-left: -15px;
  }

  .device-stage img {
    min-width: 0;
  }

  .reference-strip {
    grid-auto-columns: calc((100% - 30px) / 4);
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: 185px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .primary-nav {
    position: absolute;
    margin-left: 0;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    gap: 2px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #08162a;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a,
  .nav-group > button {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 10px 12px;
    border-bottom: 0;
    border-radius: 8px;
    text-align: left;
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav > a[aria-current="page"],
  .nav-group > button:hover,
  .nav-group > button:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .region-menu {
    position: static;
    margin-top: 4px;
    box-shadow: none;
  }

  .hero-home {
    height: auto;
    min-height: 0;
    padding-top: 120px;
    padding-bottom: 52px;
  }

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

  .hero-copy {
    max-width: 650px;
  }

  .device-stage {
    max-width: 760px;
    margin: -42px auto -80px;
  }

  .device-stage img {
    min-width: 0;
  }

  .home-surface {
    margin-top: 0;
    border-radius: 46px 46px 0 0;
  }

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

  .benefit-card:nth-child(2) {
    border-right: 0;
  }

  .benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid #e2e8f0;
  }

  .reference-strip {
    grid-auto-columns: calc((100% - 20px) / 3);
  }

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

  .trust-bar-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-bar-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

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

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    font-size: 15.5px;
  }

  .brand img {
    width: 165px;
  }

  .hero-home {
    height: auto;
    min-height: 0;
    padding: 106px 0 52px;
  }

  .hero-home h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

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

  .button-row .button {
    width: 100%;
  }

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

  .device-stage {
    margin: -12px -20px -55px;
  }

  .home-surface .container {
    width: var(--container);
  }

  .home-surface {
    padding-top: 23px;
    border-radius: 28px 28px 0 0;
  }

  .found-box {
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .found-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .found-box h2 {
    font-size: 1.05rem;
  }

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

  .benefit-card,
  .benefit-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .benefit-card:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .reference-strip {
    grid-auto-columns: 82%;
    gap: 12px;
  }

  .slider-button {
    display: none;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-grid > div,
  .trust-bar-grid > div:nth-child(2) {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-bar-grid > div:last-child {
    border-bottom: 0;
  }

  .statement-section,
  .digital-space,
  .regions-section,
  .cta-section,
  .legal-section,
  .contact-section,
  .references-page,
  .region-content,
  .local-benefits {
    padding: 70px 0;
  }

  .region-grid,
  .reference-grid,
  .card-grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 24px;
  }

  .page-hero {
    padding: 132px 0 70px;
  }

  .page-hero h1,
  .region-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

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

  .form-wide {
    grid-column: auto;
  }

  .contact-panel,
  .form-panel {
    padding: 24px;
  }

  .contact-panel dl {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-panel dd {
    margin-bottom: 13px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .device-stage,
  .reference-card,
  .hero-background img {
    transform: none !important;
  }
}

/* v4: mobile, logo, reference preview and performance corrections */
.brand picture { display: block; line-height: 0; }
.brand img { width: 259px; height: 64px; object-fit: contain; object-position: left center; }
.reference-card > img { object-fit: contain; padding: 6px; background: #f4f6f9; }

@media (max-width: 920px) {
  .site-header { background: rgba(2, 9, 19, 0.97); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero-canvas { display: none; }
  .hero-background { opacity: .72; }
  .hero-grid { gap: 10px; }
  .hero-copy { max-width: none; }
  .device-stage { width: min(100%, 690px); margin: -12px auto -28px; }
  .home-surface { position: relative; z-index: 5; }
}

@media (max-width: 620px) {
  :root { --header-height: 66px; --container: calc(100% - 32px); }
  .header-inner { gap: 12px; }
  .brand img { width: 164px; height: auto; }
  .nav-toggle { width: 42px; height: 42px; }
  .primary-nav { left: 12px; right: 12px; top: calc(100% + 6px); max-height: calc(100vh - 84px); overflow-y: auto; }
  .hero-home { padding: 92px 0 34px; overflow: hidden; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
  .hero-copy { width: 100%; }
  .hero-home h1 { max-width: none; margin-bottom: 14px; font-size: clamp(2.1rem, 10.7vw, 2.85rem); line-height: 1.01; letter-spacing: -.04em; }
  .hero-title-line { display: inline; }
  .hero-title-line::after { content: ' '; }
  .hero-lead { max-width: none; font-size: .98rem; line-height: 1.5; }
  .button-row { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0 17px; }
  .hero-home .button { width: 100%; min-height: 48px; justify-content: center; }
  .trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 12px; font-size: .76rem; }
  .device-stage { order: 2; width: calc(100% + 28px); max-width: none; margin: 4px -14px -12px; transform: none !important; }
  .device-stage img { filter: drop-shadow(0 18px 22px rgba(0,0,0,.34)); transform: none; }
  .home-surface { margin-top: 0; padding-top: 20px; border-radius: 24px 24px 0 0; }
  .found-box { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding-bottom: 18px; }
  .found-box p { font-size: .9rem; }
  .benefits-panel { border-radius: 14px; }
  .benefit-card { padding: 18px 14px; }
  .references-preview { padding-bottom: 16px; }
  .reference-strip { grid-auto-columns: 74%; gap: 12px; padding: 2px 2px 8px; }
  .reference-card > img { aspect-ratio: 16 / 10; padding: 4px; }
  .reference-meta { min-height: 58px; }
  .trust-bar { margin-top: 10px; }
}

@media (max-width: 390px) {
  .brand img { width: 148px; }
  .hero-home h1 { font-size: clamp(1.95rem, 10.4vw, 2.4rem); }
  .trust-list { grid-template-columns: 1fr; }
  .reference-strip { grid-auto-columns: 86%; }
}


/* v6: passende Desktop- und Smartphone-Ansichten in allen Referenzen */
.reference-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: #f2f5f9;
}

@media (max-width: 620px) {
  .reference-strip { grid-auto-columns: min(88%, 360px); }
  .reference-card > img { aspect-ratio: 14 / 9; padding: 0; }
  .reference-card { transform: none !important; }
  .reference-meta { min-height: 64px; padding: 10px 12px 12px; }
  .reference-meta strong { white-space: normal; overflow: visible; text-overflow: clip; font-size: .79rem; }
  .reference-meta small { font-size: .7rem; }
}


/* v9: Wirkungspunkte, Partnerschaft und Count-up-Kennzahlen */
.impact-stats {
  padding: 18px 0 34px;
}

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

.impact-stat {
  min-height: 150px;
  padding: 28px 32px;
  border: 1px solid rgba(26, 94, 210, .14);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f3f7ff);
  box-shadow: 0 16px 40px rgba(13, 35, 70, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-stat strong {
  display: block;
  color: #071a36;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.impact-stat strong span {
  color: #1769e8;
}

.impact-stat p {
  margin: 12px 0 0;
  color: #42536b;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
}

.decision-section {
  padding: 38px 0 70px;
}

.decision-heading {
  max-width: 900px;
}

.decision-grid {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.decision-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #dce5f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(9, 30, 66, .055);
}

.decision-card > span,
.partner-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1769e8;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.decision-card p {
  margin: 24px 0 0;
  color: #33445d;
  font-size: 1rem;
  line-height: 1.65;
}

.decision-card strong {
  color: #071a36;
}

.partner-section {
  padding: 76px 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.partner-copy h2 {
  margin-bottom: 18px;
}

.partner-copy p:last-child {
  color: #4a5b72;
  font-size: 1.08rem;
  line-height: 1.75;
}

.partner-points {
  display: grid;
  gap: 14px;
}

.partner-points > div {
  padding: 24px;
  border: 1px solid #d9e4f2;
  border-radius: 20px;
  background: #fff;
}

.partner-points strong {
  display: block;
  margin-top: 15px;
  color: #071a36;
  font-size: 1.16rem;
}

.partner-points p {
  margin: 8px 0 0;
  color: #526177;
  line-height: 1.65;
}

.keep-up-section {
  padding: 70px 0;
  background: #061325;
}

.keep-up-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(86, 151, 255, .28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(137, 71, 255, .24), transparent 34%),
    linear-gradient(135deg, #07172c, #0a2141);
}

.keep-up-box::after {
  content: '';
  position: absolute;
  inset: auto -8% -58% 35%;
  height: 260px;
  background: radial-gradient(ellipse, rgba(24, 105, 232, .34), transparent 70%);
  pointer-events: none;
}

.keep-up-box > * {
  position: relative;
  z-index: 1;
}

.keep-up-box h2 {
  max-width: 980px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.keep-up-box > p:not(.eyebrow) {
  max-width: 790px;
  color: #c8d5e8;
  font-size: 1.08rem;
  line-height: 1.7;
}

.keep-up-box .button {
  margin-top: 18px;
}

@media (max-width: 920px) {
  .decision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .impact-stats { padding: 8px 0 28px; }
  .impact-stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .impact-stat { min-height: 122px; padding: 22px; border-radius: 18px; }
  .impact-stat strong { font-size: clamp(2rem, 12vw, 3rem); }
  .decision-section { padding: 24px 0 50px; }
  .decision-grid { grid-template-columns: 1fr; gap: 12px; }
  .decision-card { min-height: 0; padding: 20px; }
  .decision-card p { margin-top: 16px; }
  .partner-section { padding: 52px 0; }
  .partner-points > div { padding: 20px; }
  .keep-up-section { padding: 42px 0; }
  .keep-up-box { padding: 28px 22px; border-radius: 22px; }
  .keep-up-box h2 { font-size: clamp(1.9rem, 9.3vw, 2.7rem); }
}
