:root {
  --ink: #05091f;
  --muted: #59647a;
  --soft: #f5f7fa;
  --line: #e5e8ee;
  --blue: #1800ad;
  --blue-2: #1800ad;
  --deep-blue: #1800ad;
  --blue-soft: #eef4ff;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 18px 48px rgba(17, 19, 24, 0.1);
  --page-max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

html,
body {
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 144px), var(--page-max));
  margin: 0 auto;
}

.section-pad {
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 0 max(72px, calc((100vw - var(--page-max)) / 2));
  border-bottom: 1px solid rgba(229, 232, 238, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand-group {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 24px;
}

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

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

.brand-addon {
  width: 96px;
  height: 52px;
  object-fit: contain;
}

.main-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: #05091f;
  font-size: 15px;
  font-weight: 500;
}

.main-nav a,
.main-nav button,
.text-link,
.header-cta {
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.main-nav a:hover,
.main-nav button:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
}

.nav-dropdown button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
}

.nav-dropdown button::after {
  content: "▾";
  margin-left: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 22px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(8, 26, 63, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  color: #1c2637;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f3f7fd;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid #1800ad;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #1800ad 0%, #1800ad 100%);
  box-shadow: none;
  font-size: 15px;
  font-weight: 600;
}

.header-cta:hover {
  border-color: #1800ad;
  color: #fff;
  background: linear-gradient(180deg, #1800ad 0%, #1800ad 100%);
}

.hero {
  padding-top: 28px;
  padding-bottom: 30px;
}

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

.hero-copy {
  align-self: center;
  padding-left: 24px;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 38px;
  font-size: clamp(58px, 4.15vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 span {
  display: inline-block;
  margin-top: 0.08em;
  color: var(--blue);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 3.3vw, 52px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.lead {
  max-width: 590px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.52;
}

.mobile-break {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-bottom: 34px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proof-avatars {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.proof-avatars img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #eaf3ff;
}

.proof-avatars img + img {
  margin-left: -13px;
}

.proof-copy {
  display: grid;
  gap: 5px;
  width: max-content;
  color: var(--ink);
  line-height: 1;
}

.proof-copy strong {
  font-size: 14px;
  font-weight: 500;
}

.proof-copy span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
}

.proof-copy b {
  color: #ff9800;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.proof-stars {
  display: block;
  width: 98px;
  font-size: 18px;
  letter-spacing: 1.1px;
  line-height: 1;
  white-space: nowrap;
}

.proof-badge {
  width: auto;
  height: 78px;
  margin-left: 56px;
  object-fit: contain;
}

.logo-strip {
  overflow: hidden;
  width: min(100%, 1640px);
  margin: 36px auto 0;
  padding: 0 0 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 88px;
  animation: logoMarquee 72s linear infinite;
}

.logo-track img {
  flex: 0 0 auto;
  width: auto;
  max-width: 180px;
  height: 42px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(1) saturate(0) contrast(1.1);
}

.logo-track img.logo-boost {
  max-width: 230px;
  height: 56px;
}

.logo-track img.logo-l3 {
  max-width: 270px;
  height: 66px;
  transform: scale(1.16);
}

.logo-track img.logo-l7 {
  max-width: 300px;
  height: 76px;
  transform: scale(1.55);
}

.logo-track img.logo-l8,
.logo-track img.logo-l9 {
  max-width: 280px;
  height: 68px;
  transform: scale(1.24);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-color: rgba(2, 46, 104, 0.55);
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn span,
.text-link span {
  margin-left: 10px;
}

.btn-primary {
  color: #fff;
  border-color: #1800ad;
  background: linear-gradient(180deg, #1800ad 0%, #1800ad 100%);
  box-shadow: none;
}

.btn-primary:hover {
  border-color: #1800ad;
  background: linear-gradient(180deg, #1800ad 0%, #1800ad 100%);
  box-shadow: none;
}

.text-link {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
}

.assurance,
.privacy-note {
  color: var(--muted);
  font-size: 15px;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 680px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
}

.privacy-note::before {
  content: "▣";
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.08), rgba(234, 242, 255, 0.48));
  transform: translate(22px, 6px);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 34px 42px rgba(8, 26, 63, 0.12));
}

.status-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(195, 205, 222, 0.72);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.9));
  box-shadow: 0 22px 58px rgba(3, 26, 57, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  animation: floatIn 700ms ease both;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.status-copy {
  position: relative;
  display: grid;
  gap: 2px;
}

.status-copy span {
  color: #667086;
  font-size: 12px;
  font-weight: 600;
}

.status-card strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.status-card small {
  color: #667086;
  font-size: 12px;
}

.status-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6, 78, 168, 0.28);
  border-radius: 6px;
  color: var(--deep-blue);
  background: linear-gradient(145deg, #ffffff, #eaf2ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 22px rgba(3, 45, 99, 0.12);
}

.calendar-icon::before {
  content: "";
  width: 20px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
  box-shadow: inset 0 6px 0 rgba(6, 78, 168, 0.12);
}

.calendar-icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform: translateY(-6px);
}

.doc-icon {
  color: var(--deep-blue);
  background: linear-gradient(145deg, #ffffff, #eaf2ff);
}

.doc-icon::before {
  content: "";
  width: 17px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
  box-shadow: inset 0 -5px 0 rgba(6, 78, 168, 0.1);
}

.doc-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: translateY(4px);
}

.warning-icon {
  color: var(--deep-blue);
  background: linear-gradient(145deg, #ffffff, #eaf2ff);
}

.warning-icon::before {
  content: "!";
  border: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.check-icon {
  color: var(--deep-blue);
  background: linear-gradient(145deg, #ffffff, #eaf2ff);
}

.check-icon::before {
  content: "";
  width: 21px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -2px);
}

.status-card-a {
  top: 126px;
  left: -8px;
}

.status-card-b {
  top: 214px;
  right: -22px;
  animation-delay: 120ms;
}

.status-card-c {
  display: none;
  top: 130px;
  right: 18px;
  animation-delay: 240ms;
}

.status-card-d {
  display: none;
  right: 18px;
  bottom: 120px;
  animation-delay: 360ms;
}

.split-grid,
.scope-grid,
.example-grid,
.person-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.problem {
  padding-top: 76px;
  padding-bottom: 78px;
  background: #fff;
}

.problem .split-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
  gap: 54px;
}

.problem .eyebrow {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.problem .section-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(38px, 3.15vw, 54px);
  line-height: 1.02;
}

.problem .section-copy h2 span {
  color: var(--blue);
}

.section-copy p:not(.eyebrow),
.person-copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
}

.problem .section-copy p:not(.eyebrow, .problem-trust) {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.48;
}

.problem-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: 26px;
  margin-bottom: 20px;
}

.problem-actions .btn {
  min-width: 300px;
  min-height: 54px;
}

.problem-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #516079;
  font-size: 14px;
  font-weight: 500;
}

.problem-trust::before {
  content: "";
  width: 18px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 10px 10px;
  clip-path: polygon(50% 0, 92% 18%, 85% 72%, 50% 100%, 15% 72%, 8% 18%);
}

.document-transform {
  position: relative;
  display: block;
  min-height: 492px;
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.document-transform::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.07);
}

.problem-person {
  position: absolute;
  right: 86px;
  bottom: 12px;
  z-index: 2;
  width: 610px;
  height: 470px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 22px 42px rgba(8, 26, 63, 0.12));
}

.doc-stack {
  position: absolute;
  left: 62px;
  top: 34px;
  z-index: 1;
  width: 330px;
  height: 360px;
  transform: none;
}

.doc-stack span,
.doc-page {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(17, 19, 24, 0.08);
}

.doc-stack span:nth-child(1) {
  opacity: 0.48;
  transform: rotate(-7deg) translate(-42px, 70px);
}

.doc-stack span:nth-child(2) {
  opacity: 0.62;
  transform: rotate(-4deg) translate(-28px, 38px);
}

.doc-stack span:nth-child(3) {
  opacity: 0.74;
  transform: rotate(-1deg) translate(-10px, 10px);
}

.doc-page {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 32px 34px;
  animation: paperShift 4s ease-in-out infinite;
}

.doc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.doc-head img {
  width: 96px;
  height: auto;
  object-fit: contain;
}

.doc-head small {
  color: #27354d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.doc-page h3 {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.08;
}

.doc-lines {
  display: grid;
  gap: 9px;
}

.doc-lines i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: #d8dee8;
}

.doc-lines i:nth-child(1) {
  width: 86%;
}

.doc-lines i:nth-child(2) {
  width: 78%;
}

.doc-lines i:nth-child(3) {
  width: 92%;
}

.doc-lines i:nth-child(4) {
  width: 36%;
}

.doc-lines i:nth-child(5) {
  width: 70%;
  margin-left: 44%;
}

.doc-divider {
  height: 1px;
  background: var(--line);
}

.doc-page ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
  color: #516079;
  font-size: 12px;
  font-weight: 500;
}

.check-rows {
  position: absolute;
  top: 82px;
  right: -44px;
  z-index: 3;
  display: grid;
  gap: 0;
  width: 288px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(197, 210, 230, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(3, 45, 99, 0.1);
  transform: none;
  list-style: none;
}

.check-rows li {
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 9px;
  min-height: 47px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 5px;
  background: transparent;
  font-weight: 500;
}

.check-rows li:last-child {
  border-bottom: 0;
}

.check-rows li > span:not(.row-icon) {
  display: grid;
  gap: 2px;
}

.check-rows strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.check-rows small {
  color: #667086;
  font-size: 10px;
  font-weight: 600;
}

.check-rows .ok,
.check-rows .warn {
  justify-self: end;
  font-style: normal;
}

.check-rows .ok {
  color: #117243;
  background: #dff4e8;
}

.row-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #eef6ff;
}

.people-icon::before {
  content: "☷";
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.ok,
.warn {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
}

.ok {
  color: #1800ad;
  background: #e9f6ef;
}

.warn {
  color: #8a4d00;
  background: #fff1d7;
}

.check-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-top: 1px solid rgba(229, 232, 238, 0.55);
  border-bottom: 1px solid rgba(229, 232, 238, 0.55);
  padding: 72px 0 66px;
  scroll-margin-top: 70px;
}

.check-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(470px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.upload-panel,
.upload-card,
.result-card,
.client-side,
.price-card,
.analysis-sheet,
.final-box {
  border: 1px solid rgba(197, 210, 230, 0.82);
  border-radius: 6px;
  background: #fff;
}

.upload-panel {
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.check-copy {
  position: relative;
  min-height: 520px;
  padding: 10px 0 0;
}

.check-eyebrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #687596;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.check-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.check-copy h1,
.check-copy h2 {
  max-width: 640px;
  margin-bottom: 20px;
  color: #05091f;
  font-size: clamp(42px, 3.5vw, 62px);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.check-copy h1 span,
.check-copy h2 span {
  display: block;
  color: var(--blue);
}

.check-intro {
  max-width: 650px;
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.check-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  max-width: 430px;
}

.check-benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: center;
}

.check-benefit strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.check-benefit small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.benefit-icon {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(24, 0, 173, 0.09);
}

.checkmark-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.checkmark-icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.lock-icon::before {
  content: "";
  width: 20px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 4px;
  transform: translateY(4px);
}

.lock-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 12px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  transform: translateY(-8px);
}

.check-document {
  position: absolute;
  right: -46px;
  bottom: -108px;
  width: min(46vw, 430px);
  height: 388px;
  z-index: 0;
}

.check-eyebrow,
.check-copy h1,
.check-copy h2,
.check-intro,
.check-benefits {
  position: relative;
  z-index: 1;
}

.document-halo {
  position: absolute;
  left: 50%;
  bottom: -44px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.105), rgba(234, 242, 255, 0.5));
  transform: translateX(-50%);
}

.check-folder {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  width: 335px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(8, 26, 63, 0.16));
  transform: translateX(-50%);
}

.paper-stack {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 248px;
  height: 254px;
  transform: rotate(12deg) skewY(-4deg);
  filter: drop-shadow(0 30px 30px rgba(8, 26, 63, 0.16));
}

.paper-stack > span,
.paper-front {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(214, 220, 232, 0.9);
  background: #fff;
}

.paper-stack > span:nth-child(1) {
  transform: translate(-18px, 34px);
}

.paper-stack > span:nth-child(2) {
  transform: translate(-12px, 24px);
}

.paper-stack > span:nth-child(3) {
  transform: translate(-6px, 13px);
}

.paper-front {
  z-index: 2;
  display: grid;
  align-content: start;
  padding: 30px 36px;
}

.paper-front img {
  width: 124px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 28px;
}

