:root {
	--orange: #FF8C26;
	--orange-2: #ffb36d;
	--ink: #101522;
	--muted: #647084;
	--bg: #f7f8fb;
	--card: #ffffff;
	--line: #e9edf4;
	--navy: #111827;
	--blue: #16233f;
	--shadow: 0 24px 80px rgba(17, 24, 39, .12);
	--radius: 28px
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--bg);
	color: var(--ink);
	line-height: 1.6
}

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

.wrap {
	width: min(1160px, calc(100% - 40px));
	margin-inline: auto
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 248, 251, .82);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(233, 237, 244, .8)
}

.nav {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 900
}

.brand-text {
	font-size: 22px;
	letter-spacing: -.04em
}

.brand-text span {
	color: var(--orange)
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
	font-weight: 700;
	color: #293244
}

.nav-links a {
	position: relative
}

.nav-links a:not(.nav-cta)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 3px;
	border-radius: 5px;
	background: var(--orange);
	transition: .25s
}

.nav-links a:hover::after {
	width: 100%
}

.nav-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 20px;
	font-weight: 800
}

.nav-cta {
	background: #111827;
	color: #fff
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	gap: 5px;
	flex-direction: column
}

.nav-toggle span {
	width: 26px;
	height: 3px;
	background: #111827;
	border-radius: 99px
}

.section {
	padding: 100px 0
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 88px 0 110px
}

.section-glow:before {
	content: "";
	position: absolute;
	inset: -220px -140px auto auto;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 140, 38, .28), transparent 64%)
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: 58px;
	align-items: center
}

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

.hero h1,
.section-title h2,
.security-grid h2,
.cta-card h2 {
	font-size: clamp(38px, 6vw, 76px);
	line-height: .98;
	letter-spacing: -.065em;
	margin: 0 0 24px
}

.hero h1 span,
.section-title h2 span {
	color: var(--orange)
}

.lead {
	font-size: 20px;
	color: #4d5a70;
	max-width: 680px
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 34px 0
}

.btn.primary {
	background: linear-gradient(135deg, var(--orange), #ff741f);
	color: #fff;
	box-shadow: 0 16px 35px rgba(255, 140, 38, .34)
}

.btn.ghost {
	border: 1px solid var(--line);
	background: white
}

.btn.light {
	background: white;
	color: #111827
}

.btn.full {
	width: 100%;
	margin-top: 12px
}

.trust-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap
}

.trust-row span {
	background: white;
	border: 1px solid var(--line);
	padding: 10px 14px;
	border-radius: 999px;
	color: #445168;
	font-weight: 700
}

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

.dashboard-card {
	background: rgba(255, 255, 255, .9);
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 26px
}

.main-card {
	position: absolute;
	inset: 46px 28px 40px 10px
} 

.card-top {
	display: flex;
	gap: 8px;
	margin-bottom: 26px
}

.card-top span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #dde3ee
}

.card-top span:first-child {
	background: var(--orange)
}

.dashboard-head {
	display: flex;
	justify-content: space-between;
	align-items: start
}

.dashboard-head p {
	margin: 0;
	color: var(--muted);
	font-weight: 800
}

.dashboard-head h2 {
	margin: 0;
	font-size: 30px;
	letter-spacing: -.04em
}

.pulse {
	background: #ecfff4;
	color: #079350;
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 900
}

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

.stats-grid div {
	background: #f5f7fb;
	border-radius: 18px;
	padding: 16px
}

.stats-grid strong {
	display: block;
	font-size: 24px
}

.stats-grid span,
.progress-item span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700
}

.progress-item {
	margin: 18px 0
}

.progress-item b {
	display: block;
	margin-top: 8px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--orange), var(--orange-2));
	width: var(--w)
}

.mini-list {
	background: #111827;
	color: white;
	border-radius: 22px;
	padding: 18px;
	margin-top: 26px
}

.mini-list p,
.security-list p,
.contact-card p {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 12px 0
}

.float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	padding: 14px 18px;
	border-radius: 18px;
	box-shadow: var(--shadow);
	font-weight: 900
}

.float-card i,
.feature-card i,
.service-card i,
.security-list i,
.contact-card i {
	color: var(--orange);
	flex: 0 0 auto
}

