:root {
  /* BITSS Corporate Design v1.0 — Navy tragend, Orange als Akzent */
  --ink-950: #16294A;
  --ink-900: #1F3864;
  --ink-800: #1F4E79;
  --ink-700: #2E5496;
  --ink-100: #EEF3FA;
  --brand-800: #A8500F;
  --brand-700: #C25A12;
  --brand-600: #D4650F;
  --brand-500: #E8741E;
  --brand-400: #F2913F;
  --brand-50: #FDF1E7;
  --brand-gradient: linear-gradient(135deg, #E8741E 0%, #F2913F 100%);
  --brand-gradient-soft: linear-gradient(135deg, rgba(232, 116, 30, 0.14), rgba(232, 116, 30, 0.08));
  --navy-gradient: linear-gradient(125deg, #1B3157 0%, #1F3864 42%, #1F4E79 100%);
  --ink: #262B33;
  --muted: #5B6470;
  --soft: #F6F9FD;
  --white: #ffffff;
  --line: #DCE4EF;
  --line-dark: rgba(255, 255, 255, 0.16);
  --success: #196c4a;
  --warning: #9a5a05;
  --danger: #a13232;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(31, 56, 100, 0.10);
  --shadow: 0 8px 32px rgba(31, 56, 100, 0.18);
  --container: 1240px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--ink-800);
}

:focus-visible {
  outline: 3px solid rgba(31, 56, 100, 0.45);
  outline-offset: 3px;
}

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

.icon-svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.icon-mini {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.icon-list {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-950);
  border-radius: 8px;
  font-weight: 700;
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 239, 0.85);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(31, 56, 100, 0.09);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

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

.main-nav {
  min-width: 0;
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  padding: 11px 10px;
  color: #1F4E79;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink-800);
  background: var(--soft);
}

.main-nav a[aria-current="page"]::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  content: "";
  background: var(--brand-gradient);
  border-radius: 3px;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-800);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 21px;
  height: 2px;
  display: block;
  background: var(--ink-800);
  border-radius: 4px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

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

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons and links */
.btn {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--brand-gradient);
  box-shadow: 0 10px 26px rgba(232, 116, 30, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(232, 116, 30, 0.32);
}

.btn-secondary {
  color: var(--ink-800);
  background: var(--white);
  border-color: #C3CEDF;
}

.btn-secondary:hover {
  border-color: var(--ink-700);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  color: var(--white);
  background: var(--ink-800);
}

.btn-dark:hover {
  background: var(--ink-950);
  box-shadow: var(--shadow-sm);
}

.btn-inverse {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

.btn-inverse:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.btn-large {
  min-height: 54px;
  padding: 15px 24px;
  font-size: 15px;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 790;
  text-decoration: none;
}

.text-link:hover,
.card-link:hover {
  color: var(--brand-700);
}

.text-link .icon-mini,
.card-link .icon-mini {
  transition: transform 160ms ease;
}

.text-link:hover .icon-mini,
.card-link:hover .icon-mini {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover {
  color: #F6C79E;
}

.text-button {
  padding: 5px;
  color: var(--ink-700);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* Typography and section primitives */
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-800);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #F2A96B;
}

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

h1,
h2,
h3 {
  color: var(--ink-900);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 840;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 820;
  letter-spacing: -0.035em;
}

p,
li,
dt,
dd,
summary,
figcaption,
blockquote {
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 790;
  letter-spacing: -0.015em;
}

p {
  margin-bottom: 18px;
  color: var(--muted);
}

.lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #494c53;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.6;
}

.section {
  padding: 106px 0;
}

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

.section-navy,
.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-gradient);
}

