@font-face {
  font-family: "Overused Grotesk";
  src: url("assets/fonts/overused-grotesk-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Overused Grotesk";
  src: url("assets/fonts/overused-grotesk-semibold.woff2") format("woff2");
  font-weight: 650;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

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

:root {
  --ink: #0d2930;
  --headline: #164450;
  --border: #2b687b;
  --teal: #218d9c;
  --teal-deep: #176d79;
  --sky: #bcdae5;
  --ice: #e8f0f2;
  --paper: #fffdfa;
  --soft: #f1f0ec;
  --soft-deep: #e3e1da;
  --red: #e03e46;
  --red-dark: #c9333b;
  --red-soft: #feefeb;
  --orange: #f0a54c;
  --text: #33515a;
  --muted: #6d7f83;
  --white: #ffffff;
  --max: 1240px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 28px 70px rgba(13, 41, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--headline);
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 em,
h2 em,
h3 em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

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

.section {
  position: relative;
  padding: 116px 0;
}

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

.section--dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

/* ---------- Eyebrow & Section-Heads ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--teal-deep);
  font-family: "Overused Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

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

.eyebrow__icon {
  color: var(--orange);
  font-size: 16px;
}

.eyebrow:has(.eyebrow__icon)::before {
  display: none;
}

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

.section-head {
  max-width: 860px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 20px;
}

.section-head p {
  max-width: 720px;
  font-size: 17px;
}

.section-head__large {
  font-size: 19px !important;
}

.section-head--split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-head--split p {
  max-width: 380px;
  margin-bottom: 8px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center p {
  margin-inline: auto;
}

.section-head--light p {
  color: rgba(255, 255, 255, 0.74);
}

/* ---------- Buttons & Links ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: "Overused Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button--small {
  padding: 12px 22px;
  font-size: 14px;
}

.button--full {
  width: 100%;
}

.button--ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-deep);
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}

.text-link:hover {
  gap: 12px;
}

/* ---------- Trust-Strip & Header ---------- */

.trust-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.trust-strip__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ad18f;
  box-shadow: 0 0 0 4px rgba(90, 209, 143, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--soft-deep);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 104px;
}

.brand__divider {
  width: 1px;
  height: 26px;
  background: var(--soft-deep);
}

.brand__product {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 19px;
  color: var(--headline);
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--headline);
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.main-nav a:hover {
  border-color: var(--teal);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--soft-deep);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--headline);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, #123a44 58%, #16505c 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 96px 0 110px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.hero__glow--one {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: rgba(33, 141, 156, 0.55);
}

.hero__glow--two {
  width: 420px;
  height: 420px;
  bottom: -200px;
  left: -140px;
  background: rgba(240, 165, 76, 0.28);
}

.hero__grid > *,
.process__grid > *,
.case-feature > *,
.funding__grid > *,
.faq__grid > *,
.lead-card > * {
  min-width: 0;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas:
    "intro visual"
    "details visual";
  column-gap: 72px;
  row-gap: 20px;
  align-items: start;
}

.hero__intro {
  grid-area: intro;
  align-self: end;
}

.hero__details {
  grid-area: details;
  max-width: 580px;
}

.hero-visual {
  grid-area: visual;
  align-self: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 66px);
  margin-bottom: 26px;
}

.hero__lead {
  max-width: 560px;
  font-size: 18px;
  margin-bottom: 14px;
}

.hero__clarifier {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  color: var(--sky);
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.micro-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  margin-bottom: 18px;
}

.micro-proof strong {
  color: var(--white);
}

.micro-proof a {
  color: var(--sky);
  border-bottom: 1px solid currentColor;
}

.micro-proof__badge {
  flex: none;
  width: 108px;
  border-radius: 10px;
  background: var(--white);
  padding: 6px;
}

.hero__test-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Hero-Visual: echte Zusammenarbeit plus Systemebene */

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-photo {
  position: relative;
  height: 720px;
  margin: 0;
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 25, 31, 0.04) 36%, rgba(5, 25, 31, 0.72) 100%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  top: 24px;
  max-width: 310px;
  color: var(--ink);
  font-family: "Overused Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-align: right;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.92);
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit--one {
  inset: -40px -30px auto auto;
  width: 240px;
  height: 240px;
}

.orbit--two {
  inset: auto auto -60px -40px;
  width: 320px;
  height: 320px;
}