.card-a {
	top: 5px;
	right: 0
}

.card-b {
	bottom: 16px;
	left: 0
}

.split {
	display: grid;
	grid-template-columns: 1.4fr .6fr;
	gap: 28px;
	align-items: end
}

.section-title h2,
.security-grid h2,
.cta-card h2 {
	font-size: clamp(34px, 4vw, 54px)
}

.section-title p {
	color: var(--muted);
	font-size: 18px;
	max-width: 760px
}

.center {
	text-align: center
}

.center p {
	margin-inline: auto
}

.highlight-box {
	background: #111827;
	color: #fff;
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow)
}

.highlight-box strong {
	display: block;
	font-size: 28px;
	line-height: 1.1
}

.highlight-box span {
	display: block;
	color: #cbd5e1;
	margin: 10px 0 22px
}

.highlight-box a {
	color: var(--orange);
	font-weight: 900
}

.feature-grid,
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 42px
}

.feature-card,
.service-card,
.price-card,
.ref-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 26px;
	transition: .28s;
	box-shadow: 0 12px 35px rgba(17, 24, 39, .05)
}

.feature-card:hover,
.service-card:hover,
.ref-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow)
}

.feature-card i,
.service-card i {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	background: #fff4ea;
	border-radius: 16px;
	margin-bottom: 20px
}

.feature-card h3,
.service-card h3 {
	margin: 0 0 8px;
	font-size: 22px
}

.feature-card p,
.service-card p,
.price-card li {
	color: var(--muted)
}

.dark-panel {
	background: linear-gradient(135deg, #101827, #16233f);
	color: #fff;
	position: relative;
	overflow: hidden
}

.dark-panel:after {
	content: "";
	position: absolute;
	right: -160px;
	bottom: -200px;
	width: 460px;
	height: 460px;
	background: radial-gradient(circle, rgba(255, 140, 38, .32), transparent 65%)
}

.security-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 42px;
	align-items: center;
	position: relative;
	z-index: 2
}

.security-grid p {
	color: #cbd5e1
}

.security-list {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: var(--radius);
	padding: 28px
}

.security-list p {
	color: white;
	font-weight: 800
}

.references {
	background: white
}

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

.ref-card {
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.ref-card span {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: #111827;
	color: white;
	display: grid;
	place-items: center;
	font-weight: 900
}

.ref-card strong {
	font-size: 24px
}

.ref-card small {
	color: var(--orange);
	font-weight: 900
}

.pricing {
	background: #fffaf5
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 430px));
	justify-content: center;
	gap: 22px
}

.price-card .tag {
	display: inline-flex;
	background: #fff4ea;
	color: var(--orange);
	font-weight: 900;
	padding: 8px 13px;
	border-radius: 999px
}

.price-card h3 {
	font-size: 34px;
	margin: 14px 0
}

.price {
	font-size: 44px;
	font-weight: 950;
	letter-spacing: -.05em
}

.price span {
	font-size: 15px;
	color: var(--muted);
	letter-spacing: 0;
	margin-left: 8px
}

.price-card ul {
	padding-left: 20px;
	margin: 26px 0
}

.featured {
	background: linear-gradient(135deg, #111827, #17233d);
	color: white;
	transform: scale(1.03)
}

.featured li,
.featured .price span {
	color: #cbd5e1
}

.cta-card {
	display: grid;
	grid-template-columns: 1fr 390px;
	gap: 34px;
	align-items: center;
	background: #111827;
	color: white;
	border-radius: 34px;
	padding: 46px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden
}

.cta-card:before {
	content: "";
	position: absolute;
	right: -90px;
	top: -140px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(255, 140, 38, .35), transparent 70%)
}

.cta-card>div {
	position: relative
}

.cta-card p {
	color: #cbd5e1
}

.contact-card {
	background: white;
	color: #111827;
	border-radius: 26px;
	padding: 26px
}

.contact-card p {
	color: #475569
}

.footer {
	background: #080d18;
	color: white;
	padding: 54px 0 20px
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr .7fr .7fr;
	gap: 28px
}

