:root {
	--main_primary: rgba(239, 181, 9, 1);
	--main_primary-soft: rgba(239, 181, 9, .12);
	--main_primary-border: rgba(239, 181, 9, .35);
	--background-primary: #16253D;
	--background-primary-soft: rgba(22, 37, 61, .06);
	--green-go: rgba(0, 181, 9, 1);
	--bg: #f8f8f6;
	--white: #ffffff;
	--not-clear-white-bg: #fafaf8;
	--border: rgba(0, 0, 0, .08);
	--text: #16253D;
	--text-muted: #6b7280;
	--text-faint: #adb5bd;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 22px;
	--shadow-sm: 0 1px 3px rgba(22, 37, 61, .07);
	--shadow: 0 4px 14px rgba(22, 37, 61, .09);
	--shadow-hover: 0 12px 36px rgba(22, 37, 61, .12);
	--transition: 180ms cubic-bezier(.16, 1, .3, 1);
	--font-used-used: 'IBM Plex Sans', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 4rem;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font-used);
	font-size: 1rem;
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
}

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

ul {
	list-style: none;
}

button {
	cursor: pointer;
	background: none;
	border: none;
	font: inherit;
}

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

:focus-visible {
	outline: 2px solid var(--main_primary);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

/* ── Container ── */
.lp-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 3rem);
}

/* ── Section spacing ── */
.section-pad {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

/* ── Labels & Titles ── */
.section-label {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--main_primary);
	margin-bottom: .75rem;
}

.section-title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--background-primary);
	line-height: 1.2;
	margin-bottom: 1rem;
	text-wrap: balance;
}

.section-sub {
	font-size: 1rem;
	color: var(--text-muted);
	max-width: 60ch;
	line-height: 1.7;
}

.section-sub.centered {
	margin-inline: auto;
}

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

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

/* ── Buttons ── */
.lp-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.5rem;
	border-radius: var(--radius-md);
	font-size: .9375rem;
	font-weight: 600;
	transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
	cursor: pointer;
	text-decoration: none;
}

.lp-btn-primary {
	background: var(--main_primary);
	color: var(--background-primary);
}

.lp-btn-primary:hover {
	background: #d9a400;
	box-shadow: 0 4px 16px rgba(239, 181, 9, .35);
	transform: translateY(-1px);
}

.lp-btn-light {
	background: var(--white);
	color: var(--background-primary);
	border: 1px solid var(--border);
}

.lp-btn-light:hover {
	background: var(--not-clear-white-bg);
	border-color: rgba(0, 0, 0, .14);
}

/* =============================================
   HERO
   ============================================= */
.hero {
	background: var(--background-primary);
	padding-block: clamp(3rem, 6vw, 5.5rem);
	border-bottom: 1px solid var(--border);
}

.two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	max-width: 1300px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 3rem);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .8125rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--white);
	background: var(--main_primary-soft);
	border: 1px solid var(--main_primary-border);
	border-radius: var(--radius-xl);
	padding: .3rem .9rem;
	margin-bottom: 1.25rem;
}

.hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--success);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .5;
		transform: scale(.8)
	}
}

.hero-inner h1 {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 1rem;
	text-wrap: balance;
}

.hero-inner h1 em {
	font-style: normal;
	color: var(--main_primary);
}

.hero-sub {
	font-size: 1.0625rem;
	color: var(--white);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	max-width: 52ch;
}

.hero-benefits {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 2rem;
}

.hero-benefit {
	display: flex;
	align-items: center;
	gap: .65rem;
	font-size: .9375rem;
	color: var(--button-border);
}

.hero-benefit-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero-benefit-icon svg {
	width: 16px;
	height: 16px;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

.hero-media-class {
	display: flex;
	align-items: center;
	justify-content: center;
}

#multichannel_visual_mobile {
	display: none;
}

.hero-diagram-wrap {
	width: 100%;
	max-width: 500px;
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 1.5rem 1rem;
	box-shadow: var(--shadow);
}

.hero-diagram-wrap svg {
	width: 100%;
	height: auto;
}

@keyframes moveRight {
	0% {
		transform: translateX(0);
		opacity: 0
	}

	15% {
		opacity: 1
	}

	85% {
		opacity: 1
	}

	100% {
		transform: translateX(40px);
		opacity: 0
	}
}

@keyframes moveLeft {
	0% {
		transform: translateX(0);
		opacity: 0
	}

	15% {
		opacity: 1
	}

	85% {
		opacity: 1
	}

	100% {
		transform: translateX(-40px);
		opacity: 0
	}
}

.data-dot-right {
	animation: moveRight 2.4s ease-in-out infinite;
}

.data-dot-right.d2 {
	animation-delay: .8s;
}

.data-dot-right.d3 {
	animation-delay: 1.6s;
}