.section-navy::after,
.section-dark::after {
  position: absolute;
  top: -60px;
  right: -90px;
  width: 420px;
  height: 420px;
  content: "";
  background: url("hexagon.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.section-navy > .container,
.section-dark > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading-wide {
  max-width: 910px;
}

.section-heading > p:last-child,
.section-heading > .text-link:last-child {
  margin-bottom: 0;
}

.section-heading-light h2,
.section-heading-light h3,
.section-heading-light p {
  color: var(--white);
}

.section-heading-light p {
  color: rgba(255, 255, 255, 0.73);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  align-self: start;
}

.sticky-heading h2 {
  font-size: clamp(26px, 2.3vw, 34px);
  letter-spacing: -0.028em;
}

.sticky-heading p {
  font-size: 15px;
}

.section-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.centered-actions {
  margin-top: 40px;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  padding: 92px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 8%, rgba(232, 116, 30, 0.20), transparent 34%),
    var(--navy-gradient);
}

.hero-home::after {
  position: absolute;
  top: -70px;
  right: -110px;
  width: 520px;
  height: 520px;
  content: "";
  background: url("hexagon.png") center / contain no-repeat;
  opacity: 0.09;
  pointer-events: none;
}

.hero-home h1,
.hero-home h2 {
  color: var(--white);
}

.hero-home .lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-home .hero-copy .eyebrow {
  color: #F2A96B;
}

.hero-home .microcopy {
  color: rgba(255, 255, 255, 0.62);
}

.hero-home .btn-secondary {
  color: var(--ink-900);
  background: var(--white);
  border-color: transparent;
}

.hero-glow {
  position: absolute;
  top: -230px;
  right: -170px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(232, 116, 30, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-glow::before {
  inset: 70px;
}

.hero-glow::after {
  inset: 150px;
}

.hero-grid,
.subhero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 76px;
}

.hero-copy h1 {
  max-width: 830px;
}

.microcopy {
  margin: 15px 0 0;
  color: #6C7686;
  font-size: 13px;
}

.decision-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.decision-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "";
  background: url("hexagon.png") center / contain no-repeat;
  opacity: 0.06;
  transform: rotate(-8deg);
  pointer-events: none;
}

.decision-card-top,
.decision-card .check-list,
.decision-card .text-link {
  position: relative;
  z-index: 1;
}

.decision-card .text-link {
  color: var(--ink-800);
}

.decision-card .text-link:hover {
  color: var(--brand-600);
}

.decision-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--brand-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-card h2 {
  margin-bottom: 25px;
  color: var(--ink-900);
  font-size: 29px;
  letter-spacing: -0.025em;
}

.check-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #2E5496;
}

.check-list .icon-list {
  margin-top: 3px;
  color: var(--brand-500);
}

.check-list-strong {
  margin-bottom: 28px;
}

.check-list-strong li {
  color: var(--muted);
  font-size: 15px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 40px rgba(31, 56, 100, 0.08);
}

.trust-strip > div {
  min-height: 116px;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

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

.trust-strip .icon-svg {
  width: 28px;
  height: 28px;
  color: var(--brand-500);
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.trust-strip strong {
  display: block;
  color: var(--ink-900);
  font-size: 15px;
}

/* Risk and outcome */
.risk-grid,
.service-risk-grid,
.gains-grid,
.reviews-grid,
.contact-methods,
.webinar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.risk-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.risk-card::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--brand-500), rgba(232, 116, 30, 0.12));
  border-radius: 0 0 4px 4px;
}

.risk-card > .icon-svg {
  margin-bottom: 31px;
  color: var(--ink-700);
}

.risk-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #DCE4EF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.risk-card p {
  margin-bottom: 0;
}

.outcome-layout,
.service-scope-layout,
.questions-layout,
.faq-layout,
.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: 86px;
}

.outcome-list {
  display: grid;
  gap: 15px;
}

.outcome-list article {
  padding: 25px 27px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.outcome-list h3,
.outcome-list p {
  margin-bottom: 0;
}

.outcome-list p {
  margin-top: 6px;
  font-size: 15px;
}

.outcome-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink-700);
  background: var(--ink-100);
  border-radius: 14px;
}

