:root {
  --color-primary: #16243C;
  --color-primary-soft: #243653;
  --color-accent: #C89B3C;
  --color-bg: #FFFFFF;
  --color-section: #F7F8FA;
  --color-heading: #16243C;
  --color-text: #4B5563;
  --color-muted: #6B7280;
  --color-border: #E6E8EC;
  --color-success: #2E7D32;
  --color-warning: #F59E0B;
  --color-error: #DC2626;
  --shadow-card: 0 14px 38px rgba(22, 36, 60, 0.08);
  --shadow-button: 0 10px 22px rgba(22, 36, 60, 0.12);
  --radius-button: 12px;
  --radius-card: 16px;
  --container: 1200px;
  --container-large: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

:focus-visible {
  outline: 3px solid rgba(200, 155, 60, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius-button);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  transition: transform 200ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 90px;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(22, 36, 60, 0.96);
  color: #fff;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.site-header::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 18% 0%, rgba(200, 155, 60, 0.22), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(255, 218, 139, 0.16), transparent 30%);
}

.site-header::after,
.site-footer::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.72), transparent);
}

.site-header > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

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

.logo-box img {
  width: 56px;
  height: 56px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
}

.menu-toggle {
  position: relative;
  z-index: 45;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.main-nav {
  position: fixed;
  inset: 74px 20px auto;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: var(--color-primary);
  padding: 16px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease;
}

.main-nav a {
  border-radius: 10px;
  padding: 12px;
}

.main-nav a:hover,
.site-footer a:hover {
  color: #fff;
}

.main-nav .nav-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, #B98422, #E0B85A 46%, #F1D58A);
  color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(200, 155, 60, 0.24);
  text-align: center;
}

.section-inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.hero .section-inner {
  width: min(100% - 40px, var(--container-large));
}

.hero,
.section-white,
.section-soft,
.cta-section {
  padding: 52px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(22, 36, 60, 0.94) 0%, rgba(22, 36, 60, 0.78) 43%, rgba(22, 36, 60, 0.28) 100%),
    linear-gradient(180deg, rgba(22, 36, 60, 0.28), rgba(22, 36, 60, 0.7)),
    url("../../medien/leadership-training-hero.webp") center / cover no-repeat;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.58), transparent);
}

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

.section-white {
  background: #fff;
}

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

.cta-section {
  background: var(--color-primary);
}

.hero-grid,
.split-section,
.format-layout,
.cta-grid,
.faq-layout {
  display: grid;
  gap: 40px;
}

.hero-grid {
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  color: var(--color-heading);
  line-height: 1.15;
}

.hero h1 {
  color: #fff;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 800;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 800;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 800;
  overflow-wrap: break-word;
}

p {
  color: var(--color-text);
  overflow-wrap: break-word;
}