.code-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  background: #0a2026;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px rgba(4, 16, 20, 0.55);
  overflow: hidden;
}

.code-card--overlay {
  position: absolute;
  z-index: 4;
  left: -48px;
  bottom: 44px;
  width: min(92%, 520px);
}

.code-card--overlay .code-card__body {
  padding-block: 15px;
  font-size: 11.5px;
}

.code-card--overlay .code-card__result {
  padding: 12px 18px;
}

.code-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.code-card__dots {
  display: flex;
  gap: 6px;
}

.code-card__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.code-card__dots i:first-child {
  background: #e0555c;
}

.code-card__dots i:nth-child(2) {
  background: #f0a54c;
}

.code-card__dots i:last-child {
  background: #5ad18f;
}

.code-card__file {
  flex: 1;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(224, 62, 70, 0.16);
  border: 1px solid rgba(224, 62, 70, 0.4);
  color: #ff8d93;
  font-family: "Overused Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.code-card__body {
  padding: 22px 20px;
  font-family: "SF Mono", ui-monospace, "Cascadia Code", Menlo, monospace;
  font-size: 13px;
  line-height: 1.9;
  color: #b8ccd2;
}

.code-card__body p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-kw { color: #7fd4e0; }
.c-var { color: #f0d18b; }
.c-fn { color: #8fd6a8; }
.c-str { color: #f0a58f; }
.c-cm { color: #5d7c85; font-style: italic; }

.code-card__cursor span {
  display: inline-block;
  width: 9px;
  height: 17px;
  background: var(--sky);
  vertical-align: middle;
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.code-card__result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(90, 209, 143, 0.07);
}

.code-card__result svg {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(90, 209, 143, 0.16);
  stroke: #5ad18f;
  stroke-width: 2.4;
  fill: none;
}

.code-card__result strong {
  display: block;
  color: var(--white);
  font-family: "Overused Grotesk", sans-serif;
  font-size: 14px;
}

.code-card__result span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.35;
}

.floating-note span {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 17px;
  color: var(--teal-deep);
  white-space: nowrap;
}

.floating-note p {
  max-width: 130px;
}

.floating-note--one {
  top: 118px;
  right: -24px;
}

.floating-note--two {
  bottom: -34px;
  left: 26px;
}

/* ---------- Reale Ergebnisse ---------- */

.outcomes {
  background: var(--paper);
}

.outcomes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 24px;
}

.outcome {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--soft-deep);
}

.outcome__media {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.outcome__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.outcome--support .outcome__media {
  aspect-ratio: 1.52 / 1;
}

.outcome--cockpit .outcome__media {
  aspect-ratio: 1.52 / 1;
}

.outcome--cockpit .outcome__media img {
  object-fit: contain;
}

.outcome__copy {
  padding: 28px 30px 32px;
}

.outcome__copy .case-tag {
  display: inline-flex;
  margin-bottom: 16px;
}

.outcome__copy h3 {
  max-width: 610px;
  margin-bottom: 12px;
  font-size: clamp(23px, 2.5vw, 34px);
}

.outcome__copy p {
  max-width: 690px;
  font-size: 15.5px;
}

.outcome--service {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  background: var(--ice);
  border-color: var(--sky);
}

.outcome__service-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  min-height: 430px;
  gap: 18px;
  align-items: end;
  padding: 30px 0 0 30px;
  overflow: hidden;
  background: var(--white);
}

.outcome__kira {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  object-position: bottom center;
}

.outcome__phone {
  align-self: end;
  height: 390px;
  overflow: hidden;
  border: 9px solid var(--ink);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.outcome__phone img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Früher Workshop-Beweis ---------- */

.workshop-band {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.workshop-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 28, 34, 0.93) 0%, rgba(7, 28, 34, 0.72) 43%, rgba(7, 28, 34, 0.12) 78%);
}

.workshop-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workshop-band__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.workshop-band__content h2 {
  max-width: 670px;
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.98;
}

.workshop-band__content p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

/* ---------- Problem ---------- */

.problem__split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 76px;
  align-items: center;
}

.problem__photo {
  margin: 0;
}

.problem__photo img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  object-position: center;
}

.problem__photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.problem__content h2 {
  margin: 12px 0 22px;
  font-size: clamp(34px, 4.5vw, 56px);
}

.problem__content > p {
  max-width: 660px;
  font-size: 17px;
}

