/* ===== ADLX — Landing Ads moderne (scoped) ===== */
.adlx {
	--adlx-bg: #060608;
	--adlx-fg: #fafaf7;
	--adlx-muted: rgba(250, 250, 247, 0.62);
	--adlx-accent: var(--accent, #ff3d00);
	--adlx-card: rgba(255, 255, 255, 0.04);
	--adlx-border: rgba(255, 255, 255, 0.1);
	--adlx-font: var(--font, system-ui, sans-serif);
	--adlx-mono: var(--mono, ui-monospace, monospace);
	--adlx-pad: clamp(20px, 4vw, 48px);
	--adlx-container: 1240px;
	position: relative;
	overflow: hidden;
	font-family: var(--adlx-font);
	color: var(--adlx-fg);
	background: var(--adlx-bg);
	margin: 0;
	padding: 0;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.adlx *,
.adlx *::before,
.adlx *::after {
	box-sizing: border-box;
}

.adlx-wrap {
	width: 100%;
	max-width: var(--adlx-container);
	margin: 0 auto;
	padding: 0 var(--adlx-pad);
}

.adlx-eyebrow {
	display: inline-block;
	font-family: var(--adlx-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--adlx-muted);
	margin-bottom: 14px;
}

.adlx-eyebrow--accent {
	color: var(--adlx-accent);
}

.adlx-h2 {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0 0 28px;
}

.adlx-h2--light {
	color: #fff;
}

.adlx-h2 em {
	font-style: normal;
	color: var(--adlx-accent);
}

/* Orbes */
.adlx-orbs {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.adlx-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.45;
}

.adlx-orb--1 {
	width: min(520px, 70vw);
	height: min(520px, 70vw);
	background: radial-gradient(circle, #ff3d00 0%, transparent 70%);
	top: -10%;
	right: -8%;
}

.adlx-orb--2 {
	width: min(400px, 55vw);
	height: min(400px, 55vw);
	background: radial-gradient(circle, #6366f1 0%, transparent 70%);
	bottom: 20%;
	left: -12%;
	opacity: 0.25;
}

.adlx-orb--3 {
	width: min(280px, 40vw);
	height: min(280px, 40vw);
	background: radial-gradient(circle, #f97316 0%, transparent 70%);
	top: 40%;
	left: 35%;
	opacity: 0.2;
}

/* Hero */
.adlx-hero {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(120px, 16vw, 180px) 24px clamp(48px, 8vw, 80px);
	text-align: center;
	overflow: hidden;
}

.adlx-hero__vid {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	border: 0;
}

.adlx-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(rgba(6, 6, 8, 0.55), rgba(6, 6, 8, 0.82));
	pointer-events: none;
}

.adlx-hero__in,
.adlx-hero__scroll {
	position: relative;
	z-index: 2;
}

.adlx-hero__in {
	width: 100%;
	max-width: var(--adlx-container);
	margin: 0 auto;
	padding: 0 var(--adlx-pad);
}

.adlx-pill {
	display: inline-block;
	font-family: var(--adlx-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 8px 14px;
	border: 1px solid var(--adlx-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	margin-bottom: 24px;
}

.adlx-hero__title {
	font-size: clamp(36px, 6.5vw, 72px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.02;
	margin: 0 0 22px;
}

.adlx-hero__word {
	display: inline-block;
	margin-right: 0.22em;
}

.adlx-hero__lead {
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.6;
	color: var(--adlx-muted);
	max-width: 54ch;
	margin: 0 auto 32px;
}

.adlx-hero__cta {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.adlx-hero__stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: clamp(24px, 5vw, 56px);
	flex-wrap: wrap;
}

.adlx-hero__stats li {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.adlx-hero__stats strong {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: var(--adlx-accent);
	line-height: 1;
}

.adlx-hero__stats span {
	font-family: var(--adlx-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--adlx-muted);
}

.adlx-hero__scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 40px;
	border: 1px solid var(--adlx-border);
	border-radius: 12px;
	opacity: 0.5;
}

.adlx-hero__scroll span {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	background: var(--adlx-accent);
	border-radius: 2px;
	animation: adlxScrollDot 1.8s ease infinite;
}

@keyframes adlxScrollDot {
	0%,
	100% {
		transform: translateY(0);
		opacity: 1;
	}
	60% {
		transform: translateY(12px);
		opacity: 0.2;
	}
}

/* Boutons */
.adlx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 28px;
	font-family: var(--adlx-font);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
	white-space: nowrap;
}

.adlx-btn--glow {
	background: var(--adlx-accent);
	color: #fff;
	box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.5);
	animation: adlxPulse 2.5s ease infinite;
}

.adlx-btn--glow:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
}

@keyframes adlxPulse {
	0%,
	100% {
		box-shadow: 0 4px 24px rgba(255, 61, 0, 0.35);
	}
	50% {
		box-shadow: 0 4px 40px rgba(255, 61, 0, 0.55);
	}
}

.adlx-btn--ghost {
	background: transparent;
	color: var(--adlx-fg);
	border: 1px solid var(--adlx-border);
}

.adlx-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.06);
}

.adlx-btn--outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.adlx-btn--outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.06);
}

