:root {
  --navy: #07385b;
  --blue: #2376d3;
  --blue-2: #155f9f;
  --teal: #25b7ad;
  --teal-soft: #def7f2;
  --amber: #ff9f2f;
  --amber-2: #ffbe5b;
  --green: #28a844;
  --ink: #102033;
  --soft: #5f7187;
  --muted: #8a9aad;
  --line: #dbe8e6;
  --paper: #f7fbf8;
  --cream: #fbfaf5;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(6, 43, 68, .14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
[hidden] { display: none !important; }

.wrap {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(13,61,93,.12);
  box-shadow: 0 10px 30px rgba(6, 43, 68, .08);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100vw - 36px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand img {
  width: 66px;
  height: 66px;
  padding: 4px;
  border-radius: 10px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(13,61,93,.12), 0 10px 24px rgba(6,43,68,.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #31506b;
  font-weight: 760;
}

.nav-links a:hover { color: var(--blue); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 18px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(40,168,68,.18);
  font-size: 22px;
  font-weight: 820;
}

.header-cta:hover {
  background: #23973d;
}

.menu-toggle,
.menu-close {
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-left: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(13,61,93,.14);
  background: #fff;
  box-shadow: 0 10px 24px rgba(6,43,68,.08);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after,
.menu-close span,
.menu-close::before,
.menu-close::after {
  content: "";
  display: block;
  width: 27px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle {
  flex-direction: column;
  gap: 6px;
}

.menu-close {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.menu-close span {
  display: none;
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  left: 10px;
  top: 23px;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: auto;
  color: #fff;
  background:
    radial-gradient(540px 320px at 92% 0%, rgba(37,183,173,.28), transparent 64%),
    #2e78d3;
}

.menu-open {
  overflow: hidden;
}

.menu-open .mobile-menu {
  display: block;
}

.mobile-menu-inner {
  width: min(100%, 680px);
  min-height: 100%;
  margin: 0 auto;
  padding: 28px 28px 42px;
  display: grid;
  align-content: start;
  gap: 24px;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-menu .brand {
  margin: 0;
  color: #fff;
  font-size: 30px;
}

.mobile-menu .menu-close {
  color: #fff;
}

.mobile-menu .brand img {
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 18px;
  background: #fff;
}

.mobile-menu-nav {
  display: grid;
  gap: 6px;
}

.mobile-menu details,
.mobile-menu-row {
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.mobile-menu summary,
.mobile-menu-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu summary::after,
.mobile-menu-row::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 2px solid rgba(255,255,255,.9);
  border-bottom: 2px solid rgba(255,255,255,.9);
  transform: rotate(45deg);
}

.mobile-menu-row::after {
  transform: rotate(-45deg);
}

.mobile-menu details[open] summary::after {
  transform: rotate(225deg);
}

.mobile-subnav {
  display: grid;
  gap: 10px;
  padding: 0 0 20px;
}

.mobile-subnav a {
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.35;
}

.mobile-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mobile-quick-actions a {
  min-height: 82px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #2e78d3;
  background: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;
}

.mobile-menu-actions a {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 21px;
  font-weight: 850;
}

.mobile-buy {
  background: #28a844;
}

.mobile-download {
  background: #20a8b6;
}

.section {
  padding: 86px 0;
}

.hero {
  padding: 72px 0 78px;
  background:
    radial-gradient(820px 430px at 84% 2%, rgba(37, 183, 173, .2), transparent 66%),
    linear-gradient(180deg, #f9fffd 0%, #eff7f4 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: 44px;
  align-items: center;
}

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

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.04;
  overflow-wrap: break-word;
  hyphens: manual;
}

h1 {
  max-width: 100%;
  font-size: clamp(30px, 5.2vw, 62px);
  letter-spacing: -.025em;
}

h2 {
  max-width: 100%;
  font-size: clamp(28px, 4.2vw, 52px);
  letter-spacing: -.02em;
}

h3 {
  font-size: 23px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 860;
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  box-shadow: 0 14px 34px rgba(255, 159, 47, .26);
}

.btn-secondary {
  color: var(--blue);
  border-color: rgba(13,61,93,.22);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.product-visual {
  position: relative;
  overflow: visible;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.product-visual > img {
  border: 1px solid rgba(13,61,93,.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-chip,
.visual-note {
  position: absolute;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(13,61,93,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 46px rgba(6,43,68,.16);
  backdrop-filter: blur(12px);
}

.visual-chip {
  min-width: 138px;
  padding: 13px 15px;
}

.visual-chip strong {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.visual-chip span,
.visual-note span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 780;
}

.chip-top {
  top: -26px;
  left: -22px;
}

.chip-bottom {
  right: -18px;
  bottom: 78px;
}

.visual-note {
  right: 28px;
  bottom: -28px;
  max-width: 320px;
  padding: 16px;
}

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

.page-hero {
  padding: 70px 0 52px;
  background:
    radial-gradient(760px 380px at 86% 0%, rgba(37,183,173,.18), transparent 68%),
    linear-gradient(180deg, #f9fffd 0%, #eef7f4 100%);
}

.page-hero .lead {
  max-width: 780px;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue);
}

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

.detail-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

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

.detail-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.58;
}

.proof-band {
  background: var(--cream);
}

.page-cta {
  padding: 34px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
}

.page-cta h2 {
  color: #fff;
}

.page-cta p {
  max-width: 720px;
  color: rgba(255,255,255,.76);
  line-height: 1.62;
}

.shield-hero .hero-visual {
  border: 1px solid rgba(13,61,93,.12);
}

.shield-hero h1 {
  max-width: 560px;
  font-size: clamp(42px, 4.8vw, 66px);
}

.shield-hero .lead {
  max-width: 620px;
}

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

.technical-flow article {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.technical-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
}

.technical-flow p {
  color: var(--soft);
  line-height: 1.58;
}

.shield-price-grid {
  display: grid;
  grid-template-columns: .9fr 1.05fr 1.05fr;
  gap: 14px;
}

.intro-strip {
  padding: 28px 0;
  background: #eaf5ff;
}

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

.signal-grid article {
  padding: 18px;
  border: 1px solid rgba(35,118,211,.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(6,43,68,.05);
}

.signal-grid strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.signal-grid span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.35;
}

.problem {
  background: var(--cream);
}

.pain-section {
  background: #fff;
}

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

.pain-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.pain-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.pain-grid p {
  color: var(--soft);
  line-height: 1.6;
}

.split, .two-columns, .contact-grid, .faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: start;
}

.copy p {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.72;
}

.product-band {
  background: #fff;
}

.section-head {
  max-width: 840px;
  margin-bottom: 34px;
}

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

.section-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card, .price-card, .steps article, .mode-list article, .customer-card, .route-card, .module-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.feature-card {
  min-height: 224px;
  padding: 24px;
}

.feature-card span, .steps span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--teal-soft);
  font-weight: 900;
}

.feature-card p, .mode-list p, .steps p, .faq-list p, .price-card p {
  color: var(--soft);
  line-height: 1.58;
}

.route-section {
  background: #fff;
}

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

.route-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(6,43,68,.12);
}

.route-card span {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 900;
}

.route-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.route-card em {
  color: var(--soft);
  font-style: normal;
  line-height: 1.55;
}

.customers {
  background: linear-gradient(180deg, #f8fdfb 0%, #eef7f4 100%);
}

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

.module-card {
  display: grid;
  overflow: hidden;
  min-height: 600px;
}

.module-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #eef7f4;
}

.module-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

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

.module-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.6;
}

.module-card strong {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 18px;
}

.module-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.module-note p {
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

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

.integrations-preview {
  background: #fff;
}

.mini-list {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.mini-list span {
  position: relative;
  padding-left: 24px;
  color: var(--soft);
  line-height: 1.45;
}

.mini-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.integration-stack {
  display: grid;
  gap: 14px;
}

.integration-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(520px 260px at 90% 0%, rgba(37,183,173,.16), transparent 68%),
    #fff;
  box-shadow: var(--shadow);
}

.integration-logo-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid #e1ebe9;
  border-radius: 10px;
  background: #f8fbfa;
  color: #7f8792;
  text-align: center;
}

.integration-logo-card span {
  color: #7b828b;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.03em;
}

.integration-logo-card small {
  color: #9aa3ad;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.integration-logo-image img {
  max-width: 164px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .66;
  mix-blend-mode: multiply;
}

.integration-shot,
.kingbill-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.integration-shot img,
.kingbill-shot img {
  width: 100%;
  height: auto;
}

.kingbill-shot {
  width: min(360px, 100%);
  justify-self: center;
  box-shadow: 0 12px 32px rgba(6,43,68,.08);
}

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

.customer-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 420px;
  padding: 18px;
}

.client-logo {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  overflow: hidden;
  text-decoration: none;
}

.client-logo img {
  display: block;
  width: 100%;
  max-width: 188px;
  max-height: 88px;
  object-fit: contain;
}

.client-logo.elektro {
  background: #050505;
}

.client-logo.elektro img {
  max-width: 178px;
  max-height: 100px;
}

.client-logo.temel {
  background: #1d1e20;
}

.client-logo.imex img,
.client-logo.temel img {
  max-height: 74px;
}

.client-logo.onse img {
  max-width: 202px;
  max-height: 86px;
}

.client-logo.kinderwunsch {
  background: #fbfdff;
}

.client-logo.kinderwunsch img {
  max-width: 206px;
  max-height: 78px;
}

.case-meta {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 850;
}

.customer-card h3 {
  font-size: 20px;
}

.customer-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.54;
}

.geo-proof {
  background:
    radial-gradient(820px 420px at 86% 4%, rgba(35,118,211,.14), transparent 66%),
    #eef7ff;
}

.geo-proof h2,
.geo-proof .eyebrow {
  color: var(--ink);
}

.geo-proof .lead {
  color: var(--soft);
}

.geo-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.geo-shot img {
  width: 100%;
  height: auto;
}

.geo-shot figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
}

.image-story {
  background: linear-gradient(180deg, #f7fbf8 0%, #eef7f4 100%);
}

.image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 18px;
  align-items: stretch;
}

.image-card, .screen-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-card.large img {
  height: 520px;
}

.proof-band .image-card img,
.proof-band .image-card.large img {
  height: auto;
  object-fit: contain;
  background: #eef7f4;
}

.image-card figcaption, .screen-card figcaption {
  padding: 17px 18px;
  border-top: 1px solid var(--line);
}

.image-card strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
}

.image-card span, .screen-card figcaption {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  line-height: 1.45;
}

.bot-section {
  background: #eef7ff;
}

.bot-section h2, .bot-section h3, .bot-section .eyebrow {
  color: var(--ink);
}

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

.mode-list {
  display: grid;
  gap: 14px;
}

.bot-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.bot-phone-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #090d18;
  box-shadow: var(--shadow);
}

.bot-phone-shot img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.mode-list article {
  padding: 24px;
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.mode-list p {
  color: var(--soft);
}

.screens {
  background: #fff;
}

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

.screen-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.home-screen-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-screen-grid .screen-card {
  min-height: 100%;
}

.home-screen-grid .screen-card:nth-child(2) img {
  height: 220px;
  object-position: center;
}

.home-screen-grid .screen-card img {
  height: 220px;
  object-fit: cover;
}

.compact-customers .customer-card {
  min-height: 300px;
}

.compact-customers .customer-card p {
  font-size: 15px;
}

.pricing {
  background: var(--cream);
}

.roi-section {
  background:
    radial-gradient(700px 380px at 90% 4%, rgba(37,183,173,.18), transparent 68%),
    #fff;
}

.roi-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.roi-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(13,61,93,.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.roi-card label {
  gap: 12px;
}

.roi-card label strong {
  color: var(--blue);
  font-size: 18px;
}

.roi-card input[type="range"] {
  accent-color: var(--blue);
  padding: 0;
}

.roi-result {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.roi-result span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.roi-result strong {
  color: #fff;
  font-size: 44px;
  line-height: 1;
}

.roi-card > p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
}

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

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 530px;
  padding: 22px;
}

.price-card.highlight {
  border-color: rgba(255,159,47,.55);
  box-shadow: 0 20px 54px rgba(255,159,47,.16);
}

.badge {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.price small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 760;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--soft);
  line-height: 1.9;
}

.process {
  background: #fff;
}

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

.steps article {
  padding: 22px;
}

.decision-path {
  background:
    radial-gradient(720px 360px at 12% 0%, rgba(37,183,173,.14), transparent 64%),
    #fff;
}

.path-grid,
.service-grid {
  display: grid;
  gap: 16px;
}

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

.path-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.path-grid span,
.service-card span {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 900;
}

.path-grid p {
  color: var(--soft);
  line-height: 1.55;
}

.service-overview {
  background: #fff;
}

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

.service-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(6,43,68,.12);
}

.service-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  background: #eef7f4;
}

.service-card span,
.service-card h3,
.service-card p {
  margin-left: 20px;
  margin-right: 20px;
}

.service-card p {
  margin-top: 0;
  color: var(--soft);
  line-height: 1.56;
}

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