.paper-front strong {
  margin-bottom: 18px;
  color: #05091f;
  font-size: 19px;
  line-height: 1.1;
}

.paper-front i {
  display: block;
  width: 120px;
  height: 6px;
  margin-bottom: 8px;
  background: #d9dde8;
}

.paper-front i:nth-of-type(2) {
  width: 138px;
}

.paper-front i:nth-of-type(3) {
  width: 110px;
}

.paper-front i:nth-of-type(4) {
  width: 88px;
}

.paper-stack b {
  position: absolute;
  right: -19px;
  z-index: 3;
  width: 26px;
  height: 48px;
  border-radius: 4px 6px 6px 4px;
  background: #174ec7;
  box-shadow: -8px 6px 12px rgba(8, 26, 63, 0.12);
}

.paper-stack b:nth-of-type(1) {
  top: 116px;
}

.paper-stack b:nth-of-type(2) {
  top: 170px;
  background: #0d3ba3;
}

.upload-card {
  padding: 28px 28px 24px;
  border-color: rgba(200, 211, 229, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(8, 26, 63, 0.08);
}

.upload-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.upload-card-head h3 {
  margin: 0;
  font-size: 24px;
}

.upload-card-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #596987;
  font-size: 14px;
  white-space: nowrap;
}

.shield-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 20px;
}

.shield-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 12px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.shield-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 8px;
  height: 10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.dropzone {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  min-height: 204px;
  margin: 0 0 24px;
  padding: 26px 22px;
  border: 2px dashed #cbd8ee;
  border-radius: 7px;
  color: var(--ink);
  background: rgba(252, 254, 255, 0.62);
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dropzone:hover,
.dropzone.is-active {
  border-color: rgba(24, 0, 173, 0.45);
  background: rgba(244, 247, 255, 0.88);
  transform: translateY(-1px);
}

.dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(24, 0, 173, 0.1);
}

.upload-icon::before {
  content: "";
  width: 22px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.upload-icon::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.dropzone strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
}

.dropzone small,
.dropzone em {
  display: block;
  color: #596987;
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.dropzone em {
  margin-top: 12px;
  color: #72809a;
  font-size: 13px;
}

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

.upload-card label {
  gap: 8px;
  font-size: 14px;
  line-height: 1.25;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

label.full {
  grid-column: 1 / -1;
}

input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #d8dde6;
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-wrap {
  position: relative;
  display: block;
}

.input-wrap::before {
  position: absolute;
  left: 15px;
  top: 50%;
  z-index: 1;
  color: var(--blue);
  font-size: 17px;
  transform: translateY(-50%);
}

.company-field::before { content: "▥"; }
.email-field::before { content: "✉"; }
.date-field::before { content: "▣"; }

.input-wrap input {
  padding-left: 46px;
}

.upload-card .input-wrap input {
  min-height: 44px;
  padding: 0 16px;
  border-color: #cfd8e8;
  color: #07102a;
  font-size: 14px;
}

.upload-card .input-wrap input::placeholder {
  color: #8090ad;
}

.upload-card .date-field::before {
  content: none;
}

.upload-card .date-field::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #667692;
  border-radius: 4px;
  box-shadow: inset 0 5px 0 rgba(102, 118, 146, 0.1);
  transform: translateY(-50%);
}

.upload-card .date-field input {
  padding-right: 44px;
}

.upload-card .privacy-note {
  max-width: none;
  margin-top: 18px;
  color: #687596;
  font-size: 12px;
}

.upload-card .privacy-note::before {
  content: "";
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: translateY(2px);
}

input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3, 45, 99, 0.12);
}

.form-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 22px;
  font-size: 15px;
}

.result-card {
  padding: 34px;
  box-shadow: none;
}

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 0;
}

.result-head span {
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
}

.result-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 5px;
  color: var(--blue);
  background: #eaf3ff;
  font-size: 14px;
  font-weight: 600;
}

dl {
  margin: 0;
}

.result-card dl div {
  display: grid;
  grid-template-columns: 52px 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.result-card dl div::before,
.sheet-row::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6, 78, 168, 0.16);
  border-radius: 6px;
  background: linear-gradient(145deg, #f7fbff, #eaf3ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--blue);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 46px;
}

.result-card dl div:nth-child(1)::before { content: "▣"; }
.result-card dl div:nth-child(2)::before { content: "□"; }
.result-card dl div:nth-child(3)::before { content: "!"; }
.result-card dl div:nth-child(4)::before { content: "→"; }

.result-card dt {
  font-size: 17px;
  font-weight: 500;
}

.result-card dd {
  font-size: 17px;
}

.result-card dl div:nth-child(3) dd {
  color: var(--blue);
}

.result-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(145deg, #f7fbff, #eaf4ff);
}

.result-note > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--blue);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
}

.result-note strong {
  color: var(--ink);
  font-size: 15px;
}

.result-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.36;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

dd {
  margin: 0;
  font-weight: 600;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 54px;
}

.process {
  background: #fff;
  padding-top: 46px;
  padding-bottom: 48px;
}

.process .section-heading,
.pricing .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.process .section-heading h2,
.pricing .section-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

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

.process .section-heading .eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.process .section-heading h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.05;
}

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

.process .section-heading p:not(.eyebrow) {
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.step-line {
  position: absolute;
  top: 50%;
  left: 30.5%;
  right: 30.5%;
  height: 1px;
  background: rgba(197, 210, 230, 0.9);
  transform: translateY(-50%);
}

.step-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
}

.step-line::before,
.step-line::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid #e9f2ff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px #fff;
  transform: translateY(-50%);
}

.step-line::before {
  left: -6px;
}

.step-line::after {
  right: -6px;
}

.step {
  position: relative;
  min-height: 300px;
  padding: 94px 26px 26px;
  border: 1px solid rgba(197, 210, 230, 0.82);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(3, 45, 99, 0.06);
}

.step span {
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 15px;
  font-weight: 700;
}

.step-visual {
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #eef6ff;
}

.step-visual::before,
.step-visual::after {
  content: "";
  position: absolute;
}

.step-upload::before,
.step-check::before {
  width: 20px;
  height: 26px;
  border: 2.5px solid currentColor;
  border-radius: 4px;
}

.step-upload::after {
  right: 10px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #266cff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.step-upload {
  background:
    linear-gradient(45deg, transparent 52%, currentColor 54% 59%, transparent 61%) center 35px / 12px 12px no-repeat,
    #eef6ff;
}

.step-upload b,
.step-check b,
.step-team b {
  display: none;
}

.step-upload::before {
  transform: translate(-6px, -4px);
}

.step-check::after {
  width: 11px;
  height: 11px;
  border: 2.5px solid #266cff;
  border-radius: 50%;
  box-shadow: 9px 9px 0 -6px #266cff;
  transform: translate(12px, 14px);
}

.step-team::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -17px 7px 0 -2px currentColor, 17px 7px 0 -2px currentColor;
}

.step-team::after {
  width: 44px;
  height: 20px;
  border-radius: 22px 22px 5px 5px;
  background: currentColor;
  opacity: 0.75;
  transform: translateY(14px);
}

.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.step ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f8fbff, #f3f8ff);
  list-style: none;
}

.step li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-size: 13px;
}

.step li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f2ff;
  font-size: 12px;
  font-weight: 600;
}

.process-cta {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 34px;
}

.process-cta .btn {
  min-width: 330px;
  min-height: 48px;
}

.process-cta p {
  margin: 0;
  color: #7b879d;
  font-size: 14px;
}

.process-cta p span {
  margin: 0 10px;
}

.scope {
  overflow: hidden;
  border-top: 1px solid rgba(229, 232, 238, 0.8);
  background: #fff;
  padding-top: 64px;
  padding-bottom: 66px;
}

.scope-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: 56px;
  align-items: center;
}

.scope-copy .eyebrow {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.scope-copy h2 {
  max-width: 540px;
  margin-bottom: 20px;
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: 1.02;
}

.scope-copy h2 span {
  color: var(--blue);
}

.scope-copy > p {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.scope-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 610px;
  margin-bottom: 28px;
}

.scope-features article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 14px;
  align-items: start;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(197, 210, 230, 0.82);
  border-radius: 7px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 16px 34px rgba(3, 45, 99, 0.045);
}

.scope-feature-icon {
  display: inline-grid;
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eef4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.scope-features strong {
  display: block;
  grid-column: 2;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.scope-features small {
  display: block;
  grid-column: 2;
  margin-top: 0;
  color: #5d6982;
  font-size: 13px;
  line-height: 1.35;
}

.scope-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.scope-actions .btn {
  min-width: 270px;
  min-height: 48px;
}

.scope-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 26px;
  color: #667086;
  font-size: 13px;
  white-space: nowrap;
}

.scope-trust span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.scope-trust span::before {
  content: "✓";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f2ff;
  font-weight: 700;
}

.scope-visual {
  position: relative;
  min-height: 520px;
}

.scope-visual::before {
  display: none;
}

.scope-visual img {
  width: 142%;
  height: 620px;
  object-fit: cover;
  object-position: 42% top;
  border-radius: 0;
  filter: saturate(0.98);
  transform: translateY(-78px);
}

.scope-doc-card,
.scope-upload-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(197, 210, 230, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(3, 45, 99, 0.12);
}

.scope-doc-card {
  top: 410px;
  left: 12px;
  width: 170px;
  min-height: 162px;
  padding: 16px;
}

.scope-doc-card img {
  width: 86px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
  filter: none;
  transform: none;
}

.scope-doc-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}

.scope-doc-card i {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 8px;
  border-radius: 99px;
  background: #d8dee8;
}

.scope-doc-card i:nth-of-type(2) {
  width: 86%;
}

.scope-doc-card i:nth-of-type(3) {
  width: 55%;
}

.scope-upload-card {
  top: 300px;
  right: 6px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  width: 215px;
  padding: 14px;
}

.scope-upload-card > span {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
}

.scope-upload-card > span::before {
  content: "";
  width: 13px;
  height: 13px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(135deg) translate(-1px, -2px);
}

.scope-upload-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.scope-upload-card small {
  display: block;
  margin-top: 6px;
  color: #667086;
  font-size: 11px;
}

.scope-upload-card em {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0 58%, #dce3ee 58% 100%);
}

.client-side ul,
.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-side li {
  position: relative;
  padding: 0 0 14px 46px;
  border-bottom: 1px solid var(--line);
  color: #343a44;
}

.client-side li::before {
  content: "→";
  left: 0;
  top: -3px;
  color: var(--deep-blue);
}

.pricing {
  --price-blue: var(--blue);
  --price-blue-dark: var(--blue);
  background: linear-gradient(180deg, #ffffff, #fbfdff 78%, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 0 38px;
  scroll-margin-top: 70px;
}

.pricing .section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.pricing .section-heading .eyebrow {
  margin-bottom: 14px;
  color: var(--price-blue);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pricing .section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 3vw, 50px);
  line-height: 1.02;
}

.pricing .section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 410px;
  padding: 24px 24px 22px;
  flex-direction: column;
  border-color: rgba(205, 216, 232, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(8, 26, 63, 0.06);
}

.price-icon {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--price-blue);
  background: #eaf3ff;
  font-size: 0;
  font-weight: 600;
}

.price-icon-check::before {
  content: "";
  width: 17px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.price-icon-check::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 11px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 8px 8px 0 -5px currentColor;
}

.price-icon-standard::before {
  content: "";
  width: 19px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 7px 0 rgba(0, 107, 255, 0.12);
}

.price-icon-standard::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px currentColor, 0 12px currentColor;
  transform: translateY(1px);
}

.price-icon-complex::before,
.price-icon-complex::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewY(-28deg);
}

.price-icon-complex::before {
  top: 15px;
}

.price-icon-complex::after {
  top: 22px;
}

.price-badge {
  position: absolute;
  top: 28px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--price-blue);
  font-size: 13px;
  font-weight: 600;
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

.price-card strong {
  display: block;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(32px, 2.55vw, 42px);
  font-weight: 600;
  line-height: 1.02;
}

.price-card p {
  min-height: 66px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.36;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  position: relative;
  min-height: 22px;
  padding-left: 32px;
  color: #44516a;
  font-size: 13px;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--price-blue);
  background: #e8f2ff;
  font-size: 12px;
  font-weight: 600;
}