.tension-list {
  margin-top: 34px;
  border-top: 1px solid var(--soft-deep);
}

.tension-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--soft-deep);
}

.tension-list article > span {
  padding-top: 4px;
  color: var(--red);
  font-family: "Overused Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 650;
}

.tension-list h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.tension-list p {
  font-size: 15px;
}

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

.problem-card {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--radius-md);
  background: var(--soft);
  overflow: hidden;
}

.problem-card--dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.problem-card--dark h3 {
  color: var(--white);
}

.problem-card--accent {
  background: var(--red-soft);
}

.problem-card__index {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 13px;
  opacity: 0.45;
}

.problem-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: rgba(33, 141, 156, 0.12);
  color: var(--teal-deep);
  font-size: 20px;
}

.problem-card--dark .problem-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sky);
}

.problem-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
}

/* ---------- Prozess / Ablauf ---------- */

.process__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.process__copy {
  position: sticky;
  top: 130px;
}

.process__copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}

.process__copy p {
  margin-bottom: 26px;
}

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

.process-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 30px 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--soft-deep);
  box-shadow: 0 14px 40px rgba(13, 41, 48, 0.06);
}

.process-step > span {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 15px;
  color: var(--teal-deep);
  padding-top: 4px;
}

.process-step small {
  display: block;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
}

.process-step i {
  font-style: normal;
  font-size: 20px;
  color: var(--teal);
  padding-top: 4px;
}

/* ---------- Use-Cases ---------- */

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

.case-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 30px;
  border-radius: var(--radius-md);
  background: var(--soft);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.case-card--featured {
  background: var(--ice);
  border-color: var(--sky);
}

.case-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--white);
  color: var(--teal-deep);
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(13, 41, 48, 0.08);
}

.case-tag {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(33, 141, 156, 0.1);
}

.case-card h3 {
  font-size: 22px;
}

.case-card p {
  font-size: 15px;
  flex: 1;
}

.case-card__result {
  display: grid;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--soft-deep);
}

.case-card--featured .case-card__result {
  border-color: var(--sky);
}

.case-card__result span {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-card__result strong {
  font-family: "Overused Grotesk", sans-serif;
  color: var(--headline);
  font-size: 15.5px;
}

.usecase-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 22px;
  padding: 34px 38px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.usecase-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.usecase-cta h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 8px;
}

.usecase-cta p {
  font-size: 15px;
  max-width: 640px;
}

.usecase-cta__action {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 15px;
  white-space: nowrap;
}

.usecase-cta__action i {
  font-style: normal;
}

/* Use-Case-Rotator */

.case-slot {
  position: relative;
}

.case-grid--rotate .case-card {
  height: 100%;
}

.case-grid--rotate .case-card:not(.is-active) {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.case-grid--rotate .case-card {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.case-slot__progress {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: rgba(33, 141, 156, 0.14);
  overflow: hidden;
}

.case-slot__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .case-slot__progress {
    display: none;
  }
}

/* ---------- Warum sorum ---------- */

.why__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 68px;
  align-items: end;
  margin-bottom: 58px;
}

.why__intro .section-head {
  margin-bottom: 0;
}

.why__photo {
  margin: 0;
}

.why__photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 48%;
}

.why__photo figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

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

.why-card {
  position: relative;
  padding: 38px 34px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-card__num {
  display: inline-block;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 13px;
  color: var(--sky);
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
}

/* ---------- Proof ---------- */

.proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 72px;
  align-items: center;
}

.proof__copy h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  margin-bottom: 20px;
}

.proof__copy > p {
  margin-bottom: 26px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(33, 141, 156, 0.14);
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 700;
}

.check-list--light li::before {
  background: rgba(255, 255, 255, 0.14);
  color: var(--sky);
}

.proof__adjacent {
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  background: var(--ice);
  border: 1px solid var(--sky);
  font-size: 15px;
}

.proof__adjacent strong {
  display: block;
  font-family: "Overused Grotesk", sans-serif;
  color: var(--headline);
  margin-bottom: 6px;
}