.logo-cloud .client-logo {
  min-height: 150px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.logo-cloud .client-logo.elektro {
  background: #050505;
}

.logo-cloud .client-logo.temel {
  background: #1d1e20;
}

.logo-cloud .client-logo:last-child {
  grid-column: 1 / -1;
}

.service-hero .hero-visual {
  border: 1px solid var(--line);
  background: #fff;
}

.service-hero .hero-visual img {
  width: 100%;
  height: auto;
}

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

.funnel-header .nav {
  min-height: 88px;
}

.funnel-hero {
  padding: 58px 0 76px;
  background:
    radial-gradient(760px 420px at 82% 0%, rgba(37,183,173,.22), transparent 66%),
    linear-gradient(180deg, #f9fffd 0%, #eef7f4 100%);
}

.funnel-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, .98fr);
  gap: 44px;
  align-items: center;
}

.funnel-copy h1 {
  max-width: 720px;
}

.funnel-proof {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}

.funnel-proof strong {
  color: var(--ink);
}

.funnel-proof span {
  color: var(--soft);
  line-height: 1.5;
}

.funnel-form {
  padding: 26px;
}

.funnel-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce9e7;
}

.funnel-progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width .18s ease;
}

.funnel-step-count {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.funnel-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.funnel-step.is-active {
  display: grid;
  gap: 12px;
}

.funnel-step legend {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
  cursor: pointer;
}

.option-card input {
  width: auto;
  margin: 0;
  accent-color: var(--blue);
}

.option-card span {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.3;
}

.option-card:has(input:checked) {
  border-color: rgba(35,118,211,.45);
  background: #edf7ff;
  box-shadow: 0 0 0 4px rgba(35,118,211,.08);
}

.funnel-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.funnel-actions .btn {
  flex: 1;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.mobile-menu details {
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.mobile-menu summary {
  padding: 0;
  color: #fff;
}

.mobile-menu details p {
  padding: 0;
}

.contact {
  background:
    radial-gradient(760px 420px at 86% 8%, rgba(37,183,173,.16), transparent 68%),
    #fff;
}

.contact-note {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-note a {
  color: var(--blue);
  font-weight: 840;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lead-form > input[name="website"] {
  position: absolute;
  left: -9999px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #cfdedc;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdfc;
  padding: 13px 14px;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(37,183,173,.14);
}

textarea { resize: vertical; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  line-height: 1.45;
}

.check input {
  width: auto;
  margin-top: 3px;
}

.footer {
  padding: 36px 0;
  color: rgba(255,255,255,.82);
  background: #2376d3;
}

.footer-grid {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  color: #fff;
  font-size: 24px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer p {
  margin: 0 auto 0 0;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .hero-grid, .split, .two-columns, .contact-grid, .faq-grid, .image-grid, .roi-grid, .funnel-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid, .screen-grid, .customer-grid, .route-grid, .detail-grid, .pain-grid, .path-grid, .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid, .steps, .technical-flow, .shield-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bot-proof-grid {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  }

}

@media (max-width: 760px) {
  .nav {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    font-size: 22px;
    gap: 8px;
    margin-right: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  /* Brand-Text auf Mobile ZEIGEN – kompakter, aber sichtbar */
  .site-header > .nav .brand-text {
    display: inline-flex !important;
    font-size: 17px;
    letter-spacing: -.022em;
  }
  .site-header > .nav .brand {
    gap: 6px;
  }
  .site-header > .nav .brand img {
    width: 40px;
    height: 40px;
  }

  /* CTA bleibt sichtbar, kompakter Text "Analyse" via CSS-Trick */
  .header-cta {
    display: inline-flex !important;
    margin-left: auto;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 11px;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(40, 168, 68, .25);
  }
  .header-cta::before {
    content: "Analyse";
    display: inline-block;
    font-size: 14px;
    font-weight: 880;
    color: #fff;
    letter-spacing: -.005em;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    margin-left: 4px;
  }

  /* Nav-Gap auf Mobile knapp halten */
  .nav {
    gap: 8px;
  }

  /* Sprach-Selektor im Header auf Mobile ausblenden – kommt ins Burger-Menü */
  .lang-switcher {
    display: none !important;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 44px 0 58px;
  }

  h1 {
    font-size: 46px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 33px;
  }

  .lead {
    font-size: 18px;
  }

  .signal-grid, .feature-grid, .screen-grid, .customer-grid, .price-grid, .steps, .route-grid, .module-grid, .bot-proof-grid, .detail-grid, .technical-flow, .shield-price-grid, .home-screen-grid, .pain-grid, .integration-logo-wall, .path-grid, .service-grid, .logo-cloud, .two-card-grid {
    grid-template-columns: 1fr;
  }

  .funnel-layout {
    gap: 28px;
  }

  .funnel-form {
    padding: 20px;
  }

  .funnel-actions {
    display: grid;
  }

  .product-visual {
    margin-top: 8px;
  }

  .visual-chip,
  .visual-note {
    position: static;
    margin-top: 10px;
  }

  .product-visual {
    display: grid;
  }

  .roi-grid {
    gap: 28px;
  }

  .roi-card {
    padding: 22px;
  }

  .roi-result strong {
    font-size: 34px;
  }

  .image-card img, .image-card.large img {
    height: auto;
  }

  .home-screen-grid .screen-card:nth-child(2) img {
    height: 220px;
  }

  .module-card {
    min-height: auto;
  }

  .module-card img {
    height: 220px;
  }

  .module-note {
    display: grid;
  }

  .text-link {
    white-space: normal;
  }

  .bot-phone-shot img {
    height: auto;
    min-height: 0;
  }

  .price-card {
    min-height: auto;
  }

  .footer-grid {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .wrap, .nav {
    width: min(var(--max), calc(100vw - 28px));
  }

  .nav {
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .mobile-menu .brand span {
    display: inline;
  }

  .mobile-menu .brand .brand-text {
    display: inline-flex !important;
  }

  /* Auf sehr kleinen Screens: Brand-Text weicht für CTA */
  .site-header > .nav .brand-text {
    display: none !important;
  }
  .header-cta {
    display: inline-flex !important;
    padding: 0 12px;
  }

  .mobile-menu-inner {
    padding: 24px 20px 36px;
  }

  .mobile-menu summary,
  .mobile-menu-row {
    min-height: 68px;
    font-size: 27px;
  }

  .mobile-quick-actions {
    gap: 8px;
  }

  .mobile-quick-actions a {
    min-height: 72px;
    font-size: 13px;
  }
}

/* ====================================================================
   V2 — Premium Conversion Landing
   Hero, Pain, Workflow-Chat, Modules, ROI, Cases, Process, Pricing,
   FAQ, Final CTA, Footer.  Scope is .v2-* + new section names only.
   ==================================================================== */

:root {
  --v2-bg: #f6f8fb;
  --v2-bg-warm: #fbf9f4;
  --v2-ink: #0b1733;
  --v2-ink-soft: #4a5872;
  --v2-mute: #8392a8;
  --v2-line: #e3e8f0;
  --v2-line-strong: #d2dae7;
  --v2-brand: #2376d3;
  --v2-brand-2: #155f9f;
  --v2-brand-deep: #0b3a73;
  --v2-teal: #1ab3a6;
  --v2-amber: #ff9f2f;
  --v2-amber-2: #ffbe5b;
  --v2-amber-deep: #e2741a;
  --v2-green: #1f9d52;
  --v2-shadow-sm: 0 10px 24px rgba(11, 23, 51, .08);
  --v2-shadow: 0 24px 60px rgba(11, 23, 51, .12);
  --v2-shadow-lg: 0 38px 90px rgba(11, 23, 51, .18);
}

.v2-grad {
  background: linear-gradient(135deg, #2376d3 0%, #1ab3a6 60%, #ffb24d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.v2-underline {
  position: relative;
  white-space: nowrap;
}
.v2-underline::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 4%;
  height: 14px;
  background: linear-gradient(90deg, rgba(255, 159, 47, .55), rgba(255, 190, 91, .25));
  border-radius: 999px;
  z-index: -1;
}

/* ---------- HERO V2 ---------- */
.v2-hero {
  position: relative;
  padding: 92px 0 110px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, #eef4fb 100%);
}
.v2-hero-bg {
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 720px;
  background:
    radial-gradient(620px 320px at 78% 12%, rgba(26, 179, 166, .22), transparent 64%),
    radial-gradient(700px 360px at 18% 22%, rgba(35, 118, 211, .18), transparent 66%),
    radial-gradient(420px 220px at 60% 78%, rgba(255, 190, 91, .18), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.v2-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1.05fr);
  gap: 56px;
  align-items: center;
}
.v2-hero-copy h1 {
  margin: 14px 0 0;
  max-width: 720px;
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--v2-ink);
}
.v2-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--v2-ink-soft);
  font-size: 21px;
  line-height: 1.55;
}

.v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(35, 118, 211, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  color: var(--v2-brand-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .01em;
  box-shadow: 0 6px 16px rgba(11, 23, 51, .06);
}
.v2-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-green);
  box-shadow: 0 0 0 4px rgba(31, 157, 82, .18);
  animation: v2-pulse 2.4s ease-in-out infinite;
}
@keyframes v2-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: .7; }
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.v2-btn-primary {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 26px;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg, #ffb84a 0%, #ff9f2f 50%, #ff8a14 100%);
  font-size: 17px;
  font-weight: 880;
  letter-spacing: -.005em;
  box-shadow: 0 18px 38px rgba(255, 138, 20, .35), inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: transform .18s ease, box-shadow .18s ease;
}
.v2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(255, 138, 20, .42), inset 0 1px 0 rgba(255, 255, 255, .55);
}
.v2-btn-meta {
  margin-top: 2px;
  color: rgba(17, 24, 39, .68);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .02em;
}
.v2-btn-secondary {
  min-height: 64px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid rgba(11, 23, 51, .14);
  color: var(--v2-brand-2);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  font-size: 16px;
  font-weight: 820;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.v2-btn-secondary:hover {
  border-color: rgba(35, 118, 211, .42);
  background: #fff;
  transform: translateY(-1px);
}

.v2-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 23, 51, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(11, 23, 51, .06);
  max-width: 560px;
}
.v2-stars {
  display: inline-flex;
  gap: 1px;
  color: #f4a52d;
  font-size: 20px;
  line-height: 1;
}
.v2-trust-text strong {
  display: block;
  color: var(--v2-ink);
  font-size: 16px;
  font-weight: 880;
  line-height: 1.1;
}
.v2-trust-text span {
  display: block;
  margin-top: 3px;
  color: var(--v2-mute);
  font-size: 13px;
  line-height: 1.3;
}
.v2-trust-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(11, 23, 51, .12);
}

/* hero visual */
.v2-hero-visual {
  position: relative;
  margin: 0;
}
.v2-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(11, 23, 51, .08);
  background: #fff;
  box-shadow: var(--v2-shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.v2-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.v2-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 23, 51, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(11, 23, 51, .18);
  min-width: 220px;
}
.v2-float strong {
  display: block;
  color: var(--v2-ink);
  font-size: 15px;
  font-weight: 880;
  line-height: 1.15;
}
.v2-float span {
  display: block;
  margin-top: 3px;
  color: var(--v2-ink-soft);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.3;
}
.v2-float-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(35, 118, 211, .14), rgba(26, 179, 166, .14));
  color: var(--v2-brand-2);
  font-size: 18px;
  font-weight: 900;
}
.v2-float-icon-green {
  background: linear-gradient(135deg, rgba(31, 157, 82, .18), rgba(26, 179, 166, .14));
  color: var(--v2-green);
}
.v2-float-icon-amber {
  background: linear-gradient(135deg, rgba(255, 159, 47, .25), rgba(255, 190, 91, .18));
  color: var(--v2-amber-deep);
}
.v2-float-top {
  top: -22px;
  left: -28px;
  animation: v2-float-anim 6s ease-in-out infinite;
}
.v2-float-bottom {
  right: -24px;
  bottom: 64px;
  animation: v2-float-anim 7s ease-in-out infinite -2s;
}
.v2-float-right {
  right: -14px;
  bottom: -28px;
  animation: v2-float-anim 8s ease-in-out infinite -4s;
}
@keyframes v2-float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- TRUST BAR ---------- */
.v2-trust-bar {
  padding: 38px 0 30px;
  background: #fff;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
.v2-trust-label {
  margin: 0 0 22px;
  text-align: center;
  color: var(--v2-mute);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.v2-logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.v2-logo-row .client-logo {
  min-height: 100px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.v2-logo-row .client-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--v2-shadow-sm);
}

/* ---------- SECTION HEAD V2 ---------- */
.v2-head {
  max-width: 880px;
  margin-bottom: 56px;
}
.v2-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.04;
  color: var(--v2-ink);
}
.v2-head .lead {
  margin-top: 22px;
  color: var(--v2-ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

/* ---------- PROBLEM ---------- */
.v2-problem {
  background: linear-gradient(180deg, #fff 0%, #fbfaf5 100%);
}
.v2-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.v2-pain {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 240px;
  padding: 28px 26px;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(11, 23, 51, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.v2-pain:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(11, 23, 51, .1);
  border-color: rgba(255, 159, 47, .35);
}
.v2-pain-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff4e1 0%, #fff9ef 100%);
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 159, 47, .25);
}
.v2-pain h3 {
  font-size: 19px;
  font-weight: 880;
  letter-spacing: -.01em;
  color: var(--v2-ink);
  line-height: 1.25;
}
.v2-pain p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 15.5px;
  line-height: 1.58;
}
.v2-problem-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b1733 0%, #143356 100%);
  color: #fff;
}
.v2-problem-foot strong {
  display: block;
  font-size: 17px;
  font-weight: 880;
}
.v2-problem-foot span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}
.v2-problem-foot .text-link {
  color: #ffb84a;
  font-size: 16px;
  font-weight: 880;
}