.price-btn {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.price-btn-secondary {
  border-color: var(--price-blue);
  color: var(--price-blue);
  background: #fff;
}

.price-btn-secondary:hover {
  border-color: var(--price-blue-dark);
  color: var(--price-blue-dark);
  background: #f4f8ff;
}

.featured-price {
  border-color: var(--price-blue);
  box-shadow: none;
}

.featured-price .btn-primary {
  border-color: var(--price-blue);
  background: var(--price-blue);
}

.featured-price .btn-primary:hover {
  border-color: var(--price-blue-dark);
  background: var(--price-blue-dark);
}

.price-trust {
  display: grid;
  grid-template-columns: 1fr repeat(4, max-content) 1fr;
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 34px auto 0;
  color: #516078;
  font-size: 12px;
}

.price-trust::before,
.price-trust::after {
  content: "";
  display: block;
  height: 1px;
  background: #b8cae5;
}

.price-trust span {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  display: inline-flex;
  align-items: center;
}

.price-trust span::before {
  content: "✓";
  position: absolute;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--price-blue);
  background: #e8f2ff;
  font-size: 12px;
  font-weight: 600;
}

.price-trust span:nth-child(2)::before {
  content: "♙";
  font-size: 16px;
}

.price-trust span:nth-child(3)::before {
  content: "DE";
  font-size: 10px;
}

.price-trust span:nth-child(4)::before {
  content: "♡";
  font-size: 15px;
}

.example-grid {
  grid-template-columns: 1.02fr 0.98fr;
}

.photo-stack {
  position: relative;
}

.photo-stack img,
.person-photo img,
.site-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.photo-stack img {
  aspect-ratio: 1.18;
  border: 1px solid rgba(197, 210, 230, 0.82);
  box-shadow: var(--shadow);
}

.mini-doc {
  position: absolute;
  right: -18px;
  width: 190px;
  height: 250px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 19, 24, 0.12);
}

.mini-doc-a {
  bottom: 44px;
  transform: rotate(4deg);
}

.mini-doc-b {
  bottom: 14px;
  right: 18px;
  transform: rotate(-2deg);
}

.analysis-sheet {
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 18px 48px rgba(3, 45, 99, 0.06);
}

.sheet {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.sheet-row {
  display: grid;
  grid-template-columns: 52px 0.7fr 1.3fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.sheet-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-person {
  background: #f7f9fc;
  border-top: 1px solid var(--line);
}

.person-grid {
  grid-template-columns: 1fr 0.78fr;
}

.contact-list {
  margin-top: 28px;
}

.contact-list span,
.contact-list a {
  padding-bottom: 12px;
  border-bottom: 1px solid #dfe4ec;
  font-weight: 600;
}

.person-photo img {
  max-height: 650px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-image {
  padding: 0 20px;
  background: #f7f9fc;
}

.site-image img {
  max-height: 360px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 58px;
  align-items: start;
}

.faq .section-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(40px, 3.35vw, 58px);
  line-height: 1.03;
}

.faq .section-copy h2 span {
  color: var(--blue);
}

.faq .section-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.faq-visual {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 6px;
}

.faq-visual img {
  width: 112%;
  height: 430px;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 42%;
  box-shadow: none;
}

.faq-visual div {
  position: absolute;
  right: 34px;
  top: 112px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 18px;
  min-width: 250px;
  padding: 20px 22px;
  border: 1px solid rgba(197, 210, 230, 0.82);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(3, 45, 99, 0.12);
  backdrop-filter: blur(14px);
}

.faq-mail-icon {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.faq-mail-icon::before {
  content: "";
  width: 21px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.faq-mail-icon::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 15px;
  height: 15px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.faq-visual div > span:last-child {
  display: grid;
  gap: 5px;
}

.faq-visual strong {
  color: var(--ink);
  font-size: 16px;
}

.faq-visual small {
  color: var(--muted);
  font-size: 14px;
}

.faq-visual a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.faq-list {
  padding: 24px 34px 14px;
  border: 1px solid rgba(197, 210, 230, 0.82);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(3, 45, 99, 0.07);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 24px 38px 24px 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

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

details p {
  max-width: 600px;
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.final-cta {
  padding: 86px 0 92px;
  border-top: 1px solid rgba(229, 232, 238, 0.85);
  background: #fff;
}

.final-box {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 58px 48px 54px;
  border: 1px solid rgba(197, 210, 230, 0.82);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at -4% 104%, rgba(24, 0, 173, 0.08) 0 210px, transparent 212px),
    radial-gradient(circle at 104% -6%, rgba(24, 0, 173, 0.07) 0 220px, transparent 222px),
    linear-gradient(145deg, #ffffff, #fbfdff);
  box-shadow: 0 18px 48px rgba(3, 45, 99, 0.055);
}

.final-eyebrow {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  padding: 0 32px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-box h2 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 3.6vw, 62px);
  line-height: 1.08;
}

.final-box h2 span {
  color: var(--blue);
}

.final-box > p:not(.final-eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.3;
}

.final-box .btn {
  min-width: 320px;
  min-height: 54px;
  margin-bottom: 42px;
  font-size: 17px;
}

.final-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, max-content));
  gap: 0;
  align-items: center;
  justify-content: center;
  color: #39465d;
}

.final-benefits span {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 260px;
  padding: 0 38px;
  text-align: left;
}

.final-benefits span span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  min-width: 0;
  padding: 0;
}

.final-benefits span + span {
  border-left: 1px solid rgba(197, 210, 230, 0.9);
}

.final-benefits i {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #e8f2ff;
}

.final-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.final-benefits small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.final-clock-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.final-clock-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(3px, -2px);
}

.final-lock-icon::before {
  content: "";
  width: 22px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: translateY(4px);
}

.final-lock-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  transform: translateY(-8px);
}

.final-check-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.final-check-icon::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.site-footer {
  overflow: hidden;
  border-top: 0;
  color: #d8e6fb;
  background:
    linear-gradient(145deg, rgba(9, 75, 160, 0.28), transparent 28%),
    linear-gradient(315deg, rgba(6, 78, 168, 0.22), transparent 32%),
    #031b3d;
}

.footer-shell {
  padding: 72px 0 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(174, 201, 239, 0.22);
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-made {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand p {
  max-width: 430px;
  margin: 24px 0 0;
  color: #d6e2f3;
  font-size: 16px;
  line-height: 1.4;
}

.footer-cta {
  min-width: 230px;
  color: #fff;
  border-color: #1800ad;
  background: linear-gradient(180deg, #1800ad 0%, #1800ad 100%);
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
  padding: 46px 0;
  border-bottom: 1px solid rgba(174, 201, 239, 0.22);
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 19px;
}

.footer-grid a,
.footer-grid span {
  color: #c4d2e8;
  font-size: 16px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.formblatt-page .formblatt-hero {
  padding-bottom: 70px;
}

.formblatt-page .formblatt-hero .eyebrow {
  margin-bottom: 28px;
}

.formblatt-page .formblatt-hero-visual img {
  width: 86%;
}

.formblatt-card-c {
  left: 4%;
  bottom: 22%;
}

.formblatt-card-d {
  right: 8%;
  top: 12%;
}

.formblatt-page .formblatt-doc-stack {
  left: 16px;
}

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

.formblatt-page .formblatt-feature-grid article:last-child {
  grid-column: 1 / -1;
  min-height: 96px;
}

.formblatt-page .formblatt-mini-doc {
  top: 74px;
}

.formblatt-page .formblatt-upload-card {
  top: 284px;
}

.formblatt-page .formblatt-errors .split-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
}

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

.formblatt-error-grid .content-card:last-child {
  grid-column: 1 / -1;
}

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

.efb-role-grid .content-card {
  padding: 30px;
}

.efb-role-grid .page-list {
  margin-top: 18px;
}

.formblatt-page .steps {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
}

.formblatt-page .step-line {
  left: 18%;
  right: 18%;
}

.formblatt-page .step {
  min-height: 320px;
}

@media (max-width: 1180px) {
  .formblatt-page .steps,
  .formblatt-error-grid,
  .efb-role-grid,
  .formblatt-page .formblatt-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branchen-page .service-steps,
  .branch-grid,
  .internal-link-grid,
  .checkpoint-grid,
  .worth-grid,
  .muster-links,
  .leistungen-grid,
  .usecase-grid,
  .leistungen-links,
  .after-check-grid,
  .send-grid,
  .ablauf-links,
  .blog-category-grid,
  .blog-card-grid,
  .vob-attention-grid,
  .vob-cluster-grid,
  .vob-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branchen-page .service-steps .step-line,
  .muster-page .muster-steps .step-line {
    display: none;
  }

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

  .responsibility-card ul {
    grid-template-columns: 1fr;
  }

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

  .formblatt-page .step-line {
    display: none;
  }

  .formblatt-page .formblatt-errors .split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .formblatt-page .formblatt-hero h1 {
    font-size: clamp(32px, 9vw, 38px);
  }

  .formblatt-page .formblatt-hero h1 span {
    display: block;
    overflow-wrap: anywhere;
  }

  .formblatt-page .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .formblatt-page h2 span {
    overflow-wrap: anywhere;
  }

  .formblatt-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .formblatt-page h2,
  .formblatt-page .scope-copy h2,
  .formblatt-page .section-copy h2,
  .formblatt-page .process .section-heading h2 {
    font-size: clamp(30px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .formblatt-page p,
  .formblatt-page li,
  .formblatt-page small,
  .formblatt-page strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .formblatt-page .section-copy,
  .formblatt-page .scope-copy,
  .formblatt-page .section-copy p:not(.eyebrow),
  .formblatt-page .scope-copy > p,
  .formblatt-page .lead {
    width: 100%;
    max-width: 100%;
  }

  .formblatt-page .hero-proof {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    max-width: 100%;
  }

  .formblatt-page .proof-copy {
    width: auto;
    min-width: 0;
  }

  .formblatt-page .proof-badge {
    height: 48px;
    margin-left: 0;
  }

  .formblatt-page .steps,
  .formblatt-error-grid,
  .efb-role-grid,
  .formblatt-page .formblatt-feature-grid {
    grid-template-columns: 1fr;
  }

  .formblatt-page .formblatt-feature-grid article:last-child,
  .formblatt-error-grid .content-card:last-child {
    grid-column: auto;
  }

  .formblatt-card-c,
  .formblatt-card-d,
  .formblatt-page .status-card-b {
    display: none;
  }

  .formblatt-page .document-transform,
  .formblatt-page .scope-visual,
  .formblatt-page .faq-visual {
    max-width: 100%;
    overflow: hidden;
  }

  .formblatt-page .split-grid > *,
  .formblatt-page .scope-grid > *,
  .formblatt-page .faq-grid > *,
  .formblatt-page .hero-grid > * {
    min-width: 0;
  }

  .formblatt-page .document-transform {
    min-height: 560px;
  }

  .formblatt-page .problem-person {
    right: -34px;
    width: 118%;
    max-width: none;
  }

  .formblatt-page .doc-stack {
    left: 8px;
    width: min(300px, 82vw);
  }

  .formblatt-page .check-rows {
    right: 8px;
    width: min(270px, 78vw);
  }

  .formblatt-page .scope-visual img {
    width: 112%;
    max-width: none;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 36px;
  color: #bdcce2;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 32px;
}

.page-main {
  padding: 74px 0 96px;
}

.page-hero {
  display: grid;
  gap: 20px;
  max-width: 860px;
  margin-bottom: 60px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 4.2vw, 64px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.content-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-card,
.text-panel,
.article-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.content-card,
.article-card {
  padding: 26px;
}

.content-card p,
.article-card p,
.text-panel p,
.page-list li {
  color: var(--muted);
}

.text-panel {
  padding: clamp(28px, 4vw, 46px);
}

.text-panel + .text-panel {
  margin-top: 20px;
}

.page-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.branchen-hero {
  padding-bottom: 62px;
}

.branchen-hero .hero-visual::before {
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.075), rgba(238, 244, 255, 0.62));
}

.branchen-hero-visual img {
  width: 82%;
}

.branch-chip-cloud {
  position: absolute;
  right: 8px;
  bottom: 54px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  width: min(440px, 82%);
}

.branch-chip-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(195, 205, 222, 0.78);
  border-radius: 999px;
  color: #25334b;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(3, 26, 57, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.branchen-intro {
  border-top: 1px solid rgba(229, 232, 238, 0.72);
}

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

.industry-note-grid article,
.challenge-grid article,
.branch-card,
.branch-detail,
.seo-notes {
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.industry-note-grid article {
  min-height: 178px;
  padding: 28px;
}

.industry-note-grid article:first-child {
  grid-column: 1 / -1;
  min-height: 150px;
  background:
    radial-gradient(circle at 94% 10%, rgba(24, 0, 173, 0.07) 0 96px, transparent 98px),
    #fff;
}

.industry-note-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.industry-note-grid p,
.challenge-grid p,
.branch-card p,
.branch-detail p,
.seo-notes li {
  color: var(--muted);
}

.branch-overview {
  background: #f8fafc;
}

.branch-overview .section-heading,
.branch-detail-section .section-heading,
.internal-links-section .section-heading {
  max-width: 850px;
}

.branch-overview .section-heading h2,
.branch-detail-section .section-heading h2,
.internal-links-section .section-heading h2 {
  max-width: 820px;
}

.branch-overview .section-heading p,
.branch-detail-section .section-heading p,
.internal-links-section .section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.branch-card {
  display: grid;
  align-content: start;
  min-height: 228px;
  padding: 24px;
}

.branch-card span,
.branch-detail span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-card h3 {
  margin-bottom: 12px;
}

.branch-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

.branch-detail-section {
  background: #fff;
}

.branch-detail-list {
  display: grid;
  gap: 18px;
}

.branch-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
}

.branch-detail h3 {
  max-width: 440px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.18;
}

.branch-detail p {
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
}

.challenge-section {
  background: #fff;
}

.challenge-grid article {
  min-height: 142px;
  padding: 24px;
}

.challenge-grid article:first-child {
  grid-column: 1 / -1;
}

.challenge-grid h3 {
  font-size: 18px;
}

.challenge-grid p {
  margin: 0;
  font-size: 15px;
}

.branchen-page .service-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1400px;
}

.branchen-page .service-steps .step {
  min-height: 360px;
}

.branchen-page .service-steps .step-line {
  left: 13%;
  right: 13%;
}

.internal-links-section {
  background: #f8fafc;
}

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

.internal-link-grid .content-card {
  display: grid;
  min-height: 190px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.internal-link-grid .content-card:hover {
  border-color: rgba(24, 0, 173, 0.34);
  box-shadow: 0 18px 44px rgba(3, 45, 99, 0.07);
  transform: translateY(-2px);
}

.internal-link-grid h3 {
  color: var(--blue);
  font-size: 18px;
}

.seo-notes {
  margin-top: 22px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 0, 173, 0.055) 0 160px, transparent 162px),
    #fff;
}

.muster-hero {
  padding-bottom: 64px;
}

.muster-panel-wrap {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.muster-panel-wrap::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.075), rgba(238, 244, 255, 0.7));
}