.footer a {
	display: block;
	color: #cbd5e1;
	margin: 8px 0
}

.footer .brand {
	display: inline-flex;
	color: white
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	margin-top: 34px;
	padding-top: 18px;
	color: #94a3b8
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: .7s ease
}

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

.wb21-head_foot_logo {
	height: 60px;
	width: auto;
}

.logo-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ref-customer {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

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

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

	.nav-links {
		position: absolute;
		left: 20px;
		right: 20px;
		top: 78px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		background: white;
		border: 1px solid var(--line);
		border-radius: 22px;
		padding: 20px;
		box-shadow: var(--shadow)
	}

	.nav-links.open {
		display: flex
	}

	.hero-grid,
	.split,
	.security-grid,
	.cta-card {
		grid-template-columns: 1fr
	}

	.hero-visual {
		min-height: 500px
	}

	.feature-grid,
	.service-grid,
	.ref-grid {
		grid-template-columns: 1fr 1fr
	}

	.pricing-grid {
		grid-template-columns: 1fr
	}

	.featured {
		transform: none
	}

	.footer-grid {
		grid-template-columns: 1fr
	}
}

@media(max-width:620px) {
	.wrap {
		width: min(100% - 28px, 1160px)
	}

	.nav {
		height: 72px
	}

	.hero,
	.section {
		padding: 70px 0
	}

	.hero h1 {
		font-size: 45px
	}

	.lead {
		font-size: 17px
	}

	.hero-actions .btn {
		width: 100%
	}

	.hero-visual {
		min-height: 460px
	}

	.main-card {
		/* inset: 32px 0 45px 0;
		padding: 20px */
		position: relative;
        inset: auto;
        width: 100%;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.float-card {
		display: none
	}

	.feature-grid,
	.service-grid,
	.ref-grid {
		grid-template-columns: 1fr
	}

	.cta-card {
		padding: 28px
	}

	.footer-grid {
		gap: 12px
	}
		
}


/* Rechtliche Unterseiten */
.legal-page {
    padding: 110px 0 90px;
}

.legal-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(26px, 5vw, 54px);
}

.legal-card h1 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -.04em;
    margin: 0 0 24px;
}

.legal-card h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 34px 0 12px;
    letter-spacing: -.03em;
}

.legal-card h3 {
    font-size: 20px;
    margin: 24px 0 10px;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

.legal-card a {
    color: var(--orange);
    font-weight: 800;
}

.legal-card ul {
    padding-left: 22px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    margin: 0;
    color: #cbd5e1;
}

.footer-legal-links a:hover {
    color: var(--orange);
}

.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    background: rgba(8, 13, 24, .96);
    color: white;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

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

.cookie-consent strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.cookie-consent p {
    margin: 0;
    color: #cbd5e1;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.cookie-btn.ghost {
    color: #111827;
}

@media(max-width:700px) {
    .cookie-consent {
        grid-template-columns: 1fr;
        bottom: 14px;
        left: 14px;
        right: 14px;
        width: calc(100% - 28px);
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__actions .btn {
        flex: 1 1 140px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

.cookie-consent a {
    color: var(--orange);
    font-weight: 800;
    text-decoration: none;
}

.cookie-consent a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 115px;
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-copy h1 span {
    display: inline;
    font-size: inherit;
    line-height: inherit;
  }

  .lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .trust-row span {
    font-size: 14px;
  }

  .hero-visual {
    display: block;
    min-height: 380px;
    margin-top: 10px;
    transform: scale(.92);
    transform-origin: top center;
  }

  .dashboard-card.main-card,
  .main-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    padding: 22px;
  }

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

  .float-card {
    display: none;
  }
  
  .legal-card h1,
  .legal-page h1 {
    font-size: clamp(24px, 6.2vw, 32px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.025em;
    white-space: nowrap;
  }

  .legal-card h2,
  .legal-page h2 {
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.25;
  }
  
}

/* Finale mobile H1-Optimierung: kleinere Titel statt erzwungenem Umbruch */
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.14;
  }

  .legal-card h1,
  .legal-page h1 {
    font-size: clamp(22px, 5.8vw, 28px) !important;
    line-height: 1.2 !important;
    white-space: nowrap;
  }
}

/* Fix: Rechtseiten sofort sichtbar anzeigen, ohne Scroll-Trigger */
.legal-page .reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: 96px;
  }
}