.adlx-btn--block {
	width: 100%;
}

.adlx-btn--lg {
	padding: 18px 36px;
	font-size: 16px;
}

.adlx-btn--sm {
	padding: 10px 18px;
	font-size: 13px;
}

/* Trust marquee */
.adlx-trust {
	position: relative;
	z-index: 2;
	background: #0d0d10;
	border-top: 1px solid var(--adlx-border);
	border-bottom: 1px solid var(--adlx-border);
	overflow: hidden;
	padding: 14px 0;
}

.adlx-trust__track {
	display: flex;
	gap: 40px;
	width: max-content;
	animation: adlxMarquee 35s linear infinite;
}

.adlx-trust:hover .adlx-trust__track {
	animation-play-state: paused;
}

.adlx-trust__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--adlx-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--adlx-muted);
	flex-shrink: 0;
}

.adlx-trust__item i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--adlx-accent);
}

@keyframes adlxMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* Pain */
.adlx-pain {
	position: relative;
	z-index: 1;
	padding: clamp(64px, 10vw, 110px) 0;
	background: linear-gradient(180deg, var(--adlx-bg) 0%, #0f0f12 100%);
}

.adlx-pain__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 36px;
}

.adlx-pain__card {
	background: var(--adlx-card);
	border: 1px solid var(--adlx-border);
	border-radius: 16px;
	padding: 24px;
	backdrop-filter: blur(12px);
}

.adlx-pain__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(255, 61, 0, 0.15);
	color: var(--adlx-accent);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 14px;
}

.adlx-pain__card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.adlx-sol {
	border: 1px solid rgba(255, 61, 0, 0.35);
	border-radius: 20px;
	padding: 28px 32px;
	background: linear-gradient(135deg, rgba(255, 61, 0, 0.08) 0%, transparent 60%);
}

.adlx-sol__tag {
	display: block;
	font-family: var(--adlx-mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--adlx-accent);
	margin-bottom: 16px;
}

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

.adlx-sol__list li {
	position: relative;
	padding-left: 22px;
	font-size: 16px;
	line-height: 1.45;
}

.adlx-sol__list li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--adlx-accent);
	font-weight: 700;
}

/* Pricing */
.adlx-pricing {
	position: relative;
	z-index: 1;
	padding: clamp(72px, 11vw, 120px) 0;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 61, 0, 0.12) 0%, transparent 55%), #0a0a0c;
}

.adlx-pricing__sub {
	color: var(--adlx-muted);
	font-size: 16px;
	max-width: 46ch;
	margin: -12px 0 48px;
}

.adlx-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 2vw, 28px);
	align-items: stretch;
	width: 100%;
}

.adlx-tier {
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--adlx-border);
	border-radius: 24px;
	padding: 24px;
	backdrop-filter: blur(16px);
	transition: transform 0.4s, box-shadow 0.4s;
}

.adlx-tier--feat {
	transform: scale(1.06);
	border-color: rgba(255, 61, 0, 0.55);
	background: rgba(255, 61, 0, 0.06);
	box-shadow: 0 24px 80px rgba(255, 61, 0, 0.18);
	z-index: 2;
}

.adlx-tier__ribbon {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--adlx-accent);
	color: #fff;
	font-family: var(--adlx-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	white-space: nowrap;
}

.adlx-tier__media {
	overflow: hidden;
	border-radius: 14px;
	margin-bottom: 18px;
	aspect-ratio: 4/3;
}

.adlx-tier__img,
.adlx-tier__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.adlx-tier__name {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 12px;
	color: #fff;
}

.adlx-tier__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
	margin-bottom: 10px;
}

.adlx-tier__from {
	flex: 0 0 100%;
	font-family: var(--adlx-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--adlx-muted);
	margin-bottom: 2px;
}

.adlx-tier__amount {
	font-size: clamp(36px, 5vw, 48px);
	font-weight: 800;
	line-height: 1;
	color: var(--adlx-accent);
	letter-spacing: -0.03em;
}

.adlx-tier__cur {
	font-size: 18px;
	font-weight: 700;
	color: var(--adlx-accent);
	margin-top: 8px;
}

.adlx-tier__desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--adlx-muted);
	margin: 0 0 16px;
	flex: 1;
}

.adlx-tier__feats {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	gap: 8px;
}

.adlx-tier__feats li {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	padding-left: 20px;
	position: relative;
}