.muster-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: 34px;
  border: 1px solid rgba(197, 210, 230, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 74px rgba(3, 45, 99, 0.12);
}

.muster-panel-head,
.muster-sheet header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.muster-panel-head span,
.muster-sheet header span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.muster-panel-head strong,
.muster-sheet header strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 13px;
  font-weight: 700;
}

.muster-title {
  padding: 24px 0 20px;
}

.muster-title small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.muster-title h2 {
  margin: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.08;
}

.muster-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.muster-facts div {
  padding: 16px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fbfdff;
}

.muster-facts dt {
  margin-bottom: 5px;
  color: #667086;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.muster-facts dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.muster-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.muster-status-grid section {
  padding: 18px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fff;
}

.muster-status-grid h3 {
  font-size: 17px;
}

.muster-status-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.muster-status-grid li,
.muster-status-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.muster-status-grid li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
  font-weight: 700;
}

.muster-summary-grid,
.not-list {
  display: grid;
  gap: 16px;
}

.muster-summary-grid article,
.not-list article,
.worth-grid article {
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.muster-summary-grid article {
  padding: 26px;
}

.muster-summary-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.muster-summary-grid p,
.not-list p,
.worth-grid p,
.muster-sheet p,
.muster-sheet li,
.checkpoint-grid p {
  color: var(--muted);
}

.muster-sheet-section,
.worth-section {
  background: #f8fafc;
}

.muster-sheet-section .section-heading,
.checkpoints-section .section-heading,
.worth-section .section-heading,
.muster-page .internal-links-section .section-heading {
  max-width: 860px;
}

.muster-sheet-section .section-heading p,
.checkpoints-section .section-heading p,
.worth-section .section-heading p,
.muster-page .internal-links-section .section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.muster-sheet {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(197, 210, 230, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 62px rgba(3, 45, 99, 0.075);
}

.muster-sheet header h3 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.1;
}

.muster-sheet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
}

.muster-sheet-grid section {
  min-height: 184px;
  padding: 22px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.muster-sheet-grid .next-step {
  grid-column: 1 / -1;
  min-height: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(24, 0, 173, 0.06) 0 170px, transparent 172px),
    #fff;
}

.muster-sheet h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.muster-sheet p {
  margin: 0;
  font-size: 15px;
  line-height: 1.52;
}

.muster-sheet ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

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

.checkpoint-grid .content-card {
  min-height: 230px;
}

.checkpoint-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.not-section {
  background: #fff;
}

.not-list article {
  padding: 24px;
}

.not-list article:last-child {
  border-color: rgba(24, 0, 173, 0.2);
  background:
    radial-gradient(circle at 100% 0, rgba(24, 0, 173, 0.06) 0 140px, transparent 142px),
    #fff;
}

.not-list h3,
.worth-grid h3 {
  font-size: 18px;
}

.not-list p,
.worth-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

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

.worth-grid article {
  min-height: 174px;
  padding: 24px;
}

.muster-page .muster-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
}

.muster-page .muster-steps .step-line {
  left: 18%;
  right: 18%;
}

.muster-page .muster-steps .step {
  min-height: 340px;
}

.muster-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.leistungen-hero {
  padding-bottom: 66px;
}

.leistungen-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.leistungen-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.075), rgba(238, 244, 255, 0.68));
}

.leistungen-doc {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 34px;
  border: 1px solid rgba(197, 210, 230, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 74px rgba(3, 45, 99, 0.12);
}

.doc-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.doc-headline span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doc-headline strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 13px;
}

.doc-progress {
  display: grid;
  gap: 10px;
  padding: 26px 0 22px;
}

.doc-progress i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f2;
}

.doc-progress i:first-child {
  width: 92%;
  background: linear-gradient(90deg, var(--blue) 0 76%, #e2e8f2 76% 100%);
}

.doc-progress i:nth-child(2) {
  width: 78%;
}

.doc-progress i:nth-child(3) {
  width: 64%;
}

.leistungen-doc ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leistungen-doc li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fbfdff;
}

.leistungen-doc li > span {
  grid-row: 1 / span 2;
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(6, 78, 168, 0.28);
  border-radius: 6px;
  color: var(--blue);
  background: linear-gradient(145deg, #ffffff, #eaf2ff);
}

.leistungen-doc strong {
  color: var(--ink);
  font-size: 16px;
}

.leistungen-doc small {
  color: var(--muted);
  font-size: 13px;
}

.leistungen-note-grid {
  display: grid;
  gap: 16px;
}

.leistungen-note-grid article,
.responsibility-card,
.document-chip-grid,
.usecase-grid article {
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.leistungen-note-grid article {
  padding: 26px;
}

.leistungen-note-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.leistungen-note-grid p,
.leistungen-grid p,
.responsibility-card li,
.documents-section p,
.usecase-grid p {
  color: var(--muted);
}

.leistungen-grid-section,
.usecases-section {
  background: #f8fafc;
}

.leistungen-grid-section .section-heading,
.responsibility-section .section-heading,
.usecases-section .section-heading,
.leistungen-page .internal-links-section .section-heading {
  max-width: 880px;
}

.leistungen-grid-section .section-heading p,
.responsibility-section .section-heading p,
.usecases-section .section-heading p,
.leistungen-page .internal-links-section .section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.leistungen-grid .content-card {
  min-height: 310px;
}

.leistungen-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.leistungen-grid p {
  font-size: 15px;
  line-height: 1.5;
}

.responsibility-section,
.documents-section {
  background: #fff;
}

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

.responsibility-card {
  padding: clamp(28px, 3vw, 38px);
  background:
    radial-gradient(circle at 100% 0, rgba(24, 0, 173, 0.055) 0 170px, transparent 172px),
    #fff;
}

.responsibility-card.muted-card {
  background: #fff;
}

.responsibility-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.responsibility-card h3 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 28px;
}

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

.responsibility-card li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
}

.responsibility-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.document-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  padding: 34px;
  background:
    radial-gradient(circle at 92% 6%, rgba(24, 0, 173, 0.07) 0 150px, transparent 152px),
    #fff;
}

.document-chip-grid a,
.document-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(195, 205, 222, 0.78);
  border-radius: 999px;
  color: #25334b;
  background: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 600;
}

.document-chip-grid a {
  color: var(--blue);
}

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

.usecase-grid article {
  min-height: 196px;
  padding: 26px;
}

.usecase-grid h3 {
  font-size: 20px;
}

.usecase-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.leistungen-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ablauf-hero {
  padding-bottom: 66px;
}

.ablauf-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.ablauf-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.075), rgba(238, 244, 255, 0.68));
}

.ablauf-mini-flow {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 34px;
  border: 1px solid rgba(197, 210, 230, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 74px rgba(3, 45, 99, 0.12);
}

.mini-flow-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.mini-flow-head span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-flow-head strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 13px;
}

.ablauf-mini-flow ol {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ablauf-mini-flow li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fbfdff;
}

.ablauf-mini-flow b {
  display: grid;
  width: 44px;
  height: 40px;
  place-items: center;
  border-radius: 7px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 14px;
}

.ablauf-mini-flow li span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.ablauf-summary-grid,
.speed-card-grid {
  display: grid;
  gap: 16px;
}

.ablauf-summary-grid article,
.check-output-grid article,
.speed-card-grid article,
.send-grid article {
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.ablauf-summary-grid article,
.speed-card-grid article {
  padding: 26px;
}

.ablauf-summary-grid strong,
.speed-card-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.ablauf-summary-grid p,
.check-output-grid p,
.after-check-grid p,
.speed-card-grid p,
.send-grid p {
  color: var(--muted);
}

.ablauf-steps-section,
.after-check-section,
.send-section {
  background: #f8fafc;
}

.ablauf-steps-section .section-heading,
.after-check-section .section-heading,
.send-section .section-heading,
.ablauf-page .internal-links-section .section-heading {
  max-width: 880px;
}

.ablauf-steps-section .section-heading p,
.after-check-section .section-heading p,
.send-section .section-heading p,
.ablauf-page .internal-links-section .section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.ablauf-detail-list {
  display: grid;
  gap: 18px;
}

.ablauf-detail {
  display: grid;
  grid-template-columns: 72px minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.step-number {
  display: grid;
  width: 58px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 18px;
  font-weight: 700;
}

.step-main h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.step-main p,
.step-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.step-meta {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fbfdff;
}

.step-meta h4 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 15px;
}

.step-meta h4:first-child {
  margin-top: 0;
}

.check-output-section,
.speed-section {
  background: #fff;
}

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

.check-output-grid article {
  min-height: 160px;
  padding: 24px;
}

.check-output-grid h3,
.send-grid h3 {
  font-size: 20px;
}

.check-output-grid p,
.send-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

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

.after-check-grid .content-card {
  min-height: 210px;
}

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

.send-grid article {
  min-height: 170px;
  padding: 26px;
}

.ablauf-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.blog-hero {
  padding-bottom: 66px;
}

.blog-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.blog-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.075), rgba(238, 244, 255, 0.68));
}

.blog-feature-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 34px;
  border: 1px solid rgba(197, 210, 230, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 74px rgba(3, 45, 99, 0.12);
}

.blog-feature-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.blog-feature-head span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-feature-head strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 13px;
}

.blog-feature-main {
  padding: 26px 0;
}

.blog-feature-main small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-feature-main h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.06;
}

.blog-feature-main p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.blog-feature-list,
.popular-topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-feature-list span,
.popular-topic-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(195, 205, 222, 0.78);
  border-radius: 999px;
  color: #25334b;
  background: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
}

.blog-intro-grid {
  display: grid;
  gap: 16px;
}

.blog-intro-grid article,
.blog-category-grid article,
.blog-card {
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.blog-intro-grid article {
  padding: 26px;
}

.blog-intro-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.blog-intro-grid p,
.blog-category-grid p,
.blog-card p,
.popular-topics-section p {
  color: var(--muted);
}

.blog-categories-section,
.blog-grid-section {
  background: #f8fafc;
}

.blog-categories-section .section-heading,
.blog-grid-section .section-heading {
  max-width: 880px;
}

.blog-categories-section .section-heading p,
.blog-grid-section .section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.blog-category-grid article {
  min-height: 190px;
  padding: 22px;
}

.blog-category-grid h3 {
  font-size: 18px;
}

.blog-category-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.48;
}

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

.blog-card {
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 26px;
}

.blog-card > span {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 12px;
  font-weight: 700;
}

.blog-card h3 {
  font-size: 21px;
  line-height: 1.18;
}

.blog-card p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.5;
}

.blog-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.blog-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.blog-card a {
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
}

.popular-topics-section {
  background: #fff;
}