/* Fix: verhindert horizontales Scrollen auf mobilen Geräten */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

.legal-page {
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}

.legal-page.section-glow::before {
  max-width: 100vw;
  pointer-events: none;
}

.legal-card {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.legal-card a,
.legal-card p,
.legal-card li,
.footer a,
.cookie-consent a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .wrap {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .legal-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .legal-card h1,
  .legal-page h1 {
    max-width: 100%;
  }

  .legal-card h2,
  .legal-page h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

/* Fix: Header/Navigation bleibt beim Scrollen sichtbar */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3000;
}

body {
  padding-top: 82px;
}

.nav {
  position: relative;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    max-width: calc(100vw - 28px);
  }
}

/* Desktop-only Hero Cockpit Korrektur: 99% Cloud bleibt in der weißen Karte */
@media (min-width: 621px) {
  .hero-visual {
    overflow: visible;
  }

  .dashboard-card.main-card,
  .main-card {
    /* breiter machen, Höhe bleibt durch top/bottom unverändert */
    inset: 46px -74px 40px 10px;
    padding: 26px 28px;
    box-sizing: border-box;
  }

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

  .stats-grid div {
    min-width: 0;
    padding: 16px 14px;
    box-sizing: border-box;
  }

  .stats-grid strong {
    font-size: 24px;
    white-space: nowrap;
  }

  .stats-grid span {
    display: block;
    white-space: nowrap;
  }

  .progress-item b {
    max-width: 100%;
  }

  .card-a {
    right: -96px;
  }

  .card-b {
    left: -10px;
  }
}

/* MasterManagement21 Detailseite */
.detail-link-row {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.mm21-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
}

.mm21-hero-grid {
    /* display: grid; */
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.mm21-product-logo {
    display: block;
    width: min(340px, 100%);
    height: auto;
    margin: 0 0 24px;
}

.mm21-hero h1 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1;
    letter-spacing: -.065em;
    margin: 0 0 24px;
}

.mm21-hero-media {
    position: relative;
    min-height: 540px;
}

.product-screen {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 30px;
    padding: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-screen-main {
    position: absolute;
    inset: 42px -40px 42px 0;
    transform: rotate(-1.5deg);
}

.product-screen img,
.showcase-image img,
.process-card img {
    display: block;
    width: 100%;
    height: auto;
}

.product-screen-main img {
    height: 100%;
    object-fit: cover;
    object-position: left top;
    border-radius: 20px;
}

.mm21-float-a {
    top: 8px;
    right: -12px;
}

.mm21-float-b {
    bottom: 20px;
    left: 20px;
}

.mm21-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 42px;
}

.showcase-stack {
    display: grid;
    gap: 28px;
    margin-top: 46px;
}

.showcase-item {
    display: grid;
    grid-template-columns: .45fr .55fr;
    gap: 28px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(17, 24, 39, .06);
    overflow: hidden;
}

.showcase-item.reverse {
    grid-template-columns: .55fr .45fr;
}

.showcase-item.reverse .showcase-copy {
    order: 2;
}

.showcase-copy span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff4ea;
    color: var(--orange);
    font-weight: 950;
    margin-bottom: 18px;
}

.showcase-copy h3 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin: 0 0 14px;
}

.showcase-copy p {
    color: var(--muted);
    font-size: 18px;
    margin: 0;
}

.showcase-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f8fafc;
    box-shadow: 0 18px 40px rgba(17, 24, 39, .08);
}

.process-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.process-card img {
    border-radius: 20px;
}

.setup-note {
    margin-top: 24px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px 22px;
    color: var(--muted);
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 24, 39, .04);
}

.setup-note strong {
    color: var(--ink);
}

@media(max-width:900px) {
    .mm21-hero-grid,
    .showcase-item,
    .showcase-item.reverse {
        grid-template-columns: 1fr;
    }

    .mm21-hero-media {
        min-height: auto;
    }

    .product-screen-main {
        position: relative;
        inset: auto;
        transform: none;
    }

    .product-screen-main img {
        height: auto;
        object-fit: contain;
    }

    .mm21-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item.reverse .showcase-copy {
        order: 0;
    }

    .mm21-float-a,
    .mm21-float-b {
        display: none;
    }
}

