@font-face {
  font-family: "Inter Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("fonts/inter-latin.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Newsreader Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/newsreader-latin.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Newsreader Variable";
  font-style: italic;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/newsreader-latin-italic.woff2") format("woff2-variations");
}

:root {
  --navy: #001560;
  --navy-deep: #000c3d;
  --navy-ink: #07143d;
  --blue: #405692;
  --blue-bright: #6f83c7;
  --ice: #aeb9dc;
  --paper: #ffffff;
  --tint: #f4f6fb;
  --ink: #111826;
  --muted: #5f6978;
  --line: #dfe4ed;
  --line-dark: rgba(255, 255, 255, 0.14);
  --on-navy: #b3bdd9;
  --serif: "Newsreader Variable", Georgia, "Times New Roman", serif;
  --sans: "Inter Variable", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1180px;
  --shadow: 0 24px 80px rgba(5, 18, 59, 0.1);
}

[data-de] {
  display: none;
}

html.lang-de [data-en] {
  display: none;
}

html.lang-de [data-de] {
  display: inline;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font-family: var(--sans);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #93a8f1;
  outline-offset: 3px;
}

::selection {
  background: #b8c5ed;
  color: var(--navy-deep);
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-150%);
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(0, 14, 67, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.brand img {
  width: auto;
  height: 30px;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: var(--on-navy);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: #fff;
  transition: right 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-switch button {
  border: 0;
  background: transparent;
  color: var(--on-navy);
  cursor: pointer;
  padding: 5px;
  opacity: 0.82;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.language-switch button.active {
  color: #fff;
  opacity: 1;
}

.header-contact {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  padding: 9px 14px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 550;
  transition: background 180ms ease, border-color 180ms ease;
}

.header-contact:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: var(--navy-deep);
  border-top: 1px solid transparent;
  transition: max-height 240ms ease, border-color 240ms ease;
}

.mobile-panel nav {
  display: grid;
  padding-block: 16px 24px;
}

.mobile-panel a {
  color: var(--on-navy);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-size: 15px;
}

.mobile-panel .mobile-contact {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 18px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 42%, rgba(89, 113, 198, 0.23), transparent 27%),
    radial-gradient(circle at 58% -15%, rgba(112, 133, 202, 0.17), transparent 35%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 58%, #001047);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 0.55px, transparent 0.8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, transparent 5%, #000 60%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  right: -340px;
  top: -220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.02),
    0 0 0 180px rgba(255, 255, 255, 0.015);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 70px;
  min-height: 650px;
  align-items: center;
  padding-block: 92px 74px;
}

.hero-copy {
  animation: reveal-up 620ms ease-out both;
}

.eyebrow {
  color: var(--blue);
  font-size: 10.5px;
  line-height: 1.4;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--ice);
}

.hero h1,
.section-heading h2,
.legal-main h1,
.thanks-card h1,
.error-page h1 {
  font-family: var(--serif);
  font-weight: 420;
  letter-spacing: -0.036em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 880px;
  margin-top: 24px;
  font-size: clamp(3.2rem, 5.4vw, 5.25rem);
  line-height: 0.98;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--ice);
  font-style: italic;
  font-weight: 390;
}

.hero-intro {
  max-width: 730px;
  margin-top: 28px;
  color: var(--on-navy);
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-light {
  background: #fff;
  color: var(--navy);
}

.button-light:hover {
  background: #eef1fa;
}

.button-primary {
  background: var(--navy);
  color: #fff;
}

.button-primary:hover {
  background: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 550;
}

.text-link-light {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
  padding-bottom: 3px;
}

.hero-mark {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: reveal-mark 800ms 100ms ease-out both;
}

.hero-mark img {
  position: relative;
  z-index: 4;
  width: 58%;
  height: auto;
  opacity: 0.94;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.24));
}

.mark-glow {
  position: absolute;
  inset: 23%;
  border-radius: 50%;
  background: rgba(114, 137, 211, 0.2);
  filter: blur(32px);
}

.mark-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.mark-ring-one {
  inset: 8%;
}

.mark-ring-two {
  inset: 20%;
  border-style: dashed;
  opacity: 0.72;
}

.mark-label {
  position: absolute;
  z-index: 5;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mark-label::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 12px rgba(174, 185, 220, 0.8);
}

.mark-label-one {
  left: 2%;
  top: 29%;
}

.mark-label-two {
  right: 1%;
  top: 49%;
}