.popular-topic-cloud {
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background:
    radial-gradient(circle at 96% 6%, rgba(24, 0, 173, 0.07) 0 150px, transparent 152px),
    #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.popular-topic-cloud a {
  min-height: 44px;
  padding: 0 18px;
  color: var(--blue);
  font-size: 14px;
}

.vob-hero {
  padding-bottom: 66px;
}

.vob-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.vob-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(24, 0, 173, 0.075), rgba(238, 244, 255, 0.68));
}

.vob-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  padding: 34px;
  border: 1px solid rgba(197, 210, 230, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 74px rgba(3, 45, 99, 0.12);
}

.vob-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.vob-panel-head span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vob-panel-head strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef4ff;
  font-size: 13px;
}

.vob-panel-title {
  padding: 26px 0 22px;
}

.vob-panel-title small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vob-panel-title h2 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.06;
}

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

.vob-panel-grid span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  color: #25334b;
  background: #fbfdff;
  font-size: 14px;
  font-weight: 600;
}

.vob-note-grid,
.vob-error-list {
  display: grid;
  gap: 16px;
}

.vob-note-grid article,
.vob-error-list article,
.vob-cluster-grid article {
  border: 1px solid rgba(229, 232, 238, 0.95);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(3, 45, 99, 0.045);
}

.vob-note-grid article,
.vob-error-list article {
  padding: 26px;
}

.vob-note-grid strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.vob-note-grid p,
.vob-attention-grid p,
.vob-error-list p,
.vob-cluster-grid p {
  color: var(--muted);
}

.vob-attention-section,
.vob-cluster-section {
  background: #f8fafc;
}

.vob-attention-section .section-heading,
.vob-cluster-section .section-heading,
.vob-page .internal-links-section .section-heading {
  max-width: 880px;
}

.vob-attention-section .section-heading p,
.vob-cluster-section .section-heading p,
.vob-page .internal-links-section .section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.vob-attention-grid .content-card {
  min-height: 250px;
}

.vob-attention-grid span,
.vob-cluster-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.vob-attention-grid p {
  font-size: 15px;
  line-height: 1.5;
}

.vob-complexity-section {
  background: #fff;
}

.vob-error-list h3 {
  font-size: 20px;
}

.vob-error-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

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

.vob-cluster-grid article {
  min-height: 330px;
  padding: 30px;
}

.vob-cluster-grid h3 {
  font-size: 26px;
}

.vob-cluster-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.vob-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-hero {
  overflow: hidden;
}

.about-principle-wrap {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 520px;
}