@media(max-width:620px) {
    .mm21-hero {
        padding: 70px 0;
    }

    .mm21-feature-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item,
    .process-card {
        padding: 18px;
        border-radius: 24px;
    }
}

/* MM21 responsive polish + straight hero screenshot */
.mm21-hero {
    overflow-x: hidden;
}

.product-screen-main {
    transform: none;
    right: 0;
}

.mm21-hero-media,
.product-screen,
.showcase-image,
.process-card {
    max-width: 100%;
}

.showcase-image img,
.process-card img,
.product-screen-main img {
    max-width: 100%;
}

@media (max-width: 1100px) {
    .mm21-hero-grid {
        gap: 34px;
        grid-template-columns: 1fr 1fr;
    }

    .mm21-product-logo {
        width: min(360px, 100%);
    }

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

@media (max-width: 900px) {
    .mm21-hero {
        padding: 74px 0 70px;
    }

    .mm21-hero-grid {
        grid-template-columns: 1fr;
    }

    .mm21-hero h1 {
        font-size: clamp(36px, 9vw, 54px);
        letter-spacing: -.055em;
    }

    .mm21-product-logo {
        width: min(340px, 100%);
    }

    .mm21-hero-media {
        min-height: auto;
        width: 100%;
    }

    .product-screen-main {
        position: relative;
        inset: auto;
        transform: none;
        width: 100%;
    }

    .product-screen-main img {
        height: auto;
        object-fit: contain;
        object-position: center top;
    }

    .showcase-item,
    .showcase-item.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-item.reverse .showcase-copy {
        order: 0;
    }

    .showcase-copy h3 {
        font-size: clamp(26px, 7vw, 36px);
    }

    .showcase-copy p {
        font-size: 16px;
    }

    .security-grid,
    .pricing-grid,
    .cta-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .mm21-hero {
        padding: 58px 0 54px;
    }

    .mm21-hero h1 {
        font-size: clamp(34px, 11vw, 46px);
    }

    .mm21-product-logo {
        width: min(300px, 100%);
        margin-bottom: 18px;
    }

    .mm21-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 30px;
    }

    .showcase-stack {
        gap: 18px;
        margin-top: 34px;
    }

    .showcase-item,
    .process-card {
        padding: 16px;
        border-radius: 22px;
    }

    .showcase-image,
    .process-card img,
    .product-screen {
        border-radius: 18px;
    }

    .process-card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .process-card img {
        min-width: 760px;
    }

    .setup-note {
        font-size: 14px;
        padding: 16px;
    }
	
}

/* Conversion-Optimierungen für MM21 */
.hero-benefit-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hero-benefit-list div {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px 18px;
}

.hero-benefit-list strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.hero-benefit-list span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 650;
}

.hero-reference-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff4ea;
    color: var(--ink);
    font-weight: 850;
}

.hero-reference-note span {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    flex: 0 0 auto;
}

.mm21-value-section {
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 42px;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(17, 24, 39, .06);
}

.value-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #fff4ea;
    color: var(--orange);
    font-weight: 950;
    margin-bottom: 20px;
}

.value-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.value-card p {
    margin: 0;
    color: var(--muted);
}

.mm21-reference-section {
    background: #fffaf5;
}

.reference-card,
.target-card {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 34px;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.reference-card h2,
.target-card h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.03;
    letter-spacing: -.05em;
    margin: 0 0 16px;
}

.reference-card p,
.target-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.reference-proof {
    background: #111827;
    color: white;
    border-radius: 28px;
    padding: 22px;
    text-align: center;
}

.reference-proof img {
    width: 100%;
	padding: 10px;
    border-radius: 20px;
    margin-bottom: 18px;
    background: white;
}

.reference-proof strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.reference-proof span {
    color: #cbd5e1;
    font-weight: 750;
}

.target-section {
    background: white;
}

.target-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.target-tags span {
    display: inline-flex;
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff4ea;
    color: var(--orange);
    font-weight: 900;
}