.data-dot-left {
	animation: moveLeft 2.4s ease-in-out infinite;
}

.data-dot-left.d2 {
	animation-delay: .8s;
}

.data-dot-left.d3 {
	animation-delay: 1.6s;
}

@keyframes mavabitGlow {

	0%,
	100% {
		filter: drop-shadow(0 0 0px rgba(239, 181, 9, 0))
	}

	50% {
		filter: drop-shadow(0 0 8px rgba(239, 181, 9, .3))
	}
}

.mavabit-glow {
	animation: mavabitGlow 3s ease-in-out infinite;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding-block: 1rem;
}

.trust-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem 2rem;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--text-muted);
}

.trust-item svg {
	width: 16px;
	height: 16px;
	stroke: var(--main_primary);
}

.trust-divider {
	width: 1px;
	height: 1rem;
	background: var(--border);
}

/* =============================================
   PROBLEM
   ============================================= */
.problem {
	background: var(--not-clear-white-bg);
}

.problem-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.problem-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}

.problem-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .5rem;
	margin-top: .75rem;
}

.problem-card p {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.65;
}

.problem-icon {
	width: 36px;
	height: 36px;
	background: rgba(239, 181, 9, .1);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
}

.problem-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--main_primary);
}

/* =============================================
   LÖSUNG
   ============================================= */
.loesung-section {
	background: var(--white);
}

.solution-image-wrapper {
	width: 200px;
	height: 100px;
	overflow: hidden;

}

.solution-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.solution-image-shopify-wrapper {
	width: 200px;
	height: 100px;
	overflow: hidden;
	
}

.solution-image-shopify-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}



.solution-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	margin-top: 2.5rem;
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
}

.solution-text h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: 1rem;
}

.solution-text p {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: .85rem;
}

.solution-list {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin-top: 1rem;
}

.solution-list li {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .9375rem;
	font-weight: 500;
	color: var(--background-primary);
}

.solution-list li svg {
	stroke: var(--main_primary);
	flex-shrink: 0;
}

.solution-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.stat-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1rem;
	text-align: center;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .35rem;
}

.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--main_primary);
	line-height: 1;
}

.stat-label {
	font-size: .8125rem;
	color: var(--text-muted);
	line-height: 1.4;
	text-align: center;
}

/* =============================================
   KANÄLE / FEATURES
   ============================================= */
.features {
	background: var(--not-clear-white-not-clear-white-bg);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.feature-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition);
	display: flex;
	flex-direction: column;
	gap: .85rem;
}

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

.feature-card--upcoming {
	background: var(--not-clear-white-bg);
	border-style: dashed;
	border-color: rgba(239, 181, 9, .3);
}

.feature-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon svg {
	width: 22px;
	height: 22px;
}

.feature-icon--ebay {
	background: rgba(229, 50, 56, .1);
}

.feature-icon--ebay svg {
	stroke: #E53238;
}

.feature-icon--shopify {
	background: rgba(150, 191, 72, .1);
}

.feature-icon--shopify svg {
	stroke: #96BF48;
}

.feature-icon--upcoming {
	background: var(--main_primary-soft);
}

.feature-icon--upcoming svg {
	stroke: var(--main_primary);
}

.feature-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--background-primary);
}

.feature-card p {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.65;
	flex: 1;
}

.channel-badge {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: .2rem .65rem;
	border-radius: var(--radius-xl);
}

.channel-badge--live {
	background: rgba(0, 181, 9, .1);
	color: #0a8010;
}

.channel-badge--upcoming {
	background: var(--main_primary-soft);
	color: #9a6f00;
}

.feature-details {
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

.feature-detail-item {
	display: flex;
	align-items: center;
	gap: .4rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--background-primary);
}

.feature-detail-item svg {
	stroke: var(--main_primary);
	flex-shrink: 0;
}

.feature-detail-item--muted {
	color: var(--text-muted);
}

.feature-detail-item--muted svg {
	stroke: var(--text-faint);
}

.feature-link {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .875rem;
	font-weight: 600;
	color: var(--main_primary);
	margin-top: auto;
	transition: gap var(--transition);
}

.feature-link:hover {
	gap: .6rem;
}

.feature-link--muted {
	color: var(--text-muted);
}

/* =============================================
   STEPS
   ============================================= */
.steps {
	background: var(--white);
}

.steps-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	position: relative;
}

.steps-list::before {
	content: '';
	position: absolute;
	top: 26px;
	left: calc(12.5% + 20px);
	right: calc(12.5% + 20px);
	height: 2px;
	background: linear-gradient(90deg, var(--main_primary) 0%, rgba(239, 181, 9, .2) 100%);
	z-index: 0;
}

.step-card {
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	text-align: center;
	position: relative;
	z-index: 1;
}