/* ---------- SOLUTION ---------- */
.v2-solution {
  background: #fff;
}
.v2-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.v2-flow-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 30px 28px 34px;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  box-shadow: 0 16px 36px rgba(11, 23, 51, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(11, 23, 51, .12);
}
.v2-flow-center {
  border-color: rgba(35, 118, 211, .35);
  background: linear-gradient(180deg, #f0f6ff 0%, #e6f0fb 100%);
  box-shadow: 0 22px 50px rgba(35, 118, 211, .18);
}
.v2-flow-step {
  display: inline-block;
  width: max-content;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--v2-brand) 0%, var(--v2-teal) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.v2-flow-card h3 {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.018em;
  color: var(--v2-ink);
}
.v2-flow-tag {
  margin: 0;
  color: var(--v2-brand-2);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.v2-flow-card p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.v2-flow-card p:not(.v2-flow-tag) {
  margin-top: 4px;
}
.v2-flow-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  padding: 18px 22px;
  border: 1px dashed rgba(35, 118, 211, .3);
  border-radius: 16px;
  background: #fff;
}
.v2-flow-meta strong {
  color: var(--v2-ink);
  font-size: 16px;
  font-weight: 880;
}
.v2-flow-meta span {
  margin-left: 8px;
  color: var(--v2-ink-soft);
  font-size: 14px;
}
.v2-flow-arrow {
  color: var(--v2-brand);
  font-size: 22px;
  font-weight: 900;
}

/* ---------- WORKFLOW / TELEGRAM CHAT ---------- */
.v2-workflow {
  background: linear-gradient(180deg, #eef4fb 0%, #fbfdff 100%);
}
.v2-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.v2-workflow-copy h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.06;
  color: var(--v2-ink);
}
.v2-workflow-copy .lead {
  margin-top: 22px;
  color: var(--v2-ink-soft);
  font-size: 18.5px;
  line-height: 1.6;
}
.v2-workflow-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}
.v2-workflow-points > div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--v2-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--v2-shadow-sm);
}
.v2-workflow-points strong {
  color: var(--v2-ink);
  font-size: 16px;
  font-weight: 880;
}
.v2-workflow-points span {
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.45;
}

.v2-chat {
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 460px;
  width: 100%;
  justify-self: end;
  border: 1px solid rgba(11, 23, 51, .1);
  border-radius: 26px;
  background: linear-gradient(180deg, #f0f5fa 0%, #e3edf6 100%);
  box-shadow: var(--v2-shadow-lg);
  overflow: hidden;
}
.v2-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #2376d3 0%, #1ab3a6 100%);
  color: #fff;
}
.v2-chat-avatar {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}
.v2-chat-head strong {
  display: block;
  font-size: 16px;
  font-weight: 880;
  line-height: 1.15;
}
.v2-chat-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 12.5px;
}
.v2-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62ffb1;
  box-shadow: 0 0 0 3px rgba(98, 255, 177, .25);
}
.v2-chat-body {
  display: grid;
  gap: 10px;
  padding: 18px 16px 22px;
  max-height: 600px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.v2-chat-body::-webkit-scrollbar {
  width: 4px;
}
.v2-chat-body::-webkit-scrollbar-thumb {
  background: rgba(11, 23, 51, .15);
  border-radius: 4px;
}
.v2-chat-date {
  margin: 4px auto 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(11, 23, 51, .07);
  color: var(--v2-ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.v2-bubble {
  position: relative;
  max-width: 80%;
  padding: 12px 14px 10px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(11, 23, 51, .06);
}
.v2-bubble p {
  margin: 0;
  color: inherit;
}
.v2-bubble em {
  color: rgba(255, 255, 255, .82);
  font-style: normal;
  font-size: 13px;
}
.v2-bubble-time {
  margin-bottom: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .05em;
  opacity: .65;
  text-transform: uppercase;
}
.v2-bubble-bot {
  justify-self: start;
  border-bottom-left-radius: 4px;
  background: linear-gradient(135deg, #2376d3 0%, #155f9f 100%);
  color: #fff;
}
.v2-bubble-user {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: #fff;
  color: var(--v2-ink);
}
.v2-bubble-user em {
  color: var(--v2-ink-soft);
}
.v2-fake-img {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 8px 12px;
  border: 1px dashed rgba(11, 23, 51, .25);
  border-radius: 10px;
  background: #f1f5fa;
  color: var(--v2-ink-soft);
  font-size: 12px;
  font-weight: 800;
}
.v2-bubble-alert {
  background: linear-gradient(135deg, #f2641d 0%, #e2741a 100%);
  color: #fff;
  justify-self: center;
  max-width: 90%;
  margin: 6px 0;
}
.v2-bubble-end {
  background: linear-gradient(135deg, #1f9d52 0%, #1ab3a6 100%);
  color: #fff;
  justify-self: center;
  max-width: 90%;
  margin: 6px 0 2px;
}

/* ---------- KENNZAHLEN ---------- */
.v2-numbers {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}
.v2-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.v2-number-card {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--v2-shadow-sm);
  overflow: hidden;
}
.v2-number-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--v2-brand) 0%, var(--v2-teal) 100%);
}
.v2-number-card strong {
  display: block;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1;
  background: linear-gradient(135deg, #2376d3 0%, #1ab3a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v2-number-card span {
  display: block;
  margin-top: 10px;
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 760;
}

/* ---------- MODULES ---------- */
.v2-modules {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}
.v2-mod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.v2-mod {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(11, 23, 51, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.v2-mod:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(11, 23, 51, .14);
  border-color: rgba(35, 118, 211, .3);
}
.v2-mod-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4fb 0%, #e1ecf7 100%);
}
.v2-mod-visual img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  transition: transform .4s ease;
}
.v2-mod:hover .v2-mod-visual img {
  transform: scale(1.04);
}
.v2-mod-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 26px 28px;
}
.v2-mod-tag {
  width: max-content;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 118, 211, .12), rgba(26, 179, 166, .12));
  color: var(--v2-brand-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.v2-mod h3 {
  font-size: 21px;
  font-weight: 880;
  letter-spacing: -.015em;
  line-height: 1.22;
  color: var(--v2-ink);
}
.v2-mod p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.v2-mod .text-link {
  margin-top: 4px;
  color: var(--v2-brand);
  font-size: 15px;
  font-weight: 880;
}

/* ---------- ROI ---------- */
.v2-roi {
  background:
    radial-gradient(720px 360px at 90% 6%, rgba(26, 179, 166, .14), transparent 68%),
    linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}
.v2-roi-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}
.v2-roi-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  color: var(--v2-ink-soft);
}
.v2-roi-points li {
  position: relative;
  padding: 4px 0 4px 28px;
  font-size: 16px;
  line-height: 1.5;
}
.v2-roi-points li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 4px;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 138, 20, .15);
  color: var(--v2-amber-deep);
  font-size: 11px;
  font-weight: 900;
}
.v2-roi-points strong {
  color: var(--v2-ink);
}
.v2-roi-card {
  padding: 32px 30px;
  border: 1px solid var(--v2-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--v2-shadow);
}
.v2-roi-card label strong {
  color: var(--v2-brand-2);
  font-size: 15.5px;
  font-weight: 880;
}
.v2-roi-result {
  background: linear-gradient(135deg, #0b3a73 0%, #2376d3 60%, #1ab3a6 100%);
  border-radius: 16px;
  padding: 24px;
}
.v2-roi-result span {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 850;
  text-transform: uppercase;
}
.v2-roi-result strong {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -.025em;
  color: #fff;
}

/* ---------- CASES ---------- */
.v2-cases {
  background: linear-gradient(180deg, #fff 0%, #fbfaf5 100%);
}
.v2-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.v2-case {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(11, 23, 51, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-case:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(11, 23, 51, .12);
}
.v2-case-logo {
  min-height: 120px;
  border-radius: 14px;
  border: 1px solid var(--v2-line);
  padding: 12px;
  background: var(--v2-bg);
}
.v2-case-meta {
  display: block;
  margin-bottom: 8px;
  color: var(--v2-brand-2);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.v2-case h3 {
  font-size: 21px;
  font-weight: 880;
  letter-spacing: -.018em;
  line-height: 1.24;
  color: var(--v2-ink);
  margin-bottom: 10px;
}
.v2-case p {
  margin: 0 0 14px;
  color: var(--v2-ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.v2-case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v2-case-stack span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(35, 118, 211, .1);
  color: var(--v2-brand-2);
  font-size: 12px;
  font-weight: 850;
}
.v2-case-disclaimer {
  margin: 26px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--v2-mute);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ---------- INTEGRATIONS ---------- */
.v2-integrations {
  background: #fff;
}
.v2-integration-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}
.v2-integration-grid h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -.022em;
  line-height: 1.08;
  color: var(--v2-ink);
}
.v2-integration-grid .lead {
  color: var(--v2-ink-soft);
  font-size: 18px;
  line-height: 1.6;
}
.v2-integration-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}
.v2-integration-points li {
  position: relative;
  padding-left: 28px;
  color: var(--v2-ink);
  font-size: 16px;
  line-height: 1.5;
}
.v2-integration-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(31, 157, 82, .15);
  color: var(--v2-green);
  font-size: 12px;
  font-weight: 900;
}
.v2-integration-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--v2-line);
  border-radius: 22px;
  background:
    radial-gradient(420px 220px at 90% 0%, rgba(26, 179, 166, .14), transparent 68%),
    #fff;
  box-shadow: var(--v2-shadow);
}
.v2-int-chip {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  min-height: 110px;
  padding: 14px;
  border: 1px solid var(--v2-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  transition: transform .18s ease, box-shadow .18s ease;
}
.v2-int-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--v2-shadow-sm);
}
.v2-int-chip strong {
  color: var(--v2-ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.018em;
}
.v2-int-chip small {
  color: var(--v2-mute);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.v2-int-chip-soft {
  background: linear-gradient(135deg, rgba(35, 118, 211, .08), rgba(26, 179, 166, .08));
  border-style: dashed;
}
.v2-int-chip-soft strong {
  color: var(--v2-brand-2);
}

/* ---------- PROCESS ---------- */
.v2-process {
  background: linear-gradient(180deg, #fbfaf5 0%, #fff 100%);
}
.v2-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: v2step;
}
.v2-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 23, 51, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.v2-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(11, 23, 51, .12);
}
.v2-step-num {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--v2-brand) 0%, var(--v2-teal) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(35, 118, 211, .3);
}
.v2-step h3 {
  font-size: 20px;
  font-weight: 880;
  letter-spacing: -.015em;
  color: var(--v2-ink);
}
.v2-step p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.v2-step-time {
  display: block;
  margin-top: 6px;
  color: var(--v2-brand-2);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- PRICE TEASER ---------- */
.v2-price-teaser {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}
.v2-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 1080px) {
  .v2-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .v2-price-grid { grid-template-columns: 1fr; }
}
.v2-price {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 36px 28px 28px;
  border: 1px solid var(--v2-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 23, 51, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.v2-price:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(11, 23, 51, .14);
  border-color: rgba(35, 118, 211, .3);
}
.v2-price-highlight {
  border-color: rgba(255, 159, 47, .65);
  background: linear-gradient(180deg, #fffaf2 0%, #fff 60%);
  box-shadow: 0 32px 70px rgba(255, 138, 20, .25);
  transform: translateY(-8px);
}
.v2-price-highlight:hover {
  transform: translateY(-14px);
  box-shadow: 0 42px 90px rgba(255, 138, 20, .32);
}
.v2-price-highlight::before {
  content: "★ Beliebteste Wahl";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--v2-amber), var(--v2-amber-2));
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(255, 138, 20, .4);
}
.v2-price-tag {
  width: max-content;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(35, 118, 211, .08);
  color: var(--v2-brand-2);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.v2-price-highlight .v2-price-tag {
  background: rgba(255, 138, 20, .12);
  color: #b85a00;
}
.v2-price h3 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.018em;
  color: var(--v2-ink);
  margin: 0;
}
.v2-price > p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* --- HERO PRICE: Monatlich GROSS, Setup unten klein --- */
.v2-price-hero {
  margin-top: 4px;
  padding: 20px 0 18px;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  display: grid;
  gap: 4px;
}
.v2-price-from {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--v2-ink-soft);
  text-transform: uppercase;
}
.v2-price-monthly {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.v2-price-monthly strong {
  font-size: 56px;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, #2376d3 0%, #1ab3a6 60%, #ff9f2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v2-price-monthly span {
  font-size: 17px;
  font-weight: 750;
  color: var(--v2-ink-soft);
}
.v2-price-monthly .v2-price-currency {
  font-size: 24px;
  font-weight: 900;
  color: var(--v2-brand-2);
  line-height: 1;
  letter-spacing: -.02em;
}
.v2-price-setup {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--v2-ink-soft);
}
.v2-price-setup strong {
  color: var(--v2-ink);
  font-weight: 850;
}
.v2-price-setup-icon {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(35, 118, 211, .12);
  color: var(--v2-brand-2);
  font-size: 10px;
  font-weight: 950;
  flex-shrink: 0;
}

