:root {
  --bg: #fcfdff;
  --bg-soft: #f6f9fc;
  --bg-panel: #ffffff;
  --fg: #16304d;
  --muted: #4f6d8d;
  --line: #d7e1eb;
  --brand: #2ea0ff;
  --brand-strong: #0f8ef5;
  --accent: #f39a42;
  --ok: #1f9e59;
  --danger: #be4242;
  --header-bg: #0f3763;
  --header-fg: #f4f9ff;
  --header-muted: #d5e4f6;
  --shadow: 0 12px 30px rgba(16, 58, 100, 0.08);
  --ci-green-start: #56ab2f;
  --ci-green-end: #a8e063;
  --kicker-green: #a8e063;
  --btn-text-main: #f4f8ff;
  --btn-text-silver: rgba(223, 231, 241, 0.7);
  --btn-text-blue-glow: rgba(107, 158, 214, 0.42);
  --ci-green-border: #5aa735;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-padding-top: 8.2rem;
}

section[id] {
  scroll-margin-top: 8.2rem;
}

body {
  background:
    radial-gradient(circle at 18% 9%, rgba(120, 156, 194, 0.09), transparent 38%),
    radial-gradient(circle at 86% 14%, rgba(164, 183, 206, 0.08), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 46%, #fdfefe 100%);
  color: var(--fg);
  font-family: "Barlow", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, #fafcfe, #f4f7fb);
  border-bottom: 1px solid #d9e3ee;
  box-shadow: 0 5px 14px rgba(16, 58, 100, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 9px 18px rgba(16, 58, 100, 0.12);
}

.top-contact-bar {
  background: linear-gradient(180deg, #05162c 0%, #0f3763 100%);
  border-bottom: 1px solid #1d3d5c;
  max-height: 48px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.25s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled .top-contact-bar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

.top-contact-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 38px;
}

.top-contact-left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
}

.top-contact-left a {
  color: #e7f0fb;
  text-decoration: none;
  font-weight: 400;
}

.top-contact-left a:hover,
.top-contact-left a:focus-visible {
  color: #ffffff;
}

.contact-sep {
  color: #9fc0df;
}

.top-contact-right {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(222, 236, 252, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #e7f0fb;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
}

.social-icon {
  display: block;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.social-facebook .social-icon {
  -webkit-mask-image: url("/assets/img/icon-facebook.svg");
  mask-image: url("/assets/img/icon-facebook.svg");
}

.social-whatsapp .social-icon {
  -webkit-mask-image: url("/assets/img/icon-whatsapp.svg");
  mask-image: url("/assets/img/icon-whatsapp.svg");
}

.social-facebook:hover,
.social-facebook:focus-visible {
  color: #1877f2;
}

.social-whatsapp:hover,
.social-whatsapp:focus-visible {
  color: #25d366;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.76rem 0;
}

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

.nav-logo {
  display: block;
  width: min(100%, 262px);
  max-height: 48px;
  height: auto;
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid #1d3d5c;
  background: linear-gradient(180deg, #0a2847, #071d34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 2px rgba(7, 29, 52, 0.35);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav-burger:hover,
.nav-burger:focus-visible {
  background: linear-gradient(180deg, #0f3763, #0a2847);
  border-color: #2b547e;
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-burger:focus-visible {
  outline: 2px solid rgba(231, 240, 251, 0.45);
  outline-offset: 1px;
}

.nav-burger-lines,
.nav-burger-lines::before,
.nav-burger-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.nav-burger-lines {
  position: relative;
}

.nav-burger-lines::before,
.nav-burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-burger-lines::before {
  transform: translateY(-6px);
}

.nav-burger-lines::after {
  transform: translateY(6px);
}

.nav-wrap.nav-open .nav-burger-lines {
  background: transparent;
}

.nav-wrap.nav-open .nav-burger-lines::before {
  transform: rotate(45deg);
}

.nav-wrap.nav-open .nav-burger-lines::after {
  transform: rotate(-45deg);
}

.main-nav {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-left: auto;
  order: 2;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border-radius: 11px;
  border: 1px solid #b7cbe0;
  background: linear-gradient(180deg, #ffffff, #edf4fb);
  box-shadow: inset 0 1px 0 #ffffff, 0 1px 2px rgba(15, 55, 99, 0.08);
  color: #254767;
  text-decoration: none;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: linear-gradient(180deg, #f5fbff, #dff1ff 52%, #dff7eb);
  border-color: #79abd8;
  color: #103554;
  transform: translateY(-1px);
}

.main-nav a:focus-visible {
  outline: 2px solid rgba(46, 160, 255, 0.35);
  outline-offset: 1px;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  order: 3;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #1d3d5c;
  background: linear-gradient(180deg, #0a2847, #071d34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 2px rgba(7, 29, 52, 0.35);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.lang-trigger:hover,
.lang-trigger:focus-visible {
  background: linear-gradient(180deg, #0f3763, #0a2847);
  border-color: #2b547e;
  color: #ffffff;
  transform: translateY(-1px);
}

.lang-trigger:focus-visible {
  outline: 2px solid rgba(231, 240, 251, 0.45);
  outline-offset: 1px;
}

.lang-globe {
  width: 18px;
  height: 18px;
  display: block;
  color: #ffffff;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  display: grid;
  gap: 0.2rem;
  width: max-content;
  min-width: 132px;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  border: 1px solid #c6d4e2;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fafd);
  box-shadow: 0 8px 18px rgba(16, 58, 100, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.38rem;
  min-height: 38px;
  width: 100%;
  height: auto;
  padding: 0.28rem 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(25, 76, 118, 0.2);
  color: #254767;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: normal;
  background: linear-gradient(180deg, #ffffff, #edf4fb);
  box-shadow: none;
}

.lang-menu a:hover,
.lang-menu a:focus-visible {
  background: linear-gradient(180deg, #f6fbff, #eaf4ff);
  border-color: #89afd2;
  color: #173f65;
  transform: translateX(-1.25rem);
}

.lang-menu a.current {
  background: linear-gradient(180deg, rgba(86, 171, 47, 0.2), rgba(168, 224, 99, 0.3));
  border-color: var(--ci-green-border);
  color: #1a456f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 1px 2px rgba(39, 96, 26, 0.16);
}

.flag {
  display: inline-block;
  width: 17px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(22, 56, 89, 0.18);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
}

.flag-de {
  background-image: url("/assets/img/flag-de.svg");
}

.flag-gb {
  background-image: url("/assets/img/flag-gb.svg");
}

.lang-label {
  display: inline-block;
  line-height: 1;
}

.main-nav a.active,
.main-nav a[aria-current="page"] {
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  border-color: var(--ci-green-border);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 2px 6px rgba(49, 120, 44, 0.25);
}

.main-nav a.active:hover,
.main-nav a.active:focus-visible,
.main-nav a[aria-current="page"]:hover,
.main-nav a[aria-current="page"]:focus-visible {
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  border-color: var(--ci-green-border);
  color: #ffffff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10.8rem 0 13.4rem;
  background: #0b2d52;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 16, 31, 0.72) 0%, rgba(8, 23, 42, 0.66) 38%, rgba(9, 25, 45, 0.52) 62%, rgba(7, 20, 37, 0.6) 100%),
    linear-gradient(180deg, rgba(4, 14, 28, 0.24) 0%, rgba(7, 20, 37, 0.42) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  row-gap: 1.6rem;
  column-gap: 2.7rem;
  grid-template-columns: 1.2fr 0.8fr;
  transform: translateY(-1rem);
}

.hero-grid > div:first-child {
  padding-right: 1.1rem;
  padding-left: 2.2rem;
}

.kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--kicker-green);
  margin: 0 0 0.5rem;
}

.kicker,
.metrics-kicker,
.bridge-kicker,
.services-cta-kicker,
.journey-kicker,
.core-kicker,
.panel-badge {
  color: var(--kicker-green);
  font-weight: 700;
}

.kicker,
.metrics-kicker,
.bridge-kicker,
.services-cta-kicker,
.journey-kicker,
.core-kicker {
  display: inline-block;
  width: fit-content;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .kicker,
  .metrics-kicker,
  .bridge-kicker,
  .services-cta-kicker,
  .journey-kicker,
  .core-kicker {
    background-image: linear-gradient(95deg, var(--ci-green-start) 0%, #7fc741 48%, var(--ci-green-end) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.section > .container > h2,
.journey-head h2,
.services-cta-shell h2,
.current-topics-section h2,
.current-topics-cta-shell h2,
.contact-lead h2 {
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.hero h1 {
  color: #f3f9ff;
}

.lead {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 62ch;
}

.hero .lead {
  color: #d6e6f7;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #c8d7e6;
  background: linear-gradient(160deg, #ffffff 0%, #f5f8fc 62%, #eef4fa 100%);
  border-radius: 18px;
  padding: 1rem 1.2rem 1.15rem;
  box-shadow: 0 14px 34px rgba(12, 34, 58, 0.22);
  justify-self: end;
  align-self: center;
  max-width: 34rem;
  margin-top: 0;
  transform: translateX(-1.25rem);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -35% -25% auto auto;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168, 224, 99, 0.22), rgba(168, 224, 99, 0));
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.58rem;
  margin: 0 0 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(86, 171, 47, 0.32);
  background: linear-gradient(90deg, rgba(86, 171, 47, 0.16), rgba(168, 224, 99, 0.2));
  color: var(--kicker-green);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel h2 {
  color: #1b486f;
  margin-bottom: 0.65rem;
  font-size: clamp(1.26rem, 2.3vw, 1.9rem);
}

.hero-panel ul {
  margin: 0;
  padding: 0 0 0 0.55rem;
  list-style: none;
  display: grid;
  gap: 0.48rem;
  color: #4a6481;
}

.hero-panel li {
  position: relative;
  padding-left: 1.02rem;
  line-height: 1.45;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  box-shadow: 0 0 0 3px rgba(86, 171, 47, 0.14);
}

.panel-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.95rem;
}

.panel-kpi {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.18rem 0.56rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 74, 118, 0.2);
  background: linear-gradient(180deg, #ffffff, #edf4fa);
  color: #244b70;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.72rem 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;

}

.btn-primary {
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  border-color: var(--ci-green-border);
  color: var(--btn-text-main);
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 2px 6px rgba(49, 120, 44, 0.22);
}

.hero .btn-primary {
  color: #103554;
  text-shadow: none;
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  color: #103554;
  text-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  border-color: var(--ci-green-border);
  filter: brightness(1.06);
}

.btn-ghost {
  color: #1d4a78;
  border-color: #8cb7e1;
  background: #ffffff;
}

.hero .btn-ghost {
  background: linear-gradient(90deg, #f39a42, #f7b05d);
  border-color: #d9852f;
  color: #103554;
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 2px 7px rgba(112, 67, 24, 0.27);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  background: linear-gradient(90deg, #f39a42, #f7b05d);
  border-color: #d9852f;
  color: #103554;
  text-shadow: none;
  filter: brightness(1.06);
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f9fbfd, #f6f9fc 42%, #fbfdff);
  border-top: 1px solid #e4eaf1;
  border-bottom: 1px solid #e4eaf1;
}

.legal-main {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3.8rem;
  background:
    radial-gradient(circle at 11% 15%, rgba(96, 166, 219, 0.22), rgba(96, 166, 219, 0) 38%),
    radial-gradient(circle at 88% 6%, rgba(168, 224, 99, 0.18), rgba(168, 224, 99, 0) 34%),
    linear-gradient(180deg, #fbfdff 0%, #f4f9fd 66%, #f8fbff 100%);
}

.legal-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 1.45rem;
}

.legal-shell h1 {
  margin-bottom: 0.7rem;
  color: #103554;
}

.legal-intro {
  margin: 0;
  max-width: 64ch;
  color: #43617f;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 7rem;
  border: 1px solid #2b537a;
  border-radius: 18px;
  padding: 1.05rem 1rem 1.12rem;
  background: linear-gradient(165deg, #0b2a4a 0%, #103a63 54%, #0b2f50 100%);
  box-shadow: 0 14px 30px rgba(10, 34, 58, 0.24);
  color: #d7e7f8;
}

.legal-aside-name {
  margin: 0 0 0.32rem;
  font-size: 1.16rem;
  line-height: 1.32;
  font-weight: 700;
  color: #a8e063;
  background-image: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.legal-aside-owner {
  margin: 0 0 0.12rem;
  color: #dce9f7;
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.35;
}

.legal-aside-by {
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.9;
}
.legal-address {
  margin: 0;
  font-style: normal;
  color: #d2e3f6;
  line-height: 1.65;
}

.legal-quicklinks {
  margin-top: 0.9rem;
  padding-bottom: 0.56rem;
  display: grid;
  row-gap: 0.9rem;
}

.legal-pair-group {
  display: grid;
  row-gap: 0.22rem;
}

.legal-pair {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 0.68rem;
  align-items: baseline;
}

.legal-aside-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8d2ea;
  font-weight: 700;
  text-align: right;
}

.legal-aside-taxid {
  margin: 0;
  color: #f1f7ff;
  font-weight: 700;
  font-size: 0.92rem;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #eef5fd;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.35;
  justify-self: start;
}

.legal-chip:hover,
.legal-chip:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #ffffff;
  text-decoration: underline;
  transform: none;
}
.legal-card {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.legal-block {
  border: 1px solid #d3e1ee;
  border-radius: 18px;
  background: linear-gradient(158deg, #ffffff 0%, #f3f8fd 58%, #edf5fc 100%);
  box-shadow: 0 10px 24px rgba(14, 43, 71, 0.12);
  overflow: hidden;
  padding: 0;
}

.legal-block h2 {
  margin: 0;
  padding: 0.56rem 1.05rem;
  background: #eef4fa;
  border-bottom: 1px solid #d8e5f2;
  color: #123a61;
  font-size: clamp(1.04rem, 2.2vw, 1.24rem);
  line-height: 1.38;
}

.legal-block p {
  margin: 0;
  padding: 0 1.05rem 0.42rem;
  color: #2e4d6b;
  line-height: 1.32;
}

.legal-block h2 + p {
  padding-top: 0.82rem;
}

.legal-block p:last-child {
  padding-bottom: 0.92rem;
}

.legal-block a {
  color: #12436d;
  text-decoration: none;
  font-weight: 700;
}

.legal-block a:hover,
.legal-block a:focus-visible {
  color: #0b2c4d;
  text-decoration: underline;
}
@media (max-width: 1020px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .legal-main {
    padding-top: 2.7rem;
    padding-bottom: 2.9rem;
  }
  .legal-block h2 {
    padding: 0.44rem 0.78rem;
    font-size: 1rem;
  }

  .legal-block p {
  line-height: 1.32;
    padding-left: 0.78rem;
  line-height: 1.32;
    padding-right: 0.78rem;
  line-height: 1.32;
  }
  line-height: 1.32;
}
.journey-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(130% 96% at -10% 84%, rgba(97, 168, 223, 0.2) 0%, rgba(97, 168, 223, 0.1) 36%, rgba(97, 168, 223, 0.04) 62%, rgba(97, 168, 223, 0) 86%),
    radial-gradient(circle at 84% 24%, rgba(86, 171, 47, 0.1), transparent 40%),
    linear-gradient(0deg, #f9fbfe 0%, #f1f6fb 54%, #f7fbff 100%);
  border-top: 0;
  border-bottom: 0;
  padding-top: 3.65rem;
}

.journey-question-section {
  padding: 1.75rem 0 3.95rem;
  background: #f8fbfe;
  border: 0;
}

.metrics-shell {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: calc(3 * 300px + 2 * 1.4rem);
  margin: 0 auto;
}


.metrics-kicker {
  margin: 0 0 0.1rem;
  color: var(--kicker-green);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 300px));
  justify-content: center;
  gap: 1.7rem 1.4rem;
  align-items: start;
  padding: 0.12rem 0 0.05rem;
}

.metric-item {
  display: grid;
  gap: 0.28rem;
  align-content: start;
  padding: 0.15rem 0 0.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.metric-item::before {
  content: "";
  width: 44px;
  height: 3px;
  margin: 0 0 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  opacity: 0.9;
}

.metric-value {
  display: block;
  color: #0d466f;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.metric-label {
  display: block;
  margin: 0;
  color: #2f5f88;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.metric-detail {
  margin: 0.08rem 0 0;
  color: #4f6d8f;
  font-size: 0.82rem;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .metrics-shell {
    max-width: calc(2 * 320px + 1.2rem);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(220px, 320px));
    justify-content: center;
    gap: 0.95rem 1.2rem;
  }
}

@media (max-width: 620px) {


  .metrics-shell {
    max-width: 460px;
  }

  .metrics-grid {
    grid-template-columns: minmax(0, 460px);
    justify-content: center;
    gap: 0.85rem;
  }

  .metric-item::before {
    width: 38px;
  }
}

.services-tiles-section.services-tiles-overlap {
  --services-tiles-overlap: 6.2rem;
  position: relative;
  overflow: visible;
  margin-top: calc(var(--services-tiles-overlap) * -1);
  padding: 0 0 2.8rem;
  background: transparent;
  border: 0;
  z-index: 3;
}

.services-tiles-section.services-tiles-overlap::before {
  content: "";
  position: absolute;
  inset: var(--services-tiles-overlap) 0 0;
  background: #f8fbfe;
  border-top: 0;
  border-bottom: 0;
  z-index: 0;
}

.services-tiles-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.service-tile {
  position: relative;
  min-height: 222px;
  perspective: 1200px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(22px);
  animation: serviceTileEnter 1.2s cubic-bezier(0.2, 0.72, 0.18, 1) forwards;
}

.service-tile:focus-visible {
  outline: none;
}

.services-tiles-grid .service-tile:nth-child(1) {
  animation-delay: 0.18s;
}

.services-tiles-grid .service-tile:nth-child(2) {
  animation-delay: 0.38s;
}

.services-tiles-grid .service-tile:nth-child(3) {
  animation-delay: 0.58s;
}

.services-tiles-grid .service-tile:nth-child(4) {
  animation-delay: 0.78s;
}

@keyframes serviceTileEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-tile-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.service-tile:hover .service-tile-inner,
.service-tile:focus-within .service-tile-inner,
.service-tile:focus-visible .service-tile-inner {
  transform: rotateY(180deg);
}

.service-face {
  position: absolute;
  inset: 0;
  border: 1px solid #ccdae8;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 10px 24px rgba(14, 47, 78, 0.12);
  padding: 1.02rem 0.9rem 0.95rem;
  text-align: center;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-face::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(70%, 190px);
  height: 18px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  box-shadow: 0 5px 14px rgba(49, 120, 44, 0.22);
}

.service-face-back::before {
  background: linear-gradient(90deg, #f39a42, #f7b05d);
  box-shadow: 0 5px 14px rgba(112, 67, 24, 0.27);
}

.service-face-front,
.service-face-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-face-back {
  transform: rotateY(180deg);
  padding-top: 1.2rem;
}

.service-logo {
  display: block;
  width: 106px;
  height: 70px;
  margin: 0 auto 0.82rem;
  object-fit: contain;
  object-position: center;
}

.service-tile h3 {
  margin: 0;
  color: #0f5b89;
  font-size: clamp(1rem, 1.15vw, 1.24rem);
}

.service-face-back h3 {
  margin: 0 0 0.42rem;
}

.service-face-back p {
  margin: 0;
  color: #425f7f;
  max-width: 24ch;
  line-height: 1.38;
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .services-tiles-section.services-tiles-overlap {
    --services-tiles-overlap: 5rem;
  }

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

.services-bridge-section {
  padding: 1.2rem 0 1rem;
  background: #f8fbfe;
  border-top: 0;
  border-bottom: 1px solid #dfeaf4;
}

.bridge-wrap {
  display: block;
}

.bridge-intro {
  max-width: 76ch;
}

.bridge-kicker {
  margin: 0 0 0.32rem;
  color: var(--kicker-green);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.bridge-wrap h2 {
  margin: 0 0 0.42rem;
}

.bridge-lead {
  margin: 0;
  color: #557190;
}


.services-cta-section {
  padding: 2.35rem 0;
  background: linear-gradient(120deg, #0d3963 0%, #125081 55%, #1f6b7a 100%);
  border-top: 1px solid #104066;
  border-bottom: 1px solid #d7e3ef;
}

.services-cta-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.2rem 1.6rem;
}

.services-cta-kicker {
  margin: 0 0 0.35rem;
  color: var(--kicker-green);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.services-cta-shell h2 {
  margin: 0 0 0.55rem;
  color: #f4f9ff;
}

.services-cta-shell p:not(.services-cta-kicker) {
  margin: 0;
  color: #d5e6f8;
  max-width: 66ch;
}

.services-cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.services-cta-section .btn-primary,
.services-cta-section .btn-ghost-light,
.services-cta-section .btn-orange {
  color: #103554;
}

.services-cta-section .btn-primary:hover,
.services-cta-section .btn-primary:focus-visible,
.services-cta-section .btn-ghost-light:hover,
.services-cta-section .btn-ghost-light:focus-visible,
.services-cta-section .btn-orange:hover,
.services-cta-section .btn-orange:focus-visible {
  color: #103554;
}

.btn-ghost-light {
  color: var(--btn-text-main);
  text-shadow: none;
  border-color: rgba(217, 232, 247, 0.72);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  color: var(--btn-text-main);
  text-shadow: none;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.16);
}

.btn-orange {
  background: linear-gradient(90deg, #f39a42, #f7b05d);
  border-color: #d9852f;
  color: #103554;
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 2px 7px rgba(112, 67, 24, 0.27);
}

.btn-orange:hover,
.btn-orange:focus-visible {
  background: linear-gradient(90deg, #f39a42, #f7b05d);
  border-color: #d9852f;
  color: #103554;
  text-shadow: none;
  filter: brightness(1.06);
}

.partner-strip-section {
  padding: 1.4rem 0 1.6rem;
  background: var(--bg);
  border-bottom: 0;
}

.partner-strip-shell {
  display: grid;
  gap: 0.62rem;
}

.partner-strip-kicker {
  margin: 0;
  color: #335c84;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-logo-viewport {
  overflow: hidden;
  width: 100%;
}

.partner-logo-marquee {
  display: flex;
  width: max-content;
  animation: partnerMarquee 14s linear infinite;
  will-change: transform;
}

.partner-logo-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: max-content;
}

.partner-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 50px;
}

.partner-logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(0.95);
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.journey-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  grid-template-rows: auto 1fr;
  column-gap: 1.45rem;
  align-items: start;
}

.journey-head {
  grid-column: 1;
  grid-row: 1;
  max-width: 78ch;
  margin-bottom: 1.1rem;
}

.journey-kicker {
  margin: 0 0 0.35rem;
  color: var(--kicker-green);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.journey-head h2 {
  margin-bottom: 0.6rem;
}

.journey-head p:not(.journey-kicker) {
  margin: 0;
  color: var(--muted);
  max-width: 66ch;
}

.journey-layout {
  display: contents;
}

.journey-timeline {
  grid-column: 1;
  grid-row: 2;
  --timeline-indent: 2.35rem;
  --timeline-step-size: 1.7rem;
  --timeline-step-shift: -1.47rem;
  --timeline-card-max: 35rem;
  --timeline-line-width: 2px;
  --timeline-line-top: 0.9rem;
  --timeline-line-bottom: 0.9rem;
  --timeline-line-x: calc(var(--timeline-indent) + var(--timeline-step-shift) + (var(--timeline-step-size) * 0.5));
  --timeline-progress: 0;
  position: relative;
  display: grid;
  gap: 0.95rem;
  padding: 0.9rem 1.05rem 0.9rem var(--timeline-indent);
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: var(--timeline-line-x);
  top: var(--timeline-line-top);
  bottom: var(--timeline-line-bottom);
  width: var(--timeline-line-width);
  background: linear-gradient(0deg, rgba(86, 171, 47, 0.3), rgba(39, 89, 135, 0.28), rgba(86, 171, 47, 0.22));
  transform: translateX(-50%);
  z-index: 0;
}

.journey-timeline::after {
  content: "";
  position: absolute;
  left: var(--timeline-line-x);
  top: var(--timeline-line-top);
  bottom: var(--timeline-line-bottom);
  width: var(--timeline-line-width);
  background: linear-gradient(0deg, #56ab2f 0%, #79cb48 45%, #a8e063 100%);
  transform: translateX(-50%) scaleY(var(--timeline-progress));
  transform-origin: 50% 0;
  z-index: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: var(--timeline-step-size) minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  z-index: 1;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--timeline-step-size);
  height: var(--timeline-step-size);
  margin-top: 0;
  margin-left: var(--timeline-step-shift);
  align-self: center;
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(31, 84, 130, 0.23);
  background: linear-gradient(180deg, #ffffff, #edf5fb);
  color: #1e4f7a;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(86, 171, 47, 0.13);
  z-index: 3;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.26s ease;
}

.timeline-step.is-reached {
  border-color: var(--ci-green-border);
  background: linear-gradient(120deg, var(--ci-green-start), var(--ci-green-end));
  color: #163f67;
  box-shadow: 0 0 0 4px rgba(86, 171, 47, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.timeline-step.is-current {
  transform: scale(1.18);
  box-shadow:
    0 0 0 4px rgba(86, 171, 47, 0.24),
    0 0 14px rgba(86, 171, 47, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.timeline-card {
  width: min(100%, var(--timeline-card-max));
  border: 1px solid #c9d8e7;
  border-radius: 15px;
  padding: 0.84rem 0.92rem 0.9rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.98));
  box-shadow: 0 10px 25px rgba(20, 61, 100, 0.08);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.timeline-card.is-active {
  border-color: rgba(86, 171, 47, 0.72);
  box-shadow:
    0 12px 28px rgba(20, 61, 100, 0.12),
    0 0 0 2px rgba(86, 171, 47, 0.34),
    0 0 18px rgba(86, 171, 47, 0.3);
}

.timeline-card h3 {
  margin: 0 0 0.34rem;
  color: #1a476f;
}

.timeline-card p {
  margin: 0;
  color: #4d6887;
}

.process-diagram {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 402px;
  border: 1px solid #c8d8e8;
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 12%, rgba(168, 224, 99, 0.15), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(109, 169, 216, 0.16), transparent 40%),
    linear-gradient(160deg, #ffffff, #f3f8fd 58%, #edf4fb);
  box-shadow: 0 14px 34px rgba(14, 43, 73, 0.11);
}

.process-diagram::before {
  content: "";
  position: absolute;
  inset: -30% 22% 42% -20%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 171, 47, 0.22), rgba(86, 171, 47, 0));
  animation: diagramGlow 12s ease-in-out infinite;
  pointer-events: none;
}

.diagram-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.diagram-lines path {
  fill: none;
  stroke: rgba(68, 131, 181, 0.6);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 8 9;
  animation: lineFlow 16s linear infinite;
}

.diagram-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 198px;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(28, 82, 126, 0.25);
  background: linear-gradient(160deg, #ffffff, #edf5fd);
  text-align: center;
  box-shadow: 0 10px 22px rgba(22, 67, 110, 0.14);
  animation: corePulse 7.8s ease-in-out infinite;
}

.core-kicker {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--kicker-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

.diagram-core strong {
  display: block;
  color: #1a4a74;
  line-height: 1.25;
}

.diagram-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 38px;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 84, 130, 0.26);
  background: linear-gradient(180deg, #ffffff, #edf4fb);
  color: #1f4f7a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(18, 56, 92, 0.11);
  animation: nodeFloat 8.6s ease-in-out infinite;
}

.diagram-node::before {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  box-shadow: 0 0 0 3px rgba(86, 171, 47, 0.14);
}

.node-a {
  left: 5.5%;
  top: 9%;
  animation-delay: 0.1s;
}

.node-b {
  right: 6%;
  top: 8%;
  animation-delay: 0.5s;
}

.node-c {
  right: 3%;
  top: 43%;
  animation-delay: 1s;
}

.node-d {
  left: 9%;
  bottom: 10%;
  animation-delay: 0.8s;
}

.node-e {
  right: 14%;
  bottom: 5%;
  animation-delay: 1.3s;
}

.workshop-scene {
  background:
    radial-gradient(circle at 84% 14%, rgba(168, 224, 99, 0.2), transparent 36%),
    radial-gradient(circle at 18% 88%, rgba(109, 169, 216, 0.24), transparent 40%),
    linear-gradient(160deg, #fbfdff, #eef6fd 56%, #eaf3fb);
}

.workshop-scene::before {
  inset: -22% 27% 46% -16%;
  background: radial-gradient(circle, rgba(86, 171, 47, 0.24), rgba(86, 171, 47, 0));
  opacity: 0.78;
}

.workshop-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.workshop-ambient {
  fill: rgba(168, 224, 99, 0.16);
  animation: ambientPulse 12s ease-in-out infinite;
}

.workshop-ambient-b {
  fill: rgba(93, 160, 214, 0.18);
  animation-delay: 1.8s;
}

.board-shadow {
  fill: rgba(18, 63, 103, 0.16);
}

.board-frame {
  fill: none;
  stroke: rgba(31, 92, 143, 0.4);
  stroke-width: 2.2;
}

.board-line {
  fill: none;
  stroke: rgba(67, 130, 183, 0.6);
  stroke-width: 2.1;
  stroke-linecap: round;
}

.board-curve {
  fill: none;
  stroke: rgba(48, 117, 168, 0.56);
  stroke-width: 2.6;
  stroke-linecap: round;
}

.board-curve-alt {
  stroke: rgba(243, 154, 66, 0.62);
}

.sticky {
  stroke: rgba(30, 80, 125, 0.22);
  stroke-width: 1;
  animation: stickyDrift 6.2s ease-in-out infinite;
}

.sticky-a {
  fill: #fef39a;
  animation-delay: 0.1s;
}

.sticky-b {
  fill: #c9f2ff;
  animation-delay: 1.2s;
}

.sticky-c {
  fill: #d8f6b2;
  animation-delay: 0.7s;
}

.sticky-d {
  fill: #ffd3ab;
  animation-delay: 2s;
}

.sticky-e {
  fill: #f5d3ff;
  animation-delay: 1.5s;
}

.string {
  stroke: rgba(53, 118, 170, 0.54);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 3 7;
  animation: stringFlow 6.8s linear infinite;
}

.desk-shadow {
  fill: rgba(20, 67, 108, 0.14);
}

.person-head.person-a,
.person-body.person-a {
  fill: #1a4d7b;
}

.person-head.person-b,
.person-body.person-b {
  fill: #4d9f34;
}

.person-arm {
  fill: none;
  stroke-width: 5.4;
  stroke-linecap: round;
  animation: armMove 5.4s ease-in-out infinite;
}

.person-arm.person-a {
  stroke: #1d5b8f;
}

.person-arm.person-b {
  stroke: #4f9738;
  animation-delay: 0.8s;
}

.marker {
  fill: #f3a34d;
  box-shadow: 0 0 0 4px rgba(243, 154, 66, 0.22);
}

.marker-b {
  fill: #57ab34;
}

.process-photo-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  --container-bleed-right: max(0px, calc((100vw - min(1200px, 94vw)) / 2));
  --moon-overhang: min(140px, 9vw);
  --moon-clip: circle(78% at 78% 50%);
  --photo-left-fade: 0.5cm;
  --photo-object-x: 56%;
  --photo-object-y: 50%;
  --photo-vertical-offset: 0rem;
  height: 100%;
  min-height: 402px;
  width: calc(100% + var(--container-bleed-right) + var(--moon-overhang));
  margin-right: calc((var(--container-bleed-right) + var(--moon-overhang)) * -1);
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
  align-self: center;
}

.process-photo-card::before,
.process-photo-card::after,
.process-photo-frame {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--photo-left-fade), #000 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 var(--photo-left-fade), #000 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.process-photo-card::before {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -24%;
  right: 0;
  clip-path: var(--moon-clip);
  background: linear-gradient(134deg, rgba(255, 255, 255, 0.18), rgba(192, 216, 238, 0.08) 52%, rgba(8, 29, 49, 0.2));
  animation: none;
  opacity: 0.92;
  z-index: 1;
  pointer-events: none;
}

.process-photo-card::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -24%;
  right: 0;
  clip-path: var(--moon-clip);
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, 0) 63%, rgba(255, 255, 255, 0.18) 66%, rgba(16, 44, 73, 0.16) 70%, rgba(16, 44, 73, 0) 73%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 58%);
  box-shadow: 0 24px 34px rgba(14, 45, 74, 0.14);
  pointer-events: none;
  z-index: 2;
}

.process-photo-frame {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -24%;
  right: 0;
  margin: 0;
  clip-path: var(--moon-clip);
  overflow: hidden;
  background: linear-gradient(136deg, #103554 0%, #1a4a71 52%, #123a5d 100%);
  z-index: 0;
}

.process-photo {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: var(--photo-object-x) var(--photo-object-y);
  filter: saturate(0.9) contrast(1.02);
}

@media (max-width: 1366px) and (min-width: 921px) {
  .process-photo-card {
    --photo-object-y: 48%;
  }
}

@media (min-width: 1800px) {
  .process-photo-card {
    --moon-overhang: min(56px, 3vw);
    --photo-object-x: 50%;
  }
}

.visual-process {
  background:
    radial-gradient(circle at 84% 14%, rgba(168, 224, 99, 0.18), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(109, 169, 216, 0.22), transparent 40%),
    linear-gradient(160deg, #ffffff, #f2f8fd 58%, #edf5fc);
}

.visual-process::before {
  inset: -24% 30% 44% -14%;
  background: radial-gradient(circle, rgba(86, 171, 47, 0.24), rgba(86, 171, 47, 0));
  opacity: 0.76;
}

.visual-process::after {
  content: "";
  position: absolute;
  inset: 16% 10% 20%;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(96, 166, 219, 0.08), rgba(168, 224, 99, 0.08), rgba(243, 154, 66, 0.06));
  pointer-events: none;
  z-index: 0;
}

.visual-process .diagram-lines path {
  stroke: rgba(83, 145, 196, 0.42);
  stroke-width: 2.3;
  stroke-dasharray: none;
  animation: visualFlow 14s ease-in-out infinite;
}

.visual-process .diagram-core {
  width: 206px;
  padding: 1rem 0.95rem;
  border-radius: 18px;
  border-color: rgba(27, 78, 122, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(241, 248, 255, 0.93));
  box-shadow: 0 12px 26px rgba(16, 52, 86, 0.14);
}

.visual-process .core-kicker {
  opacity: 0.82;
  font-size: 0.67rem;
  margin-bottom: 0.22rem;
}

.visual-process .diagram-core strong {
  font-size: 1.03rem;
}

.visual-process .diagram-node {
  width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  gap: 0;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(28, 86, 130, 0.28);
  background: linear-gradient(180deg, #ffffff, #eaf4fd);
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 0 4px rgba(86, 171, 47, 0.12), 0 8px 16px rgba(16, 54, 91, 0.12);
  animation: nodePulse 6.8s ease-in-out infinite;
}

.visual-process .diagram-node::before {
  width: 0.48rem;
  height: 0.48rem;
  box-shadow: 0 0 0 4px rgba(86, 171, 47, 0.16), 0 0 11px rgba(86, 171, 47, 0.38);
}

.visual-process .diagram-node::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(86, 171, 47, 0.34);
  opacity: 0.7;
}

@keyframes lineFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -340;
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.18rem);
  }
}

@keyframes visualFlow {
  0%,
  100% {
    opacity: 0.4;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.78;
    transform: translate3d(-3px, 2px, 0);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes stickyDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-1.7px) rotate(-1.2deg);
  }
}

@keyframes stringFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -64;
  }
}

@keyframes armMove {
  0%,
  100% {
    stroke-width: 5.2;
  }
  50% {
    stroke-width: 5.8;
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes diagramGlow {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.48;
    transform: translate3d(5%, 8%, 0);
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(17, 52, 90, 0.06);
}

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

.current-topics-section {
  position: relative;
  padding-top: 3.3rem;
  padding-bottom: 3.2rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9fd 100%);
  border-top: 0;
}

.current-topics-kicker {
  margin: 0 0 0.35rem;
  color: var(--kicker-green);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.current-topics-section h2 {
  margin-bottom: 1rem;
}

.current-topics-intro {
  margin: 0;
  max-width: 78ch;
  color: #4f6f90;
}

.current-topics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.84fr) minmax(0, 0.84fr);
  gap: 0.9rem;
  margin-top: 2.05rem;
  align-items: start;
}

.current-topics-grid .current-topic-card:nth-child(2),
.current-topics-grid .current-topic-card:nth-child(3) {
  align-self: center;
}

.current-topic-card {
  border: 1px solid #c9d9e8;
  border-radius: 14px;
  padding: 0;
  background: linear-gradient(180deg, #ffffff, #f6fbff 72%, #f2f7fc 100%);
  box-shadow: 0 10px 22px rgba(17, 52, 90, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: clamp(280px, 23vw, 350px);
}

.current-topic-card:not(.is-featured) {
  border-color: rgba(86, 171, 47, 0.58);
  display: flex;
  flex-direction: column;
  height: clamp(280px, 23vw, 350px);
}

.current-topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 52, 90, 0.12);
}

.current-topic-card.is-featured {
  display: flex;
  flex-direction: column;
  border-color: #d9852f;
  box-shadow:
    0 18px 34px rgba(18, 58, 97, 0.16),
    0 0 0 2px rgba(243, 154, 66, 0.24);
  transform: translateY(-4px);
  min-height: clamp(342px, 28vw, 430px);
}

.current-topic-card.is-featured .current-topic-head {
  padding: 1.08rem 1.15rem 1rem;
}

.current-topic-card.is-featured .current-topic-head::after {
  background: linear-gradient(90deg, rgba(243, 154, 66, 0), rgba(243, 154, 66, 0.95), rgba(247, 176, 93, 0.9), rgba(243, 154, 66, 0));
}

.current-topic-card.is-featured .current-topic-head h3 {
  font-size: 1.18rem;
}

.current-topic-card.is-featured .current-topic-icon {
  width: 1.95rem;
  height: 1.95rem;
  font-size: 0.74rem;
}

.current-topic-card.is-featured .current-topic-body {
  padding: 1.02rem 1.15rem 1.24rem;
  flex: 1 1 auto;
}

.current-topic-head {
  position: relative;
  padding: 0.92rem 1rem 0.88rem;
  border-bottom: 0;
  background: linear-gradient(180deg, #ffffff, #edf5fd);
  text-align: center;
}

.current-topic-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(86, 171, 47, 0), rgba(86, 171, 47, 0.95), rgba(168, 224, 99, 0.9), rgba(86, 171, 47, 0));
}

.current-topic-head h3 {
  margin: 0;
  color: #123f67;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.current-topic-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #1a476f;
  border: 1px solid rgba(58, 124, 179, 0.36);
  background: linear-gradient(180deg, #ffffff, #e8f2fc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.current-topic-badge {
  position: absolute;
  top: 0.44rem;
  right: -2.18rem;
  display: inline-block;
  min-width: 8rem;
  padding: 0.24rem 0.72rem 0.24rem;
  border-radius: 0;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  color: #103554;
  background: linear-gradient(90deg, #f39a42, #f7b05d);
  box-shadow: 0 6px 14px rgba(112, 67, 24, 0.28);
  transform: rotate(32deg);
  transform-origin: 50% 50%;
  z-index: 2;
}

.current-topic-body {
  padding: 0.88rem 1rem 1.05rem;
}

.current-topic-card p {
  margin: 0;
  color: #4f6f90;
}

.current-topic-card:not(.is-featured) .current-topic-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}

.current-topic-status {
  margin-top: 0.55rem;
  color: #1f4f79;
  font-size: 0.92rem;
}

.current-topic-status strong {
  color: #17456d;
}

.current-topic-card.is-featured .current-topic-status {
  margin-top: auto;
  margin-bottom: 0.45rem;
  padding: 0.34rem 0.52rem;
  border-left: 4px solid #56ab2f;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(33, 83, 126, 0.12), rgba(33, 83, 126, 0.04));
}

.current-topic-card.is-featured .current-topic-status strong {
  color: #103554;
  letter-spacing: 0.01em;
}

.current-topic-card.is-featured .current-topic-body {
  display: flex;
  flex-direction: column;
}

.current-topic-timer {
  margin: 0 0 0.62rem;
  min-height: 38px;
  padding: 0.34rem 0.58rem;
  border-radius: 9px;
  border: 1px solid rgba(147, 172, 196, 0.56);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  background: linear-gradient(90deg, rgba(232, 241, 250, 0.95), rgba(238, 246, 252, 0.95));
}

.current-topic-timer-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a476f;
}

.current-topic-timer-value {
  font-size: 0.86rem;
  font-weight: 700;
  color: #133f67;
  text-align: right;
}

.current-topic-timer.is-running {
  border-color: rgba(90, 164, 58, 0.64);
  background: linear-gradient(90deg, rgba(86, 171, 47, 0.26), rgba(168, 224, 99, 0.3));
}

.current-topic-timer.is-expired {
  border-color: rgba(217, 133, 47, 0.92);
  background: linear-gradient(90deg, rgba(243, 154, 66, 0.5), rgba(247, 176, 93, 0.58));
}

.current-topic-timer.is-expired .current-topic-timer-label,
.current-topic-timer.is-expired .current-topic-timer-value {
  color: #103554;
}

.current-topic-reference {
  margin-top: auto;
  padding-top: 0.56rem;
  border-top: 1px solid #d7e3ef;
}

.current-topic-reference a {
  color: #17456d;
  font-weight: 700;
  text-decoration: none;
}

.current-topic-reference a:hover,
.current-topic-reference a:focus-visible {
  color: #0f3659;
  text-decoration: underline;
}

.current-topic-card ul {
  margin: 0.72rem 0 0;
  padding-left: 1.05rem;
  color: #35597b;
}

.current-topic-card.is-featured ul {
  margin-top: 0.32rem;
  padding: 0.22rem 0 0;
  list-style: none;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.current-topic-card.is-featured li {
  position: relative;
  padding-left: 1.1rem;
  font-weight: 600;
}

.current-topic-card.is-featured li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #56ab2f, #a8e063);
  box-shadow: 0 0 0 3px rgba(86, 171, 47, 0.14);
}

.current-topic-card li + li {
  margin-top: 0.18rem;
}

.current-topics-cta-section {
  position: relative;
  padding-top: 2.6rem;
  padding-bottom: 3.1rem;
  border-top: 1px solid #dce8f3;
}

.current-topics-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(96, 166, 219, 0.13), transparent 36%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9fd 100%);
  z-index: 0;
}

.current-topics-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
}

.current-topics-cta-shell h2 {
  margin-bottom: 0.45rem;
}

.current-topics-cta-shell p {
  margin: 0;
  color: #4f6f90;
  max-width: 62ch;
}

.intake-signals-section {
  position: relative;
  padding-top: 3.3rem;
  padding-bottom: 3.2rem;
  background: var(--bg);
  border-top: 0;
}

.intake-signals-section .container,
.intake-outcome-section .container,
#kontakt.section .container,
.contact-section .container {
  position: relative;
  z-index: 1;
}

.intake-signals-section h2,
.intake-outcome-section h2,
#kontakt.section h2,
.contact-section h2 {
  font-size: clamp(2rem, 3vw, 2.55rem);
  margin-bottom: 1rem;
}

.intake-signals {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.intake-signals li {
  position: relative;
  display: grid;
  gap: 0.24rem;
  padding: 0.85rem 0.9rem 0.85rem 2rem;
  border: 1px solid #c9d9e8;
  border-radius: 11px;
  background: linear-gradient(180deg, #ffffff, #f7fbff 70%, #f2f7fc);
  box-shadow: 0 7px 17px rgba(17, 52, 90, 0.07);
}

.intake-signals li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f39a42, #f7b05d);
  box-shadow: 0 0 0 4px rgba(243, 154, 66, 0.2);
}

.intake-signals strong {
  color: #143e65;
  font-size: 1.04rem;
  line-height: 1.2;
}

.intake-signals p {
  margin: 0;
  color: #4f6f90;
}

.outcome-flow {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.outcome-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.5rem 0.15rem 0.25rem;
}

.outcome-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% - 0.25rem);
  top: 1.05rem;
  width: calc(1.1rem + 0.4rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(86, 171, 47, 0.55), rgba(57, 127, 188, 0.38));
}

.outcome-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid #79b452;
  background: linear-gradient(120deg, #56ab2f, #a8e063);
  color: #143e65;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 0 4px rgba(86, 171, 47, 0.16);
}

.outcome-step h3 {
  margin: 0 0 0.2rem;
  color: #123f67;
  font-size: 1.18rem;
}

.outcome-step p {
  margin: 0;
  color: #4f6f90;
  font-size: 0.98rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.facts div {
  position: relative;
  border: 1px solid #c9d9e8;
  border-left: 3px solid var(--brand);
  background: linear-gradient(180deg, #ffffff, #f8fbff 58%, #f2f7fc);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  box-shadow: 0 10px 23px rgba(17, 52, 90, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.facts div::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -34px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 171, 47, 0.2), rgba(86, 171, 47, 0));
  pointer-events: none;
}

.facts div:hover {
  transform: translateY(-3px);
  border-color: #9fc2e3;
  box-shadow: 0 13px 28px rgba(17, 52, 90, 0.12);
}

.facts strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #143e65;
  font-size: 1.22rem;
  line-height: 1.2;
}

.facts span {
  color: var(--muted);
  font-size: 0.98rem;
}

.intake-outcome-section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3.2rem;
  border-top: 1px solid #dce8f3;
}

.intake-outcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 16%, rgba(96, 166, 219, 0.13), transparent 36%),
    linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
  z-index: 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.intake-outcome-section .card {
  border-color: #c8d8e8;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  min-height: 170px;
  padding: 1.08rem 1rem 1rem;
}

.intake-outcome-section .card h3 {
  margin: 0 0 0.36rem;
  color: #123f67;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.intake-outcome-section .card p {
  margin: 0;
  color: #4f6f90;
}

.contact-section,
#kontakt.section {
  position: relative;
  padding-top: 4.4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.contact-section::before,
#kontakt.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 88%, rgba(109, 169, 216, 0.1), transparent 48%),
    radial-gradient(circle at 84% 84%, rgba(96, 166, 219, 0.08), transparent 46%),
    linear-gradient(180deg, #f6fafd 0%, #f4f8fd 42%, #f7fbff 100%);
  z-index: 0;
}

.contact-section .contact-wrap > div,
#kontakt.section .contact-wrap > div {
  align-self: center;
  padding-top: 0;
}

.contact-section .contact-wrap p,
#kontakt.section .contact-wrap p {
  max-width: 62ch;
}

.contact-lead {
  padding: 1.3rem 0 0.9rem;
  max-width: none;
  justify-self: stretch;
  grid-column: 1 / -1;
  display: grid;
  gap: 0.52rem;
}

.contact-lead h2 {
  margin: 0;
  letter-spacing: -0.015em;
}

.contact-lead p {
  margin: 0;
  color: #35597b;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(230px, 0.68fr);
  gap: 0;
  background:
    radial-gradient(circle at 90% 94%, rgba(109, 169, 216, 0.08), transparent 44%),
    linear-gradient(180deg, #ffffff, #f7fbff 70%, #f2f7fd 100%);
  border: 1px solid #cedceb;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 10px 22px rgba(17, 52, 90, 0.08);
}

.contact-form {
  display: grid;
  gap: 0.86rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 2.4rem 2.2rem 2rem;
  box-shadow: none;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.contact-info {
  border-left: 1px solid #dee8f3;
  padding: 2.15rem 2rem 2rem;
}

.contact-info h3 {
  margin: 0 0 1.45rem;
  color: #123f67;
  font-size: clamp(1.52rem, 1.9vw, 1.95rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.12rem;
}

.contact-info-list li {
  display: grid;
  grid-template-columns: 1.45rem minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  margin: 0;
  padding: 0.18rem 0;
  border-bottom: 0;
}

.contact-info-list li + li {
  margin-top: 0.18rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(157, 184, 210, 0.34);
}

.contact-info-list li:last-child {
  padding-bottom: 0.2rem;
}

.contact-info a {
  color: #123f67;
  font-weight: 640;
  text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  color: #0c3152;
  text-decoration: underline;
}

.contact-info p {
  margin: 0;
  color: #35597b;
  line-height: 1.5;
}

.contact-info-copy {
  min-width: 0;
  display: grid;
  gap: 0;
}

.contact-info-icon {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  margin-top: 0.02rem;
}

.contact-info-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, var(--ci-green-start), var(--ci-green-end));
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.contact-info-icon-phone::before {
  -webkit-mask-image: url("/assets/img/icon-phone-line.svg");
  mask-image: url("/assets/img/icon-phone-line.svg");
}

.contact-info-icon-mail::before {
  -webkit-mask-image: url("/assets/img/icon-mail-line.svg");
  mask-image: url("/assets/img/icon-mail-line.svg");
}

.contact-info-icon-whatsapp::before {
  -webkit-mask-image: url("/assets/img/icon-whatsapp.svg");
  mask-image: url("/assets/img/icon-whatsapp.svg");
}

.contact-info-icon-clock::before {
  -webkit-mask-image: url("/assets/img/icon-clock-line.svg");
  mask-image: url("/assets/img/icon-clock-line.svg");
}

.contact-form label {
  font-weight: 600;
  color: #123f67;
}

.message-prefill-note {
  margin-left: 0.35rem;
  font-weight: 500;
  font-size: 0.9em;
  color: #4f6f8f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #aac7e4;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--fg);
  padding: 0.7rem 0.8rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form textarea {
  min-height: 10rem;
  resize: none;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #8db4dc;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ci-green-border);
  box-shadow: 0 0 0 3px rgba(86, 171, 47, 0.24);
  background: linear-gradient(180deg, #ffffff, #f3faec);
}

.contact-section .btn.btn-primary,
#kontakt.section .btn.btn-primary {
  justify-self: start;
  min-width: 210px;
  padding-inline: 1.35rem;
  border-color: var(--ci-green-border);
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  color: var(--btn-text-main);
}

.contact-section .btn.btn-primary:hover,
.contact-section .btn.btn-primary:focus-visible,
#kontakt.section .btn.btn-primary:hover,
#kontakt.section .btn.btn-primary:focus-visible {
  border-color: var(--ci-green-border);
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  color: var(--btn-text-main);
  filter: brightness(1.06);
}


.consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 500;
  color: var(--muted);
}

.consent input {
  width: auto;
  margin-top: 0.25rem;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  font-weight: 700;
}

.form-status.ok {
  color: var(--ok);
}

.form-status.err {
  color: var(--danger);
}

.site-footer {
  position: relative;
  margin-top: 0;
  border-top: 1px solid #20496f;
  padding: 2.5rem 0 1.2rem;
  background:
    radial-gradient(circle at 13% -12%, rgba(168, 224, 99, 0.22), transparent 42%),
    radial-gradient(circle at 92% -4%, rgba(57, 127, 188, 0.26), transparent 44%),
    linear-gradient(180deg, #0b2a4a 0%, #081f36 100%);
  color: #d5e6f8;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(86, 171, 47, 0), rgba(86, 171, 47, 0.95), rgba(168, 224, 99, 0.9), rgba(86, 171, 47, 0));
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(150px, 1fr));
  gap: 0.95rem 2.8rem;
  align-items: start;
}

.footer-brand-block {
  border: 1px solid rgba(183, 205, 227, 0.65);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.93));
  color: #21496f;
  box-shadow: 0 11px 24px rgba(12, 38, 64, 0.25);
}

.footer-logo-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: min(100%, 245px);
  height: auto;
  max-height: 50px;
}

.footer-brand-block p {
  margin: 0.72rem 0 0.7rem;
  color: #3e5f80;
  line-height: 1.5;
}

.footer-contact-links {
  display: grid;
  gap: 0.28rem;
}

.footer-contact-link {
  color: #12436d;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #0b2c4d;
}

.footer-column h3 {
  margin: 0 0 0.6rem;
  color: #f4f9ff;
  font-size: 1.02rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.34rem;
}

.footer-column li {
  color: #c8dbef;
  font-size: 0.94rem;
}

.footer-column a {
  color: #c8dbef;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-social {
  margin-top: 0.68rem;
  display: flex;
  align-items: center;
  gap: 0.46rem;
}

.footer-social .social-link {
  width: 30px;
  height: 30px;
  border-color: rgba(225, 237, 250, 0.42);
  background: rgba(255, 255, 255, 0.07);
  color: #d5e6f8;
}

.footer-social .social-icon {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(179, 203, 227, 0.3);
  padding-top: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #c0d5ea;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-meta {
  color: #d2e5f7;
}

@media (prefers-reduced-motion: reduce) {
  .service-tile,
  .timeline-card,
  .diagram-core,
  .diagram-node,
  .diagram-lines path,
  .process-diagram::before,
  .workshop-ambient,
  .sticky,
  .string,
  .person-arm,
  .partner-logo-marquee {
    animation: none;
  }

  .service-tile {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .footer-main {
    grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(180px, 1fr));
  }

  .footer-column:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 6.6rem;
  }

  section[id] {
    scroll-margin-top: 6.6rem;
  }


  .hero-grid,
  .contact-wrap,
  .cards,
  .facts {
    grid-template-columns: 1fr;
  }

  .services-tiles-section.services-tiles-overlap {
    --services-tiles-overlap: 3.8rem;
    padding: 0 0 2rem;
  }

  .services-tiles-grid {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .service-tile {
    min-height: 204px;
  }

  .service-face {
    padding: 0.94rem 0.82rem 0.86rem;
  }

  .service-face::before {
    width: min(70%, 170px);
    height: 16px;
  }

  .service-face-back {
    padding-top: 1.05rem;
  }

  .service-logo-slot {
    width: 84px;
    height: 84px;
    margin-bottom: 0.82rem;
  }

  .service-logo {
    width: 96px;
    height: 62px;
    margin-bottom: 0.72rem;
  }

  .services-bridge-section {
    padding: 0.9rem 0 0.82rem;
  }

  .bridge-intro {
    max-width: 100%;
  }


  .services-cta-shell {
    grid-template-columns: 1fr;
  }

  .services-cta-actions {
    justify-content: flex-start;
  }

  .partner-strip-section {
    padding: 1.05rem 0 1.25rem;
  }

  .partner-logo-marquee {
    animation-duration: 12s;
  }

  .partner-logo-track {
    gap: 0.9rem;
  }

  .partner-logo-item {
    width: 140px;
    min-height: 40px;
  }

  .partner-logo-item img {
    max-width: 125px;
    max-height: 32px;
  }

  .top-contact-wrap {
    min-height: 30px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.7rem;
    padding: 0.2rem 0;
  }

  .top-contact-left {
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 0.5rem;
    min-height: 66px;
    padding: 0.66rem 0;
  }

  .nav-burger {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 2;
    width: auto;
    justify-content: center;
  }

  .nav-logo {
    width: min(100%, 206px);
    max-height: 38px;
  }

  .lang-switcher {
    grid-column: 3;
    justify-self: end;
  }

  .nav-wrap.has-mobile-menu .main-nav {
    position: absolute;
    top: calc(100% + 0.32rem);
    left: 0;
    width: min(300px, calc(100vw - 2rem));
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 0.42rem;
    padding: 0.65rem;
    border: 1px solid #c6d4e2;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f7fafd);
    box-shadow: 0 8px 18px rgba(16, 58, 100, 0.13);
    z-index: 35;
  }

  .nav-wrap.has-mobile-menu.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 38px;
    padding: 0.4rem 0.8rem;
    font-size: 0.99rem;
  }

  .lang-trigger {
    width: 38px;
    height: 38px;
    min-height: 38px;
    min-width: 38px;
    padding: 0;
  }

  .lang-menu {
    min-width: 122px;
    right: 0;
    transform: translateY(-6px);
  }

  .lang-switcher.open .lang-menu {
    transform: translateY(0);
  }

  .services-tiles-section.services-tiles-overlap {
    --services-tiles-overlap: 2.8rem;
    padding: 0 0 1.2rem;
  }

  .journey-question-section {
    padding: 0.9rem 0 2rem;
  }

  .metrics-shell {
    gap: 0.62rem;
    padding-inline: 0.42rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    justify-content: stretch;
  }

  .metric-item {
    padding: 0.78rem 0.88rem 0.82rem;
    border: 1px solid #d5e3f0;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 253, 0.96));
    box-shadow: 0 8px 18px rgba(17, 55, 89, 0.08);
  }

  .metric-item::before {
    width: 36px;
    margin-bottom: 0.3rem;
  }

  .metric-label {
    font-size: 0.68rem;
    letter-spacing: 0.065em;
  }

  .metric-value {
    font-size: clamp(1.48rem, 6vw, 1.82rem);
  }

  .metric-detail {
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .hero {
    padding: 6.8rem 0 9.2rem;
  }

  .hero-grid {
    transform: translateY(-0.7rem);
  }

  .hero-grid > div:first-child {
    padding-right: 0;
    padding-left: 1.3rem;
  }

  .hero-panel {
    display: none;
  }

  .services-bridge-section {
    padding: 0.9rem 0 0.82rem;
  }

  .bridge-intro {
    max-width: 100%;
  }

  .journey-shell {
    display: block;
  }

  .journey-layout {
    display: block;
  }

  .journey-timeline {
    --timeline-indent: 1.85rem;
    --timeline-step-shift: -1.26rem;
    --timeline-card-max: 100%;
    padding: 0.16rem 0.35rem 0.2rem var(--timeline-indent);
    margin-bottom: 1.05rem;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    transform: none;
  }

  .process-diagram {
    min-height: 352px;
  }

  .process-photo-card {
    margin-top: 0;
    height: auto;
    min-height: 332px;
    width: 100%;
    margin-right: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(160deg, #f4f8fc, #edf4fb);
  }

  .process-photo {
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: 56% center;
  }

  .process-photo-card::before,
  .process-photo-card::after {
    display: none;
  }

  .process-photo-frame {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    clip-path: none;
    border-radius: 16px;
  }

  .workshop-scene {
    min-height: 332px;
  }

  .workshop-illustration {
    transform: scale(1.02);
    transform-origin: 50% 50%;
  }

  .diagram-core {
    width: min(74%, 224px);
  }

  .diagram-node {
    font-size: 0.76rem;
    min-height: 32px;
    padding: 0.26rem 0.54rem;
  }

  .visual-process .diagram-core {
    width: min(70%, 210px);
  }

  .visual-process .diagram-node {
    width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
  }

  .node-a {
    left: 6%;
    top: 8%;
  }

  .node-b {
    right: 6%;
    top: 8%;
  }

  .node-c {
    right: 3%;
    top: 43%;
  }

  .node-d {
    left: 8%;
    bottom: 8%;
  }

  .node-e {
    right: 12%;
    bottom: 3%;
  }

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

  .current-topics-section,
  .current-topics-cta-section {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .current-topics-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .current-topic-card:not(.is-featured) {
    height: auto;
  }

  .current-topic-card.is-featured {
    transform: none;
  }

  .current-topic-badge {
    top: 0.34rem;
    right: -1.9rem;
    min-width: 7.2rem;
    font-size: 0.58rem;
  }

  .current-topics-cta-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .intake-signals-section,
  .intake-outcome-section,
  #kontakt.section,
  .contact-section {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .intake-signals-section h2,
  .intake-outcome-section h2,
  #kontakt.section h2,
  .contact-section h2 {
    font-size: clamp(1.78rem, 6vw, 2.2rem);
  }

  .section > .container > h2,
  .journey-head h2,
  .services-cta-shell h2,
  .current-topics-section h2,
  .current-topics-cta-shell h2,
  .contact-lead h2 {
    font-size: clamp(1.78rem, 6vw, 2.2rem);
  }

  .intake-outcome-section .card {
    min-height: 0;
  }

  .intake-outcome-section .card h3 {
    font-size: clamp(1.24rem, 4.6vw, 1.54rem);
  }

  .intake-signals li {
    padding-left: 1.85rem;
  }

  .intake-signals li::before {
    left: 0.82rem;
  }

  .outcome-flow {
    grid-template-columns: 1fr;
    gap: 0.82rem;
  }

  .outcome-step {
    padding: 0.45rem 0;
  }

  .outcome-step:not(:last-child)::after {
    left: 0.92rem;
    top: calc(100% - 0.1rem);
    width: 2px;
    height: 1.1rem;
    background: linear-gradient(180deg, rgba(86, 171, 47, 0.55), rgba(57, 127, 188, 0.38));
  }

  .contact-lead {
    padding: 0.8rem 0 0.55rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .contact-info {
    border-left: 0;
    border-top: 1px solid #d8e5f2;
    padding: 1.35rem 1.2rem 1.25rem;
  }

  .contact-form {
    padding: 1.35rem 1.2rem 1.25rem;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


.legal-title-gradient {
  color: var(--ci-green-start);
  background-image: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.legal-detail-grid {
  margin: 0.56rem 1.05rem 0.92rem;
}

.legal-detail-row {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  column-gap: 1rem;
  align-items: baseline;
}

.legal-detail-row + .legal-detail-row {
  margin-top: 0.16rem;
}

.legal-detail-key,
.legal-detail-value {
  margin: 0;
  padding: 0.04rem 0;
  color: #2e4d6b;
  line-height: 1.14;
}

.legal-detail-key {
  font-weight: 700;
}

@media (max-width: 640px) {
  .legal-detail-grid {
    margin-left: 0.78rem;
    margin-right: 0.78rem;
  }

  .legal-detail-row {
    grid-template-columns: 1fr;
    row-gap: 0.08rem;
  }

  .legal-detail-row + .legal-detail-row {
    margin-top: 0.24rem;
  }
}

.assessment-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 14%, rgba(109, 169, 216, 0.24), transparent 38%),
    radial-gradient(circle at 84% 12%, rgba(168, 224, 99, 0.22), transparent 36%),
    linear-gradient(180deg, #0f2f50 0%, #12385a 56%, #102f4d 100%);
}

.assessment-stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.8vw, 2.4rem) 1rem;
}

.assessment-shell {
  width: min(880px, 100%);
  border: 1px solid #c9d9ea;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.94));
  box-shadow: 0 24px 54px rgba(15, 52, 88, 0.18);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.assessment-head {
  padding: 1rem 1.2rem 0.65rem;
  border-bottom: 1px solid #d5e2ef;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.94));
}

.assessment-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.assessment-logo {
  width: 172px;
  height: auto;
}

.assessment-back-link {
  color: #f39a42;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.assessment-back-link:hover,
.assessment-back-link:focus-visible {
  color: #df852c;
  text-decoration: underline;
}

.assessment-head h1 {
  margin: 0.58rem 0 0.24rem;
  color: #103a61;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  line-height: 1.2;
}

.assessment-head p {
  margin: 0;
  color: #3b5f80;
  line-height: 1.42;
}

.assessment-disclaimer-top {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: #5b7190;
}

.assessment-progress {
  padding: 0.9rem 1.2rem 0.35rem;
}

.assessment-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.34rem;
  color: #34597b;
  font-weight: 700;
  font-size: 0.92rem;
}

.assessment-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #dbe7f2;
  overflow: hidden;
}

.assessment-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--ci-green-start), var(--ci-green-end));
  transition: width 0.2s ease;
}

.assessment-body {
  padding: 0.78rem 1.2rem 1.15rem;
}

.assessment-question-title {
  margin: 0 0 0.72rem;
  color: #153d66;
  font-size: clamp(1.15rem, 2.1vw, 1.42rem);
  line-height: 1.28;
}

.assessment-question-hint {
  margin: -0.16rem 0 0.66rem;
  color: #5a7390;
  font-size: 0.92rem;
  line-height: 1.34;
}

.assessment-options {
  display: grid;
  gap: 0.56rem;
}

.assessment-options.has-error .assessment-option {
  border-color: #d79b9b;
}

.assessment-option {
  width: 100%;
  text-align: left;
  border: 1px solid #c5d6e7;
  border-radius: 14px;
  padding: 0.68rem 0.8rem;
  background: linear-gradient(180deg, #ffffff, #f3f8fd);
  color: #214869;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.assessment-option:hover,
.assessment-option:focus-visible {
  border-color: #8fb1d1;
  box-shadow: 0 5px 14px rgba(22, 67, 106, 0.12);
}

.assessment-option.is-selected {
  border-color: #68b23f;
  background: linear-gradient(180deg, #f8fff4, #f0fae8);
  box-shadow: 0 8px 16px rgba(86, 171, 47, 0.16);
}

.assessment-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.assessment-actions .btn {
  min-width: 160px;
}

.assessment-back-next {
  margin-left: auto;
  display: flex;
  gap: 0.7rem;
}

.assessment-back-next #assessment-back[hidden] {
  display: none !important;
}

.assessment-validation {
  margin: 0.55rem 0 0;
  color: #9a2f2f;
  font-size: 0.92rem;
  line-height: 1.28;
  min-height: 1.2rem;
}

.assessment-validation:not(.is-visible) {
  visibility: hidden;
}

.assessment-result[hidden] {
  display: none;
}

.assessment-result {
  border-top: 1px solid #d5e2ef;
  margin-top: 7rem;
  padding-top: 0.95rem;
}

.assessment-result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 0.95rem;
  align-items: start;
  padding: 0.8rem 0.85rem;
  border: 1px solid #d3e4f3;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 255, 0.94));
}

.assessment-result.is-low .assessment-result-layout {
  border-color: #c9e7bb;
  box-shadow: 0 10px 22px rgba(64, 137, 40, 0.13);
}

.assessment-result.is-medium .assessment-result-layout {
  border-color: #f0d9b8;
  box-shadow: 0 10px 22px rgba(151, 101, 17, 0.14);
}

.assessment-result.is-high .assessment-result-layout {
  border-color: #f2cbcb;
  box-shadow: 0 10px 22px rgba(159, 47, 47, 0.15);
}

.assessment-result-main {
  min-width: 0;
}

.assessment-result-headline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.assessment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 0.75rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.assessment-result-score {
  margin: 0;
  border: 1px solid #cadcee;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  background: linear-gradient(180deg, #f4f9ff, #ebf4fc);
  color: #22486d;
  font-size: 0.84rem;
  font-weight: 700;
}

.assessment-badge.low {
  background: #e6f4df;
  color: #2f6c1a;
}

.assessment-badge.medium {
  background: #fff1dd;
  color: #8a4c06;
}

.assessment-badge.high {
  background: #ffe4e4;
  color: #8c2c2c;
}

.assessment-traffic {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.4rem;
  border: 1px solid #cfdfee;
  border-radius: 14px;
  padding: 0.6rem 0.62rem;
  background: linear-gradient(180deg, #ffffff, #eef5fc);
}

.assessment-traffic-title {
  margin: 0;
  color: #355b7d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.assessment-traffic-light {
  display: grid;
  gap: 0.34rem;
  border-radius: 999px;
  padding: 0.38rem 0.48rem;
  background: linear-gradient(180deg, #e8eff7, #dce8f3);
}

.assessment-traffic-dot {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  opacity: 0.4;
  transition: opacity 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.assessment-traffic-dot.dot-high {
  background: #f1b6b3;
}

.assessment-traffic-dot.dot-medium {
  background: #efd7a5;
}

.assessment-traffic-dot.dot-low {
  background: #badcab;
}

.assessment-traffic-dot.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.assessment-traffic-dot.dot-high.is-active {
  background: linear-gradient(180deg, #ff7c72, #e94e46);
  box-shadow: 0 0 0 3px rgba(232, 95, 89, 0.24);
}

.assessment-traffic-dot.dot-medium.is-active {
  background: linear-gradient(180deg, #ffd06e, #f1ae2d);
  box-shadow: 0 0 0 3px rgba(242, 177, 58, 0.24);
}

.assessment-traffic-dot.dot-low.is-active {
  background: linear-gradient(180deg, #87cf63, #5ca83b);
  box-shadow: 0 0 0 3px rgba(102, 181, 66, 0.22);
}

.assessment-traffic-label {
  margin: 0;
  color: #35597a;
  font-size: 0.8rem;
  line-height: 1.28;
  text-align: center;
}

.assessment-result h3 {
  margin: 0 0 0.28rem;
  font-size: clamp(1.25rem, 2.3vw, 1.45rem);
  color: #163f66;
}

.assessment-result p {
  margin: 0.14rem 0;
  color: #305373;
}

.assessment-measures-wrap {
  margin-top: 0.8rem;
  padding: 0.85rem;
  border: 1px solid #d4e4f2;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(241, 248, 255, 0.92));
}

.assessment-result.is-low .assessment-measures-wrap {
  border-color: #cae7ba;
  background: linear-gradient(180deg, rgba(246, 253, 241, 0.95), rgba(240, 250, 235, 0.9));
}

.assessment-result.is-medium .assessment-measures-wrap {
  border-color: #f0d9b8;
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.96), rgba(253, 245, 232, 0.9));
}

.assessment-result.is-high .assessment-measures-wrap {
  border-color: #f2cccc;
  background: linear-gradient(180deg, rgba(255, 245, 245, 0.96), rgba(252, 237, 237, 0.9));
}

.assessment-measures-title {
  margin: 0;
  color: #183f65;
  font-weight: 700;
}

.assessment-disclaimer {
  margin: 0.95rem 0 1rem;
  padding: 0.7rem 0.78rem;
  border: 1px solid #cddff1;
  border-radius: 12px;
  background: linear-gradient(180deg, #f3f8ff, #eaf3fc);
  font-size: 0.92rem;
  color: #35506c;
  line-height: 1.4;
  font-weight: 700;
}

.assessment-result ul {
  margin: 0.42rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.assessment-result li {
  position: relative;
  border: 1px solid #d3e4f2;
  border-radius: 12px;
  padding: 0.46rem 0.62rem 0.46rem 1.9rem;
  background: rgba(255, 255, 255, 0.85);
  color: #214664;
}

.assessment-result li::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #87cf63, #5ca83b);
  box-shadow: 0 0 0 3px rgba(93, 167, 58, 0.17);
}

.assessment-result.is-medium .assessment-result li::before {
  background: linear-gradient(180deg, #ffd06e, #f1ae2d);
  box-shadow: 0 0 0 3px rgba(242, 177, 58, 0.2);
}

.assessment-result.is-high .assessment-result li::before {
  background: linear-gradient(180deg, #ff7d74, #e94f48);
  box-shadow: 0 0 0 3px rgba(232, 95, 89, 0.2);
}

.assessment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.assessment-result-actions .btn {
  padding: 0.54rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.2;
  border-radius: 10px;
}

@media (max-width: 760px) {
  .assessment-head,
  .assessment-progress,
  .assessment-body {
    padding-left: 0.86rem;
    padding-right: 0.86rem;
  }

  .assessment-brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .assessment-actions {
    flex-direction: column;
    align-items: start;
  }

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

  .assessment-back-next {
    width: 100%;
    margin-left: 0;
    display: grid;
    gap: 0.55rem;
  }

  .assessment-result-layout {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.72rem;
  }

  .assessment-traffic {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    gap: 0.38rem 0.72rem;
  }

  .assessment-traffic-title {
    grid-column: 1 / -1;
  }

  .assessment-traffic-light {
    display: flex;
    gap: 0.3rem;
    padding: 0.34rem 0.45rem;
  }

  .assessment-traffic-dot {
    width: 14px;
    height: 14px;
  }

  .assessment-traffic-label {
    text-align: left;
  }

  .assessment-measures-wrap {
    padding: 0.72rem;
  }

  .assessment-result-actions .btn {
    width: 100%;
  }
}

/* Lively narrative sections (DE/EN home) */
.vitality-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 8% 14%, rgba(46, 160, 255, 0.17), transparent 35%),
    radial-gradient(circle at 92% 86%, rgba(243, 154, 66, 0.16), transparent 34%),
    linear-gradient(180deg, #eff7ff 0%, #f7fbff 46%, #ffffff 100%);
}

.vitality-head {
  max-width: 740px;
  margin: 0 0 1.4rem;
}

.vitality-kicker {
  margin: 0 0 0.45rem;
  color: #1d5f92;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.vitality-head h2 {
  margin: 0;
  color: #0f3763;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.16;
}

.vitality-head p {
  margin: 0.7rem 0 0;
  color: #2f5273;
  font-size: 1.03rem;
}

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

.vitality-card {
  border: 1px solid #c4d8eb;
  border-radius: 18px;
  padding: 1rem 1.05rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.97), rgba(239, 248, 255, 0.96)),
    linear-gradient(180deg, #ffffff, #f3f9ff);
  box-shadow: 0 16px 34px rgba(13, 52, 90, 0.12);
}

.vitality-label {
  margin: 0;
  color: #1e547f;
  font-size: 0.95rem;
  font-weight: 700;
}

.vitality-value {
  margin: 0.36rem 0 0;
  color: #0b2f53;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
}

.vitality-value span:last-child {
  color: #1a6aa2;
  font-size: 0.62em;
}

.vitality-copy {
  margin: 0.45rem 0 0;
  color: #355878;
  font-size: 0.96rem;
}

.vitality-cases {
  margin-top: 7rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vitality-case {
  border: 1px solid #bfd5e9;
  border-radius: 18px;
  padding: 1rem 1.06rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.97)),
    radial-gradient(circle at 98% 0%, rgba(243, 154, 66, 0.16), transparent 38%);
  box-shadow: 0 14px 30px rgba(16, 58, 99, 0.1);
}

.vitality-case h3 {
  margin: 0;
  color: #11406c;
  font-size: 1.06rem;
}

.vitality-case p {
  margin: 0.58rem 0 0;
  color: #305171;
}

.faq-section {
  background:
    radial-gradient(circle at 96% 16%, rgba(96, 165, 250, 0.13), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

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

.faq-head {
  max-width: 720px;
}

.faq-kicker {
  margin: 0 0 0.45rem;
  color: #245e8c;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.faq-head h2 {
  margin: 0;
  color: #123d67;
  font-size: clamp(1.55rem, 3.1vw, 2.2rem);
}

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

.faq-item {
  border: 1px solid #c5d8ea;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f5faff);
  box-shadow: 0 9px 22px rgba(13, 53, 90, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: #8eb8da;
  box-shadow: 0 14px 24px rgba(13, 53, 90, 0.12);
}

.faq-item summary {
  padding: 0.9rem 2.5rem 0.9rem 1rem;
  list-style: none;
  cursor: pointer;
  font-size: 1.03rem;
  font-weight: 700;
  color: #123f69;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-52%);
  color: #2f74a8;
  font-size: 1.24rem;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1rem 0.98rem;
  color: #355878;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .vitality-grid {
    grid-template-columns: 1fr;
  }

  .vitality-cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vitality-card,
  .vitality-case {
    padding: 0.86rem;
  }

  .faq-item summary {
    font-size: 0.98rem;
    padding-right: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Privacy pages: simplified and readable */
.privacy-main {
  padding-top: 3.1rem;
  padding-bottom: 3.3rem;
}

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

.privacy-hero {
  display: grid;
  gap: 0.45rem;
}

.privacy-hero h1 {
  margin: 0;
}

.privacy-intro {
  margin: 0;
  max-width: 82ch;
  color: #385676;
}

.privacy-toc-wrap,
.privacy-meta {
  border: 1px solid #d9e3ed;
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem 1rem;
}

.privacy-toc-title,
.privacy-meta-title {
  margin: 0 0 0.45rem;
  color: #123f67;
  font-weight: 700;
}

.privacy-toc {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: #244b71;
}

.privacy-toc li + li {
  margin-top: 0.2rem;
}

.privacy-toc a {
  color: #17456d;
  text-decoration: none;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
  text-decoration: underline;
}

.privacy-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.privacy-chip {
  border: 1px solid #dfe7f0;
  border-radius: 10px;
  background: #fbfdff;
  padding: 0.58rem 0.64rem;
}

.privacy-chip strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #18456d;
  font-size: 0.82rem;
}

.privacy-chip a,
.privacy-chip span {
  color: #2d4b68;
  text-decoration: none;
  font-weight: 600;
}

.privacy-chip a:hover,
.privacy-chip a:focus-visible {
  text-decoration: underline;
}

.privacy-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.privacy-group {
  border: 1px solid #d9e3ed;
  border-left: 4px solid #86a9c9;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.privacy-group h2 {
  margin: 0;
  padding: 0.62rem 0.92rem;
  background: #f6f9fc;
  border-bottom: 1px solid #e4ebf2;
  color: #123a61;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  scroll-margin-top: 7rem;
}

.privacy-group p,
.privacy-group ul {
  margin: 0;
  padding: 0 0.92rem 0.62rem;
  color: #2f4f6e;
  line-height: 1.5;
}

.privacy-group h2 + p,
.privacy-group h2 + ul {
  padding-top: 0.72rem;
}

.privacy-group ul {
  padding-left: 1.95rem;
}

.privacy-group li + li {
  margin-top: 0.24rem;
}

@media (max-width: 1020px) {
  .privacy-meta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .privacy-main {
    padding-top: 2.6rem;
    padding-bottom: 2.8rem;
  }

  .privacy-toc-wrap,
  .privacy-meta {
    padding: 0.8rem 0.84rem;
  }

  .privacy-group h2 {
    padding: 0.5rem 0.76rem;
    font-size: 1rem;
  }

  .privacy-group p,
  .privacy-group ul {
    padding-left: 0.76rem;
    padding-right: 0.76rem;
  }

  .privacy-group ul {
    padding-left: 1.7rem;
  }
}

/* Partner strip: optical width normalization for mixed official SVG bounds */
.partner-logo-item img[src*="partner-azure.svg"] {
  max-width: 136px;
}

.partner-logo-item img[src*="partner-fortinet.svg"] {
  max-width: 136px;
}

.partner-logo-item img[src*="partner-vmware.svg"] {
  max-width: 136px;
}

.partner-logo-item img[src*="partner-hetzner.svg"] {
  max-width: 148px;
}

.partner-logo-item img[src*="partner-ubiquiti.svg"] {
  max-width: 146px;
}

.partner-logo-item img[src*="partner-microsoft365.svg"] {
  max-width: 140px;
}

@media (max-width: 920px) {
  .partner-logo-item img[src*="partner-azure.svg"] {
    max-width: 108px;
  }

  .partner-logo-item img[src*="partner-fortinet.svg"] {
    max-width: 108px;
  }

  .partner-logo-item img[src*="partner-vmware.svg"] {
    max-width: 108px;
  }

  .partner-logo-item img[src*="partner-hetzner.svg"] {
    max-width: 118px;
  }

  .partner-logo-item img[src*="partner-ubiquiti.svg"] {
    max-width: 116px;
  }

  .partner-logo-item img[src*="partner-microsoft365.svg"] {
    max-width: 110px;
  }
}