.proof__adjacent a {
  color: var(--teal-deep);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.proof__photo img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.proof__photo figcaption {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Pricing ---------- */

.price-card {
  max-width: 620px;
  margin: 0 auto 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--soft-deep);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-card__head {
  display: grid;
  gap: 4px;
  padding: 38px 40px 30px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
}

.price-card__head span {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sky);
}

.price-card__head strong {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 52px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
}

.price-card__head small {
  font-size: 13px;
}

.price-card__rows {
  list-style: none;
  margin: 0;
  padding: 14px 40px;
}

.price-card__rows li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--soft);
  font-size: 15px;
  align-items: baseline;
}

.price-card__rows li:last-child {
  border-bottom: 0;
}

.price-card__row--highlight {
  background: var(--ice);
  border-radius: var(--radius-sm);
  padding: 15px 16px !important;
  margin: 4px -16px;
}

.price-card__row--highlight span {
  color: var(--teal-deep);
}

.price-card__rows span {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card__rows strong {
  font-weight: 600;
  color: var(--headline);
}

.price-card .button {
  margin: 10px 40px 34px;
  width: calc(100% - 80px);
}

.pricing-follow {
  max-width: 620px;
  margin: 0 auto 22px;
  padding: 24px 30px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--soft-deep);
  font-size: 15px;
}

.pricing-follow strong {
  display: block;
  font-family: "Overused Grotesk", sans-serif;
  color: var(--headline);
  margin-bottom: 6px;
}

.source-note {
  max-width: 620px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ---------- FAQ ---------- */

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}

.faq__head {
  position: sticky;
  top: 130px;
}

.faq__head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}

.faq__head p {
  margin-bottom: 22px;
}

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

.accordion details {
  border-radius: var(--radius-sm);
  background: var(--soft);
  border: 1px solid transparent;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.accordion details[open] {
  background: var(--white);
  border-color: var(--soft-deep);
  box-shadow: 0 14px 40px rgba(13, 41, 48, 0.07);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 26px;
  cursor: pointer;
  list-style: none;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 17px;
  color: var(--headline);
}

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

.accordion summary span {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(33, 141, 156, 0.12);
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 11px;
  height: 1.8px;
  background: var(--teal-deep);
  transition: transform 0.25s ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0deg);
}

.accordion details p {
  padding: 0 26px 24px;
  font-size: 15px;
  max-width: 640px;
}

/* ---------- Lead / Final CTA ---------- */

.lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.lead-card__copy h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  margin-bottom: 20px;
}

.lead-card__copy > p {
  margin-bottom: 28px;
  max-width: 460px;
}

.lead-card__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 420px;
}

.lead-card__contact img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.lead-card__contact strong {
  display: block;
  color: var(--white);
  font-family: "Overused Grotesk", sans-serif;
}

.lead-card__contact span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.lead-card__contact a {
  display: block;
  font-size: 13.5px;
  color: var(--sky);
}

.lead-form {
  padding: 36px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 40px 90px rgba(4, 16, 20, 0.4);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.form-head span {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 19px;
  color: var(--headline);
}

.form-head small {
  font-size: 12.5px;
  color: var(--muted);
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 13.5px;
  color: var(--headline);
}

.form-grid label small {
  font-weight: 500;
  color: var(--muted);
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--soft-deep);
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid textarea {
  resize: vertical;
  min-height: 110px;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(33, 141, 156, 0.15);
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--teal-deep);
}

.consent a {
  text-decoration: underline;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
}

.form-status.is-success {
  color: #1d7d4f;
  font-weight: 600;
}

.form-status.is-error {
  color: var(--red-dark);
  font-weight: 600;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.9fr));
  gap: 48px;
  padding: 72px 0 56px;
}

.footer__brand p {
  margin-top: 18px;
  max-width: 320px;
}

.brand--footer img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.brand--footer .brand__divider {
  background: rgba(255, 255, 255, 0.2);
}

.brand--footer .brand__product {
  color: var(--white);
}

.footer__col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer__col strong {
  color: var(--white);
  font-family: "Overused Grotesk", sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}

.footer__col a:hover {
  color: var(--sky);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

.footer__bottom a:hover {
  color: var(--sky);
}

/* ---------- Mobile-Conversion-Bar ---------- */

.mobile-conversion {
  position: fixed;
  z-index: 80;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(13, 41, 48, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(4, 16, 20, 0.4);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.mobile-conversion.is-visible {
  transform: translateY(0);
}

.mobile-conversion a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border-radius: 12px;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 14.5px;
}

.mobile-conversion a:first-child {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.mobile-conversion a:first-child svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.mobile-conversion a:last-child {
  flex: 1;
  background: var(--red);
  color: var(--white);
}


/* ---------- Cases / Referenzen ---------- */

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.case-feature--reverse .browser-frame {
  order: 2;
}

.case-feature--reverse .case-feature__copy {
  order: 1;
}

.browser-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--soft-deep);
  box-shadow: var(--shadow);
  background: var(--white);
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  background: var(--soft);
  border-bottom: 1px solid var(--soft-deep);
}

.browser-frame__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--soft-deep);
}