.about-principle-wrap::before {
  content: "";
  position: absolute;
  inset: auto -74px 12px auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(55, 120, 255, 0.16), rgba(154, 120, 255, 0.08) 52%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.about-principle {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(13, 35, 69, 0.1);
}

.about-principle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.about-principle-head span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-principle-head strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.about-principle p {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

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

.about-principle li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.about-principle li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(22, 98, 255, 0.1);
}

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

.about-note-grid .content-card {
  min-height: 220px;
}

.about-note-grid span,
.about-values-grid span,
.about-audience-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-origin-section,
.about-work-section,
.about-audience-section {
  background: #f8fafc;
}

.about-story-card {
  display: grid;
  gap: 18px;
  max-width: 900px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(13, 35, 69, 0.06);
}

.about-story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.about-values-grid .content-card {
  min-height: 250px;
}

.about-values-grid p,
.about-audience-grid p {
  font-size: 15px;
  line-height: 1.55;
}

.about-stance-section .section-heading {
  max-width: 860px;
}

.about-stance-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.about-stance-list article {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.about-stance-list article:last-child {
  border-right: 0;
}

.about-stance-list h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.about-stance-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.about-audience-grid .content-card {
  min-height: 230px;
}

.about-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-hero {
  overflow: hidden;
}

.contact-form-wrap {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: auto -84px 8px auto;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(55, 120, 255, 0.16), rgba(154, 120, 255, 0.08) 52%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.contact-form-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(200, 211, 229, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(8, 26, 63, 0.09);
}

.contact-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-form-head span,
.contact-option-grid span,
.contact-reason-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-head strong {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-form-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

.contact-form-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.contact-form-card label {
  gap: 8px;
  font-size: 13px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid #cfd8e8;
  border-radius: 5px;
  color: #07102a;
  background: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form-card input {
  min-height: 44px;
  padding: 0 16px;
}

.contact-form-card textarea {
  min-height: 126px;
  padding: 13px 16px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #8090ad;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3, 45, 99, 0.12);
}

.contact-form-card .date-field::before,
.contact-form-card .input-wrap::before {
  content: none;
}

.contact-form-card .date-field::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #667692;
  border-radius: 4px;
  box-shadow: inset 0 5px 0 rgba(102, 118, 146, 0.1);
  transform: translateY(-50%);
}

.contact-form-card .date-field input {
  padding-right: 44px;
}

.contact-form-card .privacy-note {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #687596;
  font-size: 12px;
  line-height: 1.5;
}

.contact-form-card .privacy-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.contact-direct-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.contact-direct-card a,
.contact-direct-card p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.contact-direct-card > *:last-child {
  border-right: 0;
}

.contact-direct-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.contact-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-proof-list li {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.contact-options-section,
.contact-documents-section {
  background: #f8fafc;
}

.contact-option-grid {
  display: grid;
  gap: 18px;
}

.contact-option-grid article,
.contact-document-list article,
.contact-trust-card article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(13, 35, 69, 0.05);
}

.contact-option-grid h3,
.contact-document-list span,
.contact-trust-card h3 {
  display: block;
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-option-grid p,
.contact-document-list p,
.contact-trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-option-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.contact-reasons-section .section-heading,
.contact-page .internal-links-section .section-heading {
  max-width: 880px;
}

.contact-reasons-section .section-heading p,
.contact-page .internal-links-section .section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.contact-reason-grid .content-card {
  min-height: 292px;
}

.contact-reason-grid h3 {
  margin-top: 18px;
}

.contact-document-list,
.contact-trust-card {
  display: grid;
  gap: 16px;
}

.contact-document-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
  box-shadow: none;
}

.contact-document-list span {
  margin: 0;
  font-size: 18px;
}

.contact-trust-section {
  background: #fff;
}

.contact-trust-card article {
  box-shadow: none;
}

.contact-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-hero {
  padding-bottom: 64px;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #f8fafc 72%, #f8fafc 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: end;
}

.article-hero-copy {
  max-width: 920px;
}

.article-hero h1 {
  max-width: 920px;
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.article-meta span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.article-toc {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 60px rgba(13, 35, 69, 0.08);
}

.article-toc::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(55, 120, 255, 0.13), rgba(154, 120, 255, 0.07) 54%, rgba(255, 255, 255, 0) 72%);
}

.article-toc span,
.sidebar-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-toc a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.article-toc a:last-child {
  border-bottom: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 320px;
  gap: 70px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 96px;
}

.article-content {
  display: grid;
  gap: 56px;
}

.article-section {
  display: grid;
  gap: 18px;
  scroll-margin-top: 90px;
}

.article-section h2,
.article-cta h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.article-section h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.article-section p,
.article-section li,
.article-cta p,
.sidebar-card p,
.sidebar-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.article-section p {
  margin: 0;
}

.article-section ul,
.sidebar-card ul {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.article-section li,
.sidebar-card li {
  position: relative;
  padding-left: 28px;
}

.article-section li::before,
.sidebar-card li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(22, 98, 255, 0.09);
}

.article-note {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.article-note strong {
  color: var(--navy);
  font-size: 17px;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.article-card-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-card-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.article-card-grid p {
  font-size: 15px;
  line-height: 1.55;
}

.checklist-table {
  display: grid;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.checklist-table > div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 130px;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.checklist-table > div:first-child {
  background: #f8fafc;
}

.checklist-table > div:last-child {
  border-bottom: 0;
}

.checklist-table strong,
.checklist-table span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.checklist-table p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.checklist-table em {
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.article-cta {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(195, 205, 222, 0.9);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f6f9ff);
  box-shadow: 0 22px 60px rgba(13, 35, 69, 0.08);
}

.article-cta p {
  max-width: 720px;
  margin: 0;
}

.article-faq {
  padding-top: 8px;
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(13, 35, 69, 0.05);
}

.tender-hero {
  background:
    radial-gradient(circle at 82% 28%, rgba(55, 120, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #f8fafc 72%, #f8fafc 100%);
}

.tender-hero-grid {
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
}

.tender-hero h1 {
  font-size: clamp(40px, 4.8vw, 60px);
}

.tender-hero h1 span {
  display: block;
}

.tender-facts-panel {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(195, 205, 222, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(13, 35, 69, 0.1);
}

.tender-facts-panel::before {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -78px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(55, 120, 255, 0.13), rgba(154, 120, 255, 0.07) 56%, rgba(255, 255, 255, 0) 73%);
}

.panel-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tender-facts-grid,
.tender-overview-list {
  display: grid;
  gap: 12px;
}

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

.tender-facts-grid div,
.tender-overview-list div {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tender-facts-grid small,
.tender-overview-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tender-facts-grid strong,
.tender-overview-list strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

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

.tender-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.tender-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(195, 205, 222, 0.95);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.tender-source-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(195, 205, 222, 0.9);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f7faff);
}

.tender-source-card p {
  max-width: 100%;
}

.sidebar-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.sidebar-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.sidebar-card li {
  font-size: 14px;
  line-height: 1.45;
}

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

.article-card {
  display: grid;
  gap: 18px;
}

.article-card a {
  color: var(--blue);
  font-weight: 500;
}

.page-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.compact-form {
  display: grid;
  gap: 14px;
}

.compact-form textarea {
  min-height: 130px;
  padding: 13px;
  border: 1px solid #d8dde6;
  border-radius: 5px;
  font: inherit;
  resize: vertical;
}

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

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes paperShift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 38px));
  }
}

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

  .check-section {
    padding: 64px 0 58px;
  }

  .check-copy {
    min-height: 480px;
  }

  .check-copy h2,
  .check-intro {
    max-width: 780px;
  }

  .check-document {
    right: 3vw;
    width: 400px;
    height: 360px;
  }

  .check-folder {
    width: 350px;
  }

  .upload-card {
    max-width: 680px;
    margin: 0 auto;
  }

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

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

  .about-stance-list article:nth-child(2) {
    border-right: 0;
  }

  .about-stance-list article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .contact-direct-card,
  .contact-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-direct-card > *:nth-child(2) {
    border-right: 0;
  }

  .contact-direct-card > *:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding: 14px 20px 0;
  }

  .brand-group {
    grid-column: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 18px;
    padding-bottom: 16px;
    overflow-x: auto;
  }

  .header-cta {
    grid-column: 2;
    order: 2;
  }

  .hero-grid,
  .split-grid,
  .check-grid,
  .scope-grid,
  .example-grid,
  .person-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .branch-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .industry-note-grid,
  .challenge-grid,
  .muster-summary-grid,
  .not-list,
  .leistungen-note-grid {
    max-width: 760px;
  }

  .muster-panel-wrap {
    min-height: 520px;
  }

  .leistungen-visual {
    min-height: 500px;
  }

  .ablauf-visual {
    min-height: 500px;
  }

  .blog-visual {
    min-height: 500px;
  }

  .vob-visual {
    min-height: 500px;
  }

  .about-principle-wrap {
    min-height: 500px;
  }

  .contact-form-wrap {
    min-height: auto;
  }

  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-sidebar {
    position: static;
    max-width: 720px;
  }

  .ablauf-detail {
    grid-template-columns: 72px 1fr;
  }

  .step-meta {
    grid-column: 1 / -1;
  }

  .hero-copy {
    padding-left: 0;
    padding-top: 18px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 520px;
  }

  .problem {
    padding-top: 66px;
    padding-bottom: 70px;
  }

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

  .problem .section-copy h2 {
    max-width: 680px;
    font-size: clamp(36px, 5.6vw, 50px);
  }

  .problem .section-copy p:not(.eyebrow, .problem-trust) {
    max-width: 680px;
    font-size: 17px;
  }

  .document-transform {
    min-height: 470px;
    max-width: 720px;
    margin: 0 auto;
  }

  .problem-person {
    right: 74px;
    width: 520px;
    height: 410px;
    bottom: 8px;
  }

  .doc-stack {
    left: 20px;
    width: 320px;
    height: 350px;
  }

  .check-rows {
    top: 72px;
    right: -22px;
    width: 280px;
  }

  .process .section-heading h2 {
    font-size: clamp(34px, 6vw, 46px);
  }

  .process .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .check-section {
    padding: 64px 0 58px;
  }

  .check-copy {
    min-height: 480px;
  }

  .check-copy h2,
  .check-intro {
    max-width: 780px;
  }

  .check-document {
    right: 3vw;
    width: 330px;
  }

  .upload-card {
    max-width: 680px;
    margin: 0 auto;
  }

  .scope {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .scope-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .scope-copy h2,
  .scope-copy > p {
    max-width: 760px;
  }

  .scope-visual {
    min-height: 460px;
  }

  .scope-visual img {
    width: 100%;
    height: 460px;
    object-position: 56% center;
  }

  .scope-doc-card {
    left: 24px;
  }

  .scope-upload-card {
    right: 18px;
  }

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

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

  .price-trust::before,
  .price-trust::after {
    display: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq .section-copy h2,
  .faq .section-copy > p:not(.eyebrow) {
    max-width: 680px;
  }

  .faq-visual {
    max-width: 680px;
  }

  .faq-list {
    max-width: 760px;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 680px;
  }

  .branchen-page .service-steps {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .muster-page .muster-steps {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .step-line {
    left: 31px;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .step-line::before,
  .step-line::after {
    display: none;
  }

  .step-line span {
    width: 100%;
    height: 0;
  }

  .step {
    min-height: 0;
    padding: 92px 24px 24px;
  }

  .step span {
    top: 24px;
    left: 24px;
  }

  .step-visual {
    top: 24px;
    right: 24px;
  }

  .content-grid,
  .article-grid,
  .page-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

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

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 28px;
  }

  .hero-copy,
  .hero-actions,
  .section-copy,
  .pricing .section-heading,
  .faq .section-copy,
  .faq-list,
  .upload-card,
  .price-card,
  .final-box {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-grid,
  .check-grid,
  .faq-grid,
  .split-grid,
  .price-grid {
    min-width: 0;
    max-width: 100%;
  }

  .logo-strip {
    margin-top: 28px;
  }

  .logo-track {
    gap: 64px;
    animation-duration: 64s;
  }

  .logo-track img {
    max-width: 145px;
    height: 34px;
  }

  .logo-track img.logo-boost {
    max-width: 178px;
    height: 44px;
  }

  .logo-track img.logo-l3 {
    max-width: 214px;
    height: 54px;
    transform: scale(1.14);
  }

  .logo-track img.logo-l7 {
    max-width: 230px;
    height: 60px;
    transform: scale(1.45);
  }

  .logo-track img.logo-l8,
  .logo-track img.logo-l9 {
    max-width: 210px;
    height: 52px;
    transform: scale(1.18);
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 14px;
    overflow-x: visible;
    font-size: 14px;
  }

  .main-nav a,
  .main-nav button {
    flex: 0 0 auto;
  }

  .dropdown-menu {
    left: 0;
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    transform: translate(0, 0);
  }

  .logo-brand img {
    width: 138px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .eyebrow {
    font-size: 13px;
  }

  .mobile-break {
    display: inline;
  }

  .lead {
    width: 100%;
    max-width: 330px;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .assurance,
  .hero-proof {
    width: 100%;
    max-width: 330px;
    overflow-wrap: break-word;
  }

  .hero-proof {
    align-items: flex-start;
    gap: 12px;
  }

  .proof-avatars img {
    width: 38px;
    height: 38px;
  }

  .proof-copy strong {
    font-size: 13px;
  }

  .proof-copy span {
    font-size: 11px;
    line-height: 1.2;
  }

  .proof-stars {
    width: 90px;
    font-size: 17px;
    letter-spacing: 0.9px;
  }

  .proof-badge {
    height: 54px;
    margin-left: 22px;
  }

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

  .btn {
    max-width: 100%;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    gap: 16px;
    justify-items: start;
  }

  .text-link {
    width: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .hero-visual {
    margin-top: 10px;
    overflow: visible;
  }

  .hero-visual::before {
    width: 390px;
    height: 390px;
    transform: translate(6px, 4px);
  }

  .hero-visual img {
    width: 112%;
    max-width: none;
    transform: translateX(-2%);
  }

  .logo-strip {
    margin-top: 22px;
    padding-bottom: 0;
  }

  .logo-track {
    gap: 48px;
    animation-duration: 56s;
  }

  .logo-track img {
    max-width: 120px;
    height: 28px;
  }

  .logo-track img.logo-boost {
    max-width: 150px;
    height: 36px;
  }

  .logo-track img.logo-l3 {
    max-width: 180px;
    height: 45px;
    transform: scale(1.12);
  }

  .logo-track img.logo-l7 {
    max-width: 190px;
    height: 50px;
    transform: scale(1.35);
  }

  .logo-track img.logo-l8,
  .logo-track img.logo-l9 {
    max-width: 176px;
    height: 44px;
    transform: scale(1.14);
  }

  .status-card {
    gap: 8px;
    min-width: 148px;
    max-width: 162px;
    padding: 9px 10px;
  }

  .status-card strong {
    font-size: 12px;
  }

  .status-card span {
    font-size: 10px;
  }

  .status-card small {
    font-size: 11px;
  }

  .status-icon {
    width: 34px;
    height: 34px;
  }

  .status-card-a {
    top: 54px;
    left: 10px;
  }

  .status-card-b {
    top: 158px;
    right: 8px;
    display: flex;
  }

  .status-card-c,
  .status-card-d {
    display: none;
  }

  .process {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .process .section-heading {
    margin-bottom: 28px;
  }

  .process .section-heading .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .process .section-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .process .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .step {
    padding: 84px 18px 20px;
  }

  .step span {
    width: 44px;
    height: 40px;
    font-size: 14px;
  }

  .step-visual {
    width: 48px;
    height: 48px;
  }

  .step h3 {
    font-size: 19px;
  }

  .step p {
    font-size: 14px;
  }

  .step ul {
    margin-top: 22px;
    padding: 18px;
  }

  .step li {
    padding-left: 34px;
    font-size: 14px;
  }

  .step li::before {
    width: 24px;
    height: 24px;
  }

  .process-cta {
    margin-top: 30px;
  }

  .process-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .final-cta {
    padding: 58px 0 64px;
  }

  .final-box {
    padding: 34px 18px 32px;
  }

  .final-eyebrow {
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .final-box h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .final-box > p:not(.final-eyebrow) {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .final-box .btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin-bottom: 28px;
    font-size: 16px;
  }

  .final-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .final-benefits span {
    min-width: 0;
    padding: 0;
  }

  .final-benefits span + span {
    padding-top: 16px;
    border-top: 1px solid rgba(197, 210, 230, 0.9);
    border-left: 0;
  }

  .price-grid,
  .form-grid,
  .document-transform {
    grid-template-columns: 1fr;
  }

  .check-section {
    padding: 54px 0 48px;
  }

  .check-copy {
    min-height: 0;
    padding-top: 0;
  }

  .check-eyebrow {
    gap: 14px;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .check-eyebrow::before {
    width: 24px;
  }

  .check-copy h1,
  .check-copy h2 {
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: 0.98;
  }

  .check-copy h1,
  .check-copy h2,
  .check-intro,
  .check-benefits {
    max-width: 100%;
  }

  .check-intro {
    margin-bottom: 34px;
    font-size: 17px;
    line-height: 1.5;
  }

  .check-benefits {
    gap: 22px;
    margin-bottom: 34px;
  }

  .check-benefit {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .check-benefit strong {
    font-size: 16px;
  }

  .check-benefit small {
    font-size: 14px;
  }

  .scope {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .scope-copy .eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .scope-copy h2 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .scope-copy > p {
    font-size: 15px;
  }

  .scope-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .scope-features article {
    grid-template-columns: 36px 1fr;
    min-height: 86px;
    padding: 14px;
  }

  .scope-feature-icon {
    width: 36px;
    height: 36px;
  }

  .scope-actions {
    gap: 16px;
  }

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

  .scope-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 13px;
    white-space: normal;
  }

  .scope-visual {
    min-height: 360px;
  }

  .scope-visual img {
    width: 128%;
    height: 450px;
    object-position: 42% top;
    transform: translateY(-52px);
  }

  .scope-doc-card {
    top: 250px;
    left: 12px;
    width: 145px;
    min-height: 140px;
    padding: 13px;
  }

  .scope-doc-card img {
    width: 86px;
    height: 34px;
    margin-bottom: 16px;
    transform: none;
  }

  .scope-doc-card strong {
    font-size: 12px;
  }

  .scope-upload-card {
    top: 128px;
    right: 12px;
    width: 185px;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .scope-upload-card > span {
    width: 36px;
    height: 36px;
  }

  .scope-upload-card strong {
    font-size: 13px;
  }

  .scope-upload-card small {
    font-size: 11px;
  }

  .check-document {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    height: 360px;
    margin: 0 auto;
  }

  .check-folder {
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(100%, 340px);
    transform: translateX(-50%);
  }

  .paper-stack {
    left: 50%;
    right: auto;
    width: 230px;
    height: 236px;
    transform: translateX(-50%) rotate(12deg) skewY(-4deg);
  }

  .paper-front {
    padding: 28px 34px;
  }

  .paper-front img {
    width: 126px;
    height: 38px;
    margin-bottom: 26px;
  }

  .paper-front strong {
    font-size: 18px;
  }

  .dropzone {
    width: 100%;
    min-height: 214px;
    padding: 28px 18px;
  }

  .upload-card {
    width: 100%;
    max-width: 100%;
    padding: 24px 18px 22px;
    overflow: hidden;
  }

  .upload-card-head {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }

  .upload-card-head h3 {
    font-size: 24px;
  }

  .upload-card-head h2 {
    font-size: 24px;
    line-height: 1.08;
  }

  .upload-card-head span {
    font-size: 14px;
  }

  .upload-card label {
    font-size: 14px;
  }

  .upload-icon {
    width: 66px;
    height: 66px;
  }

  .dropzone strong {
    font-size: 19px;
  }

  .dropzone small,
  .dropzone em {
    font-size: 14px;
  }

  .upload-card .privacy-note {
    align-items: flex-start;
    font-size: 12px;
  }

  .result-card {
    padding: 22px;
  }

  .result-head {
    display: grid;
    gap: 12px;
  }

  .result-card dl div {
    grid-template-columns: 46px 1fr;
    gap: 6px 12px;
  }

  .result-card dl div dd {
    grid-column: 2;
  }

  .pricing .section-heading {
    margin-bottom: 30px;
  }

  .pricing .section-heading h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .pricing .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .price-card {
    min-height: 0;
    padding: 26px 24px 22px;
  }

  .price-card p {
    min-height: 0;
  }

  .price-badge {
    top: 28px;
    right: 24px;
  }

  .price-trust span {
    min-height: 28px;
  }

  .price-trust {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .faq .section-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .faq .section-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .faq-visual {
    margin-top: 22px;
  }

  .faq-visual img {
    height: 300px;
    object-position: 52% 18%;
  }

  .faq-visual div {
    right: 14px;
    top: auto;
    bottom: 14px;
    grid-template-columns: 40px 1fr;
    min-width: 0;
    width: calc(100% - 28px);
    padding: 16px;
  }

  .faq-mail-icon {
    width: 40px;
    height: 40px;
  }

  .faq-list {
    padding: 10px 18px 4px;
  }

  summary {
    padding: 20px 32px 20px 0;
    font-size: 16px;
  }

  summary::after {
    top: 20px;
    right: 2px;
    font-size: 22px;
  }

  details p {
    margin: -4px 0 20px;
    font-size: 15px;
  }

  .problem {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .problem .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .problem .section-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .problem .section-copy p:not(.eyebrow, .problem-trust) {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .problem-actions {
    gap: 14px;
    margin-top: 22px;
  }

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

  .document-transform {
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 0;
  }

  .document-transform::before {
    display: none;
  }

  .problem-person {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 260px;
    object-position: center bottom;
    border-radius: 6px;
  }

  .doc-stack {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 300px);
    height: 305px;
    margin: 0 auto 18px;
    transform: none;
  }

  .doc-page {
    gap: 14px;
    padding: 26px 24px;
  }

  .doc-head img {
    width: 96px;
  }

  .doc-head small {
    font-size: 10px;
  }

  .doc-page h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .doc-lines i {
    height: 7px;
  }

  .doc-page ol {
    gap: 8px;
    font-size: 12px;
  }

  .check-rows {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 12px 16px;
    transform: none;
  }

  .check-rows li {
    grid-template-columns: 40px 1fr 28px;
    gap: 10px;
    min-height: 62px;
  }

  .check-rows strong {
    font-size: 14px;
  }

  .check-rows small {
    font-size: 12px;
  }

  .row-icon {
    width: 40px;
    height: 40px;
  }

  .result-card dl div,
  .sheet-row {
    grid-template-columns: 46px 1fr;
    gap: 5px 12px;
  }

  .result-card dl div dd,
  .sheet-row strong {
    grid-column: 2;
  }

  .page-main {
    padding: 54px 0 72px;
  }

  .page-hero {
    margin-bottom: 38px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .price-card {
    min-height: 190px;
  }

  .mini-doc {
    display: none;
  }

  .footer-shell {
    padding: 50px 0 30px;
  }

  .footer-top,
  .footer-bottom {
    display: grid;
  }

  .footer-logo-row {
    display: grid;
    gap: 18px;
  }

  .footer-logo {
    width: 185px;
  }

  .footer-made {
    width: 110px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-cta {
    width: 100%;
    min-width: 0;
  }

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

  .footer-grid {
    padding: 38px 0;
  }

}

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

  .logo-track {
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .formblatt-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .formblatt-page .hero-copy,
  .formblatt-page .section-copy,
  .formblatt-page .scope-copy,
  .formblatt-page .hero-actions,
  .formblatt-page .split-grid > *,
  .formblatt-page .scope-grid > *,
  .formblatt-page .faq-grid > *,
  .formblatt-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .formblatt-page .formblatt-hero h1,
  .formblatt-page h2,
  .formblatt-page .scope-copy h2,
  .formblatt-page .section-copy h2,
  .formblatt-page .process .section-heading h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .formblatt-page .lead,
  .formblatt-page .section-copy p:not(.eyebrow),
  .formblatt-page .scope-copy > p,
  .formblatt-page .process .section-heading p:not(.eyebrow),
  .formblatt-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .formblatt-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .branchen-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .branchen-page .hero-copy,
  .branchen-page .section-copy,
  .branchen-page .hero-actions,
  .branchen-page .split-grid > *,
  .branchen-page .faq-grid > *,
  .branchen-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .branchen-page h1,
  .branchen-page h2,
  .branchen-page .section-copy h2,
  .branchen-page .process .section-heading h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .branchen-page .lead,
  .branchen-page .section-copy p:not(.eyebrow),
  .branchen-page .process .section-heading p:not(.eyebrow),
  .branchen-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .branchen-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .muster-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .muster-page .hero-copy,
  .muster-page .section-copy,
  .muster-page .hero-actions,
  .muster-page .split-grid > *,
  .muster-page .faq-grid > *,
  .muster-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .muster-page h1,
  .muster-page h2,
  .muster-page .section-copy h2,
  .muster-page .process .section-heading h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .muster-page .lead,
  .muster-page .section-copy p:not(.eyebrow),
  .muster-page .process .section-heading p:not(.eyebrow),
  .muster-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .muster-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .muster-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .muster-page .hero-actions .text-link {
    justify-self: start;
  }

  .muster-panel-wrap {
    min-height: auto;
    padding-top: 14px;
  }

  .muster-panel-wrap::before {
    width: 420px;
    height: 420px;
  }

  .muster-panel,
  .muster-sheet {
    padding: 22px;
  }

  .leistungen-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .leistungen-page .hero-copy,
  .leistungen-page .section-copy,
  .leistungen-page .hero-actions,
  .leistungen-page .split-grid > *,
  .leistungen-page .faq-grid > *,
  .leistungen-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .leistungen-page h1,
  .leistungen-page h2,
  .leistungen-page .section-copy h2,
  .leistungen-page .process .section-heading h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .leistungen-page .lead,
  .leistungen-page .section-copy p:not(.eyebrow),
  .leistungen-page .process .section-heading p:not(.eyebrow),
  .leistungen-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .leistungen-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .leistungen-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .leistungen-page .hero-actions .text-link {
    justify-self: start;
  }

  .leistungen-visual {
    min-height: auto;
    padding-top: 14px;
  }

  .leistungen-visual::before {
    width: 420px;
    height: 420px;
  }

  .leistungen-doc {
    padding: 22px;
  }

  .ablauf-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .ablauf-page .hero-copy,
  .ablauf-page .section-copy,
  .ablauf-page .hero-actions,
  .ablauf-page .split-grid > *,
  .ablauf-page .faq-grid > *,
  .ablauf-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .ablauf-page h1,
  .ablauf-page h2,
  .ablauf-page .section-copy h2,
  .ablauf-page .process .section-heading h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .ablauf-page .lead,
  .ablauf-page .section-copy p:not(.eyebrow),
  .ablauf-page .process .section-heading p:not(.eyebrow),
  .ablauf-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .ablauf-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .ablauf-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .ablauf-page .hero-actions .text-link {
    justify-self: start;
  }

  .ablauf-visual {
    min-height: auto;
    padding-top: 14px;
  }

  .ablauf-visual::before {
    width: 420px;
    height: 420px;
  }

  .ablauf-mini-flow {
    padding: 22px;
  }

  .blog-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .blog-page .hero-copy,
  .blog-page .section-copy,
  .blog-page .hero-actions,
  .blog-page .split-grid > *,
  .blog-page .faq-grid > *,
  .blog-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .blog-page h1,
  .blog-page h2,
  .blog-page .section-copy h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .blog-page .lead,
  .blog-page .section-copy p:not(.eyebrow),
  .blog-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .blog-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .blog-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .blog-page .hero-actions .text-link {
    justify-self: start;
  }

  .blog-visual {
    min-height: auto;
    padding-top: 14px;
  }

  .blog-visual::before {
    width: 420px;
    height: 420px;
  }

  .blog-feature-panel {
    padding: 22px;
  }

  .vob-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .vob-page .hero-copy,
  .vob-page .section-copy,
  .vob-page .hero-actions,
  .vob-page .split-grid > *,
  .vob-page .faq-grid > *,
  .vob-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .vob-page h1,
  .vob-page h2,
  .vob-page .section-copy h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .vob-page .lead,
  .vob-page .section-copy p:not(.eyebrow),
  .vob-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .vob-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .vob-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .vob-page .hero-actions .text-link {
    justify-self: start;
  }

  .vob-visual {
    min-height: auto;
    padding-top: 14px;
  }

  .vob-visual::before {
    width: 420px;
    height: 420px;
  }

  .vob-panel {
    padding: 22px;
  }

  .about-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .about-page .hero-copy,
  .about-page .section-copy,
  .about-page .hero-actions,
  .about-page .split-grid > *,
  .about-page .faq-grid > *,
  .about-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-page h1,
  .about-page h2,
  .about-page .section-copy h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .about-page .lead,
  .about-page .section-copy p:not(.eyebrow),
  .about-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .about-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .about-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .about-page .hero-actions .text-link {
    justify-self: start;
  }

  .about-principle-wrap {
    min-height: auto;
    padding-top: 14px;
  }

  .about-principle-wrap::before {
    width: 420px;
    height: 420px;
  }

  .about-principle,
  .about-story-card {
    padding: 22px;
  }

  .muster-facts,
  .muster-status-grid,
  .muster-sheet-grid,
  .checkpoint-grid,
  .worth-grid,
  .muster-links,
  .leistungen-grid,
  .responsibility-grid,
  .usecase-grid,
  .leistungen-links,
  .check-output-grid,
  .after-check-grid,
  .send-grid,
  .ablauf-links,
  .blog-category-grid,
  .blog-card-grid,
  .vob-panel-grid,
  .vob-attention-grid,
  .vob-cluster-grid,
  .vob-links,
  .about-note-grid,
  .about-values-grid,
  .about-stance-list,
  .about-audience-grid,
  .about-links {
    grid-template-columns: 1fr;
  }

  .about-stance-list article,
  .about-stance-list article:nth-child(2),
  .about-stance-list article:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-stance-list article:last-child {
    border-bottom: 0;
  }

  .contact-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .contact-page .hero-copy,
  .contact-page .section-copy,
  .contact-page .hero-actions,
  .contact-page .split-grid > *,
  .contact-page .faq-grid > *,
  .contact-page .hero-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-page h1,
  .contact-page h2,
  .contact-page .section-copy h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .contact-page .lead,
  .contact-page .section-copy p:not(.eyebrow),
  .contact-page details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .contact-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .contact-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .contact-page .hero-actions .text-link {
    justify-self: start;
  }

  .contact-form-wrap {
    min-height: auto;
    padding-top: 14px;
  }

  .contact-form-wrap::before {
    width: 420px;
    height: 420px;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-form-grid,
  .contact-direct-card,
  .contact-reason-grid,
  .contact-document-list article,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-direct-card > *,
  .contact-direct-card > *:nth-child(2),
  .contact-direct-card > *:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-direct-card > *:last-child {
    border-bottom: 0;
  }

  .article-page .container {
    width: min(calc(100% - 48px), var(--page-max));
  }

  .article-hero {
    padding-top: 54px;
    padding-bottom: 56px;
  }

  .article-hero h1,
  .article-section h2,
  .article-cta h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .article-page .lead,
  .article-section p,
  .article-section li,
  .article-cta p,
  .article-section details p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .article-page .btn {
    width: 100%;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
  }

  .article-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .article-page .hero-actions .text-link {
    justify-self: start;
  }

  .article-layout {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .article-card-grid,
  .article-links {
    grid-template-columns: 1fr;
  }

  .checklist-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-toc,
  .article-cta,
  .sidebar-card {
    padding: 22px;
  }

  .ablauf-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .step-meta {
    grid-column: auto;
  }

  .document-chip-grid {
    padding: 24px;
  }

  .muster-sheet-grid .next-step {
    grid-column: auto;
  }

  .muster-panel-head,
  .muster-sheet header,
  .doc-headline,
  .mini-flow-head,
  .blog-feature-head {
    display: grid;
  }

  .vob-panel-head {
    display: grid;
  }

  .branchen-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .branchen-page .hero-actions .text-link {
    justify-self: start;
  }

  .branchen-page .lead {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .branch-grid,
  .internal-link-grid,
  .industry-note-grid,
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .industry-note-grid article:first-child,
  .challenge-grid article:first-child {
    grid-column: auto;
  }

  .branch-card,
  .branch-detail,
  .industry-note-grid article,
  .challenge-grid article,
  .seo-notes {
    padding: 22px;
  }

  .branch-chip-cloud {
    left: 10px;
    right: 10px;
    bottom: 22px;
    justify-content: center;
    width: auto;
  }

  .branch-chip-cloud span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .branchen-page .hero-visual .status-card-b {
    display: none;
  }

  .formblatt-page .hero-proof {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 100%;
  }

  .formblatt-page .proof-copy {
    width: auto;
    min-width: 0;
  }

  .formblatt-page .proof-badge {
    height: 48px;
    margin-left: 0;
  }
}

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

  .hero-copy h1,
  .check-copy h1,
  .section-heading h2,
  .faq .section-copy h2,
  .problem .section-copy h2,
  .final-box h2 {
    max-width: 330px;
    font-size: clamp(29px, 8vw, 34px);
    overflow-wrap: anywhere;
  }

  .lead,
  .check-intro,
  .pricing .section-heading p:not(.eyebrow),
  .faq .section-copy > p:not(.eyebrow),
  .problem .section-copy p:not(.eyebrow, .problem-trust),
  .final-box > p:not(.final-eyebrow) {
    width: 100%;
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .privacy-note,
  .upload-card .privacy-note {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-visual img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .status-card {
    min-width: 0;
    max-width: calc(100% - 28px);
  }

  .status-card-a {
    left: 8px;
  }

  .status-card-b {
    right: 8px;
  }

  .hero-actions .btn,
  .form-submit,
  .price-btn,
  .footer-cta {
    width: 100%;
    min-width: 0;
  }

  .upload-card,
  .dropzone,
  .input-wrap,
  .upload-card input,
  .faq-list,
  .price-card {
    max-width: 100%;
    min-width: 0;
  }

  .branchen-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .branchen-page .hero-copy h1,
  .branchen-page .section-heading h2,
  .branchen-page .faq .section-copy h2,
  .branchen-page .problem .section-copy h2,
  .branchen-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .branchen-page .problem .section-copy h2,
  .branchen-page .section-heading h2,
  .branchen-page .faq .section-copy h2,
  .branchen-page .final-box h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .branchen-page .lead,
  .branchen-page .section-copy p:not(.eyebrow),
  .branchen-page .section-heading p,
  .branchen-page .branch-card p,
  .branchen-page .branch-detail p,
  .branchen-page .challenge-grid p,
  .branchen-page .industry-note-grid p,
  .branchen-page .faq .section-copy > p:not(.eyebrow),
  .branchen-page details p,
  .branchen-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .branchen-page .hero-actions,
  .branchen-page .hero-proof,
  .branchen-page .branch-card,
  .branchen-page .branch-detail,
  .branchen-page .industry-note-grid article,
  .branchen-page .challenge-grid article,
  .branchen-page .content-card,
  .branchen-page .seo-notes,
  .branchen-page .faq-list {
    width: min(100%, 280px);
  }

  .branchen-page .branch-card,
  .branchen-page .branch-detail,
  .branchen-page .industry-note-grid article,
  .branchen-page .challenge-grid article,
  .branchen-page .content-card,
  .branchen-page .seo-notes,
  .branchen-page .faq-list {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .branchen-page .branch-chip-cloud {
    left: 50%;
    right: auto;
    width: 270px;
    transform: translateX(-50%);
  }

  .muster-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .muster-page .hero-copy h1,
  .muster-page .section-heading h2,
  .muster-page .faq .section-copy h2,
  .muster-page .problem .section-copy h2,
  .muster-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .muster-page .problem .section-copy h2,
  .muster-page .section-heading h2,
  .muster-page .faq .section-copy h2,
  .muster-page .final-box h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .muster-page .lead,
  .muster-page .section-copy p:not(.eyebrow),
  .muster-page .section-heading p,
  .muster-page .muster-panel p,
  .muster-page .muster-panel li,
  .muster-page .muster-sheet p,
  .muster-page .muster-sheet li,
  .muster-page .content-card p,
  .muster-page .not-list p,
  .muster-page .worth-grid p,
  .muster-page .faq .section-copy > p:not(.eyebrow),
  .muster-page details p,
  .muster-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .muster-page .hero-actions,
  .muster-page .hero-proof,
  .muster-page .muster-panel,
  .muster-page .muster-sheet,
  .muster-page .muster-summary-grid article,
  .muster-page .content-card,
  .muster-page .not-list article,
  .muster-page .worth-grid article,
  .muster-page .faq-list {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .muster-page .muster-panel-wrap::before {
    width: 330px;
    height: 330px;
  }

  .muster-page .muster-title h2,
  .muster-page .muster-sheet header h3 {
    font-size: clamp(22px, 6.4vw, 25px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .leistungen-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .leistungen-page .hero-copy h1,
  .leistungen-page .section-heading h2,
  .leistungen-page .faq .section-copy h2,
  .leistungen-page .problem .section-copy h2,
  .leistungen-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .leistungen-page .problem .section-copy h2,
  .leistungen-page .section-heading h2,
  .leistungen-page .faq .section-copy h2,
  .leistungen-page .final-box h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .leistungen-page .lead,
  .leistungen-page .section-copy p:not(.eyebrow),
  .leistungen-page .section-heading p,
  .leistungen-page .leistungen-doc small,
  .leistungen-page .leistungen-grid p,
  .leistungen-page .leistungen-note-grid p,
  .leistungen-page .responsibility-card li,
  .leistungen-page .usecase-grid p,
  .leistungen-page .content-card p,
  .leistungen-page .faq .section-copy > p:not(.eyebrow),
  .leistungen-page details p,
  .leistungen-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .leistungen-page .hero-actions,
  .leistungen-page .hero-proof,
  .leistungen-page .leistungen-doc,
  .leistungen-page .leistungen-note-grid article,
  .leistungen-page .content-card,
  .leistungen-page .responsibility-card,
  .leistungen-page .document-chip-grid,
  .leistungen-page .usecase-grid article,
  .leistungen-page .faq-list {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .leistungen-visual::before {
    width: 330px;
    height: 330px;
  }

  .leistungen-doc li {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .leistungen-doc li > span {
    width: 36px;
    height: 36px;
  }

  .document-chip-grid a,
  .document-chip-grid span {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .ablauf-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .ablauf-page .hero-copy h1,
  .ablauf-page .section-heading h2,
  .ablauf-page .faq .section-copy h2,
  .ablauf-page .problem .section-copy h2,
  .ablauf-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .ablauf-page .problem .section-copy h2,
  .ablauf-page .section-heading h2,
  .ablauf-page .faq .section-copy h2,
  .ablauf-page .final-box h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .ablauf-page .lead,
  .ablauf-page .section-copy p:not(.eyebrow),
  .ablauf-page .section-heading p,
  .ablauf-page .ablauf-mini-flow li span,
  .ablauf-page .ablauf-summary-grid p,
  .ablauf-page .step-main p,
  .ablauf-page .step-meta p,
  .ablauf-page .check-output-grid p,
  .ablauf-page .after-check-grid p,
  .ablauf-page .speed-card-grid p,
  .ablauf-page .send-grid p,
  .ablauf-page .content-card p,
  .ablauf-page .faq .section-copy > p:not(.eyebrow),
  .ablauf-page details p,
  .ablauf-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .ablauf-page .hero-actions,
  .ablauf-page .hero-proof,
  .ablauf-page .ablauf-mini-flow,
  .ablauf-page .ablauf-summary-grid article,
  .ablauf-page .ablauf-detail,
  .ablauf-page .check-output-grid article,
  .ablauf-page .content-card,
  .ablauf-page .speed-card-grid article,
  .ablauf-page .send-grid article,
  .ablauf-page .faq-list {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .ablauf-visual::before {
    width: 330px;
    height: 330px;
  }

  .ablauf-mini-flow li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .ablauf-mini-flow b {
    width: 38px;
    height: 36px;
  }

  .blog-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .blog-page .hero-copy h1,
  .blog-page .section-heading h2,
  .blog-page .faq .section-copy h2,
  .blog-page .problem .section-copy h2,
  .blog-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .blog-page .problem .section-copy h2,
  .blog-page .section-heading h2,
  .blog-page .faq .section-copy h2,
  .blog-page .final-box h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .blog-page .lead,
  .blog-page .section-copy p:not(.eyebrow),
  .blog-page .section-heading p,
  .blog-page .blog-feature-main p,
  .blog-page .blog-intro-grid p,
  .blog-page .blog-category-grid p,
  .blog-page .blog-card p,
  .blog-page .faq .section-copy > p:not(.eyebrow),
  .blog-page details p,
  .blog-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .blog-page .hero-actions,
  .blog-page .hero-proof,
  .blog-page .blog-feature-panel,
  .blog-page .blog-intro-grid article,
  .blog-page .blog-category-grid article,
  .blog-page .blog-card,
  .blog-page .popular-topic-cloud,
  .blog-page .faq-list {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .blog-visual::before {
    width: 330px;
    height: 330px;
  }

  .blog-feature-main h2 {
    font-size: clamp(23px, 6.7vw, 28px);
  }

  .blog-card div {
    display: grid;
    justify-items: start;
    gap: 10px;
  }

  .popular-topic-cloud {
    padding: 24px;
  }

  .popular-topic-cloud a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .vob-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .vob-page .hero-copy h1,
  .vob-page .section-heading h2,
  .vob-page .faq .section-copy h2,
  .vob-page .problem .section-copy h2,
  .vob-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .vob-page .problem .section-copy h2,
  .vob-page .section-heading h2,
  .vob-page .faq .section-copy h2,
  .vob-page .final-box h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .vob-page .lead,
  .vob-page .section-copy p:not(.eyebrow),
  .vob-page .section-heading p,
  .vob-page .vob-note-grid p,
  .vob-page .vob-attention-grid p,
  .vob-page .vob-error-list p,
  .vob-page .vob-cluster-grid p,
  .vob-page .content-card p,
  .vob-page .faq .section-copy > p:not(.eyebrow),
  .vob-page details p,
  .vob-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .vob-page .hero-actions,
  .vob-page .hero-proof,
  .vob-page .vob-panel,
  .vob-page .vob-note-grid article,
  .vob-page .content-card,
  .vob-page .vob-error-list article,
  .vob-page .vob-cluster-grid article,
  .vob-page .faq-list {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .vob-visual::before {
    width: 330px;
    height: 330px;
  }

  .vob-panel-title h2 {
    font-size: clamp(23px, 6.7vw, 28px);
  }

  .vob-panel-grid span {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .about-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .about-page .hero-copy h1,
  .about-page .section-heading h2,
  .about-page .faq .section-copy h2,
  .about-page .problem .section-copy h2,
  .about-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .about-page .problem .section-copy h2,
  .about-page .section-heading h2,
  .about-page .faq .section-copy h2,
  .about-page .final-box h2 {
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.05;
  }

  .about-page .lead,
  .about-page .section-copy p:not(.eyebrow),
  .about-page .section-heading p,
  .about-page .about-principle p,
  .about-page .about-principle li,
  .about-page .about-story-card p,
  .about-page .about-note-grid p,
  .about-page .about-values-grid p,
  .about-page .about-stance-list p,
  .about-page .about-audience-grid p,
  .about-page .content-card p,
  .about-page .faq .section-copy > p:not(.eyebrow),
  .about-page details p,
  .about-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .about-page .hero-actions,
  .about-page .hero-proof,
  .about-page .about-principle,
  .about-page .about-story-card,
  .about-page .about-note-grid article,
  .about-page .about-values-grid article,
  .about-page .about-stance-list,
  .about-page .about-audience-grid article,
  .about-page .content-card,
  .about-page .faq-list {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .about-principle-wrap::before {
    width: 330px;
    height: 330px;
  }

  .about-principle-head {
    display: grid;
    justify-items: start;
  }

  .about-principle p {
    font-size: 20px;
  }

  .contact-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .contact-page .hero-copy h1,
  .contact-page .section-heading h2,
  .contact-page .faq .section-copy h2,
  .contact-page .problem .section-copy h2,
  .contact-page .final-box h2 {
    max-width: 280px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .contact-page .problem .section-copy h2,
  .contact-page .section-heading h2,
  .contact-page .faq .section-copy h2,
  .contact-page .final-box h2 {
    font-size: clamp(26px, 7vw, 29px);
    line-height: 1.05;
  }

  .contact-page .section-copy h2 {
    font-size: clamp(26px, 7vw, 29px);
    line-height: 1.05;
    max-width: 270px;
    overflow-wrap: anywhere;
  }

  .contact-page .lead,
  .contact-page .section-copy p:not(.eyebrow),
  .contact-page .section-heading p,
  .contact-page .contact-direct-card strong,
  .contact-page .contact-proof-list li,
  .contact-page .contact-form-card p,
  .contact-page .contact-option-grid p,
  .contact-page .contact-reason-grid p,
  .contact-page .contact-document-list p,
  .contact-page .contact-trust-card p,
  .contact-page .content-card p,
  .contact-page .faq .section-copy > p:not(.eyebrow),
  .contact-page details p,
  .contact-page .final-box > p:not(.final-eyebrow) {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .contact-page .hero-actions,
  .contact-page .contact-direct-card,
  .contact-page .contact-proof-list,
  .contact-page .contact-form-card,
  .contact-page .contact-option-grid article,
  .contact-page .contact-reason-grid article,
  .contact-page .contact-document-list article,
  .contact-page .contact-trust-card,
  .contact-page .content-card,
  .contact-page .faq-list {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-form-wrap::before {
    width: 330px;
    height: 330px;
  }

  .contact-form-head {
    display: grid;
    justify-items: start;
  }

  .contact-form-card h2 {
    font-size: clamp(23px, 6.7vw, 28px);
  }

  .contact-proof-list {
    display: grid;
  }

  .article-page .container {
    width: min(calc(100% - 40px), var(--page-max));
  }

  .article-hero h1,
  .article-section h2,
  .article-cta h2,
  .sidebar-card h2 {
    max-width: 280px;
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.06;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .article-page .lead,
  .article-section p,
  .article-section li,
  .article-card-grid p,
  .checklist-table p,
  .article-cta p,
  .sidebar-card p,
  .sidebar-card li,
  .article-faq details p {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .article-page .hero-actions,
  .article-toc,
  .article-note,
  .article-card-grid article,
  .checklist-table,
  .article-cta,
  .article-links .content-card,
  .article-faq,
  .sidebar-card {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .article-meta {
    display: grid;
    max-width: 280px;
  }
}

@media (max-width: 900px) {
  .tender-hero-grid,
  .tender-overview-list {
    grid-template-columns: 1fr;
  }

  .tender-facts-panel {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .tender-facts-grid {
    grid-template-columns: 1fr;
  }

  .tender-facts-panel,
  .tender-source-card {
    padding: 22px;
  }
}

@media (max-width: 380px) {
  .tender-facts-panel,
  .tender-source-card,
  .tender-facts-grid div,
  .tender-overview-list div {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .tender-facts-grid strong,
  .tender-overview-list strong,
  .tender-chip-row span {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

.answer-hub {
  background: #f6f8f5;
}

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

.definition-grid article {
  background: #fff;
  border: 1px solid rgba(24, 46, 36, 0.12);
  border-radius: 8px;
  padding: 22px;
  min-width: 0;
}

.definition-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.definition-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

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