.step-number {
	width: 44px;
	height: 44px;
	background: var(--main_primary);
	color: var(--background-primary);
	font-size: 1rem;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.step-card h3 {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .5rem;
}

.step-card p {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* =============================================
   DATENSYNCHRONISATION
   ============================================= */
.datasync-section {
	background: var(--not-clear-white-bg);
}

.datasync-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.datasync-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 1.75rem 1.5rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: .75rem;
	transition: box-shadow var(--transition), transform var(--transition);
}

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

.datasync-direction {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .8125rem;
	font-weight: 700;
	letter-spacing: .04em;
}

.datasync-from,
.datasync-to {
	color: var(--text-muted);
}

.datasync-icon {
	width: 40px;
	height: 40px;
	background: var(--main_primary-soft);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
}

.datasync-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--main_primary);
}

.datasync-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--background-primary);
}

.datasync-card p {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.65;
	flex: 1;
}

.feature-benefit {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .8125rem;
	font-weight: 600;
	color: #0a8010;
	background: rgba(0, 181, 9, .07);
	border-radius: var(--radius-xl);
	padding: .25rem .75rem;
	margin-top: auto;
}

.feature-benefit svg {
	width: 13px;
	height: 13px;
	stroke: #0a8010;
}

/* =============================================
   VORTEILE
   ============================================= */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.benefit-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition);
}

.benefit-card:hover {
	box-shadow: var(--shadow);
}

.benefit-icon {
	width: 40px;
	height: 40px;
	background: var(--main_primary-soft);
	border: 1px solid var(--main_primary-border);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefit-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--main_primary);
}

.benefit-card h3 {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .4rem;
}

.benefit-card p {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* =============================================
   AUDIENCE
   ============================================= */
.audience {
	background: var(--not-clear-white-bg);
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.audience-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition);
}

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

.audience-icon {
	width: 44px;
	height: 44px;
	background: var(--main_primary-soft);
	border: 1px solid var(--main_primary-border);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.audience-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--main_primary);
}

.audience-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .5rem;
}

.audience-card p {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
	background: var(--white);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	align-items: start;
}

.pricing-card {
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-sm);
	position: relative;
}

.pricing-card--featured {
	background: var(--white);
	border-color: var(--main_primary);
	box-shadow: 0 0 0 2px rgba(239, 181, 9, .25), var(--shadow);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--main_primary);
	color: var(--background-primary);
	font-size: .75rem;
	font-weight: 700;
	padding: .25rem .85rem;
	border-radius: var(--radius-xl);
	white-space: nowrap;
}

.pricing-header {
	margin-bottom: 1.5rem;
}

.pricing-header h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .5rem;
}

.pricing-price {
	display: flex;
	align-items: baseline;
	gap: .25rem;
}

.pricing-amount {
	font-size: 2rem;
	font-weight: 800;
	color: var(--background-primary);
}

.pricing-period {
	font-size: .875rem;
	color: var(--text-muted);
}

.pricing-note {
	font-size: .8125rem;
	color: var(--text-muted);
	margin-top: .25rem;
}

.pricing-features {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 1.5rem;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .9rem;
	color: var(--text);
}

.pricing-features li svg {
	width: 14px;
	height: 14px;
	stroke: var(--main_primary);
	flex-shrink: 0;
}

.pricing-feature--muted {
	color: var(--text-muted) !important;
}

.pricing-feature--muted svg {
	stroke: var(--text-faint) !important;
}

.pricing-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: .75rem 1rem;
	border-radius: var(--radius-md);
	font-size: .9375rem;
	font-weight: 600;
	transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.pricing-btn--primary {
	background: var(--main_primary);
	color: var(--background-primary);
}

.pricing-btn--primary:hover {
	background: #d9a400;
	box-shadow: 0 4px 14px rgba(239, 181, 9, .35);
	transform: translateY(-1px);
}

.pricing-btn--outline {
	background: transparent;
	color: var(--background-primary);
	border: 1.5px solid var(--border);
}

.pricing-btn--outline:hover {
	border-color: var(--main_primary);
	color: var(--main_primary);
}

/* =============================================
   CHECKLISTE
   ============================================= */