.mark-label-three {
  left: 18%;
  bottom: 11%;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip > span {
  position: relative;
  color: var(--on-navy);
  padding: 20px 20px 22px;
  font-size: 12.5px;
}

.proof-strip > span:first-child {
  padding-left: 0;
}

.proof-strip > span::before {
  content: "/";
  margin-right: 10px;
  color: var(--ice);
}

.section {
  padding-block: 112px;
}

.section-tint {
  background: var(--tint);
}

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

.section-heading h2 {
  max-width: 740px;
  margin-top: 17px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.04;
}

.section-heading h2 em {
  color: var(--blue);
}

.section-body,
.large-copy {
  color: var(--muted);
}

.large-copy {
  font-size: 1.05rem;
  line-height: 1.78;
}

.large-copy p + p {
  margin-top: 22px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid div {
  min-height: 138px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.fact-grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.fact-grid dt,
.contact-details dt {
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact-grid dd {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.35;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: 80px;
  align-items: end;
}

.section-intro > p {
  color: var(--muted);
  padding-bottom: 6px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.expertise-card {
  position: relative;
  min-height: 405px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.expertise-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue-bright));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: #c8d0df;
  box-shadow: var(--shadow);
}

.expertise-card:hover::after {
  transform: scaleX(1);
}

.card-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.expertise-card h3,
.themes-grid h3,
.steps-grid h3 {
  font-family: var(--serif);
  font-weight: 470;
  letter-spacing: -0.02em;
}

.expertise-card h3 {
  margin-top: 45px;
  font-size: 1.75rem;
  line-height: 1.05;
}

.expertise-card > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.expertise-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 30px;
  list-style: none;
}

.expertise-card li {
  background: var(--tint);
  color: var(--blue);
  border: 1px solid #e4e8f1;
  padding: 5px 9px;
  font-size: 10.5px;
  font-weight: 600;
}

.approach {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(94, 120, 207, 0.2), transparent 28%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.approach::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(#fff 0.6px, transparent 0.8px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to left, #000, transparent 70%);
  pointer-events: none;
}

.approach > .shell {
  position: relative;
  z-index: 2;
}

.approach-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.section-heading-dark h2 {
  color: #fff;
}

.section-heading-dark h2 em {
  color: var(--ice);
}

.approach-top > p {
  color: var(--on-navy);
  padding-bottom: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.steps-grid li {
  min-height: 265px;
  padding: 28px 26px;
  border-left: 1px solid var(--line-dark);
}

.steps-grid li:first-child {
  border-left: 0;
  padding-left: 0;
}

.steps-grid > li > span {
  color: var(--ice);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.steps-grid h3 {
  margin-top: 40px;
  font-size: 1.45rem;
}

.steps-grid p {
  margin-top: 12px;
  color: var(--on-navy);
  font-size: 0.88rem;
  line-height: 1.7;
}

.sap-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
  gap: 95px;
  align-items: start;
}

.sap-copy {
  max-width: 745px;
  margin-top: 32px;
}

.source-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: var(--blue);
  border-bottom: 1px solid #ccd3e3;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 650;
}

.focus-panel {
  position: sticky;
  top: 110px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.focus-heading {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ice);
  padding: 18px 22px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.focus-panel > div {
  display: grid;
  gap: 4px;
  padding: 19px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.focus-panel strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.focus-panel span {
  color: var(--on-navy);
  font-size: 0.79rem;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 62px;
}

.themes-grid article {
  padding-top: 24px;
  border-top: 2px solid var(--navy);
}

.themes-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.themes-grid h3 {
  margin-top: 28px;
  font-size: 1.55rem;
}

.themes-grid p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  background: #fff;
}

.contact-heading {
  max-width: 790px;
}

.contact-heading > p:last-child {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
  margin-top: 64px;
  align-items: start;
}

.contact-details > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.contact-details > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-details dd {
  font-size: 0.93rem;
}

.contact-details a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  background: var(--tint);
  border: 1px solid #e4e8f1;
  padding: 34px;
}

.contact-form > label,
.form-row label {
  display: block;
  margin: 18px 0 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row label {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccd3df;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  font-size: 0.92rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(64, 86, 146, 0.13);
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 450;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.privacy-check input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--navy);
}

.privacy-check a {
  color: var(--blue);
}

.form-submit {
  margin-top: 24px;
  border: 0;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  margin: -1px !important;
}

.site-footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(96, 119, 199, 0.16), transparent 30%),
    var(--navy-deep);
  color: var(--on-navy);
  padding-block: 68px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.9fr;
  gap: 70px;
}

.footer-brand img {
  height: 33px;
}

.footer-intro p {
  max-width: 480px;
  margin-top: 22px;
  font-size: 0.86rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--on-navy);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: var(--on-navy);
  text-decoration: none;
}