.browser-frame__bar i:first-child {
  background: #e0555c;
}

.browser-frame__bar i:nth-child(2) {
  background: #f0a54c;
}

.browser-frame__bar i:nth-child(3) {
  background: #5ad18f;
}

.browser-frame__bar span {
  margin-left: 10px;
  font-size: 12px;
  color: var(--muted);
}

.browser-frame img {
  width: 100%;
}

.case-feature__copy .case-tag {
  display: inline-flex;
  margin-bottom: 18px;
}

.case-feature__copy h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 14px;
}

.case-feature__copy p {
  font-size: 15.5px;
  margin-bottom: 22px;
}

.case-feature__copy .check-list {
  margin-bottom: 0;
}

.case-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.case-mini {
  padding: 30px 28px;
  border-radius: var(--radius-md);
  background: var(--soft);
}

.case-mini--internal {
  background: var(--ice);
  border: 1px solid var(--sky);
}

.case-mini .case-tag {
  display: inline-flex;
  margin-bottom: 16px;
}

.case-mini h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.case-mini p {
  font-size: 14.5px;
}

.case-mini a {
  color: var(--teal-deep);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}


.process__photo {
  margin-top: 36px;
  max-width: 420px;
}

.process__photo img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.process__photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.funding__photo {
  margin-top: 64px;
}

.funding__photo img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.funding__photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.case-mini__thumb {
  height: 190px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--white);
}

.case-mini__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- BAFA-Foerderung ---------- */

.funding {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.funding h2 {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 52px);
  margin-bottom: 20px;
}

.funding__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.funding__copy p {
  max-width: 520px;
  margin-bottom: 16px;
}

.funding__copy p strong {
  color: var(--white);
}

.funding__copy .check-list {
  margin: 26px 0 30px;
}

.funding__copy .check-list li::before {
  background: rgba(255, 255, 255, 0.14);
  color: var(--sky);
}

.funding__card {
  padding: 38px 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 40px 90px rgba(4, 16, 20, 0.4);
}

.funding__badge {
  width: 170px;
  margin-bottom: 22px;
  border: 1px solid var(--soft-deep);
  border-radius: 12px;
  padding: 8px;
}

.funding__label {
  display: inline-block;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 22px;
}

.funding__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--soft);
  font-size: 15px;
}

.funding__row strong {
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 20px;
  color: var(--headline);
}

.funding__row--accent strong {
  color: var(--teal-deep);
}

.funding__row--total {
  border-bottom: 0;
}

.funding__row--total strong {
  font-size: 32px;
  color: var(--red);
}

.funding__note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--muted);
}

.source-note a {
  color: var(--teal-deep);
  border-bottom: 1px solid currentColor;
}


/* ---------- Consent-Banner ---------- */

.consent-banner[hidden] {
  display: none;
}

.consent-banner {
  position: fixed;
  z-index: 100;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: center;
}

.consent-banner__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 860px;
  padding: 20px 26px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(4, 16, 20, 0.45);
}

.consent-banner__copy strong {
  display: block;
  color: var(--white);
  font-family: "Overused Grotesk", sans-serif;
  margin-bottom: 6px;
}

.consent-banner__copy p {
  font-size: 13px;
  line-height: 1.5;
}

.consent-banner__copy a {
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: none;
}