.checklist-section {
	background: linear-gradient(135deg, rgba(239, 181, 9, .07) 0%, rgba(22, 37, 61, .04) 100%);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.checklist-box {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 3.5rem;
	align-items: center;
	background: var(--white);
	border: 1.5px solid var(--main_primary-border);
	border-radius: var(--radius-xl);
	padding: 3rem;
	box-shadow: var(--shadow-hover);
}

.checklist-label-wrap {
	margin-bottom: .25rem;
}

.checklist-title {
	font-size: clamp(1.5rem, 2.8vw, 2.1rem);
	font-weight: 700;
	color: var(--background-primary);
	line-height: 1.2;
	margin-bottom: .85rem;
}

.checklist-sub {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	max-width: 50ch;
}

.checklist-preview {
	display: flex;
	flex-direction: column;
	gap: .65rem;
	margin-bottom: 2rem;
}

.checklist-preview li {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .9375rem;
	color: var(--background-primary);
	line-height: 1.5;
}

.checklist-preview li svg {
	stroke: var(--main_primary);
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: .15rem;
}

.checklist-cta-wrap {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.checklist-btn {
	font-size: 1rem;
	padding: .9rem 1.75rem;
}

.checklist-privacy {
	display: flex;
	align-items: center;
	gap: .4rem;
	font-size: .8125rem;
	color: var(--text-muted);
}

.checklist-privacy svg {
	stroke: var(--text-muted);
	flex-shrink: 0;
}

.checklist-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.checklist-mockup {
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	box-shadow: var(--shadow);
	width: 100%;
	max-width: 340px;
}

.checklist-mockup-header {
	display: flex;
	gap: .35rem;
	margin-bottom: 1.25rem;
}

.checklist-mockup-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--border);
}

.checklist-mockup-dot:first-child {
	background: #f87171;
}

.checklist-mockup-dot:nth-child(2) {
	background: #fbbf24;
}

.checklist-mockup-dot:nth-child(3) {
	background: #34d399;
}

.checklist-mockup-title {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .2rem;
}

.checklist-mockup-sub {
	font-size: .75rem;
	color: var(--text-faint);
	margin-bottom: 1.25rem;
	letter-spacing: .05em;
}

.checklist-mockup-items {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 1.25rem;
}

.checklist-mockup-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .8125rem;
	color: var(--text-muted);
}

.checklist-mockup-item svg {
	flex-shrink: 0;
	stroke: var(--text-faint);
}

.checklist-mockup-item--done {
	color: var(--background-primary);
}

.checklist-mockup-item--done svg {
	stroke: var(--main_primary);
}

.checklist-mockup-progress {
	margin-top: .5rem;
}

.checklist-mockup-progress-bar {
	height: 5px;
	background: var(--border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: .4rem;
}

.checklist-mockup-progress-fill {
	height: 100%;
	width: 28.5%;
	background: var(--main_primary);
	border-radius: var(--radius-xl);
}

.checklist-mockup-progress span {
	font-size: .75rem;
	color: var(--text-muted);
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
	max-width: 780px;
	margin: 2.5rem auto 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	font-size: .9375rem;
	font-weight: 600;
	color: var(--background-primary);
	text-align: left;
	transition: background var(--transition);
}

.faq-q:hover {
	background: var(--not-clear-white-bg);
}

.faq-q svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	stroke: var(--main_primary);
	transition: transform var(--transition);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s cubic-bezier(.16, 1, .3, 1);
}

.faq-a p {
	padding: 0 1.25rem 1.25rem;
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.faq-item.open .faq-a {
	max-height: 400px;
}

.faq-item.open .faq-q svg {
	transform: rotate(45deg);
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
	background: var(--background-primary);
	text-align: center;
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

.cta-final .section-label {
	color: var(--main_primary);
}

.cta-final .section-title {
	color: #fff;
	margin-inline: auto;
}

.cta-final p {
	color: rgba(255, 255, 255, .65);
	font-size: 1rem;
	max-width: 52ch;
	margin: 1rem auto 2rem;
	line-height: 1.7;
}

.cta-final-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: .75rem;
}

.cta-final .lp-btn-light {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	border-color: rgba(255, 255, 255, .2);
}

.cta-final .lp-btn-light:hover {
	background: rgba(255, 255, 255, .18);
	border-color: rgba(255, 255, 255, .35);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
	.two-columns {
		grid-template-columns: 1fr;
	}

	#multichannel_visual_desktop {
		display: none;
	}

	#multichannel_visual_mobile {
		display: flex;
	}

	.solution-box {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

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

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}

	.steps-list {
		grid-template-columns: 1fr 1fr;
	}

	.steps-list::before {
		display: none;
	}

	.checklist-box {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.checklist-visual {
		display: none;
	}
}

@media (max-width: 640px) {
	.features-grid {
		grid-template-columns: 1fr;
	}

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

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

	.hero-diagram-wrap{
		margin-top: 2rem;
		margin-right: 1rem;
		margin-left: 1rem;

	}

	.steps-list {
		grid-template-columns: 1fr;
	}

	.solution-stats {
		grid-template-columns: 1fr 1fr;
	}

	.trust-strip-inner {
		gap: .75rem 1.25rem;
	}

	.trust-divider {
		display: none;
	}

	.hero-ctas {
		flex-direction: column;
	}

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

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