:root {
  color-scheme: dark;
  --bg: #070b0d;
  --bg-elevated: #0c1215;
  --bg-soft: #10181c;
  --surface: #10171a;
  --surface-strong: #151f23;
  --text: #f7faf8;
  --muted: #9aa8a4;
  --muted-strong: #c9d3cf;
  --accent: #00ad63;
  --accent-strong: #40e693;
  --accent-soft: rgba(0, 173, 99, 0.12);
  --cyan: #78c7d8;
  --amber: #d6b46a;
  --line: rgba(220, 237, 230, 0.12);
  --line-strong: rgba(64, 230, 147, 0.3);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --max-width: 1180px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #091014 0, var(--bg) 34rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--accent-strong);
  text-decoration: none;
}

a:hover {
  color: var(--text);
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(64, 230, 147, 0.22);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--accent-strong);
  color: #03100a;
  font-weight: 800;
  padding: 0.7rem 0.95rem;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 13, 0.78);
  backdrop-filter: blur(18px);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 11, 13, 0.94);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--text);
  font-weight: 820;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(64, 230, 147, 0.18);
  border-radius: var(--radius);
  background: #060b0d;
  object-fit: contain;
}

.brand__name {
  font-size: 1.08rem;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1;
  padding: 0.68rem 0.78rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.site-nav a.nav-cta {
  margin-left: 0.45rem;
  background: var(--accent);
  color: #03100a;
  box-shadow: 0 14px 36px rgba(0, 173, 99, 0.2);
}

.site-nav a.nav-cta:hover {
  background: var(--accent-strong);
  color: #03100a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 173, 99, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    #071013;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.8rem, 7vw, 6.2rem) 0 clamp(3.4rem, 6vw, 5rem);
}

.hero__copy {
  min-width: 0;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  gap: 0.45rem;
  border: 1px solid rgba(64, 230, 147, 0.24);
  border-radius: 999px;
  background: rgba(0, 173, 99, 0.08);
  padding: 0.42rem 0.7rem;
}

.eyebrow::before {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 1.25rem 0 1rem;
  font-size: 4.15rem;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero__lead,
.page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.23rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1.2;
  padding: 0.85rem 1.08rem;
}

.button--primary {
  background: var(--accent);
  color: #03100a;
  box-shadow: 0 18px 42px rgba(0, 173, 99, 0.22);
}

.button--primary:hover {
  background: var(--accent-strong);
  color: #03100a;
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button--secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 650px;
  margin-top: 1.6rem;
}

.hero__metrics div {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.78rem;
}

.hero__metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__metrics strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.25;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__signals li {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.2;
  padding: 0.48rem 0.65rem;
}

.hero__visual {
  min-width: 0;
}

.decision-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 237, 230, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    #0d1518;
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.decision-console::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(64, 230, 147, 0.28);
  pointer-events: none;
}

.decision-console__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid var(--line);
}

.decision-console__header img {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(64, 230, 147, 0.2);
  border-radius: var(--radius);
  background: #050a0b;
  object-fit: contain;
}

.decision-console span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.decision-console strong {
  display: block;
  margin-top: 0.18rem;
  color: var(--text);
  line-height: 1.25;
}

.decision-console__signal {
  position: relative;
  margin-top: 1rem;
  border: 1px solid rgba(64, 230, 147, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 173, 99, 0.08);
  padding: 1rem;
}

.decision-console__signal p {
  margin: 0.55rem 0 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.decision-console__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.decision-console__grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 0.78rem;
}

.decision-console__steps {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.decision-console__steps li {
  border-top: 1px solid var(--line);
  padding-top: 0.78rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 173, 99, 0.1), transparent 34%),
    var(--bg-elevated);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: clamp(3.8rem, 7vw, 6.2rem) 0 clamp(3rem, 5vw, 4.8rem);
}

.page-hero h1 {
  font-size: 3.8rem;
}

.draft-warning {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1.4rem auto 0;
  border: 1px solid rgba(214, 180, 106, 0.36);
  border-radius: var(--radius);
  background: rgba(214, 180, 106, 0.1);
  color: #f3dcaa;
  padding: 0.9rem 1rem;
}