.consent-btn {
  padding: 11px 20px;
  border-radius: 999px;
  border: 0;
  font-family: "Overused Grotesk", sans-serif;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.consent-btn--accept {
  background: var(--red);
  color: var(--white);
}

.consent-btn--accept:hover {
  background: var(--red-dark);
}

.consent-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.consent-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 680px) {
  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .consent-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 18px;
  }

  .consent-banner__copy strong {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .consent-banner__copy p {
    font-size: 12px;
    line-height: 1.42;
  }

  .consent-banner__actions {
    flex-direction: row;
    gap: 8px;
  }

  .consent-btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* ---------- Reveal ---------- */

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .live-pill::before,
  .code-card__cursor span {
    animation: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "details";
    gap: 34px;
  }

  .hero-visual {
    width: min(100%, 720px);
    max-width: none;
    min-height: 650px;
  }

  .hero-photo {
    height: 650px;
  }

  .hero__details {
    max-width: 720px;
  }

  .why__intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why__photo {
    max-width: 620px;
  }

  .process__grid,
  .faq__grid,
  .proof__grid,
  .case-feature,
  .funding__grid,
  .lead-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-feature--reverse .browser-frame {
    order: 1;
  }

  .case-feature--reverse .case-feature__copy {
    order: 2;
  }

  .process__copy,
  .faq__head {
    position: static;
  }

  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .section-head--split p {
    max-width: 620px;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    background: var(--paper);
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .main-nav.is-open {
    z-index: 95;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header .menu-toggle,
  .site-header .brand {
    position: relative;
    z-index: 96;
  }

  .header-actions {
    display: none;
  }

  .problem-grid,
  .case-grid,
  .why-grid,
  .case-mini-grid {
    grid-template-columns: 1fr;
  }

  .outcomes__grid,
  .problem__split {
    grid-template-columns: 1fr;
  }

  .outcome--service {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .problem__split {
    gap: 42px;
  }

  .problem__photo {
    max-width: 580px;
  }

  .usecase-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .section {
    padding: 84px 0;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 58px 0 78px;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero h1 {
    margin-bottom: 0;
  }

  .hero-visual {
    width: 100%;
    min-height: 400px;
    margin-bottom: 18px;
  }

  .hero-photo {
    height: 400px;
  }

  .hero-photo img {
    object-position: 50% 66%;
  }

  .hero-photo figcaption {
    top: 18px;
    right: 18px;
    max-width: 230px;
    font-size: 13px;
  }

  .code-card--overlay {
    left: 12px;
    right: 12px;
    bottom: 18px;
    width: auto;
  }

  .code-card--overlay .code-card__body {
    padding: 10px 12px;
    font-size: 9.5px;
  }

  .code-card--overlay .code-card__result {
    padding: 10px 12px;
  }

  .code-card--overlay .live-pill {
    padding-inline: 8px;
    font-size: 9px;
  }

  .code-card--overlay .code-card__file {
    font-size: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .outcome__copy {
    padding: 24px 22px 28px;
  }

  .outcomes .section-head {
    margin-bottom: 42px;
  }

  .outcome--support .outcome__media,
  .outcome--cockpit .outcome__media {
    height: 260px;
    aspect-ratio: auto;
  }

  .outcome--support .outcome__media img,
  .outcome--cockpit .outcome__media img {
    object-fit: contain;
  }

  .outcome__service-media {
    grid-template-columns: minmax(0, 1fr) 118px;
    min-height: 300px;
    padding: 22px 0 0 18px;
  }

  .outcome__kira {
    max-height: 280px;
  }

  .outcome__phone {
    height: 280px;
    border-width: 6px;
    border-radius: 20px 20px 0 0;
  }

  .workshop-band {
    min-height: 470px;
  }

  .workshop-band::after {
    background: linear-gradient(90deg, rgba(7, 28, 34, 0.9) 0%, rgba(7, 28, 34, 0.7) 68%, rgba(7, 28, 34, 0.32) 100%);
  }

  .workshop-band > img {
    object-position: 56% center;
  }

  .workshop-band__content h2 {
    max-width: 340px;
  }

  .workshop-band__content p {
    max-width: 330px;
    font-size: 15px;
  }

  .problem__photo img {
    max-height: 520px;
    object-position: center 42%;
  }

  .why__photo img {
    height: 460px;
  }

  .floating-note--one {
    top: auto;
    bottom: -34px;
    right: -4px;
  }

  .floating-note--two {
    display: none;
  }

  .process-step {
    grid-template-columns: auto 1fr;
  }

  .process-step i {
    display: none;
  }

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

  .price-card__head,
  .price-card__rows {
    padding-inline: 26px;
  }

  .price-card .button {
    margin-inline: 26px;
    width: calc(100% - 52px);
  }

  .price-card__rows li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lead-form {
    padding: 26px 22px;
  }

  .funding__card {
    padding: 28px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .mobile-conversion {
    display: flex;
  }
}