.legal-main {
  min-height: 70vh;
  padding-block: 92px 120px;
  background: linear-gradient(180deg, var(--tint), #fff 280px);
}

.legal-shell {
  width: min(780px, calc(100% - 48px));
  margin-inline: auto;
}

.privacy-shell {
  width: min(860px, calc(100% - 48px));
}

.legal-main h1 {
  margin-top: 16px;
  color: var(--navy-ink);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
}

.legal-lead {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
}

.last-updated {
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 650;
}

.legal-section {
  margin-top: 50px;
}

.legal-section h2 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-section address {
  font-style: normal;
  line-height: 1.8;
}

.legal-rows {
  border-top: 1px solid var(--line);
}

.legal-rows > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.legal-rows dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-rows dd {
  font-size: 0.92rem;
}

.legal-rows a,
.legal-copy a {
  color: var(--blue);
  text-underline-offset: 3px;
}

.legal-copy h2 {
  color: var(--navy-ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
}

.legal-copy p {
  color: #353e4d;
  font-size: 0.94rem;
  line-height: 1.78;
}

.legal-copy p + p {
  margin-top: 12px;
}

.back-link {
  display: inline-block;
  margin-top: 60px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}

.thanks-page {
  min-height: 76vh;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 45%, rgba(99, 123, 205, 0.26), transparent 28%),
    var(--navy-deep);
  padding: 70px 24px;
}

.thanks-card {
  max-width: 650px;
  text-align: center;
}

.thanks-card > img {
  width: 92px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 28px;
}

.thanks-card h1 {
  margin-top: 15px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
}

.thanks-card p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px auto 0;
  color: var(--on-navy);
}

.thanks-card .button {
  margin-top: 32px;
}

.static-thanks,
.static-error {
  min-height: 100vh;
  position: relative;
}

.standalone-brand {
  position: absolute;
  left: max(24px, calc((100% - var(--shell)) / 2));
  top: 28px;
}

.standalone-brand img {
  width: auto;
  height: 30px;
}

.standalone-language {
  position: absolute;
  right: max(24px, calc((100% - var(--shell)) / 2));
  top: 26px;
}

.error-page {
  min-height: 66vh;
  display: grid;
  place-content: center;
  justify-items: start;
  background: var(--tint);
  padding: 80px max(24px, calc((100% - var(--shell)) / 2));
}

.error-page h1 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--navy-ink);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.error-page > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
}

.error-page .button {
  margin-top: 30px;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-mark {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 19px; }
  .header-contact { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr); gap: 30px; }
  .split-layout, .sap-grid { gap: 60px; }
  .expertise-card { padding: 28px; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .header-tools { margin-left: auto; }
  .menu-toggle { display: flex; }
  .mobile-panel { display: block; }
  .mobile-panel.open { max-height: 480px; border-top-color: rgba(255, 255, 255, 0.1); }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 80px 50px; }
  .hero-copy { max-width: 760px; }
  .hero-mark { width: min(460px, 75vw); margin: 5px auto 0; }
  .split-layout, .sap-grid, .section-intro, .approach-top, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-grid div:nth-child(3) { border-left: 0; padding-left: 0; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 320px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid li:nth-child(3) { border-left: 0; }
  .themes-grid { grid-template-columns: 1fr; }
  .focus-panel { position: static; }
  .contact-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.5fr 0.8fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 40px, var(--shell)); }
  .header-inner { height: 68px; gap: 14px; }
  .brand img { height: 25px; }
  .language-switch { gap: 1px; }
  .language-switch button { padding: 4px; }
  .menu-toggle { width: 39px; height: 39px; }
  .hero-grid { padding-block: 62px 34px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-intro { font-size: 0.98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { min-height: 46px; }
  .hero-mark { width: min(340px, 86vw); }
  .mark-label { font-size: 7.5px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip > span { padding: 15px 8px 15px 0; font-size: 11px; }
  .section { padding-block: 78px; }
  .section-heading h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .large-copy { font-size: 0.98rem; }
  .fact-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .fact-grid div, .fact-grid div:nth-child(3) { min-height: 0; padding: 20px 0; border-left: 0; border-top: 1px solid var(--line); }
  .fact-grid div:first-child { border-top: 0; }
  .expertise-grid { margin-top: 42px; }
  .expertise-card { min-height: 350px; padding: 27px 24px; }
  .steps-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .steps-grid li, .steps-grid li:nth-child(3) { min-height: 0; padding: 25px 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .steps-grid li:first-child { border-top: 0; }
  .steps-grid h3 { margin-top: 24px; }
  .themes-grid { margin-top: 45px; }
  .contact-grid { margin-top: 45px; }
  .contact-details > div { grid-template-columns: 76px 1fr; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .form-row > div + div label { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-main { padding-block: 70px 88px; }
  .legal-shell, .privacy-shell { width: calc(100% - 40px); }
  .legal-rows > div { grid-template-columns: 1fr; gap: 3px; }
}

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