.page-content,
.home-section,
.cta-band,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.page-content {
  padding: clamp(3.3rem, 7vw, 5.6rem) 0;
}

.content {
  max-width: none;
}

.content > *:first-child {
  margin-top: 0;
}

.content > *:last-child {
  margin-bottom: 0;
}

.content h2 {
  max-width: 820px;
  margin: clamp(2.8rem, 6vw, 4.6rem) 0 1rem;
  color: var(--text);
  font-size: 2.45rem;
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.content h3 {
  margin: 1.6rem 0 0.45rem;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.25;
}

.content p,
.content li {
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.content p {
  max-width: 780px;
  margin: 0.8rem 0;
}

.content strong {
  color: var(--text);
}

.content ul,
.content ol {
  display: grid;
  gap: 0.45rem;
  max-width: 780px;
  margin: 0.95rem 0 1.3rem;
  padding-left: 1.1rem;
}

.content li::marker {
  color: var(--accent-strong);
}

.content a {
  border-bottom: 1px solid rgba(64, 230, 147, 0.38);
}

.content blockquote {
  margin: 1.6rem 0;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.15rem;
}

.intro-panel {
  max-width: 900px;
  margin-bottom: 3.2rem;
}

.intro-panel--wide {
  max-width: 960px;
}

.intro-panel p {
  color: var(--muted-strong);
  font-size: 1.12rem;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  padding: clamp(2.6rem, 6vw, 4.2rem) 0;
}

.content-section--first {
  padding-top: 0;
  border-top: 0;
}

.content-section > h2 {
  position: sticky;
  top: 98px;
  align-self: start;
  max-width: 340px;
  margin: 0;
  font-size: 2.1rem;
}

.content-section__main {
  min-width: 0;
}

.content-section__body > *:first-child,
.info-card > *:first-child,
.offer-card > *:first-child,
.faq-card > *:first-child,
.team-card > *:first-child,
.contact-card > *:first-child,
.legal-panel > *:first-child,
.fit-section > *:first-child {
  margin-top: 0;
}

.content-section__body > *:last-child,
.info-card > *:last-child,
.offer-card > *:last-child,
.faq-card > *:last-child,
.team-card > *:last-child,
.contact-card > *:last-child,
.legal-panel > *:last-child,
.fit-section > *:last-child {
  margin-bottom: 0;
}

.home .page-content {
  padding: 0;
}

.home-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  max-width: 820px;
  margin: 0.55rem 0 0;
  font-size: 2.7rem;
  line-height: 1.05;
}

.section-heading p {
  max-width: 520px;
  margin: 0.7rem 0 0;
  color: var(--muted-strong);
}

.section-heading--split {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.section-heading--split > p {
  flex: 0 1 430px;
  margin-top: 1.45rem;
}

.problem-grid,
.product-grid,
.card-grid,
.faq-list,
.team-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-grid,
.card-grid,
.faq-list,
.team-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-grid article,
.product-card,
.info-card,
.offer-card,
.faq-card,
.team-card,
.contact-card,
.legal-panel,
.fit-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 23, 26, 0.78);
}

.problem-grid article,
.product-card,
.info-card,
.offer-card,
.faq-card,
.team-card,
.contact-card,
.legal-panel,
.fit-section {
  padding: 1.35rem;
}

.problem-grid span,
.product-card__number,
.offer-card__number,
.info-card__index,
.faq-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1;
  padding: 0.38rem 0.58rem;
}

.problem-grid h3,
.product-card h3,
.info-card h3,
.offer-card h3,
.faq-card h2,
.team-card h2,
.contact-card h2 {
  margin: 0.8rem 0 0.55rem;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.18;
}

.product-card p,
.problem-grid p,
.info-card p,
.offer-card p,
.faq-card p,
.team-card p,
.contact-card p {
  color: var(--muted-strong);
}

.product-card ul,
.offer-card ul {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.product-card li,
.offer-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.product-card li::before,
.offer-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent-strong);
}

.product-grid--offers {
  margin-bottom: 3.4rem;
}

.flow-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 23, 26, 0.68);
}

.flow-strip div {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 1.25rem;
}

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