.v2-price ul.v2-price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.v2-price ul.v2-price-features li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--v2-ink);
}
.v2-price ul.v2-price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ab3a6, #2376d3);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}
.v2-price-highlight ul.v2-price-features li::before {
  background: linear-gradient(135deg, var(--v2-amber), var(--v2-amber-2));
  color: #fff;
}
.v2-price .v2-price-cta {
  margin-top: 4px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 880;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: -.005em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.v2-price .v2-price-cta-primary {
  background: linear-gradient(135deg, var(--v2-amber), var(--v2-amber-2));
  color: #111827;
  box-shadow: 0 12px 30px rgba(255, 138, 20, .35);
}
.v2-price .v2-price-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 138, 20, .45);
}
.v2-price .v2-price-cta-secondary {
  background: rgba(35, 118, 211, .08);
  color: var(--v2-brand-2);
  border: 1px solid rgba(35, 118, 211, .18);
}
.v2-price .v2-price-cta-secondary:hover {
  background: rgba(35, 118, 211, .14);
  transform: translateY(-2px);
}
.v2-price-detail-link {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-brand-2);
  text-decoration: none;
  opacity: .8;
}
.v2-price-detail-link:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 1080px) {
  .v2-price-highlight { transform: translateY(0); }
  .v2-price-highlight:hover { transform: translateY(-6px); }
  .v2-price-monthly strong { font-size: 48px; }
}
@media (max-width: 600px) {
  .v2-price { padding: 32px 22px 24px; }
  .v2-price-monthly strong { font-size: 56px; }
}

/* ====================================================================
   H1/H2/H3 GLOBAL SAFEGUARD - verhindert Wort-Trennung von "Wissenszwilling"
   und anderen langen Wörtern auf ALLEN Viewports (Mobile + Tablet + Desktop)
   Schichten-Strategie:
   1. hyphens: none + word-break: normal => kein Auto-Hyphen, kein Char-Break
   2. overflow-wrap: break-word ist Fallback (nur bei extremen Fällen)
   3. font-size mit clamp() so dimensioniert, dass "Wissenszwilling-Konfigurator"
      auf 320px Viewport noch passt (kleinster realistischer Bildschirm)
   ==================================================================== */
h1, h2, h3, h4, h5, h6,
.v2-hero h1, .v2-hero h2 {
  hyphens: manual !important;
  -webkit-hyphens: manual !important;
  word-break: normal !important;
  overflow-wrap: break-word;
  -ms-word-break: normal;
  text-wrap: balance;
}
/* Spezielle Mobile-Stufen für lange Brand-Wörter */
@media (max-width: 720px) {
  h1, .v2-hero h1 { font-size: clamp(26px, 7.5vw, 42px); letter-spacing: -.028em; }
  h2 { font-size: clamp(24px, 5.5vw, 38px); }
}
@media (max-width: 480px) {
  h1, .v2-hero h1 { font-size: clamp(22px, 8.5vw, 32px); letter-spacing: -.03em; }
  h2 { font-size: clamp(20px, 6vw, 28px); }
}
@media (max-width: 360px) {
  h1, .v2-hero h1 { font-size: 22px; letter-spacing: -.03em; line-height: 1.1; }
  h2 { font-size: 19px; }
}

/* Hero-spezifisch: noch konservativer dimensioniert + Wrap-Schutz */
.v2-hero h1 {
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: manual !important;
}

/* Für Hero-Layouts mit 2-Spalten-Grid (Hero-Visual neben H1):
   begrenze H1 zusätzlich auf Container-Width nicht Viewport-Width */
.v2-hero-grid .v2-hero-copy h1 {
  font-size: clamp(28px, 4.4vw, 56px);
  letter-spacing: -.025em;
}
@media (max-width: 1080px) {
  .v2-hero-grid .v2-hero-copy h1 { font-size: clamp(26px, 6vw, 44px); }
}
@media (max-width: 720px) {
  .v2-hero-grid .v2-hero-copy h1 { font-size: clamp(24px, 7vw, 36px); }
}

/* Brand-W und Brand-Ai im Logo dürfen nicht "abreißen" */
.brand-text { white-space: nowrap; }
.brand-w, .brand-ai { display: inline-block; }
.v2-price-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 1px dashed rgba(35, 118, 211, .3);
  border-radius: 18px;
  background: #fff;
}
.v2-price-foot strong {
  display: block;
  color: var(--v2-ink);
  font-size: 17px;
  font-weight: 880;
}
.v2-price-foot span {
  display: block;
  margin-top: 4px;
  color: var(--v2-ink-soft);
  font-size: 14.5px;
}

/* ---------- FAQ ---------- */
.v2-faq {
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}
.v2-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}
.v2-faq-grid h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -.022em;
  line-height: 1.08;
  color: var(--v2-ink);
}
.v2-faq-grid .lead {
  margin-top: 18px;
  color: var(--v2-ink-soft);
  font-size: 17.5px;
  line-height: 1.6;
}
.v2-faq-list {
  display: grid;
  gap: 12px;
}
.v2-faq-list details {
  border: 1px solid var(--v2-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 23, 51, .04);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.v2-faq-list details[open] {
  border-color: rgba(35, 118, 211, .3);
  box-shadow: 0 18px 36px rgba(11, 23, 51, .1);
}
.v2-faq-list summary {
  position: relative;
  padding: 22px 56px 22px 24px;
  font-size: 17px;
  font-weight: 880;
  color: var(--v2-ink);
  list-style: none;
}
.v2-faq-list summary::-webkit-details-marker { display: none; }
.v2-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(35, 118, 211, .12);
  color: var(--v2-brand-2);
  font-size: 20px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}
.v2-faq-list details[open] summary::after {
  content: "−";
  background: var(--v2-brand);
  color: #fff;
}
.v2-faq-list details p {
  padding: 0 24px 22px;
  color: var(--v2-ink-soft);
  font-size: 15.5px;
  line-height: 1.62;
}

/* ---------- FINAL CTA ---------- */
.v2-final {
  position: relative;
  background:
    radial-gradient(720px 360px at 86% 10%, rgba(26, 179, 166, .2), transparent 66%),
    radial-gradient(620px 320px at 12% 80%, rgba(255, 159, 47, .14), transparent 70%),
    linear-gradient(180deg, #0b1733 0%, #143356 60%, #0b3a73 100%);
  color: #fff;
}
.v2-final .eyebrow {
  color: #62d6cb;
}
.v2-final h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.04;
  color: #fff;
}
.v2-final .lead {
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.6;
}
.v2-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 56px;
  align-items: start;
}
.v2-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.v2-btn-final {
  min-width: 280px;
}
.v2-final .v2-btn-secondary {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
  backdrop-filter: blur(12px);
}
.v2-final .v2-btn-secondary:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .4);
}
.v2-final-trust {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.v2-final-trust > div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}
.v2-final-trust strong {
  display: block;
  color: #62d6cb;
  font-size: 15px;
  font-weight: 880;
}
.v2-final-trust span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: 14.5px;
  line-height: 1.45;
}
.v2-form {
  padding: 32px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  color: var(--v2-ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}
.v2-form-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.018em;
  color: var(--v2-ink);
}
.v2-form label {
  color: var(--v2-ink);
}
.v2-form input,
.v2-form textarea,
.v2-form select {
  border-radius: 12px;
  border-color: var(--v2-line-strong);
  background: #fff;
}
.v2-form input:focus,
.v2-form textarea:focus,
.v2-form select:focus {
  border-color: var(--v2-brand);
  box-shadow: 0 0 0 4px rgba(35, 118, 211, .15);
}
.v2-form .check span {
  color: var(--v2-ink-soft);
}
.v2-form-meta {
  margin: 0;
  color: var(--v2-mute);
  font-size: 13px;
  text-align: center;
}

/* ---------- FOOTER ---------- */
.v2-footer {
  padding: 64px 0 28px;
  background: #08111f;
  color: rgba(255, 255, 255, .72);
}
.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.v2-footer-brand .brand {
  color: #fff;
  font-size: 24px;
  margin-bottom: 14px;
}
.v2-footer-brand p {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, .56);
  font-size: 14.5px;
  line-height: 1.55;
}
.v2-footer-col {
  display: grid;
  gap: 10px;
}
.v2-footer-col strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.v2-footer-col a,
.v2-footer-col span {
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  transition: color .18s ease;
}
.v2-footer-col a:hover {
  color: #fff;
}
.v2-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
}

/* ---------- RESPONSIVE V2 ---------- */
@media (max-width: 1080px) {
  .v2-hero-grid,
  .v2-workflow-grid,
  .v2-roi-grid,
  .v2-integration-grid,
  .v2-faq-grid,
  .v2-final-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v2-pain-grid,
  .v2-mod-grid,
  .v2-flow,
  .v2-cases-grid,
  .v2-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-numbers-grid,
  .v2-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v2-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .v2-logo-row .client-logo:nth-child(4),
  .v2-logo-row .client-logo:nth-child(5) {
    grid-column: span 1;
  }
  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .v2-chat {
    max-width: 100%;
    justify-self: stretch;
  }

  /* Schwebende Karten unter das Visual stacken, sobald Hero single-column wird —
     verhindert Überlagerung auf iPad / iPhone Plus / Pro Max. */
  .v2-float,
  .v2-float-top,
  .v2-float-bottom,
  .v2-float-right {
    position: static;
    top: auto; right: auto; bottom: auto; left: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    animation: none;
  }
  .v2-hero-visual,
  .tel-hero-visual,
  .mail-stack,
  .social-stack,
  .local-device {
    display: grid;
    gap: 12px;
  }
  .v2-visual-frame,
  .tel-call-card,
  .mail-card,
  .social-card,
  .local-device-frame {
    transform: none;
  }
}

@media (max-width: 760px) {
  .v2-hero {
    padding: 56px 0 80px;
  }
  .v2-hero-copy h1 {
    font-size: 44px;
  }
  .v2-lead {
    font-size: 18px;
  }
  .v2-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .v2-btn-primary,
  .v2-btn-secondary {
    width: 100%;
  }
  .v2-trust {
    flex-wrap: wrap;
    gap: 12px;
  }
  .v2-trust-divider {
    display: none;
  }
  .v2-float {
    position: static;
    width: 100%;
    margin-top: 12px;
    animation: none;
  }
  .v2-visual-frame {
    transform: none;
  }
  .v2-hero-visual {
    display: grid;
    gap: 12px;
  }
  .v2-pain-grid,
  .v2-mod-grid,
  .v2-flow,
  .v2-cases-grid,
  .v2-price-grid,
  .v2-numbers-grid,
  .v2-steps,
  .v2-integration-wall,
  .v2-logo-row {
    grid-template-columns: 1fr;
  }
  .v2-case {
    grid-template-columns: 1fr;
  }
  .v2-case-logo {
    max-width: 200px;
  }
  .v2-flow-meta {
    flex-direction: column;
    gap: 8px;
  }
  .v2-flow-arrow {
    transform: rotate(90deg);
  }
  .v2-problem-foot,
  .v2-price-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .v2-footer-grid {
    grid-template-columns: 1fr;
  }
  .v2-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .v2-head h2 {
    font-size: 32px;
  }
  .v2-head .lead {
    font-size: 17px;
  }
  .v2-roi-card {
    padding: 24px 22px;
  }
  .v2-roi-result strong {
    font-size: 36px;
  }
  .v2-form {
    padding: 26px 22px;
  }
}