@media (max-width: 900px) {
    .value-grid,
    .reference-card,
    .target-card {
        grid-template-columns: 1fr;
    }

    .reference-proof {
        max-width: 420px;
    }

    .target-tags {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .hero-benefit-list div,
    .hero-reference-note {
        padding: 14px;
    }

    .reference-card,
    .target-card,
    .value-card {
        padding: 22px;
        border-radius: 24px;
    }

    .reference-card h2,
    .target-card h2 {
        font-size: clamp(28px, 8vw, 38px);
    }
}

/* MM21 Hero Carousel auf der Hauptseite */
.hero-carousel-wrap {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  overflow: visible;
}

.mm21-hero-carousel {
  position: relative;
  width: min(100%, 520px);
}

.carousel-card {
  position: relative;
  z-index: 2;
  min-height: 450px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 30px;
  box-shadow: 0 28px 90px rgba(17, 24, 39, .12);
  padding: 42px 54px 38px;
  text-align: center;
  overflow: hidden;
}

.carousel-card::before {
  content: "";
  position: absolute;
  inset: -180px auto auto 50%;
  width: 360px;
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  /* background: radial-gradient(circle, rgba(255, 140, 38, .18), transparent 65%); */
  pointer-events: none;
}

.carousel-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--orange);
  background: linear-gradient(135deg, rgba(255, 140, 38, .16), rgba(255, 140, 38, .06));
}

.carousel-icon svg {
  width: 42px;
  height: 42px;
}

.carousel-count {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.carousel-card h2 {
  font-size: clamp(22px, 3vw, 24px);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}

.carousel-card p {
  max-width: 410px;
  margin: 0 auto;
  color: #4d5a70;
  font-size: 18px;
  line-height: 1.55;
}

.carousel-divider {
  height: 1px;
  background: var(--line);
  margin: 30px 0 24px;
}

.carousel-points {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.carousel-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #526077;
  font-weight: 700;
}

.carousel-points i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 140, 38, .12);
  flex: 0 0 auto;
}

.carousel-points svg {
  width: 17px;
  height: 17px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--orange);
  box-shadow: 0 14px 38px rgba(17, 24, 39, .12);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
}

.carousel-prev { left: -30px; }
.carousel-next { right: -30px; }

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #dbe1ea;
  cursor: pointer;
  transition: .2s ease;
}

.carousel-dot.active {
  width: 28px;
  background: var(--orange);
}

.hero-reference-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(233, 237, 244, .9);
  box-shadow: 0 18px 55px rgba(17, 24, 39, .10);
  color: #435067;
  font-weight: 800;
  text-align: center;
}

.hero-reference-badge i,
.hero-reference-badge strong {
  color: var(--orange);
}

@media (max-width: 1100px) {
  .mm21-hero-carousel {
    width: min(100%, 480px);
  }

  .carousel-card {
    padding-inline: 42px;
  }
}

@media (max-width: 900px) {
  .hero-carousel-wrap {
    min-height: auto;
    margin-top: 18px;
  }

  .mm21-hero-carousel {
    width: min(100%, 560px);
  }
}

@media (max-width: 620px) {
  .hero-carousel-wrap {
    transform: none !important;
    min-height: auto !important;
    gap: 18px;
  }

  .carousel-card {
    min-height: 430px;
    padding: 30px 75px 26px;
    border-radius: 24px;
  }

  .carousel-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
  }

  .carousel-icon svg {
    width: 34px;
    height: 34px;
  }

  .carousel-card p {
    font-size: 16px;
  }

  .carousel-divider {
    margin: 24px 0 20px;
  }

  .carousel-btn {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .carousel-btn:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-dots {
    margin-top: 0;
  }

  .hero-reference-badge {
    border-radius: 22px;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 1.35;
    flex-wrap: wrap;
  }
}


@media (max-width: 420px) {
  .carousel-card {
    min-height: 455px;
    padding: 28px 48px 24px;
  }

  .carousel-card h2 {
    font-size: 25px;
  }

  .carousel-points {
    gap: 10px;
  }

  .carousel-points li {
    font-size: 14px;
  }
}