.flow-strip span {
  display: block;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-strip strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--text);
  line-height: 1.28;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.industry-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-weight: 720;
  line-height: 1.2;
  padding: 0.68rem 0.85rem;
}

.team-teaser {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-teaser article {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.team-teaser strong,
.team-teaser span {
  display: block;
}

.team-teaser span {
  margin-top: 0.2rem;
  color: var(--muted);
}

.table-wrap {
  max-width: 100%;
  margin: 1.3rem 0 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 23, 26, 0.72);
}

.content table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.content th,
.content td {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
}

.content th {
  background: rgba(0, 173, 99, 0.1);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.content td {
  color: var(--muted-strong);
}

.content tbody tr:last-child td {
  border-bottom: 0;
}

.team-card h2,
.contact-card h2 {
  margin-top: 0;
}

.team-card p:first-of-type,
.contact-card p:first-of-type {
  color: var(--muted);
}

.team-card--wide,
.contact-card--wide {
  grid-column: auto;
}

.legal-panel {
  max-width: 900px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(4rem, 7vw, 6rem);
  border: 1px solid rgba(64, 230, 147, 0.24);
  border-radius: var(--radius);
  background: #0f171a;
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.cta-band span {
  display: block;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0.35rem 0 0.45rem;
  font-size: 2rem;
  line-height: 1.12;
}

.cta-band p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050809;
}

.site-footer__inner {
  padding: 3rem 0 1.4rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 620px;
  margin-bottom: 2.35rem;
}

.site-footer__logo {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(64, 230, 147, 0.2);
  border-radius: var(--radius);
  object-fit: contain;
}

.site-footer__brand strong {
  display: block;
  font-size: 1.12rem;
}

.site-footer__brand p {
  margin: 0.18rem 0 0;
  color: var(--muted);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.site-footer h2 {
  margin: 0 0 0.72rem;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 0.42rem;
}

.footer-links a {
  color: var(--muted-strong);
}

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

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 2.35rem;
  border-top: 1px solid var(--line);
  padding-top: 1.05rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: grid;
    gap: 0.35rem;
    border-bottom: 1px solid var(--line);
    background: #070b0d;
    padding: 1rem;
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 100vh 0 rgba(0, 0, 0, 0.58);
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .site-nav a.nav-cta {
    margin-left: 0;
  }

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

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero__visual {
    max-width: 620px;
  }

  .page-hero h1 {
    font-size: 3.1rem;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading--split > p {
    max-width: 680px;
    margin-top: 0.85rem;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .content-section > h2 {
    position: static;
    max-width: 760px;
  }

  .problem-grid,
  .team-teaser,
  .flow-strip {
    grid-template-columns: 1fr;
  }

  .flow-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .offer-grid,
  .product-grid,
  .card-grid,
  .faq-list,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand__name {
    font-size: 1rem;
  }

  .hero__inner {
    padding: 3.4rem 0 3rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.28rem;
  }

  .hero__lead,
  .page-hero p {
    font-size: 1.05rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .hero__signals {
    display: none;
  }

  .decision-console {
    padding: 1rem;
  }

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

  .decision-console__grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 3.2rem 0;
  }

  .home-section {
    padding: 3.6rem 0;
  }

  .content h2,
  .section-heading h2,
  .cta-band h2 {
    font-size: 1.72rem;
  }

  .problem-grid article,
  .product-card,
  .offer-card,
  .faq-card,
  .team-card,
  .contact-card,
  .info-card,
  .legal-panel,
  .fit-section {
    padding: 1.1rem;
  }

  .industry-cloud span {
    width: 100%;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .content table,
  .content thead,
  .content tbody,
  .content tr,
  .content th,
  .content td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .content thead {
    display: none;
  }

  .content tr {
    overflow: hidden;
    margin-bottom: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(16, 23, 26, 0.72);
  }

  .content td {
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 1rem;
  }

  .content td::before {
    display: block;
    margin-bottom: 0.22rem;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .content td:nth-child(1)::before {
    content: "Bedarf";
  }

  .content td:nth-child(2)::before {
    content: "Passendes Angebot";
  }

  .site-footer__brand {
    align-items: flex-start;
  }
}

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