.hero-content p,
.section-heading p,
.cta-copy p {
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-content {
  max-width: 760px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-content p,
.section-heading p {
  font-size: 16px;
}

.cta-section h2,
.cta-section .eyebrow {
  color: #fff;
}

.cta-section .eyebrow {
  color: var(--color-accent);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

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

.trust-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.trust-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius-button);
  padding: 14px 20px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-button);
  font-weight: 800;
  text-decoration: none;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

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

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

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-outline {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.hero-outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.hero-outline:hover {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

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

.content-card,
.request-card,
.process-item,
details,
.legal-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.content-card {
  min-height: 100%;
  padding: 32px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.content-card:hover {
  border-color: rgba(200, 155, 60, 0.42);
  transform: translateY(-3px);
}

.icon-box {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 12px;
  background: rgba(200, 155, 60, 0.12);
  color: var(--color-accent);
}

.section-action {
  margin-top: 32px;
}

.process-list {
  display: grid;
  gap: 24px;
}

.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 32px;
}

.process-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.process-item p,
.content-card p,
details p {
  margin-bottom: 0;
}

.format-list {
  display: grid;
  gap: 24px;
}

.format-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
  font-weight: 800;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease;
}

.format-list a::after {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.format-list a:hover {
  border-color: rgba(200, 155, 60, 0.42);
  transform: translateY(-2px);
}

.request-card {
  display: grid;
  gap: 20px;
  padding: 32px;
}

.hero-request {
  align-self: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.form-intro {
  margin: -8px 0 0;
  font-size: 15px;
}

.local-proof,
.solution-panel,
.link-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.local-proof {
  display: grid;
  gap: 18px;
}

.local-proof article {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
}

.local-proof article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.local-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 20px;
}

.local-proof span {
  color: var(--color-text);
}

.solution-panel ul,
.link-panel {
  display: grid;
  gap: 12px;
}

.solution-panel ul {
  margin: 0;
  padding-left: 20px;
}

.solution-panel li {
  color: var(--color-text);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 8px 22px rgba(22, 36, 60, 0.06);
  font-weight: 800;
  padding: 10px 14px;
}

.text-block {
  max-width: 980px;
  margin-top: 42px;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.module-grid {
  display: grid;
  gap: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.date-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.date-table th,
.date-table td {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 20px;
  text-align: left;
}

.date-table th {
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.date-table tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 12px;
}

.status-open {
  background: rgba(46, 125, 50, 0.12);
  color: var(--color-success);
}

.status-low {
  background: rgba(245, 158, 11, 0.14);
  color: #9A5B00;
}

.status-full {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-error);
}

@media (max-width: 640px) {
  .table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .date-table {
    min-width: 0;
    width: 100%;
    display: block;
  }

  .date-table thead {
    display: none;
  }

  .date-table tbody {
    display: grid;
    gap: 16px;
  }

  .date-table tr {
    display: block;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: var(--shadow-card);
    padding: 4px 20px;
  }

  .date-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
    text-align: right;
  }

  .date-table td:last-child {
    border-bottom: 0;
  }

  .date-table td::before {
    content: attr(data-label);
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
  }
}

.flow {
  display: grid;
  gap: 14px;
}

.flow span {
  position: relative;
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
  font-weight: 800;
  padding: 12px 14px;
  text-align: center;
}

.flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: translateX(-50%) rotate(45deg);
}

.link-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: none;
}

.link-panel a:last-child {
  border-bottom: 0;
}

.link-panel a::after {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cta-panel {
  max-width: 860px;
}

.form-section-inner {
  max-width: 640px;
}

.form-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-head h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.form-row {
  display: grid;
  gap: 20px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
}

label span {
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  background: var(--color-section);
  color: var(--color-primary);
  padding: 14px 16px;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.16);
  outline: none;
}

.field-error {
  border-color: var(--color-error);
}

.form-message {
  min-height: 22px;
  margin: -6px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.form-message.is-error {
  color: var(--color-error);
}

.form-message.is-success {
  color: var(--color-success);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.5;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--color-primary);
}

.checkbox-label a {
  color: var(--color-primary);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 16px;
}

details {
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--color-primary);
  font-weight: 800;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--color-accent);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 24px 22px;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 88px;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  gap: 24px;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-logo img {
  width: 118px;
}

.legal-page h1 {
  margin-bottom: 32px;
  color: var(--color-primary);
  font-size: 40px;
}

.legal-card {
  max-width: 860px;
  padding: 32px;
}

.legal-card h2 {
  margin-top: 32px;
  font-size: 28px;
}

.legal-card .btn {
  margin-top: 16px;
}

#cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(230, 232, 236, 0.28);
  background: var(--color-primary);
  color: #fff;
  padding: 16px 20px;
}

#cookie-banner p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

#cookie-banner a {
  color: #fff;
  font-weight: 800;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
}

.cookie-banner-actions button {
  min-height: 44px;
  border-radius: var(--radius-button);
  padding: 10px 14px;
  font-weight: 800;
}

#cookie-accept {
  background: var(--color-accent);
  color: var(--color-primary);
}

#cookie-decline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 260ms ease, transform 260ms ease;
}

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

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

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

@media (min-width: 768px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding-inline: 40px;
  }

  .section-inner,
  .hero .section-inner,
  .footer-inner {
    width: min(100% - 64px, var(--container));
  }

  .hero .section-inner {
    width: min(100% - 64px, var(--container-large));
  }

  .hero,
  .section-white,
  .section-soft,
  .cta-section {
    padding: 90px 0;
  }

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

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-content p,
  .section-heading p,
  .cta-copy p {
    font-size: 17px;
  }

  .card-grid-4,
  .card-grid-3,
  .module-grid,
  .format-list,
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .site-footer nav {
    justify-content: flex-end;
  }

}

@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }

  .site-header {
    padding-inline: 56px;
  }

  .logo-box img {
    width: 64px;
    height: 64px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .main-nav .nav-cta {
    margin-top: 0;
    margin-left: 8px;
    border-radius: var(--radius-button);
    padding: 12px 16px;
    box-shadow: var(--shadow-button);
  }

  .hero,
  .section-white,
  .section-soft,
  .cta-section {
    padding: 120px 0;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  .split-section,
  .format-layout,
  .cta-grid,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: start;
  }

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

  .card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .module-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .flow {
    grid-template-columns: repeat(6, 1fr);
  }

  .flow span:not(:last-child)::after {
    inset: 50% -11px auto auto;
    transform: translateY(-50%) rotate(-45deg);
  }
}