/* ---------- Brand "W" Stilisierung ---------- */
.brand-text {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  letter-spacing: -.024em;
  font-weight: 900;
}
.brand-w {
  display: inline-block;
  font-size: 1.32em;
  font-weight: 950;
  letter-spacing: -.045em;
  background: linear-gradient(135deg, #2376d3 0%, #1ab3a6 55%, #ff9f2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 1px;
  transform: translateY(2px);
  text-shadow: 0 1px 0 rgba(35, 118, 211, .05);
}
/* Im dunklen Mobile-Menu und Footer leicht angepasste Stops */
.mobile-menu .brand-w,
.v2-footer .brand-w {
  background: linear-gradient(135deg, #62b8ff 0%, #62d6cb 55%, #ffc270 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* .ai-Suffix – wird genauso prominent gestylt wie das W, eigener Akzent-Gradient */
.brand-ai {
  display: inline-block;
  font-size: 1.18em;
  font-weight: 950;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #ff9f2f 0%, #ff5cc8 55%, #2376d3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 3px;
  transform: translateY(2px);
  text-shadow: 0 1px 0 rgba(255, 159, 47, .08);
}
.mobile-menu .brand-ai,
.v2-footer .brand-ai {
  background: linear-gradient(135deg, #ffc270 0%, #ff8fd6 55%, #62b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Featured Module + Icon-Visuals ---------- */
.v2-mod-featured {
  grid-column: span 1;
  border-color: rgba(35, 118, 211, .35);
  box-shadow: 0 22px 50px rgba(35, 118, 211, .18);
}
.v2-mod-featured:hover {
  border-color: rgba(35, 118, 211, .55);
  box-shadow: 0 30px 70px rgba(35, 118, 211, .26);
}
.v2-mod-visual-icon {
  position: relative;
  display: grid;
  place-items: center;
  height: 215px;
  overflow: hidden;
}
.v2-mod-visual-tel {
  background:
    radial-gradient(360px 200px at 20% 20%, rgba(255, 255, 255, .22), transparent 60%),
    linear-gradient(135deg, #0b3a73 0%, #2376d3 55%, #1ab3a6 100%);
}
.v2-mod-visual-mail {
  background:
    radial-gradient(360px 200px at 80% 20%, rgba(255, 255, 255, .25), transparent 60%),
    linear-gradient(135deg, #6c4cd3 0%, #2376d3 100%);
}
.v2-mod-visual-social {
  background:
    radial-gradient(360px 200px at 50% 30%, rgba(255, 255, 255, .22), transparent 60%),
    linear-gradient(135deg, #e2741a 0%, #c93a8b 60%, #6c4cd3 100%);
}
.v2-mod-icon {
  font-size: 78px;
  line-height: 1;
  text-shadow: 0 12px 24px rgba(0, 0, 0, .25);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .15));
}
.v2-mod-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-mod-icon-row span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transition: transform .25s ease;
}
.v2-mod:hover .v2-mod-icon-row span {
  transform: translateY(-4px);
}
.v2-mod-icon-row span:nth-child(2) { transition-delay: .04s; }
.v2-mod-icon-row span:nth-child(3) { transition-delay: .08s; }
.v2-mod-icon-row span:nth-child(4) { transition-delay: .12s; }
.v2-mod-icon-row span:nth-child(5) { transition-delay: .16s; }
.v2-mod-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9f2f, #ffbe5b);
  color: #111827;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255, 138, 20, .35);
}

/* ====================================================================
   Telefonanlage Subpage  (tel-*)
   ==================================================================== */
.tel-hero-visual {
  display: grid;
  gap: 0;
}
.tel-call-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(11, 23, 51, .1);
  border-radius: 22px;
  background:
    radial-gradient(420px 220px at 90% 0%, rgba(35, 118, 211, .14), transparent 68%),
    #fff;
  box-shadow: var(--v2-shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.tel-call-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--v2-line);
}
.tel-call-source {
  display: grid;
  gap: 3px;
}
.tel-source-tag {
  color: var(--v2-brand-2);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .04em;
}
.tel-call-source strong {
  color: var(--v2-ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.018em;
  line-height: 1.1;
}
.tel-source-meta {
  color: var(--v2-ink-soft);
  font-size: 12.5px;
  font-weight: 750;
}
.tel-call-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5d4a 0%, #d83b25 100%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .12em;
  box-shadow: 0 8px 18px rgba(216, 59, 37, .3);
}
.tel-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: v2-pulse 1.4s ease-in-out infinite;
}
.tel-call-ring {
  display: grid;
  gap: 8px;
}
.tel-ring-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}
.tel-ring-name {
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 850;
}
.tel-ring-state {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.tel-ring-busy {
  background: linear-gradient(135deg, rgba(35, 118, 211, .15), rgba(26, 179, 166, .15));
  color: var(--v2-brand-2);
  animation: tel-ring-flash 1.6s ease-in-out infinite;
}
@keyframes tel-ring-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}
.tel-ring-idle {
  background: rgba(11, 23, 51, .08);
  color: var(--v2-mute);
}
.tel-call-transcript {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b1733 0%, #143356 100%);
  color: #fff;
}
.tel-call-transcript strong {
  color: #62d6cb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tel-call-transcript p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
}
.tel-call-transcript em {
  background: linear-gradient(120deg, rgba(255, 159, 47, .35) 0%, rgba(255, 190, 91, .25) 100%);
  padding: 1px 6px;
  border-radius: 6px;
  font-style: normal;
  color: #fff;
  font-weight: 880;
}
.tel-detection {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1f9d52 0%, #1ab3a6 100%);
}
.tel-detection-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tel-detection strong {
  color: #fff;
  font-size: 14px;
  font-weight: 880;
  letter-spacing: -.005em;
  text-transform: none;
}

/* Flow grid for Telefonanlage (6 cards in 3 cols) */
.tel-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tel-flow-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px 26px;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  box-shadow: 0 14px 32px rgba(11, 23, 51, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tel-flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(11, 23, 51, .12);
  border-color: rgba(35, 118, 211, .3);
}
.tel-flow-card h3 {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 880;
  letter-spacing: -.015em;
  line-height: 1.22;
  color: var(--v2-ink);
}
.tel-flow-card p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}
.tel-flow-meta {
  flex-wrap: wrap;
}

/* Case Section */
.tel-case {
  background: linear-gradient(180deg, #fbfaf5 0%, #fff 100%);
}
.tel-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 56px;
  align-items: start;
}
.tel-case-copy h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  letter-spacing: -.022em;
  line-height: 1.08;
  color: var(--v2-ink);
}
.tel-case-copy .lead {
  color: var(--v2-ink-soft);
  font-size: 18px;
  line-height: 1.6;
}
.tel-case-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}
.tel-case-points > div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--v2-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--v2-shadow-sm);
}
.tel-case-points strong {
  color: var(--v2-ink);
  font-size: 16px;
  font-weight: 880;
}
.tel-case-points span {
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}
.tel-case-card {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 18px;
  padding: 30px 28px;
  border: 1px solid var(--v2-line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  box-shadow: var(--v2-shadow);
}
.tel-case-logo {
  min-height: 130px;
  margin: 0;
}
.tel-case-card blockquote {
  margin: 0;
  padding: 0;
  color: var(--v2-ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: -.012em;
  border-left: 4px solid var(--v2-brand);
  padding-left: 16px;
}
.tel-case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tel-case-stack span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(35, 118, 211, .1);
  color: var(--v2-brand-2);
  font-size: 12px;
  font-weight: 850;
}
.tel-case-disclaimer {
  margin: 0;
  color: var(--v2-mute);
  font-size: 12.5px;
  line-height: 1.45;
  font-style: italic;
}

@media (max-width: 1080px) {
  .tel-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tel-case-grid {
    grid-template-columns: 1fr;
  }
  .tel-case-card {
    position: static;
  }
}
@media (max-width: 760px) {
  .tel-flow {
    grid-template-columns: 1fr;
  }
  .tel-call-card {
    transform: none;
  }
  .tel-call-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====================================================================
   E-Mail-Autopilot  (mail-*)
   ==================================================================== */
.mail-stack {
  position: relative;
  display: grid;
  gap: 18px;
}
.mail-card {
  display: grid;
  gap: 10px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--v2-line);
  background: #fff;
  box-shadow: var(--v2-shadow);
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}
.mail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--v2-ink-soft);
  font-size: 12.5px;
  font-weight: 800;
}
.mail-from {
  color: var(--v2-brand-2);
}
.mail-time {
  color: var(--v2-mute);
}
.mail-card strong {
  color: var(--v2-ink);
  font-size: 16.5px;
  font-weight: 880;
  letter-spacing: -.012em;
}
.mail-card p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.mail-card em {
  background: linear-gradient(120deg, rgba(255, 159, 47, .35), rgba(255, 190, 91, .25));
  padding: 1px 6px;
  border-radius: 6px;
  color: var(--v2-ink);
  font-style: normal;
  font-weight: 880;
}
.mail-incoming {
  border-left: 4px solid rgba(11, 23, 51, .25);
}
.mail-draft {
  border: 1px solid rgba(35, 118, 211, .35);
  background:
    radial-gradient(360px 200px at 90% 0%, rgba(35, 118, 211, .08), transparent 68%),
    #fff;
  box-shadow: 0 26px 60px rgba(35, 118, 211, .2);
}
.mail-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 118, 211, .15), rgba(26, 179, 166, .15));
  color: var(--v2-brand-2);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .04em;
}
.mail-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.mail-btn {
  flex: 1;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 880;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.mail-btn-approve {
  color: #fff;
  background: linear-gradient(135deg, #1f9d52 0%, #1ab3a6 100%);
  box-shadow: 0 8px 18px rgba(31, 157, 82, .25);
}
.mail-btn-approve:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 157, 82, .35);
}
.mail-btn-edit {
  color: var(--v2-brand-2);
  border-color: rgba(35, 118, 211, .3);
  background: #fff;
}

/* ====================================================================
   Social-Media-Autopilot  (social-*)
   ==================================================================== */
.social-stack {
  position: relative;
  display: grid;
  gap: 14px;
}
.social-card {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--v2-line);
  background: #fff;
  box-shadow: var(--v2-shadow);
  transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}
.social-card p {
  margin: 0;
  color: var(--v2-ink);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 720;
}
.social-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-platform {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.social-linkedin .social-platform {
  background: linear-gradient(135deg, #0a66c2 0%, #084ea0 100%);
}
.social-instagram .social-platform {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.social-google .social-platform {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 100%);
}
.social-head strong {
  flex: 1;
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 880;
}
.social-time {
  color: var(--v2-mute);
  font-size: 12px;
  font-weight: 800;
}
.social-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.social-meta-row span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 23, 51, .06);
  color: var(--v2-ink-soft);
  font-size: 11.5px;
  font-weight: 800;
}
.social-google .social-meta-row span:last-child {
  background: rgba(31, 157, 82, .12);
  color: var(--v2-green);
}

/* ====================================================================
   Lokale KI / On-Premise  (local-*)
   ==================================================================== */
.local-hero {
  background:
    radial-gradient(820px 430px at 84% 2%, rgba(31, 157, 82, .18), transparent 66%),
    linear-gradient(180deg, #fbfdfa 0%, #f0f6ee 100%);
}
.local-pill {
  border-color: rgba(31, 157, 82, .25);
  color: var(--v2-green);
}

/* Mac Studio Mockup */
.local-device {
  position: relative;
  display: grid;
  gap: 10px;
}
.local-device-frame {
  padding: 14px;
  border: 1px solid rgba(11, 23, 51, .12);
  border-radius: 18px;
  background: linear-gradient(180deg, #fafbfc 0%, #e7ebf0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    var(--v2-shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.local-device-screen {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  border: 1px solid var(--v2-line);
  min-height: 280px;
}
.local-screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--v2-line);
}
.local-screen-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(31, 157, 82, .12);
  color: var(--v2-green);
  font-size: 12px;
  font-weight: 880;
}
.local-screen-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--v2-ink-soft);
  font-size: 12px;
  font-weight: 800;
}
.local-state-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--v2-green);
  box-shadow: 0 0 0 3px rgba(31, 157, 82, .25);
  animation: v2-pulse 2.4s ease-in-out infinite;
}
.local-bubble {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.55;
}
.local-bubble-q {
  background: rgba(11, 23, 51, .06);
  color: var(--v2-ink);
  border-bottom-left-radius: 4px;
  font-weight: 750;
}
.local-bubble-a {
  background: linear-gradient(135deg, #0b1733 0%, #143356 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.local-bubble-a strong {
  color: #62d6cb;
  font-weight: 880;
}
.local-bubble-meta {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .68);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .04em;
}
.local-device-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  padding: 12px 16px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
}
.local-device-label {
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 880;
}
.local-device-tag {
  color: var(--v2-ink-soft);
  font-size: 12.5px;
  font-weight: 800;
}

/* Case (Kinderwunschzentrum) */
.local-case-card {
  background: linear-gradient(180deg, #fafdf9 0%, #f0f6ee 100%);
  border-color: rgba(31, 157, 82, .25);
}
.local-case-logo {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--v2-line);
}
.local-case-logo img {
  max-width: 100%;
  max-height: 92px;
  height: auto;
  object-fit: contain;
}
.local-case-card blockquote cite {
  display: block;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(11, 23, 51, .15);
  color: var(--v2-mute);
  font-size: 12.5px;
  font-style: italic;
  font-weight: 700;
}