.adlx-tier__feats li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--adlx-accent);
	font-weight: 700;
}

.adlx-pricing__note {
	text-align: center;
	margin-top: 36px;
	color: var(--adlx-muted);
	font-size: 15px;
}

.adlx-pricing__note a {
	color: var(--adlx-accent);
	font-weight: 600;
	text-decoration: none;
}

.adlx-pricing__note a:hover {
	text-decoration: underline;
}

/* Steps */
.adlx-steps {
	position: relative;
	z-index: 1;
	padding: clamp(64px, 10vw, 100px) 0;
	background: #fafaf7;
	color: #0d0e10;
}

.adlx-steps .adlx-eyebrow {
	color: #8a8980;
}

.adlx-steps .adlx-h2 {
	color: #0d0e10;
}

.adlx-steps__line {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--adlx-accent), transparent);
	margin-bottom: 40px;
	transform-origin: left center;
	transform: scaleX(0);
}

.adlx-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.adlx-step {
	padding: 8px 0;
}

.adlx-step__n {
	display: block;
	font-size: 40px;
	font-weight: 800;
	color: var(--adlx-accent);
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -0.03em;
}

.adlx-step h3 {
	font-size: 19px;
	font-weight: 700;
	margin: 0 0 8px;
}

.adlx-step p {
	font-size: 14px;
	line-height: 1.55;
	color: #5f5e5a;
	margin: 0;
}

/* Final CTA */
.adlx-final {
	position: relative;
	z-index: 1;
	padding: clamp(64px, 10vw, 100px) 0;
	background: linear-gradient(135deg, #ff3d00 0%, #c62800 100%);
	text-align: center;
	color: #fff;
}

.adlx-final__in h2 {
	font-size: clamp(28px, 4.5vw, 52px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 16px;
	line-height: 1.05;
}

.adlx-final__in p {
	font-size: 17px;
	max-width: 48ch;
	margin: 0 auto 28px;
	opacity: 0.92;
	line-height: 1.55;
}

.adlx-final .adlx-btn--glow {
	background: #fff;
	color: var(--adlx-accent);
	animation: none;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.adlx-final__alt {
	display: inline-block;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	text-decoration: none;
}

.adlx-final__alt:hover {
	color: #fff;
	text-decoration: underline;
}

/* Sticky bar */
.adlx-sticky {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 20px;
	background: rgba(6, 6, 8, 0.92);
	backdrop-filter: blur(16px);
	border-top: 1px solid var(--adlx-border);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.adlx-sticky.is-visible {
	transform: translateY(0);
}

.adlx-sticky[hidden] {
	display: none;
}

.adlx-sticky:not([hidden]) {
	display: flex;
}

.adlx-sticky__txt {
	font-family: var(--adlx-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--adlx-muted);
}

/* Header WP — landings ads full width */
body.dgtl-ads-modern {
	--ind-h: 0px !important;
	overflow-x: hidden;
}

body.dgtl-ads-modern .dgtl-main-wrap,
body.dgtl-ads-modern .dgtl-main-wrap.section,
body.dgtl-ads-modern #main-content,
body.dgtl-ads-modern .entry-content,
body.dgtl-ads-modern article.page,
body.dgtl-ads-modern .page-content {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.dgtl-ads-modern .dgtl-main-wrap {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

body.dgtl-ads-modern .entry-title,
body.dgtl-ads-modern .page-title,
body.dgtl-ads-modern .s-head {
	display: none !important;
}

body.dgtl-ads-modern main#main-content,
body.dgtl-ads-modern main#main-content.section {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

body.dgtl-ads-modern .pbar {
	top: 0 !important;
	background: #000 !important;
}

body.dgtl-ads-modern .nav {
	top: var(--pbar-h, 35px) !important;
}

body.dgtl-ads-modern.admin-bar .pbar {
	top: 32px !important;
}

body.dgtl-ads-modern.admin-bar .nav {
	top: calc(32px + var(--pbar-h, 35px)) !important;
}

@media (max-width: 782px) {
	body.dgtl-ads-modern.admin-bar .pbar {
		top: 46px !important;
	}
	body.dgtl-ads-modern.admin-bar .nav {
		top: calc(46px + var(--pbar-h, 35px)) !important;
	}
}

/* Responsive */
@media (max-width: 900px) {
	.adlx-hero__vid {
		display: none;
	}

	.adlx-pain__grid,
	.adlx-steps__grid {
		grid-template-columns: 1fr;
	}

	.adlx-pricing__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.adlx-tier--feat {
		transform: none;
		order: -1;
	}

	.adlx-hero__cta {
		flex-direction: column;
		align-items: stretch;
	}

	.adlx-hero__cta .adlx-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.adlx-trust__track,
	.adlx-btn--glow,
	.adlx-hero__scroll span {
		animation: none !important;
	}
}