.outcome-icon .icon-svg {
  width: 27px;
  height: 27px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 306px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(31, 56, 100, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  color: var(--brand-700);
  background: var(--brand-50);
  border-radius: 16px;
}

.service-icon .icon-svg {
  width: 29px;
  height: 29px;
}

.service-card p {
  margin-bottom: 25px;
  font-size: 15px;
}

.service-card .card-link {
  margin-top: auto;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

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

.process-grid article {
  min-height: 245px;
  padding: 31px;
  background: var(--navy-gradient);
}

.process-grid article > span {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand-500);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 15px;
}

/* Why / proof */
.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
  gap: 80px;
  align-items: start;
}

.why-points {
  display: grid;
  gap: 20px;
}

.why-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.why-points article > .icon-svg {
  width: 29px;
  height: 29px;
  color: var(--brand-700);
}

.why-points h3,
.why-points p {
  margin-bottom: 0;
}

.why-points p {
  margin-top: 5px;
  font-size: 15px;
}

.typical-card {
  padding: 38px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.typical-card h3 {
  font-size: 28px;
}

.typical-card p strong {
  color: var(--ink-800);
}

.partner-block {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.partner-block > span {
  display: block;
  margin-bottom: 17px;
  color: #5B6470;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
}

.partner-logos > img {
  max-width: 100%;
  max-height: 42px;
  padding: 9px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

/* Reviews */
.review-card {
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stars {
  margin-bottom: 17px;
  color: var(--brand-500);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0 0 23px;
  color: #1F3864;
  font-size: 17px;
  line-height: 1.62;
}

.review-card > p {
  margin-bottom: 0;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 780;
}

.review-card > p span {
  color: var(--muted);
  font-weight: 520;
}

.review-note {
  margin: 23px 0 0;
  color: #5B6470;
  font-size: 12px;
  text-align: center;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.faq-list details[open] {
  border-color: #C3CEDF;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  color: var(--ink-900);
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 15px;
  height: 2px;
  content: "";
  background: var(--brand-500);
  border-radius: 2px;
  transform: translateY(-50%);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
}

/* CTA */
.cta-section {
  padding: 84px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel-actions {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
}

/* Breadcrumb and subpage hero */
.breadcrumb {
  background: #F6F9FD;
  border-bottom: 1px solid var(--line);
}

.breadcrumb ol {
  padding: 13px 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumb li {
  color: #5B6470;
  font-size: 12px;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: #A8B4C8;
  content: "/";
}

.breadcrumb a {
  color: var(--ink-700);
  text-decoration: none;
}

.subhero {
  padding: 84px 0 88px;
  background:
    radial-gradient(circle at 82% 20%, rgba(232, 116, 30, 0.10), transparent 25%),
    linear-gradient(180deg, #EEF3FA, #ffffff);
  border-bottom: 1px solid var(--line);
}

.subhero h1 {
  max-width: 850px;
  font-size: clamp(42px, 4.55vw, 64px);
}

.service-summary {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-summary-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 23px;
  display: grid;
  place-items: center;
  color: var(--brand-700);
  background: var(--brand-50);
  border-radius: 18px;
}

.service-summary h2 {
  margin-bottom: 22px;
  font-size: 26px;
}

.service-summary p:last-child,
.service-summary .check-list:last-child {
  margin-bottom: 0;
}

.service-summary .check-list li {
  font-size: 14px;
}

.service-risk-grid article {
  position: relative;
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.risk-dot {
  width: 11px;
  height: 11px;
  margin-bottom: 24px;
  display: block;
  background: var(--brand-500);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--brand-50);
}

.service-risk-grid p {
  margin-bottom: 0;
}

.scope-card {
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  color: #2E5496;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.scope-list .icon-list {
  margin-top: 2px;
  color: var(--brand-500);
}

.scope-note {
  margin: 28px 0 0;
  padding: 19px 20px;
  color: var(--ink-800);
  background: var(--ink-100);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 650;
}

.gains-grid article {
  padding: 32px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gain-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.gain-icon .icon-svg {
  width: 27px;
  height: 27px;
}

.gains-grid p {
  margin-bottom: 0;
}

/* Overview */
.overview-summary {
  color: var(--white);
  background: var(--navy-gradient);
  border-color: transparent;
}

.overview-summary h2 {
  color: var(--white);
  font-size: 30px;
}

.overview-summary p {
  color: rgba(255, 255, 255, 0.7);
}

.management-questions {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.management-questions li {
  padding: 21px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.management-questions span {
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.management-questions p {
  margin: 0;
  color: #24406E;
  font-weight: 650;
}

.collaboration-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.05fr;
  gap: 86px;
  align-items: center;
}

.collaboration-visual {
  min-height: 360px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.collaboration-visual > div {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.collaboration-visual > div:nth-of-type(2) {
  color: var(--brand-700);
  background: var(--brand-50);
  border-color: #F5CBA8;
}

.collaboration-visual > span {
  width: 50px;
  height: 2px;
  background: #A8B4C8;
}

.collaboration-layout .check-list {
  margin-top: 25px;
}

/* Security check */
.privacy-note {
  max-width: 720px;
  padding: 14px 17px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-800);
  background: var(--ink-100);
  border-radius: 11px;
  font-size: 14px;
  font-weight: 650;
}

.check-summary h2 {
  font-size: 29px;
}

.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 35px;
  align-items: start;
}

.security-check {
  display: grid;
  gap: 18px;
}

.check-question {
  padding: 29px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.check-question.is-unanswered {
  border-color: #cf6a6a;
  box-shadow: 0 0 0 3px rgba(161, 50, 50, 0.09);
}

.check-question legend {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
}

.check-question legend span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink-800);
  border-radius: 50%;
  font-size: 12px;
}

.check-question > p {
  margin: 19px 0 20px;
  color: #24406E;
  font-size: 17px;
  font-weight: 650;
}

.check-question > small {
  display: block;
  margin-top: 17px;
  color: #5B6470;
  font-size: 13px;
  line-height: 1.55;
}

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

.answer-options label {
  position: relative;
  cursor: pointer;
}

.answer-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-options span {
  min-height: 47px;
  padding: 11px 12px;
  display: grid;
  place-items: center;
  color: #3D5F94;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 730;
  text-align: center;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.answer-options input:focus-visible + span {
  outline: 3px solid rgba(232, 116, 30, 0.35);
  outline-offset: 2px;
}

.answer-options input:checked + span {
  color: var(--white);
  background: var(--ink-800);
  border-color: var(--ink-800);
}

.check-submit {
  padding-top: 8px;
  text-align: center;
}

.form-error {
  margin: 12px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
}

.check-result {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--ink-700);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-result.result-good {
  border-top-color: var(--success);
}

.check-result.result-warning {
  border-top-color: var(--warning);
}

.check-result.result-critical {
  border-top-color: var(--danger);
}

.result-label {
  color: #5B6470;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-score {
  margin: 16px 0 23px;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.result-score strong {
  color: var(--ink-900);
  font-size: 56px;
  line-height: 1;
}

.result-score span {
  color: var(--muted);
  font-size: 13px;
}

.check-result h2 {
  font-size: 25px;
}

.result-open {
  margin: 24px 0;
  padding: 19px;
  background: var(--soft);
  border-radius: 12px;
}

.result-open h3 {
  font-size: 15px;
}

.result-open ul {
  padding-left: 19px;
  margin: 0;
  color: #33598F;
  font-size: 14px;
}

.result-open li + li {
  margin-top: 6px;
}

.result-disclaimer {
  font-size: 12px;
}

.check-result .btn {
  width: 100%;
  margin-bottom: 10px;
}

.check-result .text-button {
  width: 100%;
}

/* Contact */
.contact-phone {
  display: block;
  margin-bottom: 13px;
  color: var(--ink-800);
  font-size: 25px;
  font-weight: 820;
  text-decoration: none;
}

.contact-methods article {
  padding: 31px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods article > .icon-svg {
  margin-bottom: 24px;
  color: var(--brand-700);
}

.contact-methods p {
  min-height: 78px;
}

.contact-address {
  margin-top: 28px;
  padding: 20px;
  color: var(--ink-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-form {
  padding: 35px;
  display: grid;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--ink-900);
  font-size: 13px;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #C3CEDF;
  border-radius: 9px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink-700);
  box-shadow: 0 0 0 3px rgba(31, 56, 100, 0.11);
}

.form-note {
  margin: -7px 0 0;
  color: #5B6470;
  font-size: 12px;
}

/* Webinar */
.webinar-grid article {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.webinar-tag {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 9px;
  color: var(--brand-700);
  background: var(--brand-50);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.webinar-grid p {
  margin-bottom: 0;
}

.newsletter-panel {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.newsletter-panel h2,
.newsletter-panel p {
  margin-bottom: 0;
}

/* Legal */
.legal-container {
  max-width: 900px;
}

.legal-card {
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-copy h1 {
  margin-bottom: 40px;
  font-size: clamp(36px, 4vw, 52px);
}

.legal-copy h2 {
  margin: 48px 0 17px;
  font-size: 28px;
}

.legal-copy h3 {
  margin: 32px 0 12px;
  font-size: 21px;
}

.legal-copy h4 {
  margin: 24px 0 9px;
  color: var(--ink-900);
  font-size: 16px;
}

.legal-copy p,
.legal-copy li {
  color: #33598F;
  font-size: 15px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 24px;
}

.legal-copy a {
  color: var(--ink-700);
  overflow-wrap: anywhere;
}

.legal-copy strong {
  color: var(--ink-900);
}

/* Footer */
.site-footer {
  padding: 75px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 60px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 24px;
}

.footer-intro p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.footer-address {
  color: rgba(255, 255, 255, 0.62) !important;
}

.footer-title {
  margin-bottom: 19px;
  color: var(--white);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.footer-bottom > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-bottom > span:last-child {
  flex: 0 0 auto;
  display: flex;
  gap: 18px;
}

.footer-bottom > span:first-child span {
  display: inline;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.mobile-actions {
  display: none;
}

/* Standalone and 404 */
.standalone-page {
  min-height: 100vh;
  padding: 40px 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(232, 116, 30, 0.15), transparent 28%),
    var(--soft);
}

.standalone-card {
  width: min(680px, 100%);
  padding: clamp(32px, 6vw, 58px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.standalone-card > img {
  width: 180px;
  margin: 0 auto 37px;
}

.standalone-card h1 {
  font-size: clamp(38px, 6vw, 58px);
}

.standalone-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.standalone-address {
  margin: 36px 0 0;
  color: #5B6470;
  font-size: 12px;
}

.not-found {
  min-height: 68vh;
  padding: 120px 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--soft);
}

.not-found .container {
  max-width: 760px;
}

.not-found .hero-actions {
  justify-content: center;
}

/* Responsive */
@media (max-width: 1260px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 1120px) {
  .main-nav a {
    padding-inline: 8px;
    font-size: 13px;
  }

  .hero-grid,
  .subhero-grid {
    gap: 48px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 38px));
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    width: 155px;
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 18px 19px 28px;
    display: grid;
    gap: 4px;
    align-content: start;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(31, 56, 100, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
    font-size: 15px;
  }

  .main-nav a[aria-current="page"]::after {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .subhero-grid,
  .why-layout,
  .collaboration-layout,
  .outcome-layout,
  .service-scope-layout,
  .questions-layout,
  .faq-layout,
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-home {
    padding-top: 72px;
  }

  .decision-card,
  .service-summary {
    max-width: 720px;
  }

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

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

  .trust-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .sticky-heading,
  .check-result {
    position: static;
  }

  .services-grid,
  .risk-grid,
  .service-risk-grid,
  .gains-grid,
  .reviews-grid,
  .contact-methods,
  .webinar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-layout {
    align-items: stretch;
  }

  .typical-card {
    max-width: 760px;
  }

  .collaboration-visual {
    min-height: 280px;
  }

  .check-layout {
    grid-template-columns: 1fr;
  }

  .check-result {
    max-width: 650px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(var(--container), calc(100% - 30px));
  }

  .brand img {
    width: 143px;
  }

  .menu-toggle span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(30px, 8.4vw, 44px);
  }

  h2 {
    font-size: clamp(26px, 7vw, 35px);
  }

  .section {
    padding: 76px 0;
  }

  .hero-home {
    padding-top: 56px;
  }

  .subhero {
    padding: 58px 0 64px;
  }

  .subhero h1 {
    font-size: clamp(30px, 8.2vw, 43px);
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .decision-card,
  .service-summary,
  .typical-card,
  .contact-form,
  .scope-card,
  .legal-card {
    padding: 25px;
    border-radius: 19px;
  }

  .trust-strip {
    margin-top: 52px;
    grid-template-columns: 1fr;
    border-radius: 16px 16px 0 0;
  }

  .trust-strip > div {
    min-height: 92px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .services-grid,
  .risk-grid,
  .service-risk-grid,
  .gains-grid,
  .reviews-grid,
  .contact-methods,
  .webinar-grid,
  .process-grid,
  .process-grid-3 {
    grid-template-columns: 1fr;
  }

  .risk-card,
  .service-card {
    min-height: 0;
  }

  .outcome-list article {
    grid-template-columns: 48px 1fr;
    padding: 22px;
  }

  .outcome-icon {
    width: 46px;
    height: 46px;
  }

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

  .process-grid article {
    min-height: 0;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }

  .partner-logos > img {
    width: 100%;
    max-height: 54px;
  }

  .answer-options {
    grid-template-columns: 1fr;
  }

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

  .check-question {
    padding: 23px;
  }

  .newsletter-panel,
  .cta-panel {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter-panel {
    padding: 27px;
  }

  .cta-panel-actions {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

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

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

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 66px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(31, 56, 100, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .show-mobile-actions .mobile-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--ink-800);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions-primary {
    color: var(--white) !important;
    background: var(--brand-gradient);
  }

  .collaboration-visual {
    min-height: 220px;
    padding: 30px 18px;
  }

  .collaboration-visual > div {
    width: 68px;
    height: 68px;
  }

  .collaboration-visual > span {
    width: 24px;
  }

  .contact-methods p {
    min-height: 0;
  }

  .standalone-actions {
    flex-direction: column;
  }

  .standalone-actions .btn {
    width: 100%;
  }
}

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

  .footer-intro {
    grid-column: auto;
  }

  .decision-card h2,
  .overview-summary h2,
  .check-summary h2 {
    font-size: 26px;
  }

  .management-questions li {
    grid-template-columns: 34px 1fr;
    padding: 18px;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .mobile-actions,
  .cta-section,
  .hero-actions,
  .breadcrumb {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
  }

  .section,
  .subhero {
    padding: 30px 0;
  }

  .legal-card {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 700px) {
  .check-page,
  .legal-page {
    padding-bottom: 0;
  }

  .check-page .mobile-actions,
  .legal-page .mobile-actions {
    display: none;
  }
}

/* ================================================================
   Sprachumschalter (DE/EN) — ergaenzt 25.08.2026, Design unveraendert
   ================================================================ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.lang-switch a {
  padding: 5px 9px;
  display: inline-block;
  color: var(--ink-800);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.lang-switch a:hover {
  color: var(--ink-900);
  background: var(--white);
}

.lang-switch a[aria-current="true"] {
  color: var(--white);
  background: var(--brand-gradient);
}

@media (max-width: 1020px) {
  .header-inner .header-actions {
    order: 2;
    margin-left: auto;
  }

  .header-inner .menu-toggle {
    order: 3;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .lang-switch a {
    padding: 5px 7px;
    font-size: 11px;
  }
}