/* Targets */
.local-targets {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}
.local-targets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.local-target {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 26px 22px;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  box-shadow: 0 12px 28px rgba(11, 23, 51, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.local-target:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(11, 23, 51, .1);
  border-color: rgba(31, 157, 82, .35);
}
.local-target-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 157, 82, .14), rgba(26, 179, 166, .14));
  font-size: 22px;
}
.local-target h3 {
  font-size: 18px;
  font-weight: 880;
  letter-spacing: -.012em;
  color: var(--v2-ink);
}
.local-target p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Tech */
.local-tech {
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}
.local-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.local-tech-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--v2-line);
  border-radius: 22px;
  background:
    radial-gradient(420px 220px at 90% 0%, rgba(31, 157, 82, .12), transparent 68%),
    #fff;
  box-shadow: var(--v2-shadow);
}
.local-tech-spec {
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
  border: 1px solid var(--v2-line);
}
.local-tech-spec strong {
  color: var(--v2-ink);
  font-size: 15px;
  font-weight: 880;
}
.local-tech-spec span {
  color: var(--v2-ink-soft);
  font-size: 13.5px;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .local-targets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-tech-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .local-targets-grid {
    grid-template-columns: 1fr;
  }
  .local-device-frame {
    transform: none;
  }
  .local-screen-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Lokale KI Spotlight auf Homepage */
.local-spotlight {
  background:
    radial-gradient(720px 360px at 86% 10%, rgba(31, 157, 82, .14), transparent 66%),
    radial-gradient(620px 320px at 12% 80%, rgba(35, 118, 211, .10), transparent 70%),
    linear-gradient(180deg, #fbfaf5 0%, #fff 100%);
}
.local-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 56px;
  align-items: center;
}
.local-spotlight-copy h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.06;
  color: var(--v2-ink);
}
.local-spotlight-copy .lead {
  margin-top: 22px;
  color: var(--v2-ink-soft);
  font-size: 18.5px;
  line-height: 1.6;
}
.local-spotlight-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}
.local-spotlight-points > div {
  padding: 14px 18px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--v2-shadow-sm);
}
.local-spotlight-points strong {
  display: block;
  color: var(--v2-ink);
  font-size: 15.5px;
  font-weight: 880;
}
.local-spotlight-points span {
  display: block;
  margin-top: 3px;
  color: var(--v2-ink-soft);
  font-size: 14px;
}
.local-spotlight-card {
  display: grid;
  gap: 18px;
  padding: 30px 28px;
  border: 1px solid rgba(31, 157, 82, .28);
  border-radius: 22px;
  background:
    radial-gradient(360px 200px at 90% 0%, rgba(31, 157, 82, .08), transparent 68%),
    #fff;
  box-shadow: 0 26px 60px rgba(11, 23, 51, .12);
}
.local-spotlight-logo {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--v2-line);
}
.local-spotlight-logo img {
  max-width: 100%;
  max-height: 100px;
  height: auto;
  object-fit: contain;
}
.local-spotlight-meta {
  display: grid;
  gap: 2px;
}
.local-spotlight-meta span {
  color: var(--v2-brand-2);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.local-spotlight-meta strong {
  color: var(--v2-ink);
  font-size: 17px;
  font-weight: 880;
  letter-spacing: -.012em;
}
.local-spotlight-card blockquote {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid var(--v2-green);
  color: var(--v2-ink);
  font-size: 16.5px;
  line-height: 1.5;
  font-weight: 780;
  letter-spacing: -.005em;
}
.local-spotlight-card blockquote cite {
  display: block;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(11, 23, 51, .15);
  color: var(--v2-mute);
  font-size: 12.5px;
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .local-spotlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================================
   MOBILE MENU – Robust-Override
   iOS Safari hatte ein Problem mit inset:0 + complex background.
   Hier explizit alle Koordinaten + dvh + solid background-color first.
   ==================================================================== */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100dvh !important;
  z-index: 9999 !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #fff;
  background-color: #143356 !important;
  background-image: radial-gradient(540px 320px at 92% 0%, rgba(37,183,173,.28), transparent 64%);
}
.menu-open {
  overflow: hidden !important;
}
.menu-open .mobile-menu {
  display: block !important;
}
body:not(.menu-open) .mobile-menu {
  display: none;
}
/* mobile-menu-inner soll vollen Platz nehmen, damit der Drawer nie kürzer als die Viewport ist */
.mobile-menu .mobile-menu-inner {
  min-height: 100vh;
  min-height: 100dvh;
}

/* ====================================================================
   DESKTOP: Nur Burger-Menü – Nav-Links global ausblenden
   Logo links · CTA · Burger rechts (Premium-Layout)
   ==================================================================== */
.nav-links {
  display: none !important;
}
.menu-toggle {
  display: inline-flex !important;
}
/* Auf Desktop dem Burger denselben Premium-Look wie Mobile geben */
@media (min-width: 1081px) {
  .menu-toggle {
    width: 54px;
    height: 54px;
    margin-left: 4px;
    border-radius: 14px;
  }
  .nav {
    gap: 18px;
  }
}

/* ====================================================================
   SPRACH-AUSWAHL im Burger-Menü
   Wird per JS in jeden Mobile-Menu-Nav injiziert.
   ==================================================================== */
.mobile-lang-section {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.mobile-lang-title {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.mobile-lang-option:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}
.mobile-lang-option.is-active {
  background: rgba(255, 255, 255, .22);
  font-weight: 880;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}
.mobile-lang-option.is-active::after {
  content: "✓";
  margin-left: auto;
  color: #62ffb1;
  font-weight: 900;
}
.mobile-lang-flag {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.mobile-lang-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 420px) {
  .mobile-lang-grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================================
   SPRACH-SELEKTOR im Header (Legacy – wird auf Desktop noch genutzt)
   ==================================================================== */
.lang-switcher {
  position: relative;
  z-index: 60;
  display: inline-flex;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(11, 23, 51, .14);
  border-radius: 12px;
  background: #fff;
  color: #102033;
  font-family: inherit;
  font-size: 14px;
  font-weight: 880;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(11, 23, 51, .06);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.lang-toggle:hover {
  border-color: rgba(35, 118, 211, .45);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 23, 51, .1);
}
.lang-globe {
  color: #155f9f;
  flex-shrink: 0;
}
.lang-caret {
  color: #8392a8;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.lang-switcher.is-open .lang-caret {
  transform: rotate(180deg);
}
.lang-current {
  letter-spacing: .04em;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 260px;
  display: none;
  flex-direction: column;
  padding: 6px;
  border: 1px solid rgba(11, 23, 51, .12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(11, 23, 51, .22), 0 8px 20px rgba(11, 23, 51, .08);
  animation: lang-pop .18s ease;
}
.lang-switcher.is-open .lang-dropdown {
  display: flex;
}
@keyframes lang-pop {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #102033;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 760;
  cursor: pointer;
  text-align: left;
  transition: background .15s ease;
}
.lang-option:hover {
  background: rgba(35, 118, 211, .08);
}
.lang-option.is-active {
  background: linear-gradient(135deg, rgba(35, 118, 211, .14), rgba(26, 179, 166, .14));
  color: #155f9f;
}
.lang-option.is-active::after {
  content: "✓";
  margin-left: auto;
  color: #1ab3a6;
  font-weight: 900;
}
.lang-flag {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.lang-name {
  flex: 1;
  font-weight: 820;
}
.lang-code {
  color: #8392a8;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .08em;
}
.lang-option.is-active .lang-code {
  display: none;
}

/* Toast für „Übersetzung in Vorbereitung" */
.wz-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  max-width: min(380px, calc(100vw - 32px));
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(11, 23, 51, .96);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.wz-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mobile: Selektor kompakter (nur Globe + Code) */
@media (max-width: 760px) {
  .lang-toggle {
    min-height: 40px;
    padding: 0 10px;
    gap: 6px;
    font-size: 13px;
  }
  .lang-globe { width: 16px; height: 16px; }
  .lang-dropdown {
    width: 220px;
    right: -6px;
  }
}
@media (max-width: 420px) {
  .lang-toggle {
    padding: 0 8px;
  }
  .lang-current {
    font-size: 12px;
  }
}

/* ====================================================================
   TEMEL-Logo: weißes Logo auf hellem Background invertieren
   ==================================================================== */
.v2-logo-row .client-logo.temel,
.v2-case-logo.client-logo.temel,
.v2-case .v2-case-logo.temel {
  background: #fff !important;
}
.v2-logo-row .client-logo.temel img,
.v2-case-logo.temel img,
.v2-case .v2-case-logo.temel img,
.tel-case-logo.client-logo.temel img,
.local-case-logo.client-logo.temel img {
  filter: invert(1) brightness(.82) contrast(1.15);
}

/* ====================================================================
   WISSENSZWILLING-BEGRIFFS-AUTORITÄT
   Erklär-Block (Homepage) · 5-Schichten · Vergleichstabelle · Reifegrad
   ==================================================================== */

/* ---------- Erklär-Block auf Homepage ---------- */
.wz-explainer {
  background: linear-gradient(180deg, #fff 0%, #fbfaf5 100%);
  padding: 72px 0 80px;
}
.wz-explainer-head {
  margin-bottom: 44px;
}
.wz-explainer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.wz-explainer-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 24px 30px;
  border: 1px solid var(--v2-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(11, 23, 51, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.wz-explainer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(11, 23, 51, .12);
  border-color: rgba(35, 118, 211, .3);
}
.wz-explainer-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(35, 118, 211, .14), rgba(26, 179, 166, .14));
  font-size: 26px;
}
.wz-explainer-card h3 {
  font-size: 19px;
  font-weight: 880;
  letter-spacing: -.015em;
  line-height: 1.22;
  color: var(--v2-ink);
}
.wz-explainer-card p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.wz-explainer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: 18px;
  border: 1px dashed rgba(35, 118, 211, .3);
  background: rgba(35, 118, 211, .04);
}
.wz-explainer-foot strong {
  display: block;
  color: var(--v2-ink);
  font-size: 15.5px;
  font-weight: 880;
  margin-bottom: 4px;
}
.wz-explainer-foot span {
  display: block;
  color: var(--v2-ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .wz-explainer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .wz-explainer-grid { grid-template-columns: 1fr; }
  .wz-explainer-foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }
}

/* ---------- 5 Schichten des Wissenszwillings ---------- */
.wz-layers {
  background: linear-gradient(180deg, #fbfaf5 0%, #fff 100%);
}
.wz-layers-stack {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.wz-layer {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--v2-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 23, 51, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wz-layer:hover {
  transform: translateX(4px);
  box-shadow: 0 20px 40px rgba(11, 23, 51, .12);
}
.wz-layer-num {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--v2-brand) 0%, var(--v2-teal) 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.02em;
  box-shadow: 0 12px 24px rgba(35, 118, 211, .3);
}
.wz-layer-body h3 {
  font-size: 21px;
  font-weight: 880;
  letter-spacing: -.015em;
  color: var(--v2-ink);
  margin-bottom: 6px;
}
.wz-layer-body p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.wz-layer-tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(35, 118, 211, .1);
  color: var(--v2-brand-2);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wz-layer:nth-child(1) .wz-layer-num { background: linear-gradient(135deg, #6c4cd3, #2376d3); }
.wz-layer:nth-child(2) .wz-layer-num { background: linear-gradient(135deg, #2376d3, #1ab3a6); }
.wz-layer:nth-child(3) .wz-layer-num { background: linear-gradient(135deg, #1ab3a6, #1f9d52); }
.wz-layer:nth-child(4) .wz-layer-num { background: linear-gradient(135deg, #1f9d52, #ff9f2f); }
.wz-layer:nth-child(5) .wz-layer-num { background: linear-gradient(135deg, #ff9f2f, #e2741a); }

@media (max-width: 760px) {
  .wz-layer {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 18px 18px 20px;
  }
  .wz-layer-num {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 20px;
  }
  .wz-layer-tag {
    grid-column: 1 / -1;
    width: max-content;
    margin-top: 8px;
  }
}

/* ---------- Definition Block "Wissenszwilling ist / ist NICHT" ---------- */
.wz-definition {
  background: #fff;
}
.wz-definition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wz-def-card {
  padding: 30px 28px;
  border-radius: 20px;
  border: 1px solid var(--v2-line);
  background: #fff;
  box-shadow: 0 14px 32px rgba(11, 23, 51, .06);
}
.wz-def-card.is-positive {
  border-color: rgba(31, 157, 82, .3);
  background: linear-gradient(180deg, #f7fbf8 0%, #fff 100%);
}
.wz-def-card.is-negative {
  border-color: rgba(216, 59, 37, .25);
  background: linear-gradient(180deg, #fdf6f4 0%, #fff 100%);
}
.wz-def-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.wz-def-card.is-positive .wz-def-tag {
  background: rgba(31, 157, 82, .15);
  color: var(--v2-green);
}
.wz-def-card.is-negative .wz-def-tag {
  background: rgba(216, 59, 37, .12);
  color: #c93a1f;
}
.wz-def-card h3 {
  font-size: 22px;
  font-weight: 880;
  letter-spacing: -.018em;
  color: var(--v2-ink);
  margin-bottom: 16px;
}
.wz-def-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wz-def-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .6);
  color: var(--v2-ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.wz-def-list li::before {
  position: absolute;
  left: 12px;
  top: 9px;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}
.wz-def-card.is-positive .wz-def-list li::before {
  content: "✓";
  background: var(--v2-green);
  color: #fff;
}
.wz-def-card.is-negative .wz-def-list li::before {
  content: "✕";
  background: #c93a1f;
  color: #fff;
}
.wz-def-list li strong {
  color: var(--v2-ink);
  font-weight: 880;
}

@media (max-width: 760px) {
  .wz-definition-grid { grid-template-columns: 1fr; }
  .wz-def-card { padding: 22px 20px; }
}

/* ---------- Vergleichstabelle (Wissenszwilling vs ChatGPT vs CRM vs Wissensdatenbank) ---------- */
.wz-compare {
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}
.wz-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  box-shadow: var(--v2-shadow);
}
.wz-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}
.wz-compare-table th,
.wz-compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--v2-line);
  vertical-align: top;
}
.wz-compare-table thead th {
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  font-size: 14px;
  font-weight: 880;
  letter-spacing: -.005em;
  color: var(--v2-ink);
  border-bottom: 2px solid var(--v2-line-strong);
  white-space: nowrap;
}
.wz-compare-table thead th.is-us {
  background: linear-gradient(180deg, rgba(35, 118, 211, .12), rgba(26, 179, 166, .08));
  color: var(--v2-brand-2);
  border-bottom: 2px solid var(--v2-brand);
}
.wz-compare-table tbody td {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--v2-ink-soft);
}
.wz-compare-table tbody th {
  background: #fbfdfc;
  font-size: 14px;
  font-weight: 880;
  color: var(--v2-ink);
  border-right: 1px solid var(--v2-line);
  width: 22%;
}
.wz-compare-table tbody td.is-us {
  background: linear-gradient(180deg, rgba(35, 118, 211, .04), rgba(26, 179, 166, .03));
  color: var(--v2-ink);
  font-weight: 760;
  border-right: 1px solid rgba(35, 118, 211, .12);
}
.wz-yes { color: var(--v2-green); font-weight: 900; }
.wz-no { color: #c93a1f; font-weight: 900; }
.wz-partial { color: #e2741a; font-weight: 900; }

@media (max-width: 760px) {
  .wz-compare-wrap::before {
    content: "← horizontal scrollen →";
    display: block;
    padding: 10px 16px;
    background: rgba(35, 118, 211, .08);
    color: var(--v2-brand-2);
    font-size: 12px;
    font-weight: 880;
    letter-spacing: .04em;
    text-align: center;
  }
}

/* ---------- Reifegrad-Test (interaktiv) ---------- */
.wz-quiz {
  background: linear-gradient(180deg, #fff 0%, #fbfaf5 100%);
}
.wz-quiz-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow);
}
.wz-quiz-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.wz-quiz-bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(11, 23, 51, .08);
  overflow: hidden;
}
.wz-quiz-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--v2-brand) 0%, var(--v2-teal) 100%);
  transition: width .35s ease;
}
.wz-quiz-step {
  color: var(--v2-mute);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: .04em;
  white-space: nowrap;
}
.wz-quiz-question {
  display: none;
}
.wz-quiz-question.is-active {
  display: block;
}
.wz-quiz-question h3 {
  font-size: 22px;
  font-weight: 880;
  letter-spacing: -.015em;
  color: var(--v2-ink);
  margin-bottom: 20px;
  line-height: 1.3;
}
.wz-quiz-options {
  display: grid;
  gap: 12px;
}
.wz-quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--v2-line);
  border-radius: 14px;
  background: #fbfdfc;
  color: var(--v2-ink);
  font-size: 15.5px;
  font-weight: 760;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.wz-quiz-option:hover {
  border-color: var(--v2-brand);
  background: rgba(35, 118, 211, .06);
}
.wz-quiz-option.is-selected {
  border-color: var(--v2-brand);
  background: rgba(35, 118, 211, .1);
  box-shadow: 0 0 0 3px rgba(35, 118, 211, .12);
}
.wz-quiz-option-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11, 23, 51, .08);
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.wz-quiz-option.is-selected .wz-quiz-option-mark {
  background: var(--v2-brand);
  color: #fff;
}

.wz-quiz-result {
  display: none;
}
.wz-quiz-result.is-active {
  display: grid;
  gap: 20px;
}
.wz-quiz-stage {
  padding: 28px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--v2-brand-deep) 0%, var(--v2-brand) 60%, var(--v2-teal) 100%);
  text-align: center;
}
.wz-quiz-stage-num {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wz-quiz-stage h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 8px;
}
.wz-quiz-stage p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  line-height: 1.55;
}
.wz-quiz-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.wz-quiz-result .wz-quiz-actions a {
  flex: 1;
  min-width: 220px;
}

@media (max-width: 760px) {
  .wz-quiz-card { padding: 26px 20px; }
  .wz-quiz-question h3 { font-size: 19px; }
  .wz-quiz-option { padding: 14px 14px; font-size: 14.5px; }
  .wz-quiz-stage h3 { font-size: 26px; }
}

/* ====================================================================
   WISSENSZWILLING-KONFIGURATOR (Multi-Step-Funnel)
   ==================================================================== */
.wz-config {
  background: linear-gradient(180deg, #fff 0%, #fbfaf5 100%);
}
.wz-config-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 38px 44px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow);
}
.wz-config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.wz-config-progress {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wz-config-bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 23, 51, .08);
  overflow: hidden;
}
.wz-config-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--v2-brand) 0%, var(--v2-teal) 50%, #ff9f2f 100%);
  transition: width .35s ease;
}
.wz-config-step-label {
  color: var(--v2-mute);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: .04em;
  white-space: nowrap;
}
.wz-config-phase {
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(35, 118, 211, .14), rgba(26, 179, 166, .14));
  color: var(--v2-brand-2);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wz-config-step {
  display: none;
}
.wz-config-step.is-active {
  display: block;
  animation: wz-config-fade .25s ease;
}
@keyframes wz-config-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wz-config-eyebrow {
  margin: 0 0 8px;
  color: var(--v2-brand-2);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.wz-config-step h2 {
  font-size: 26px;
  font-weight: 880;
  letter-spacing: -.018em;
  color: var(--v2-ink);
  line-height: 1.22;
  margin-bottom: 8px;
}
.wz-config-step .wz-config-hint {
  margin: 0 0 22px;
  color: var(--v2-ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

.wz-config-options {
  display: grid;
  gap: 10px;
}
.wz-config-options.is-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.wz-config-options.is-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.wz-config-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: #fbfdfc;
  color: var(--v2-ink);
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
  user-select: none;
}
.wz-config-option:hover {
  border-color: var(--v2-brand);
  background: rgba(35, 118, 211, .05);
}
.wz-config-option input[type="checkbox"],
.wz-config-option input[type="radio"] {
  margin: 3px 0 0;
  width: 18px;
  height: 18px;
  accent-color: var(--v2-brand);
  flex-shrink: 0;
}
.wz-config-option > span {
  flex: 1;
  line-height: 1.4;
}
.wz-config-option > span small {
  display: block;
  margin-top: 3px;
  color: var(--v2-ink-soft);
  font-size: 13px;
  font-weight: 700;
}
.wz-config-option:has(input:checked) {
  border-color: var(--v2-brand);
  background: linear-gradient(135deg, rgba(35, 118, 211, .08), rgba(26, 179, 166, .05));
  box-shadow: 0 0 0 3px rgba(35, 118, 211, .12);
}

.wz-config-textfield {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.wz-config-textfield label {
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 820;
}
.wz-config-textfield input,
.wz-config-textfield textarea,
.wz-config-textfield select {
  padding: 12px 14px;
  border: 1px solid var(--v2-line-strong);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  font-size: 16px;
  color: var(--v2-ink);
}
.wz-config-textfield input:focus,
.wz-config-textfield textarea:focus,
.wz-config-textfield select:focus {
  outline: none;
  border-color: var(--v2-brand);
  box-shadow: 0 0 0 4px rgba(35, 118, 211, .12);
}

.wz-config-microhint {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(35, 118, 211, .06);
  border-left: 4px solid var(--v2-brand);
}
.wz-config-microhint strong {
  display: block;
  color: var(--v2-brand-2);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wz-config-microhint span {
  display: block;
  color: var(--v2-ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.wz-config-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--v2-line);
}
.wz-config-actions button {
  font: inherit;
  cursor: pointer;
}
.wz-config-btn-back {
  padding: 12px 22px;
  border: 1px solid var(--v2-line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  font-weight: 820;
}
.wz-config-btn-back:hover {
  border-color: var(--v2-brand);
  color: var(--v2-brand-2);
}
.wz-config-btn-back:disabled {
  opacity: 0;
  pointer-events: none;
}
.wz-config-btn-next {
  padding: 14px 32px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffb84a 0%, #ff9f2f 50%, #ff8a14 100%);
  color: #111827;
  font-size: 15.5px;
  font-weight: 880;
  box-shadow: 0 14px 28px rgba(255, 138, 20, .3);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wz-config-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255, 138, 20, .4);
}
.wz-config-btn-next:disabled {
  opacity: .5;
  pointer-events: none;
}

/* ===== Result ===== */
.wz-config-result {
  display: none;
}
.wz-config-result.is-active {
  display: grid;
  gap: 22px;
}
.wz-config-stage {
  padding: 32px 28px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #0b3a73 0%, #2376d3 60%, #1ab3a6 100%);
  text-align: center;
}
.wz-config-stage-num {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wz-config-stage h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 8px;
}
.wz-config-stage p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.5;
}
.wz-config-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.wz-config-result-card {
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid var(--v2-line);
  background: #fff;
}
.wz-config-result-card.is-highlight {
  border-color: rgba(255, 159, 47, .55);
  background: linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}
.wz-config-result-card .label {
  display: block;
  margin-bottom: 8px;
  color: var(--v2-brand-2);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.wz-config-result-card .value {
  display: block;
  margin-bottom: 6px;
  color: var(--v2-ink);
  font-size: 22px;
  font-weight: 880;
  line-height: 1.2;
}
.wz-config-result-card .detail {
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.wz-config-priorities {
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
  border: 1px solid var(--v2-line);
}
.wz-config-priorities h4 {
  margin: 0 0 14px;
  color: var(--v2-ink);
  font-size: 17px;
  font-weight: 880;
}
.wz-config-priorities ol {
  margin: 0;
  padding-left: 20px;
  color: var(--v2-ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.wz-config-priorities ol li::marker {
  color: var(--v2-brand);
  font-weight: 900;
}
.wz-config-priorities ol li strong {
  color: var(--v2-ink);
}

.wz-config-leadbox {
  padding: 28px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b1733 0%, #143356 100%);
  color: #fff;
}
.wz-config-leadbox h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 22px;
  font-weight: 880;
}
.wz-config-leadbox p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.55;
}
.wz-config-leadbox form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.wz-config-leadbox label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  font-weight: 820;
}
.wz-config-leadbox input {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font: inherit;
  font-size: 16px;
}
.wz-config-leadbox input::placeholder {
  color: rgba(255, 255, 255, .4);
}
.wz-config-leadbox input:focus {
  outline: none;
  border-color: #62d6cb;
  box-shadow: 0 0 0 3px rgba(98, 214, 203, .2);
}
.wz-config-leadbox .check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  font-size: 12.5px;
  line-height: 1.5;
}
.wz-config-leadbox .check input {
  width: 18px;
  height: 18px;
  accent-color: #62d6cb;
  margin-top: 3px;
}
.wz-config-leadbox button {
  grid-column: 1 / -1;
  padding: 16px 32px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffb84a, #ff9f2f);
  color: #111827;
  font-size: 16px;
  font-weight: 880;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 138, 20, .3);
}
.wz-config-leadbox button:hover {
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .wz-config-card {
    padding: 24px 20px 30px;
    border-radius: 16px;
  }
  .wz-config-step h2 {
    font-size: 22px;
  }
  .wz-config-options.is-grid-2,
  .wz-config-options.is-grid-3 {
    grid-template-columns: 1fr;
  }
  .wz-config-result-grid {
    grid-template-columns: 1fr;
  }
  .wz-config-leadbox form {
    grid-template-columns: 1fr;
  }
  .wz-config-stage h3 {
    font-size: 26px;
  }
}

/* ===== Konzept-Erweiterungen aus Fachverankerung ===== */
.wz-zombie-box {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(216, 59, 37, .07) 0%, rgba(255, 159, 47, .07) 100%);
  border: 1px dashed rgba(216, 59, 37, .35);
  margin: 20px 0;
}
.wz-zombie-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d83b25, #ff9f2f);
  color: #fff;
  font-size: 28px;
}
.wz-zombie-box h3 {
  margin: 0 0 8px;
  color: var(--v2-ink);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.015em;
}
.wz-zombie-box p {
  margin: 0;
  color: var(--v2-ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.wz-zombie-box p strong {
  color: var(--v2-ink);
}

@media (max-width: 760px) {
  .wz-zombie-box {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }
}

/* ===== Story-Block (Apfelstrudel-Analogie umgeschrieben) ===== */
.wz-story {
  padding: 36px 38px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfaf5 0%, #fff 100%);
  border: 1px solid var(--v2-line);
  box-shadow: var(--v2-shadow-sm);
  max-width: 880px;
  margin: 30px auto;
}
.wz-story-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9f2f, #ffbe5b);
  color: #111827;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.wz-story h3 {
  color: var(--v2-ink);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.022em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.wz-story p {
  color: var(--v2-ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.wz-story p strong {
  color: var(--v2-ink);
}
.wz-story em {
  background: linear-gradient(120deg, rgba(255, 159, 47, .35), rgba(255, 190, 91, .2));
  padding: 2px 6px;
  border-radius: 6px;
  font-style: normal;
  font-weight: 760;
  color: var(--v2-ink);
}
.wz-story-quote {
  padding: 18px 22px;
  border-left: 4px solid var(--v2-brand);
  background: rgba(35, 118, 211, .04);
  border-radius: 0 12px 12px 0;
  color: var(--v2-ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.5;
  margin: 18px 0;
}

@media (max-width: 760px) {
  .wz-story { padding: 24px 22px; }
  .wz-story h3 { font-size: 21px; }
  .wz-story p { font-size: 15.5px; }
}

/* ===== Senior+Agenten-Konzept Card ===== */
.wz-orchestra {
  display: grid;
  grid-template-columns: 1fr 80px 2fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7faff 0%, #eef4fb 100%);
  border: 1px solid rgba(35, 118, 211, .25);
  margin: 24px 0;
}
.wz-orchestra-senior {
  text-align: center;
}
.wz-orchestra-senior .icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--v2-brand) 0%, var(--v2-teal) 100%);
  color: #fff;
  font-size: 28px;
  margin-bottom: 10px;
}
.wz-orchestra-senior strong {
  display: block;
  color: var(--v2-ink);
  font-size: 15px;
  font-weight: 880;
}
.wz-orchestra-senior small {
  color: var(--v2-ink-soft);
  font-size: 12.5px;
}
.wz-orchestra-arrows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 22px;
  color: var(--v2-brand);
  text-align: center;
  font-weight: 900;
}
.wz-orchestra-agents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.wz-orchestra-agents > div {
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--v2-line);
  font-size: 13.5px;
  font-weight: 760;
  color: var(--v2-ink);
}
.wz-orchestra-agents > div strong {
  display: block;
  color: var(--v2-brand-2);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

@media (max-width: 760px) {
  .wz-orchestra {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wz-orchestra-arrows {
    flex-direction: row;
    justify-content: center;
    transform: rotate(90deg);
    height: 30px;
  }
}


/* ====================================================================
   GLOBAL VISUAL FIXES – Verhindert Cut-off &amp; Overflow auf allen Seiten
   ==================================================================== */

/* Generelle Text-Hygiene gegen Overflow */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
p, li, span, a, blockquote, summary {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* E-Mail-Adressen und lange URLs brechen */
a[href^="mailto:"], a[href^="tel:"] {
  word-break: break-word;
}

/* Generelle Container: nie horizontal scrollen */
.wrap {
  overflow-wrap: break-word;
}

/* Form-Inputs füllen Container vollständig */
input, textarea, select, button {
  max-width: 100%;
  box-sizing: border-box;
}

/* Listen mit Long-Items nicht über Container hinaus */
ul, ol {
  padding-inline-start: 1.4em;
}
ul li, ol li {
  overflow-wrap: break-word;
}

/* ============= MOBILE-SPEZIFISCHE FIXES (≤ 760px) ============= */
@media (max-width: 760px) {
  /* Hero-Headlines: nicht zu groß werden, sauber wrappen */
  .v2-hero-copy h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.06;
    letter-spacing: -.02em;
    word-break: break-word;
  }
  .v2-hero-copy h1 .v2-grad,
  .v2-hero-copy h1 .v2-underline {
    display: inline;
  }
  /* Lead-Text auf Mobile nicht zu groß */
  .v2-lead {
    font-size: 16.5px;
    line-height: 1.55;
  }
  /* Section-Headlines */
  .v2-head h2 {
    font-size: clamp(28px, 7.5vw, 36px);
    line-height: 1.08;
  }
  .v2-head .lead {
    font-size: 16px;
  }

  /* Trust-Row stapelt vertikal, Divider weg */
  .v2-trust {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }
  .v2-trust-divider {
    display: none;
  }
  .v2-stars {
    font-size: 18px;
  }
  .v2-trust-text strong {
    font-size: 15px;
  }
  .v2-trust-text span {
    font-size: 12.5px;
  }

  /* Hero-Buttons full-width auf engem Screen */
  .hero-actions.v2-actions {
    width: 100%;
  }
  .v2-actions .btn,
  .v2-actions .v2-btn-primary,
  .v2-actions .v2-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Float-Cards Padding auf Mobile reduzieren */
  .v2-float {
    padding: 12px 14px;
    min-width: 0;
  }
  .v2-float strong {
    font-size: 14px;
  }
  .v2-float span {
    font-size: 11.5px;
  }

  /* Number Cards mit langen Texten */
  .v2-number-card strong {
    font-size: 30px;
    word-break: break-word;
  }
  .v2-number-card span {
    font-size: 13.5px;
  }

  /* Module-Cards: ausreichend Padding, kein Cut-off */
  .v2-mod-body {
    padding: 22px 22px 24px;
  }
  .v2-mod h3 {
    font-size: 19px;
    line-height: 1.25;
  }

  /* Pain-Cards kompakter */
  .v2-pain {
    padding: 22px 20px;
    min-height: auto;
  }
  .v2-pain h3 {
    font-size: 17px;
    line-height: 1.28;
  }
  .v2-pain p {
    font-size: 14.5px;
  }

  /* Flow-Cards (3-Schritte) */
  .v2-flow,
  .tel-flow {
    grid-template-columns: 1fr;
  }
  .v2-flow-card,
  .tel-flow-card {
    padding: 26px 24px;
  }
  .v2-flow-card h3,
  .tel-flow-card h3 {
    font-size: 22px;
  }

  /* Final CTA: Trust-Items stack */
  .v2-final-trust {
    grid-template-columns: 1fr;
  }
  .v2-final-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .v2-final-actions .btn {
    width: 100%;
  }

  /* Form-Section: enge Inputs */
  .v2-form {
    padding: 22px 20px;
  }
  .v2-form-title {
    font-size: 19px;
  }

  /* Pricing-Karten: Preis nicht zu groß */
  .price-card .price,
  .v2-price-amount strong {
    font-size: 30px;
    word-break: break-word;
  }
  .price-card h3,
  .v2-price h3 {
    font-size: 22px;
  }

  /* Footer: Spalten stack */
  .v2-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .v2-footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* Sprach-Section im Burger: 2-spaltig bleibt */
  .mobile-lang-section {
    margin-top: 14px;
    padding-top: 18px;
  }

  /* Mobile-Menu-Row: nicht zu groß */
  .mobile-menu summary,
  .mobile-menu-row {
    min-height: 56px;
    font-size: 19px;
  }
  .mobile-subnav a {
    font-size: 15px;
    padding: 4px 0;
  }
}

/* ============= SEHR KLEINE SCREENS (≤ 420px) ============= */
@media (max-width: 420px) {
  .v2-hero {
    padding: 32px 0 48px;
  }
  .v2-hero-copy h1 {
    font-size: clamp(28px, 8.5vw, 36px);
  }
  .v2-head h2 {
    font-size: clamp(24px, 7vw, 30px);
  }
  /* Trust-Card kompakter */
  .v2-trust {
    padding: 12px 14px;
  }
  /* Mobile-Menu noch enger */
  .mobile-menu summary,
  .mobile-menu-row {
    min-height: 52px;
    font-size: 18px;
  }
  /* Number Card */
  .v2-number-card strong {
    font-size: 26px;
  }
  /* Module Card padding */
  .v2-mod-body {
    padding: 20px 18px 22px;
  }
  .v2-mod h3 {
    font-size: 17.5px;
  }
  /* Pain-Cards */
  .v2-pain {
    padding: 18px 16px;
  }
  /* Flow-Cards padding */
  .v2-flow-card,
  .tel-flow-card {
    padding: 22px 18px;
  }
  /* Form-Padding */
  .v2-form {
    padding: 18px 16px;
  }
  /* Hero-Visual-Frame */
  .v2-visual-frame {
    border-radius: 14px;
  }
}

/* ============= TABLET (761–1080px) ============= */
@media (max-width: 1080px) and (min-width: 761px) {
  /* Hero-Grid wird single-column, Visual sollte zentriert sein */
  .v2-hero-visual {
    margin: 0 auto;
    max-width: 600px;
  }
  /* Trust-Row immer noch horizontal aber kompakt */
  .v2-trust {
    max-width: 100%;
  }
}

/* ============= DETAIL-CHECK: Lead-Form auf engen Screens ============= */
@media (max-width: 760px) {
  .lead-form,
  .v2-form {
    width: 100%;
  }
  .lead-form label,
  .v2-form label {
    font-size: 13px;
  }
  .lead-form input,
  .lead-form textarea,
  .lead-form select,
  .v2-form input,
  .v2-form textarea,
  .v2-form select {
    font-size: 16px; /* iOS zoom prevention */
    padding: 12px 13px;
  }
  .check span {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ============= TELEGRAM-CHAT auf Mobile ============= */
@media (max-width: 760px) {
  .v2-chat {
    border-radius: 18px;
  }
  .v2-chat-body {
    max-height: 480px;
    padding: 14px 12px 18px;
  }
  .v2-bubble {
    max-width: 88%;
    font-size: 13.5px;
  }
  .v2-bubble-alert,
  .v2-bubble-end {
    max-width: 96%;
  }
}

/* ============= LOCAL DEVICE MOCKUP auf Mobile ============= */
@media (max-width: 760px) {
  .local-device-screen {
    padding: 16px 18px;
    min-height: 240px;
  }
  .local-bubble {
    font-size: 13.5px;
    padding: 12px 14px;
  }
  .local-device-base {
    padding: 10px 14px;
    flex-wrap: wrap;
  }
}

/* ============= TEL CALL CARD auf Mobile ============= */
@media (max-width: 760px) {
  .tel-call-card {
    padding: 20px 18px;
    gap: 14px;
  }
  .tel-call-source strong {
    font-size: 18px;
    word-break: break-all;
  }
  .tel-call-transcript p {
    font-size: 13.5px;
  }
}

/* ============= INTEGRATION-WALL auf Mobile ============= */
@media (max-width: 760px) {
  .v2-integration-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 16px;
  }
  .v2-int-chip {
    min-height: 90px;
    padding: 12px 10px;
  }
  .v2-int-chip strong {
    font-size: 17px;
  }
  .v2-int-chip small {
    font-size: 10.5px;
  }
}

/* ============= ROI/RECHNER auf Mobile ============= */
@media (max-width: 760px) {
  .roi-card,
  .v2-roi-card {
    padding: 22px 18px;
  }
  .roi-result,
  .v2-roi-result {
    padding: 18px;
  }
  .roi-result strong,
  .v2-roi-result strong {
    font-size: 30px;
    word-break: break-all;
  }
}

/* ============= LOGO-ROW (TRUST BAR) auf Mobile ============= */
@media (max-width: 760px) {
  .v2-trust-bar {
    padding: 28px 0 22px;
  }
  .v2-logo-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .v2-logo-row .client-logo {
    min-height: 80px;
    padding: 12px;
  }
}

/* ============= CASE-CARDS auf Mobile ============= */
@media (max-width: 760px) {
  .v2-case {
    padding: 22px 20px;
  }
  .v2-case h3 {
    font-size: 18px;
  }
  .v2-case p {
    font-size: 14.5px;
  }
}

/* ============= TARGETS-GRID (Lokale KI) auf Mobile ============= */
@media (max-width: 760px) {
  .local-target {
    padding: 22px 18px;
  }
  .local-target h3 {
    font-size: 17px;
  }
  .local-target p {
    font-size: 14px;
  }
}









/* ====================================================================
   SPRACH-BANNER (Suggestion bei Browser-Sprache) + SUB-PAGE NOTICE
   ==================================================================== */
.wz-lang-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  font-size: 14.5px;
  max-width: calc(100vw - 32px);
  animation: wz-banner-in .3s ease;
}
@keyframes wz-banner-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.wz-lang-banner-flag { font-size: 22px; line-height: 1; }
.wz-lang-banner-text strong { font-weight: 800; }
.wz-lang-banner-yes {
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #ff9f2f, #ff7a00);
  color: #111827;
  font-weight: 900;
  font-size: 13.5px;
  cursor: pointer;
  white-space: nowrap;
}
.wz-lang-banner-yes:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255, 138, 20, .4); }
.wz-lang-banner-no {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: rgba(255, 255, 255, .6);
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}
.wz-lang-banner-no:hover { color: #fff; border-color: rgba(255, 255, 255, .4); }
@media (max-width: 560px) {
  .wz-lang-banner { flex-wrap: wrap; padding: 12px 16px; bottom: 12px; max-width: calc(100vw - 24px); }
  .wz-lang-banner-text { flex-basis: 100%; font-size: 13.5px; }
}

.wz-lang-notice {
  position: fixed;
  top: 72px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 159, 47, .96);
  color: #111827;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(255, 138, 20, .35);
  font-size: 13.5px;
  font-weight: 600;
  max-width: 360px;
  animation: wz-banner-in .3s ease;
}
.wz-lang-notice-flag { font-size: 18px; }
.wz-lang-notice-text a { color: #111827; text-decoration: underline; font-weight: 900; }
.wz-lang-notice-text a:hover { text-decoration-thickness: 2px; }
.wz-lang-notice-close {
  border: none;
  background: rgba(0, 0, 0, .1);
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .wz-lang-notice { top: auto; bottom: 88px; left: 12px; right: 12px; max-width: none; }
}
