/**
 * landing-sections.css - Tous les styles des sections de la landing
 */

/* ══ HERO ═════════════════════════════════════════════════════════ */
.docto-lp-hero {
	position: relative;
	padding: var(--lp-space-12) 0 var(--lp-space-10);
	overflow: hidden;
}

.docto-lp-hero--split .docto-lp-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--lp-space-10);
	align-items: center;
}
.docto-lp-hero__content {
	display: flex;
	flex-direction: column;
	gap: var(--lp-space-4);
}
.docto-lp-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
	border-radius: 999px;
	width: fit-content;
	border: 1px solid var(--lp-primary-border);
}
.docto-lp-hero__title {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--lp-text);
}
.docto-lp-hero__title strong {
	background: linear-gradient(135deg, var(--lp-primary) 0%, #ff8a6a 50%, #ffb59b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
}
.docto-lp-hero__subtitle {
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.6;
	color: var(--lp-text-muted);
	max-width: 560px;
}
.docto-lp-hero__bullets {
	list-style: none;
	padding: 0;
	margin: var(--lp-space-3) 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.docto-lp-hero__bullets li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: var(--lp-text);
	font-weight: 500;
}
.docto-lp-hero__bullets svg {
	color: var(--lp-primary);
	flex-shrink: 0;
}
.docto-lp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--lp-space-4);
	margin-top: var(--lp-space-3);
}
.docto-lp-hero__urgency {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #dc2626;
	font-size: 13px;
	font-weight: 600;
}
.docto-lp-hero__urgency--center {
	justify-content: center;
	margin-top: var(--lp-space-3);
}

.docto-lp-hero__media {
	position: relative;
	border-radius: var(--lp-radius-lg);
	overflow: hidden;
	box-shadow: var(--lp-shadow-xl);
	aspect-ratio: 4/3;
	background: var(--lp-bg-alt);
}
.docto-lp-hero__image,
.docto-lp-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.docto-lp-hero__video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
}
.docto-lp-hero__video-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Hero video-bg + image variants */
.docto-lp-hero--video-bg,
.docto-lp-hero--image {
	min-height: 560px;
	padding: var(--lp-space-16) 0;
	display: flex;
	align-items: center;
	color: #fff;
}
.docto-lp-hero--video-bg .docto-lp-hero__bg-video,
.docto-lp-hero--image .docto-lp-hero__bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.docto-lp-hero--image .docto-lp-hero__bg-image {
	background-size: cover;
	background-position: center;
}
.docto-lp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26,26,46,.75) 0%, rgba(26,26,46,.45) 100%);
	z-index: 1;
}
.docto-lp-hero__centered {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 820px;
}
.docto-lp-hero--video-bg .docto-lp-hero__title,
.docto-lp-hero--image .docto-lp-hero__title {
	color: #fff;
}
.docto-lp-hero--video-bg .docto-lp-hero__subtitle,
.docto-lp-hero--image .docto-lp-hero__subtitle {
	color: rgba(255,255,255,.9);
	max-width: none;
	margin: var(--lp-space-4) auto;
}
.docto-lp-hero--video-bg .docto-lp-hero__eyebrow,
.docto-lp-hero--image .docto-lp-hero__eyebrow {
	background: rgba(255,255,255,.15);
	color: #fff;
	border-color: rgba(255,255,255,.25);
	margin-left: auto;
	margin-right: auto;
}
.docto-lp-hero--video-bg .docto-lp-hero__actions,
.docto-lp-hero--image .docto-lp-hero__actions {
	justify-content: center;
	margin-top: var(--lp-space-5);
}

@media (max-width: 900px) {
	.docto-lp-hero--split .docto-lp-hero__grid {
		grid-template-columns: 1fr;
		gap: var(--lp-space-6);
	}
	.docto-lp-hero__media {
		order: -1;
		max-height: 320px;
	}
}

/* ══ HERO VIDEO RIGHT (learnylib style) ══════════════════════════ */
.docto-lp-hero--video-right,
.docto-lp-hero--form-right {
	position: relative;
	padding: var(--lp-space-12) 0 var(--lp-space-12);
	overflow: hidden;
}
.docto-lp-hero__bg-gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 15% 20%, rgba(246,69,34,.08) 0%, transparent 55%),
		radial-gradient(ellipse 70% 60% at 85% 80%, rgba(255,138,106,.10) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255,198,169,.12) 0%, transparent 60%),
		linear-gradient(180deg, #fff9f6 0%, #ffffff 100%);
	z-index: 0;
	pointer-events: none;
}
.docto-lp-hero--video-right .docto-lp-container,
.docto-lp-hero--form-right .docto-lp-container {
	position: relative;
	z-index: 1;
}
.docto-lp-hero--video-right .docto-lp-hero__grid,
.docto-lp-hero--form-right .docto-lp-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--lp-space-10);
	align-items: center;
}
.docto-lp-hero--video-right .docto-lp-hero__content,
.docto-lp-hero--form-right .docto-lp-hero__content {
	display: flex;
	flex-direction: column;
	gap: var(--lp-space-4);
}

/* Video card à droite - style premium */
.docto-lp-hero__video-card {
	position: relative;
	border-radius: var(--lp-radius-xl);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15,23,42,.15), 0 8px 20px rgba(15,23,42,.08);
	background: #000;
	aspect-ratio: 16/11;
	transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}
.docto-lp-hero__video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 32px 80px rgba(15,23,42,.18), 0 12px 30px rgba(15,23,42,.1);
}
.docto-lp-hero__video-player {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
}
.docto-lp-hero__video-el,
.docto-lp-hero__video-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.docto-lp-hero__video-poster {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}
.docto-lp-hero__video-poster::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(246,69,34,.15) 0%, rgba(255,138,106,.15) 100%);
	z-index: 1;
	mix-blend-mode: overlay;
}
.docto-lp-hero__video-play,
.docto-lp-hero__video-play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	background: rgba(255,255,255,.98);
	color: var(--lp-primary);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 12px 40px rgba(0,0,0,.35);
	transition: all var(--lp-transition);
	z-index: 3;
}
.docto-lp-hero__video-play::after,
.docto-lp-hero__video-play-overlay::after {
	content: "";
	position: absolute;
	inset: -12px;
	border-radius: 50%;
	border: 3px solid rgba(255,255,255,.5);
	animation: heroPulse 2.5s ease-out infinite;
}
@keyframes heroPulse {
	0%   { transform: scale(1);    opacity: .6; }
	70%  { transform: scale(1.25); opacity: 0;  }
	100% { transform: scale(1.25); opacity: 0;  }
}
.docto-lp-hero__video-play:hover,
.docto-lp-hero__video-poster:hover .docto-lp-hero__video-play-overlay {
	background: #fff;
	transform: translate(-50%, -50%) scale(1.08);
	box-shadow: 0 16px 50px rgba(246,69,34,.4);
}
.docto-lp-hero__video-play svg {
	margin-left: 5px;
}
.docto-lp-hero__video-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 24px;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.8) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 2;
	transition: opacity .3s;
}
.docto-lp-hero__video-duration {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 11px;
	background: rgba(255,255,255,.22);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.docto-lp-hero__video-label {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.01em;
}
.docto-lp-hero__video-player.is-playing .docto-lp-hero__video-play,
.docto-lp-hero__video-player.is-playing .docto-lp-hero__video-caption {
	opacity: 0;
	pointer-events: none;
}
.docto-lp-hero__video-embed {
	width: 100%;
	height: 100%;
	position: relative;
}
.docto-lp-hero__video-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Trust row - plus discret et propre */
.docto-lp-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: var(--lp-space-4);
	margin-top: var(--lp-space-5);
	padding-top: var(--lp-space-5);
	border-top: 1px solid var(--lp-border);
}
.docto-lp-hero__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--lp-text-muted);
	font-weight: 500;
}
.docto-lp-hero__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid var(--lp-primary-border);
}

/* ══ HERO FORM RIGHT ══════════════════════════════════════════════ */
.docto-lp-hero__form-card {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-xl);
	padding: var(--lp-space-6);
	box-shadow: var(--lp-shadow-lg);
	display: flex;
	flex-direction: column;
	gap: var(--lp-space-4);
}
.docto-lp-hero__form-header {
	text-align: center;
	padding-bottom: var(--lp-space-4);
	border-bottom: 1px solid var(--lp-border-soft);
	margin-bottom: var(--lp-space-2);
}
.docto-lp-hero__form-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--lp-text);
	letter-spacing: -0.01em;
}
.docto-lp-hero__form-title strong {
	color: var(--lp-primary);
}
.docto-lp-hero__form-subtitle {
	font-size: 13px;
	color: var(--lp-text-muted);
	line-height: 1.5;
}
.docto-lp-hero__form-card .docto-lp-tunnel__step {
	display: flex !important;
	flex-direction: column;
	gap: var(--lp-space-3);
	padding: 0;
	animation: none;
}
.docto-lp-hero__form-card .docto-lp-tunnel__sessions {
	max-height: 180px;
	overflow-y: auto;
	padding-right: 4px;
}
.docto-lp-hero__form-card .docto-lp-tunnel__session {
	padding: 10px 12px;
}
.docto-lp-hero__form-card .docto-lp-tunnel__session-date {
	font-size: 13px;
}
.docto-lp-hero__form-trust {
	display: flex;
	justify-content: space-around;
	padding-top: var(--lp-space-3);
	border-top: 1px solid var(--lp-border-soft);
	font-size: 11px;
	color: var(--lp-text-subtle);
	font-weight: 500;
}

.docto-lp-hero__urgency--block {
	display: inline-flex;
	width: fit-content;
	padding: 8px 14px;
	background: #fff7ed;
	border: 1px solid #fdba74;
	border-radius: 999px;
	margin-top: var(--lp-space-3);
}

/* Responsive video-right + form-right */
@media (max-width: 900px) {
	.docto-lp-hero--video-right .docto-lp-hero__grid,
	.docto-lp-hero--form-right .docto-lp-hero__grid {
		grid-template-columns: 1fr;
		gap: var(--lp-space-6);
	}
	.docto-lp-hero__video-card {
		aspect-ratio: 16/9;
	}
	.docto-lp-hero__form-card {
		order: 2;
	}
	.docto-lp-hero__video-play,
	.docto-lp-hero__video-play-overlay {
		width: 64px;
		height: 64px;
	}
	.docto-lp-hero__trust {
		gap: 10px;
	}
	.docto-lp-hero__trust-item {
		font-size: 12px;
	}
}

/* ══ SOCIAL PROOF ═════════════════════════════════════════════════ */
.docto-lp-section--proof {
	padding: var(--lp-space-8) 0;
	background: var(--lp-bg-soft);
	border-top: 1px solid var(--lp-border);
	border-bottom: 1px solid var(--lp-border);
}
.docto-lp-proof-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--lp-space-6);
	text-align: center;
}
.docto-lp-proof-item__number {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	color: var(--lp-primary);
	line-height: 1;
	letter-spacing: -0.02em;
}
.docto-lp-proof-item__label {
	margin-top: 6px;
	font-size: 14px;
	color: var(--lp-text-muted);
	font-weight: 500;
}

/* ══ BENEFITS ═════════════════════════════════════════════════════ */
.docto-lp-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--lp-space-5);
}
.docto-lp-benefit-card {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: var(--lp-space-6);
	text-align: left;
	transition: all var(--lp-transition);
}
.docto-lp-benefit-card:hover {
	border-color: var(--lp-primary-border);
	box-shadow: var(--lp-shadow);
	transform: translateY(-2px);
}
.docto-lp-benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	border-radius: var(--lp-radius);
	font-size: 28px;
	margin-bottom: var(--lp-space-3);
	font-weight: 700;
}
.docto-lp-benefit-card__title {
	font-size: 18px;
	margin-bottom: 8px;
}
.docto-lp-benefit-card__desc {
	color: var(--lp-text-muted);
	line-height: 1.6;
	font-size: 14px;
}

/* ══ PROGRAM ══════════════════════════════════════════════════════ */
.docto-lp-section--program { background: var(--lp-bg-soft); }
.docto-lp-program-content {
	max-width: 820px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: var(--lp-space-8);
	box-shadow: var(--lp-shadow-sm);
}
.docto-lp-program-content h2,
.docto-lp-program-content h3 {
	margin-top: var(--lp-space-5);
	margin-bottom: var(--lp-space-3);
}
.docto-lp-program-content h2:first-child,
.docto-lp-program-content h3:first-child {
	margin-top: 0;
}
.docto-lp-program-content p,
.docto-lp-program-content ul,
.docto-lp-program-content ol {
	margin-bottom: var(--lp-space-3);
	line-height: 1.7;
}

/* ══ OBJECTIVES ═══════════════════════════════════════════════════ */
.docto-lp-objectives-list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 820px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--lp-space-3) var(--lp-space-5);
}
.docto-lp-objectives-list li {
	display: flex;
	align-items: flex-start;
	gap: var(--lp-space-3);
	padding: var(--lp-space-3) var(--lp-space-4);
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	font-size: 15px;
}
.docto-lp-objectives-list__check {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	border-radius: 50%;
}

/* ══ SPEAKERS ═════════════════════════════════════════════════════ */
.docto-lp-speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--lp-space-5);
}
.docto-lp-speaker-card {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	overflow: hidden;
	transition: all var(--lp-transition);
}
.docto-lp-speaker-card:hover {
	border-color: var(--lp-primary-border);
	box-shadow: var(--lp-shadow);
	transform: translateY(-2px);
}
.docto-lp-speaker-card__photo {
	width: 100%;
	aspect-ratio: 1/1;
	background-size: cover;
	background-position: center top;
	background-color: var(--lp-bg-alt);
}
.docto-lp-speaker-card__body {
	padding: var(--lp-space-4) var(--lp-space-5) var(--lp-space-5);
}
.docto-lp-speaker-card__name {
	font-size: 18px;
	margin-bottom: 4px;
}
.docto-lp-speaker-card__role {
	font-size: 13px;
	color: var(--lp-primary);
	font-weight: 600;
	margin-bottom: var(--lp-space-3);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.docto-lp-speaker-card__bio {
	font-size: 14px;
	color: var(--lp-text-muted);
	line-height: 1.6;
}

/* ══ GALLERY ══════════════════════════════════════════════════════ */
.docto-lp-section--gallery { background: var(--lp-bg-soft); }
.docto-lp-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--lp-space-3);
}
.docto-lp-gallery__item {
	display: block;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: var(--lp-radius);
	border: 1px solid var(--lp-border);
	background: var(--lp-bg-alt);
	transition: transform var(--lp-transition);
}
.docto-lp-gallery__item:hover {
	transform: scale(1.02);
}
.docto-lp-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ══ TESTIMONIALS ═════════════════════════════════════════════════ */
.docto-lp-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: var(--lp-space-5);
}
.docto-lp-testimonial {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: var(--lp-space-6);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--lp-space-4);
}
.docto-lp-testimonial__video {
	aspect-ratio: 16/9;
	border-radius: var(--lp-radius);
	overflow: hidden;
	background: #000;
}
.docto-lp-testimonial__video iframe,
.docto-lp-testimonial__video video {
	width: 100%;
	height: 100%;
	border: 0;
}
.docto-lp-testimonial__qmark {
	color: var(--lp-primary);
	opacity: .3;
}
.docto-lp-testimonial__quote {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--lp-text);
	font-style: italic;
}
.docto-lp-testimonial__author {
	display: flex;
	align-items: center;
	gap: var(--lp-space-3);
	padding-top: var(--lp-space-3);
	border-top: 1px solid var(--lp-border);
}
.docto-lp-testimonial__photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: var(--lp-primary-light);
	flex-shrink: 0;
}
.docto-lp-testimonial__name {
	font-size: 14px;
	display: block;
}
.docto-lp-testimonial__role {
	font-size: 12px;
	color: var(--lp-text-subtle);
}

/* ══ FAQ ══════════════════════════════════════════════════════════ */
.docto-lp-section--faq { background: var(--lp-bg-soft); }
.docto-lp-faq-list {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--lp-space-3);
}
.docto-lp-faq-item {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius);
	overflow: hidden;
	transition: border-color var(--lp-transition);
}
.docto-lp-faq-item:hover { border-color: var(--lp-primary-border); }
.docto-lp-faq-item[open] { border-color: var(--lp-primary-border); }
.docto-lp-faq-item__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--lp-space-4);
	padding: var(--lp-space-4) var(--lp-space-5);
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	color: var(--lp-text);
	list-style: none;
}
.docto-lp-faq-item__q::-webkit-details-marker { display: none; }
.docto-lp-faq-item__chevron {
	color: var(--lp-text-subtle);
	transition: transform var(--lp-transition);
	flex-shrink: 0;
}
.docto-lp-faq-item[open] .docto-lp-faq-item__chevron {
	transform: rotate(180deg);
	color: var(--lp-primary);
}
.docto-lp-faq-item__a {
	padding: 0 var(--lp-space-5) var(--lp-space-5);
	color: var(--lp-text-muted);
	line-height: 1.7;
	font-size: 15px;
}

/* ══ FINAL CTA ════════════════════════════════════════════════════ */
.docto-lp-section--final-cta {
	padding: var(--lp-space-12) 0;
	background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
	color: #fff;
}
.docto-lp-final-cta {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.docto-lp-final-cta__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: #fff;
	margin-bottom: var(--lp-space-4);
}
.docto-lp-final-cta__subtitle {
	font-size: 17px;
	color: rgba(255,255,255,.9);
	line-height: 1.6;
	margin-bottom: var(--lp-space-6);
}
.docto-lp-final-cta__sessions {
	display: flex;
	gap: var(--lp-space-3);
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: var(--lp-space-6);
}
.docto-lp-final-cta__session {
	display: inline-flex;
	align-items: center;
	gap: var(--lp-space-2);
	padding: 10px 18px;
	background: rgba(255,255,255,.15);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	font-size: 14px;
	color: #fff;
}
.docto-lp-final-cta__date { font-weight: 600; }
.docto-lp-final-cta__places {
	padding: 2px 8px;
	background: rgba(255,255,255,.25);
	border-radius: 4px;
	font-size: 11px;
}

/* ══════════════════════════════════════════════════════════════════════════
   STARTUP-VIBE OVERRIDE : sections sous le hero
   Tokens: --lp-primary (#F64522) reste la couleur d'accent principale
   ══════════════════════════════════════════════════════════════════════════ */

/* Section base plus aérée */
.docto-lp-section {
	padding: 88px 0;
	position: relative;
}
.docto-lp-section__head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}
.docto-lp-section__eyebrow {
	display: inline-block;
	padding: 6px 14px;
	margin-bottom: 16px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	border: 1px solid var(--lp-primary-border);
}
.docto-lp-section__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--lp-text);
	margin-bottom: 12px;
}
.docto-lp-section__subtitle {
	font-size: 17px;
	color: var(--lp-text-muted);
	line-height: 1.6;
}

/* ══ TRUST BADGES ════════════════════════════════════════════════ */
.docto-lp-section--trust {
	padding: 48px 0;
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
	border-bottom: 1px solid var(--lp-border);
}
.docto-lp-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}
.docto-lp-trust-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 14px;
	transition: all 200ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-trust-item:hover {
	transform: translateY(-2px);
	border-color: var(--lp-primary-border);
	box-shadow: 0 8px 24px rgba(246,69,34,.08);
}
.docto-lp-trust-item__badge {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
}
.docto-lp-trust-item--qualiopi {
	background: #fff;
	padding: 16px 24px;
	justify-content: center;
	align-items: center;
}
.docto-lp-trust-item--qualiopi .docto-lp-trust-item__logo {
	max-height: 72px;
	width: auto;
	display: block;
}
.docto-lp-trust-item__content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.4;
}
.docto-lp-trust-item__content strong {
	font-size: 15px;
	font-weight: 700;
	color: var(--lp-text);
	letter-spacing: -0.01em;
}
.docto-lp-trust-item__content span {
	font-size: 13px;
	color: var(--lp-text-muted);
}

/* ══ SOCIAL PROOF (numbers) ══════════════════════════════════════ */
.docto-lp-section--social_proof {
	padding: 64px 0;
	background: var(--lp-bg-soft, #fafbfc);
}
.docto-lp-social-proof {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}
.docto-lp-social-proof-item {
	padding: 32px 20px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 16px;
	text-align: center;
	transition: all 200ms cubic-bezier(.4,0,.2,1);
	position: relative;
	overflow: hidden;
}
.docto-lp-social-proof-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--lp-primary), transparent);
	opacity: 0;
	transition: opacity 200ms;
}
.docto-lp-social-proof-item:hover {
	transform: translateY(-3px);
	border-color: var(--lp-primary-border);
	box-shadow: 0 12px 32px rgba(246,69,34,.08);
}
.docto-lp-social-proof-item:hover::before {
	opacity: 1;
}
.docto-lp-social-proof-number {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	color: var(--lp-primary);
	letter-spacing: -0.03em;
	margin-bottom: 8px;
	font-variant-numeric: tabular-nums;
}
.docto-lp-social-proof-label {
	font-size: 13px;
	color: var(--lp-text-muted);
	font-weight: 500;
}

/* ══ PRESENTATION ════════════════════════════════════════════════ */
.docto-lp-section--presentation {
	background: #fff;
}
.docto-lp-presentation-content {
	max-width: 780px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.8;
	color: var(--lp-text-muted);
}
.docto-lp-presentation-content p {
	margin-bottom: 20px;
}
.docto-lp-presentation-content strong {
	color: var(--lp-text);
	font-weight: 700;
}
.docto-lp-presentation-content ul,
.docto-lp-presentation-content ol {
	margin: 20px 0;
	padding-left: 28px;
}
.docto-lp-presentation-content li {
	margin-bottom: 8px;
}

/* ══ BENEFITS (startup cards) ════════════════════════════════════ */
.docto-lp-section--benefits {
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.docto-lp-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}
.docto-lp-benefit-card {
	padding: 32px 28px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 20px;
	transition: all 300ms cubic-bezier(.4,0,.2,1);
	position: relative;
	overflow: hidden;
}
.docto-lp-benefit-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--lp-primary), #ff8a6a);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-benefit-card:hover {
	transform: translateY(-6px);
	border-color: var(--lp-primary-border);
	box-shadow: 0 16px 40px rgba(246,69,34,.1);
}
.docto-lp-benefit-card:hover::before {
	transform: scaleX(1);
}
.docto-lp-benefit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	border-radius: 14px;
	transition: all 300ms;
}
.docto-lp-benefit-card:hover .docto-lp-benefit-card__icon {
	background: var(--lp-primary);
	color: #fff;
	transform: rotate(-6deg) scale(1.05);
}
.docto-lp-benefit-card__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--lp-text);
	letter-spacing: -0.01em;
	margin-bottom: 10px;
	line-height: 1.3;
}
.docto-lp-benefit-card__desc {
	font-size: 14px;
	color: var(--lp-text-muted);
	line-height: 1.6;
}

/* ══ PROGRAM ═════════════════════════════════════════════════════ */
.docto-lp-section--program {
	background: #fff;
}
.docto-lp-program-content {
	max-width: 820px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 20px;
	padding: 40px 48px;
	box-shadow: 0 4px 24px rgba(15,23,42,.04);
	font-size: 16px;
	line-height: 1.75;
	color: var(--lp-text-muted);
}
.docto-lp-program-content h1,
.docto-lp-program-content h2,
.docto-lp-program-content h3,
.docto-lp-program-content h4 {
	color: var(--lp-text);
	font-weight: 700;
	letter-spacing: -0.01em;
	margin: 32px 0 14px;
	line-height: 1.3;
}
.docto-lp-program-content h2 { font-size: 24px; }
.docto-lp-program-content h3 { font-size: 20px; }
.docto-lp-program-content h4 { font-size: 17px; }
.docto-lp-program-content h1:first-child,
.docto-lp-program-content h2:first-child,
.docto-lp-program-content h3:first-child { margin-top: 0; }
.docto-lp-program-content ul {
	padding-left: 0;
	list-style: none;
}
.docto-lp-program-content ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
}
.docto-lp-program-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 16px;
	height: 16px;
	background: var(--lp-primary-light);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23F64522' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
}
.docto-lp-program-content strong {
	color: var(--lp-text);
	font-weight: 700;
}

/* ══ OBJECTIVES ══════════════════════════════════════════════════ */
.docto-lp-section--objectives {
	background: var(--lp-bg-soft, #fafbfc);
}
.docto-lp-objectives-list {
	max-width: 780px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 14px;
}
.docto-lp-objective-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 12px;
	transition: all 200ms;
}
.docto-lp-objective-item:hover {
	border-color: var(--lp-primary-border);
	transform: translateX(3px);
}
.docto-lp-objective-item__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--lp-primary);
	color: #fff;
	border-radius: 8px;
}
.docto-lp-objective-item__text {
	font-size: 15px;
	line-height: 1.5;
	color: var(--lp-text);
	font-weight: 500;
}

/* ══ SPEAKERS SOLO (1 formateur) ═════════════════════════════════ */
.docto-lp-section--speakers-single {
	background: linear-gradient(180deg, #fff 0%, var(--lp-bg-soft, #fafbfc) 100%);
}
.docto-lp-speaker-card--solo {
	max-width: 760px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 32px;
	align-items: stretch;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(15,23,42,.06);
	overflow: hidden;
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__photo {
	width: 200px;
	height: 100%;
	min-height: 240px;
	background: var(--lp-primary-light);
	position: relative;
	overflow: hidden;
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lp-primary);
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__body {
	padding: 32px 36px 32px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__name {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--lp-text);
	margin: 0;
	line-height: 1.2;
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__role {
	font-size: 14px;
	color: var(--lp-primary);
	font-weight: 600;
	margin: 0 0 8px;
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__bio {
	font-size: 15px;
	line-height: 1.7;
	color: var(--lp-text-muted);
	margin: 0;
}

/* ══ SPEAKERS GRID (style team homepage : cards 280px fixes) ═════ */
.docto-lp-speakers-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card {
	display: flex;
	flex-direction: column;
	width: 280px;
	max-width: 100%;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 18px;
	overflow: hidden;
	transition: all 300ms cubic-bezier(.4,0,.2,1);
	padding: 0;
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card:hover {
	transform: translateY(-4px);
	border-color: var(--lp-primary-border);
	box-shadow: 0 16px 40px rgba(246,69,34,.1);
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card__photo {
	width: 100%;
	aspect-ratio: 17 / 20;
	margin: 0;
	border-radius: 0;
	background: var(--lp-primary-light);
	overflow: hidden;
	position: relative;
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card:hover .docto-lp-speaker-card__photo img {
	transform: scale(1.03);
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lp-primary);
	width: 100%;
	height: 100%;
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card__body {
	padding: 18px 20px 22px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--lp-text);
	margin: 0;
	letter-spacing: -0.01em;
	line-height: 1.3;
}
/* Préfixe "Dr" / "Pr" : même style que le reste du nom */
.docto-lp-section--speakers-grid .docto-lp-speaker-card__name-prefix,
.docto-lp-speaker-card--solo .docto-lp-speaker-card__name-prefix {
	font-weight: inherit;
	color: inherit;
	font-size: inherit;
	margin-right: 0;
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card__role {
	font-size: 13px;
	color: var(--lp-primary);
	font-weight: 600;
	margin: 0;
}
.docto-lp-section--speakers-grid .docto-lp-speaker-card__bio {
	font-size: 13px;
	line-height: 1.55;
	color: var(--lp-text-muted);
	margin: 6px 0 0;
}

/* ══ TESTIMONIALS (startup cards) ════════════════════════════════ */
.docto-lp-section--testimonials {
	background: linear-gradient(180deg, var(--lp-bg-soft, #fafbfc) 0%, #fff 100%);
}
.docto-lp-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
}
.docto-lp-testimonial-card {
	padding: 32px 28px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 20px;
	transition: all 300ms;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.docto-lp-testimonial-card::before {
	content: "\"";
	position: absolute;
	top: 16px;
	right: 24px;
	font-size: 96px;
	line-height: 1;
	font-family: Georgia, serif;
	color: var(--lp-primary-light);
	z-index: 0;
	font-weight: 700;
}
.docto-lp-testimonial-card:hover {
	transform: translateY(-4px);
	border-color: var(--lp-primary-border);
	box-shadow: 0 12px 32px rgba(246,69,34,.08);
}
.docto-lp-testimonial-card__quote {
	font-size: 15px;
	line-height: 1.7;
	color: var(--lp-text);
	position: relative;
	z-index: 1;
	font-weight: 500;
}
.docto-lp-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--lp-border);
}
.docto-lp-testimonial-card__photo {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--lp-primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lp-primary);
	font-weight: 700;
}
.docto-lp-testimonial-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.docto-lp-testimonial-card__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.3;
}
.docto-lp-testimonial-card__name {
	font-size: 14px;
	font-weight: 700;
	color: var(--lp-text);
}
.docto-lp-testimonial-card__role {
	font-size: 12px;
	color: var(--lp-text-muted);
}

/* ══ FAQ ═════════════════════════════════════════════════════════ */
.docto-lp-section--faq {
	background: #fff;
}
.docto-lp-faq-list {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.docto-lp-faq-item {
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 14px;
	overflow: hidden;
	transition: all 200ms;
}
.docto-lp-faq-item:hover {
	border-color: var(--lp-primary-border);
	box-shadow: 0 4px 12px rgba(246,69,34,.06);
}
.docto-lp-faq-item[open] {
	border-color: var(--lp-primary);
	box-shadow: 0 8px 24px rgba(246,69,34,.1);
}
.docto-lp-faq-item > summary {
	padding: 20px 24px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--lp-text);
	letter-spacing: -0.01em;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	user-select: none;
	transition: color 200ms;
}
.docto-lp-faq-item > summary::-webkit-details-marker { display: none; }
.docto-lp-faq-item > summary::after {
	content: "";
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: var(--lp-primary-light);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F64522' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 300ms cubic-bezier(.4,0,.2,1), background 200ms;
}
.docto-lp-faq-item[open] > summary {
	color: var(--lp-primary);
}
.docto-lp-faq-item[open] > summary::after {
	transform: rotate(180deg);
	background-color: var(--lp-primary);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.docto-lp-faq-item__answer {
	padding: 0 24px 24px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--lp-text-muted);
}

/* ══ CTA INLINE ══════════════════════════════════════════════════ */
.docto-lp-section--cta_inline {
	padding: 56px 0;
	background: #fff;
}
.docto-lp-cta-inline {
	position: relative;
	width: 100%;
	padding: 70px 48px;
	background: var(--lp-primary);
	border-radius: 24px;
	color: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-align: center;
	box-shadow: 0 16px 48px rgba(246,69,34,.22);
}
/* Shine subtile qui bouge légèrement (pas de rotation) */
.docto-lp-cta-inline::before {
	content: "";
	position: absolute;
	top: -50%;
	left: 20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(ellipse at center, rgba(255,255,255,.28) 0%, rgba(255,255,255,.18) 40%, transparent 70%);
	pointer-events: none;
	animation: dlpCtaShine 8s ease-in-out infinite;
	will-change: transform;
}
@keyframes dlpCtaShine {
	0%, 100% { transform: translateX(-30%) translateY(-10%); opacity: .6; }
	50%      { transform: translateX(30%)  translateY(10%);  opacity: .9; }
}
.docto-lp-cta-inline__title {
	position: relative;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0;
	color: #fff !important;
	line-height: 1.2;
}
.docto-lp-cta-inline__subtitle {
	position: relative;
	font-size: 16px;
	color: #fff;
	opacity: .95;
	margin: 0;
	max-width: 560px;
	line-height: 1.5;
}
.docto-lp-cta-inline__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
	padding: 16px 36px;
	background: #fff;
	color: var(--lp-primary);
	border-radius: 999px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: transform 200ms, box-shadow 200ms;
	box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.docto-lp-cta-inline__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

@media (max-width: 600px) {
	.docto-lp-cta-inline {
		padding: 50px 24px;
		border-radius: 20px;
	}
	.docto-lp-cta-inline__title {
		font-size: 24px;
	}
}

/* ══ FINAL CTA ═══════════════════════════════════════════════════ */
.docto-lp-section--final_cta {
	background: #202020;
	color: #fff;
	padding: 96px 0;
	position: relative;
	overflow: hidden;
}
.docto-lp-section--final_cta .docto-lp-section__title {
	color: #fff;
	position: relative;
	z-index: 1;
}
.docto-lp-section--final_cta .docto-lp-section__subtitle {
	color: rgba(255,255,255,.8);
	position: relative;
	z-index: 1;
}
.docto-lp-final-cta-actions {
	text-align: center;
	position: relative;
	z-index: 1;
}
.docto-lp-final-cta-actions .docto-lp-btn {
	padding: 18px 44px;
	font-size: 17px;
	box-shadow: 0 12px 40px rgba(246,69,34,.4);
}

/* ══ GALLERY ═════════════════════════════════════════════════════ */
.docto-lp-section--gallery {
	background: #fff;
}
.docto-lp-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}
.docto-lp-gallery-item {
	aspect-ratio: 1/1;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 300ms;
}
.docto-lp-gallery-item:hover {
	transform: scale(1.03);
}
.docto-lp-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ══ FOOTER (match theme : #202020 dark, centré simplifié) ═══════ */
.docto-lp-footer {
	padding: 56px 0 32px;
	background: #202020;
	color: #fff;
}
.docto-lp-footer__stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 0 0 32px;
	text-align: center;
}
.docto-lp-footer__logo-link {
	display: inline-block;
}
.docto-lp-footer__logo {
	max-width: 180px;
	height: auto;
}
.docto-lp-footer__brand-text {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
.docto-lp-footer__muted {
	font-size: 14px;
	color: rgba(255,255,255,.65);
	line-height: 1.6;
	max-width: 520px;
	margin: 0;
}

/* Contact : inline row, icônes orange */
.docto-lp-footer__contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin: 0;
}
.docto-lp-footer__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,.85) !important;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
	transition: color 200ms;
	padding: 0 !important;
}
.docto-lp-footer__contact-item:hover {
	color: var(--lp-primary) !important;
}
.docto-lp-footer__contact-item svg,
.docto-lp-footer__contact-item svg * {
	flex-shrink: 0;
	color: var(--lp-primary) !important;
	stroke: var(--lp-primary) !important;
}

/* Qualiopi badge : full variant (inchangé, match theme) */
.docto-lp-footer-qualiopi {
	margin: 0;
	padding: 20px 0 0;
	border-top: 1px solid rgba(255,255,255,.08);
	display: block !important;
	max-width: 100%;
	width: 100%;
	text-align: center;
}
.docto-lp-qualiopi-badge {
	display: inline-flex !important;
	align-items: flex-start;
	gap: 16px;
	max-width: 100%;
	text-align: left;
}
.docto-lp-qualiopi-badge img {
	display: block;
	width: 88px;
	height: auto;
	flex-shrink: 0;
}
.docto-lp-qualiopi-badge__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.4;
}
.docto-lp-qualiopi-badge__text strong {
	font-size: 14px;
	font-weight: 700;
	color: #fff !important;
	letter-spacing: .01em;
}
.docto-lp-qualiopi-badge__text small {
	font-size: 11px;
	color: rgba(255,255,255,.8) !important;
	font-weight: 400;
	line-height: 1.5;
}

/* Copy row : legal links + copyright */
.docto-lp-footer__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.06);
}
.docto-lp-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 0;
}
.docto-lp-footer__legal-links a {
	position: relative;
	padding: 4px 16px;
	color: rgba(255,255,255,.7) !important;
	text-decoration: none;
	font-size: 13px;
	transition: color 200ms;
}
.docto-lp-footer__legal-links a:hover {
	color: var(--lp-primary) !important;
}
.docto-lp-footer__legal-links a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 12px;
	background: rgba(255,255,255,.2);
}
.docto-lp-footer__copy-text {
	font-size: 12px;
	color: rgba(255,255,255,.5);
	text-align: center;
}

@media (max-width: 600px) {
	.docto-lp-footer__legal-links a {
		padding: 4px 10px;
		font-size: 12px;
	}
	.docto-lp-footer__contact {
		gap: 16px;
	}
}

/* ══ TOPBAR : logo ═══════════════════════════════════════════════ */
.docto-lp-topbar__logo img {
	max-height: 40px;
	width: auto;
	display: block;
}
.docto-lp-topbar__logo-text {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--lp-text);
}

/* ══ RESPONSIVE ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
	.docto-lp-section { padding: 64px 0; }
	.docto-lp-section__head { margin-bottom: 40px; }
	.docto-lp-speaker-card--solo {
		grid-template-columns: 1fr;
		padding: 28px;
		text-align: center;
		gap: 24px;
	}
	.docto-lp-speaker-card--solo .docto-lp-speaker-card__photo {
		margin: 0 auto;
		width: 180px;
		height: 180px;
	}
	.docto-lp-footer__cols {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.docto-lp-program-content {
		padding: 28px 24px;
	}
	.docto-lp-cta-inline {
		padding: 32px 24px;
	}
	.docto-lp-cta-inline__title {
		font-size: 22px;
	}
}

/* ══ PROGRAMME MODULES (rendu JSON) ══════════════════════════════ */
.docto-lp-programme-modules {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.docto-lp-programme-module {
	padding: 28px 32px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 16px;
	position: relative;
	transition: all 200ms cubic-bezier(.4,0,.2,1);
	counter-increment: module;
}
.docto-lp-programme-modules {
	counter-reset: module;
}
.docto-lp-programme-module::before {
	content: counter(module, decimal-leading-zero);
	position: absolute;
	top: 24px;
	right: 32px;
	font-size: 56px;
	font-weight: 800;
	color: var(--lp-primary-light);
	line-height: 1;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
	z-index: 0;
	pointer-events: none;
}
.docto-lp-programme-module:hover {
	border-color: var(--lp-primary-border);
	box-shadow: 0 8px 24px rgba(246,69,34,.06);
}
.docto-lp-programme-module__title {
	font-size: 20px !important;
	font-weight: 700;
	color: var(--lp-text);
	margin: 0 0 16px !important;
	letter-spacing: -0.01em;
	line-height: 1.3;
	padding-right: 80px;
	position: relative;
	z-index: 1;
}
.docto-lp-programme-module__items {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	position: relative;
	z-index: 1;
}
.docto-lp-programme-module__items li {
	position: relative;
	padding: 10px 0 10px 32px !important;
	margin: 0 !important;
	font-size: 15px;
	line-height: 1.6;
	color: var(--lp-text-muted);
	border-bottom: 1px solid var(--lp-border-soft, #f1f5f9);
}
.docto-lp-programme-module__items li:last-child {
	border-bottom: 0;
}
.docto-lp-programme-module__items li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 16px;
	width: 18px;
	height: 18px;
	background: var(--lp-primary-light);
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23F64522' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
}
.docto-lp-programme-module__items li a {
	color: var(--lp-primary);
	text-decoration: underline;
	text-decoration-color: rgba(246,69,34,.3);
	text-underline-offset: 3px;
	transition: text-decoration-color 200ms;
}
.docto-lp-programme-module__items li a:hover {
	text-decoration-color: var(--lp-primary);
}
.docto-lp-programme-module__items li strong {
	color: var(--lp-text);
	font-weight: 700;
}

/* Container programme pour JSON : pas besoin du pseudo-puce hérité */
.docto-lp-program-content .docto-lp-programme-modules ul {
	padding: 0;
	list-style: none;
}
.docto-lp-program-content .docto-lp-programme-modules ul li::before {
	display: none;
}
.docto-lp-program-content:has(.docto-lp-programme-modules) {
	background: transparent;
	border: 0;
	padding: 0;
	box-shadow: none;
}

@media (max-width: 700px) {
	.docto-lp-programme-module {
		padding: 24px 20px;
	}
	.docto-lp-programme-module__title {
		padding-right: 60px;
		font-size: 18px !important;
	}
	.docto-lp-programme-module::before {
		font-size: 40px;
		right: 20px;
		top: 20px;
	}
}

/* ══ TRAINING DETAILS - SKIN "cards" (comme bénéfices) ═══════════ */
.docto-lp-section--training_details {
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.docto-lp-training-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.docto-lp-training-detail {
	padding: 32px 28px;
	background: #fff;
	border: 1px solid var(--lp-border);
	border-radius: 20px;
	transition: all 300ms cubic-bezier(.4,0,.2,1);
	position: relative;
	overflow: hidden;
}
.docto-lp-training-detail::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--lp-primary), #ff8a6a);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-training-detail:hover {
	transform: translateY(-6px);
	border-color: var(--lp-primary-border);
	box-shadow: 0 16px 40px rgba(246,69,34,.1);
}
.docto-lp-training-detail:hover::before {
	transform: scaleX(1);
}
.docto-lp-training-detail__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	border-radius: 14px;
	transition: all 300ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-training-detail:hover .docto-lp-training-detail__icon {
	background: var(--lp-primary);
	color: #fff;
	transform: rotate(-6deg) scale(1.05);
}
.docto-lp-training-detail:hover .docto-lp-training-detail__icon svg {
	color: #fff;
	stroke: #fff;
}
.docto-lp-training-detail__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--lp-text);
	margin: 0;
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.docto-lp-training-detail__body {
	font-size: 14px;
	line-height: 1.65;
	color: var(--lp-text-muted);
	margin-top: 10px;
}
.docto-lp-training-detail__body p { margin: 0 0 10px; }
.docto-lp-training-detail__body p:last-child { margin-bottom: 0; }
.docto-lp-training-detail__body ul,
.docto-lp-training-detail__body ol {
	margin: 10px 0;
	padding-left: 20px;
}
.docto-lp-training-detail__body li { margin-bottom: 4px; }
.docto-lp-training-detail__body a {
	color: var(--lp-primary);
	text-decoration: underline;
	text-decoration-color: rgba(246,69,34,.3);
	text-underline-offset: 2px;
}
.docto-lp-training-detail__body strong {
	color: var(--lp-text);
	font-weight: 700;
}
/* ══ GALLERY : zoom icon au hover ════════════════════════════════ */
.docto-lp-gallery-item {
	position: relative;
	display: block;
	cursor: zoom-in;
}
.docto-lp-gallery-item__zoom {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15,23,42,.5);
	color: #fff;
	opacity: 0;
	transition: opacity 200ms cubic-bezier(.4,0,.2,1);
	border-radius: inherit;
}
.docto-lp-gallery-item:hover .docto-lp-gallery-item__zoom {
	opacity: 1;
}
.docto-lp-gallery-item__zoom svg {
	padding: 10px;
	background: rgba(255,255,255,.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	box-sizing: content-box;
}

/* ══ LIGHTBOX ════════════════════════════════════════════════════ */
body.docto-lp-lightbox-open {
	overflow: hidden;
}
.docto-lp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 60px;
	background: rgba(0,0,0,.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity 250ms ease;
}
.docto-lp-lightbox.is-open {
	display: flex;
	opacity: 1;
	animation: lpLightboxFade 250ms ease;
}
@keyframes lpLightboxFade {
	from { opacity: 0; }
	to   { opacity: 1; }
}
.docto-lp-lightbox__figure {
	position: relative;
	margin: 0;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	animation: lpLightboxPop 300ms cubic-bezier(.16,1,.3,1);
}
@keyframes lpLightboxPop {
	from { transform: scale(.92); opacity: 0; }
	to   { transform: scale(1);   opacity: 1; }
}
.docto-lp-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 140px);
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 24px 80px rgba(0,0,0,.5);
	display: block;
	transition: opacity 200ms;
}
.docto-lp-lightbox__img.is-loading {
	opacity: .5;
}
.docto-lp-lightbox__caption {
	color: #fff;
	font-size: 14px;
	text-align: center;
	max-width: 720px;
	opacity: .85;
	line-height: 1.5;
	padding: 0 20px;
}
.docto-lp-lightbox__close,
.docto-lp-lightbox__prev,
.docto-lp-lightbox__next {
	position: absolute;
	background: rgba(255,255,255,.12) !important;
	background-color: rgba(255,255,255,.12) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.2) !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 200ms;
	appearance: none;
	-webkit-appearance: none;
}
.docto-lp-lightbox__close svg,
.docto-lp-lightbox__prev svg,
.docto-lp-lightbox__next svg {
	display: block !important;
	width: auto !important;
	height: auto !important;
	pointer-events: none;
	fill: none !important;
	overflow: visible;
}
.docto-lp-lightbox__close svg *,
.docto-lp-lightbox__prev svg *,
.docto-lp-lightbox__next svg * {
	stroke: #fff !important;
	fill: none !important;
}
.docto-lp-lightbox__close:hover,
.docto-lp-lightbox__prev:hover,
.docto-lp-lightbox__next:hover {
	background: rgba(255,255,255,.25) !important;
	background-color: rgba(255,255,255,.25) !important;
	transform: scale(1.05);
	border-color: rgba(255,255,255,.35) !important;
}
.docto-lp-lightbox__close {
	top: 20px;
	right: 20px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
}
.docto-lp-lightbox__prev,
.docto-lp-lightbox__next {
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
}
.docto-lp-lightbox__prev:hover,
.docto-lp-lightbox__next:hover {
	transform: translateY(-50%) scale(1.05);
}
.docto-lp-lightbox__prev { left: 20px; }
.docto-lp-lightbox__next { right: 20px; }

.docto-lp-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 8px 18px;
	background: rgba(255,255,255,.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	letter-spacing: .02em;
}

@media (max-width: 700px) {
	.docto-lp-lightbox {
		padding: 20px 12px 60px;
	}
	.docto-lp-lightbox__close {
		top: 12px;
		right: 12px;
		width: 44px;
		height: 44px;
	}
	.docto-lp-lightbox__prev,
	.docto-lp-lightbox__next {
		width: 44px;
		height: 44px;
	}
	.docto-lp-lightbox__prev { left: 8px; }
	.docto-lp-lightbox__next { right: 8px; }
	.docto-lp-lightbox__img {
		max-height: calc(100vh - 160px);
	}
}

/* ══════════════════════════════════════════════════════════════════════════
   INSPIRATIONAL POLISH : typographie, décorations, micro-interactions
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Eyebrows : plus premium avec dot orange animé ──────────────── */
.docto-lp-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px 6px 12px;
	margin-bottom: 20px;
	background: #fff;
	color: var(--lp-primary);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	border: 1px solid var(--lp-primary-border);
	box-shadow: 0 2px 8px rgba(246,69,34,.08);
}
.docto-lp-section__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--lp-primary);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(246,69,34,.2);
	animation: lpPulseDot 2s ease-in-out infinite;
}
@keyframes lpPulseDot {
	0%, 100% { box-shadow: 0 0 0 3px rgba(246,69,34,.2); }
	50%      { box-shadow: 0 0 0 6px rgba(246,69,34,0); }
}

/* ── Titres : gradient orange subtil sur les mots clés ───────────── */
.docto-lp-section__title strong,
.docto-lp-section__title em {
	background: linear-gradient(135deg, var(--lp-primary) 0%, #ff8a6a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: normal;
	font-weight: 900;
}

/* ── Section heads : décoration ligne + dot ──────────────────────── */
.docto-lp-section__head {
	position: relative;
}
.docto-lp-section__head::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	margin: 24px auto 0;
	background: linear-gradient(90deg, transparent 0%, var(--lp-primary) 50%, transparent 100%);
	border-radius: 2px;
}

/* ── Trust : peps visual ─────────────────────────────────────────── */
.docto-lp-section--trust {
	padding: 56px 0 48px;
	background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
	border-bottom: 1px solid var(--lp-border);
	position: relative;
}
.docto-lp-section--trust::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--lp-primary), transparent);
	opacity: .4;
}

/* ── Social proof : numbers plus impactants ──────────────────────── */
.docto-lp-social-proof-item {
	position: relative;
}
.docto-lp-social-proof-number {
	background: linear-gradient(135deg, var(--lp-primary) 0%, #ff8a6a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 56px;
	line-height: 1;
}
.docto-lp-social-proof-item:hover .docto-lp-social-proof-number {
	animation: lpShake 400ms cubic-bezier(.36,.07,.19,.97);
}
@keyframes lpShake {
	0%, 100% { transform: translateX(0); }
	25%      { transform: translateX(-2px); }
	75%      { transform: translateX(2px); }
}

/* ── Benefits : ajout d'un effet shimmer subtil au hover ─────────── */
.docto-lp-benefit-card {
	background: linear-gradient(180deg, #fff 0%, #fff 100%);
}
.docto-lp-benefit-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(246,69,34,.04) 50%, transparent 100%);
	transition: left 600ms cubic-bezier(.4,0,.2,1);
	pointer-events: none;
}
.docto-lp-benefit-card:hover::after {
	left: 120%;
}

/* ── Presentation : ligne décorative en marge ───────────────────── */
.docto-lp-presentation-content {
	position: relative;
	padding-left: 24px;
}
.docto-lp-presentation-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	bottom: 8px;
	width: 3px;
	background: linear-gradient(180deg, var(--lp-primary) 0%, transparent 100%);
	border-radius: 2px;
}
@media (max-width: 700px) {
	.docto-lp-presentation-content {
		padding-left: 18px;
	}
}

/* ── Programme modules : numéros modernisés ──────────────────────── */
.docto-lp-programme-module::before {
	background: linear-gradient(135deg, rgba(246,69,34,.12) 0%, rgba(255,138,106,.08) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 64px;
	font-weight: 900;
	font-family: 'Inter', -apple-system, sans-serif;
	top: 20px;
}

/* ── Objectives : checkmark avec animation au hover ──────────────── */
.docto-lp-objective-item {
	transition: all 250ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-objective-item:hover .docto-lp-objective-item__icon {
	animation: lpCheckBounce 400ms cubic-bezier(.34,1.56,.64,1);
}
@keyframes lpCheckBounce {
	0%   { transform: scale(1); }
	50%  { transform: scale(1.15) rotate(5deg); }
	100% { transform: scale(1); }
}

/* ── Speakers solo : photo avec anneau animé ─────────────────────── */
.docto-lp-speaker-card--solo {
	background: linear-gradient(135deg, #fff 0%, #fffaf7 100%);
	position: relative;
	overflow: hidden;
}
.docto-lp-speaker-card--solo::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(246,69,34,.06) 0%, transparent 70%);
	pointer-events: none;
}
.docto-lp-speaker-card--solo .docto-lp-speaker-card__photo::before {
	content: "";
	position: absolute;
	inset: -6px;
	border: 2px dashed var(--lp-primary);
	border-radius: 50%;
	opacity: .25;
	animation: lpSpin 20s linear infinite;
}
@keyframes lpSpin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* ── Testimonials : rating stars subtiles + meilleur guillemet ──── */
.docto-lp-testimonial-card::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 24px;
	width: 40px;
	height: 40px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40' fill='%23FFD4CA'%3E%3Cpath d='M10 28c0-6 3-10 8-12l-2-4c-8 3-12 10-12 18h8v-2zm16 0c0-6 3-10 8-12l-2-4c-8 3-12 10-12 18h8v-2z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: .6;
	z-index: 0;
}
.docto-lp-testimonial-card__quote {
	font-size: 16px;
	font-style: italic;
}

/* ── FAQ : plus de distinctivité ─────────────────────────────────── */
.docto-lp-faq-item[open] {
	background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}
.docto-lp-faq-item > summary {
	padding: 22px 26px;
}
.docto-lp-faq-item__answer {
	padding: 0 26px 26px;
}

/* ── CTA inline : overrides nettoyés (voir bloc principal plus haut) ─ */

/* ── Final CTA : ajout d'un élément visuel marquant ──────────────── */
.docto-lp-section--final_cta .docto-lp-section__head::after {
	background: linear-gradient(90deg, transparent 0%, var(--lp-primary) 50%, transparent 100%);
	width: 80px;
	height: 3px;
	box-shadow: 0 0 20px rgba(246,69,34,.5);
}
.docto-lp-section--final_cta .docto-lp-section__eyebrow {
	background: rgba(255,255,255,.08);
	color: var(--lp-primary);
	border-color: rgba(246,69,34,.3);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* ── Training details override supprimé, voir skin cards plus haut ─ */

/* ── Trust : amélioration gap et hover ───────────────────────────── */
.docto-lp-trust-item {
	position: relative;
	overflow: hidden;
}
.docto-lp-trust-item:not(.docto-lp-trust-item--qualiopi)::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--lp-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-trust-item:not(.docto-lp-trust-item--qualiopi):hover::after {
	transform: scaleX(1);
}

/* ── Topbar : shadow at scroll (JS toggle .is-scrolled) ─────────── */
.docto-lp-topbar.is-scrolled {
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 16px rgba(0,0,0,.06);
}

/* ══ SOCIAL PROOF : icône / image override ═══════════════════════ */
.docto-lp-social-proof-item--with-media {
	padding: 28px 20px 24px;
}
.docto-lp-social-proof-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 14px;
	background: var(--lp-primary-light);
	color: var(--lp-primary);
	border-radius: 16px;
	transition: all 300ms;
}
.docto-lp-social-proof-item:hover .docto-lp-social-proof-item__icon {
	background: var(--lp-primary);
	color: #fff;
}
.docto-lp-social-proof-item__image {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin: 0 auto 14px;
}
.docto-lp-social-proof-item__image img {
	max-height: 60px;
	max-width: 140px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.docto-lp-social-proof-number--sm {
	font-size: 22px;
	margin-bottom: 4px;
}
.docto-lp-social-proof-item--with-media .docto-lp-social-proof-label {
	font-size: 12px;
}

/* ══ HERO VARIANT : MINIMAL (texte centré, pas de média) ═════════ */
/* ══ HERO VARIANT : MINIMAL (= image fullwidth sans media, fond neutre) ═══ */
.docto-lp-hero--minimal {
	min-height: 560px;
	padding: var(--lp-space-16) 0;
	display: flex;
	align-items: center;
	background: linear-gradient(180deg, #fff9f6 0%, #ffffff 100%);
	color: var(--lp-text);
	position: relative;
}
.docto-lp-hero--minimal .docto-lp-hero__centered {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}
.docto-lp-hero--minimal .docto-lp-hero__eyebrow {
	margin-left: auto;
	margin-right: auto;
}
.docto-lp-hero--minimal .docto-lp-hero__title {
	color: var(--lp-text);
}
.docto-lp-hero--minimal .docto-lp-hero__subtitle {
	color: var(--lp-text-muted);
	max-width: 680px;
	margin: var(--lp-space-4) auto;
}
/* Bullets en ligne (row wrap) sous le texte */
.docto-lp-hero__bullets--inline {
	list-style: none;
	padding: 0;
	margin: var(--lp-space-5) 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
}
.docto-lp-hero__bullets--inline li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: var(--lp-text-muted);
	line-height: 1.4;
}
.docto-lp-hero__bullets--inline svg {
	flex-shrink: 0;
	color: var(--lp-primary);
	stroke: var(--lp-primary);
}
.docto-lp-hero--minimal .docto-lp-hero__actions {
	justify-content: center;
	margin-top: var(--lp-space-5);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}
.docto-lp-hero--minimal .docto-lp-hero__urgency {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: var(--lp-primary-light);
	border: 1px solid var(--lp-primary-border);
	border-radius: 999px;
	color: var(--lp-primary);
	font-size: 13px;
	font-weight: 600;
}

/* ══ SPEAKER CARD : lien "En savoir plus" ═══════════════════════ */
.docto-lp-speaker-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0;
	margin-top: 8px;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--lp-primary);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: color 200ms cubic-bezier(.4,0,.2,1);
	align-self: flex-start;
	text-decoration: underline;
	text-decoration-color: rgba(246,69,34,.3);
	text-underline-offset: 3px;
}
.docto-lp-speaker-card__more::before,
.docto-lp-speaker-card__more::after {
	content: none !important;
	display: none !important;
}
.docto-lp-speaker-card__more:hover {
	text-decoration-color: var(--lp-primary);
	color: var(--lp-primary);
}

/* ══ SPEAKER MODAL ═══════════════════════════════════════════════ */
body.docto-lp-speaker-modal-open {
	overflow: hidden;
}
.docto-lp-speaker-modals {
	display: contents;
}
.docto-lp-speaker-modal {
	position: fixed;
	inset: 0;
	z-index: 99998;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 250ms ease;
}
.docto-lp-speaker-modal.is-open {
	display: flex;
	opacity: 1;
}
.docto-lp-speaker-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15,23,42,.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: pointer;
}
.docto-lp-speaker-modal__card {
	position: relative;
	background: #fff;
	border-radius: 24px;
	max-width: 640px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 32px;
	box-shadow: 0 24px 64px rgba(0,0,0,.3);
	transform: scale(.95);
	transition: transform 300ms cubic-bezier(.34,1.56,.64,1);
}
.docto-lp-speaker-modal.is-open .docto-lp-speaker-modal__card {
	transform: scale(1);
}
.docto-lp-speaker-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--lp-bg-alt, #f1f5f9);
	border: 0;
	color: var(--lp-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 200ms;
	z-index: 2;
}
.docto-lp-speaker-modal__close:hover {
	background: var(--lp-primary);
	color: #fff;
	transform: rotate(90deg);
}
.docto-lp-speaker-modal__close svg {
	color: inherit;
	stroke: currentColor;
}
.docto-lp-speaker-modal__header {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 20px;
	padding-right: 32px;
}
.docto-lp-speaker-modal__photo {
	flex-shrink: 0;
	width: 110px;
	height: 130px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--lp-primary-light);
}
.docto-lp-speaker-modal__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.docto-lp-speaker-modal__intro {
	flex: 1;
	min-width: 0;
}
.docto-lp-speaker-modal__name {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--lp-text);
	margin: 0 0 6px;
	line-height: 1.2;
}
.docto-lp-speaker-modal__name span {
	font-weight: inherit;
}
.docto-lp-speaker-modal__role {
	font-size: 14px;
	color: var(--lp-primary);
	font-weight: 600;
	margin: 0;
}
.docto-lp-speaker-modal__bio {
	font-size: 15px;
	line-height: 1.7;
	color: var(--lp-text-muted);
	padding-top: 20px;
	border-top: 1px solid var(--lp-border-soft, #f1f5f9);
}
.docto-lp-speaker-modal__bio p { margin: 0 0 12px; }
.docto-lp-speaker-modal__bio p:last-child { margin-bottom: 0; }
.docto-lp-speaker-modal__bio strong {
	color: var(--lp-text);
	font-weight: 700;
}

@media (max-width: 600px) {
	.docto-lp-speaker-modal__card {
		padding: 24px 20px;
		border-radius: 18px;
	}
	.docto-lp-speaker-modal__header {
		flex-direction: column;
		text-align: center;
		align-items: center;
		padding-right: 0;
	}
	.docto-lp-speaker-modal__name {
		font-size: 20px;
	}
}

/* Cacher les anciens bio des cards (si stockés dans le DOM par erreur) */
.docto-lp-section--speakers-grid .docto-lp-speaker-card__bio,
.docto-lp-section--speakers-grid .docto-lp-speaker-card__role,
.docto-lp-section--speakers-single .docto-lp-speaker-card__bio {
	display: none;
}

/* ══ TRAINING DETAILS : SKIN "alternating" (rangées alternées) ═══ */
.docto-lp-training-details--alternating {
	display: flex !important;
	flex-direction: column !important;
	grid-template-columns: none !important;
	gap: 72px;
	max-width: 1120px;
	margin: 0 auto;
}
.docto-lp-training-details--alternating .docto-lp-training-detail {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 48px;
	align-items: center;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
}
.docto-lp-training-details--alternating .docto-lp-training-detail::before {
	display: none !important;
}
.docto-lp-training-details--alternating .docto-lp-training-detail:hover {
	transform: none;
	box-shadow: none;
	border: 0;
}
.docto-lp-training-details--alternating .docto-lp-training-detail:hover .docto-lp-training-detail__icon {
	transform: none;
}
/* Par défaut : CONTENU à gauche, VISUEL à droite */
.docto-lp-training-details--alternating .docto-lp-training-detail__content {
	order: 1;
}
.docto-lp-training-details--alternating .docto-lp-training-detail__visual {
	order: 2;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, var(--lp-primary-light) 0%, #fff4ef 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--lp-primary);
	position: relative;
	overflow: hidden;
}
.docto-lp-training-details--alternating .docto-lp-training-detail__visual::before {
	content: "";
	position: absolute;
	top: -20%;
	right: -20%;
	width: 70%;
	height: 140%;
	background: radial-gradient(circle, rgba(246,69,34,.08) 0%, transparent 60%);
	pointer-events: none;
}
.docto-lp-training-details--alternating .docto-lp-training-detail__visual svg {
	width: 96px;
	height: 96px;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 4px 12px rgba(246,69,34,.15));
}
.docto-lp-training-details--alternating .docto-lp-training-detail__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1;
	display: block;
}
/* Rangée paire : INVERSION → visuel à gauche, contenu à droite */
.docto-lp-training-details--alternating .docto-lp-training-detail:nth-child(even) .docto-lp-training-detail__content {
	order: 2;
}
.docto-lp-training-details--alternating .docto-lp-training-detail:nth-child(even) .docto-lp-training-detail__visual {
	order: 1;
}
.docto-lp-training-details--alternating .docto-lp-training-detail__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	border-radius: 12px;
}
.docto-lp-training-details--alternating .docto-lp-training-detail__title {
	font-size: 28px;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
	line-height: 1.2;
}
.docto-lp-training-details--alternating .docto-lp-training-detail__body {
	font-size: 15px;
	line-height: 1.7;
	margin-top: 0;
}

@media (max-width: 900px) {
	.docto-lp-training-details--alternating {
		gap: 40px;
	}
	.docto-lp-training-details--alternating .docto-lp-training-detail {
		grid-template-columns: 1fr !important;
		gap: 20px;
	}
	/* Sur mobile : visuel toujours en haut, contenu en bas */
	.docto-lp-training-details--alternating .docto-lp-training-detail__visual,
	.docto-lp-training-details--alternating .docto-lp-training-detail:nth-child(even) .docto-lp-training-detail__visual {
		order: 0;
		aspect-ratio: 16 / 9;
	}
	.docto-lp-training-details--alternating .docto-lp-training-detail__content,
	.docto-lp-training-details--alternating .docto-lp-training-detail:nth-child(even) .docto-lp-training-detail__content {
		order: 1;
	}
	.docto-lp-training-details--alternating .docto-lp-training-detail__visual svg {
		width: 72px;
		height: 72px;
	}
	.docto-lp-training-details--alternating .docto-lp-training-detail__title {
		font-size: 22px;
	}
}

/* ══ GALLERY : CAROUSEL ═════════════════════════════════════════ */
.docto-lp-gallery-carousel {
	position: relative;
	overflow: hidden;
	margin: 0 -12px;
}
.docto-lp-gallery-carousel__track {
	display: flex;
	gap: 16px;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 0 12px 12px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.docto-lp-gallery-carousel__track::-webkit-scrollbar {
	display: none;
}
.docto-lp-gallery-carousel__slide {
	flex: 0 0 auto;
	width: calc((100% / 3) - 11px);
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	overflow: hidden;
	scroll-snap-align: start;
	position: relative;
	display: block;
	background: var(--lp-bg-soft);
	cursor: zoom-in;
	transition: transform 200ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-gallery-carousel__slide:hover {
	transform: translateY(-3px);
}
.docto-lp-gallery-carousel__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.docto-lp-gallery-carousel__nav {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 48px !important;
	height: 48px !important;
	min-width: 48px !important;
	min-height: 48px !important;
	padding: 0 !important;
	background: #fff !important;
	border: 2px solid var(--lp-primary) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: var(--lp-primary) !important;
	cursor: pointer !important;
	z-index: 10 !important;
	box-shadow: 0 6px 20px rgba(0,0,0,.18) !important;
	transition: all 200ms !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
}
.docto-lp-gallery-carousel__nav::before,
.docto-lp-gallery-carousel__nav::after {
	content: none !important;
	display: none !important;
}
.docto-lp-gallery-carousel__nav svg {
	width: 22px !important;
	height: 22px !important;
	stroke: var(--lp-primary) !important;
	fill: none !important;
	color: var(--lp-primary) !important;
}
.docto-lp-gallery-carousel__nav:hover {
	background: var(--lp-primary) !important;
	color: #fff !important;
	transform: translateY(-50%) scale(1.1) !important;
	box-shadow: 0 8px 24px rgba(246,69,34,.35) !important;
}
.docto-lp-gallery-carousel__nav:hover svg {
	stroke: #fff !important;
	color: #fff !important;
}
.docto-lp-gallery-carousel__nav:disabled {
	opacity: .4 !important;
	cursor: not-allowed !important;
}
.docto-lp-gallery-carousel__nav--prev { left: 12px !important; }
.docto-lp-gallery-carousel__nav--next { right: 12px !important; }

.docto-lp-gallery-carousel__dots {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 10px !important;
	margin-top: 24px !important;
	padding: 0 !important;
}
.docto-lp-gallery-carousel__dots button {
	width: 10px !important;
	height: 10px !important;
	min-width: 10px !important;
	min-height: 10px !important;
	max-width: 10px !important;
	max-height: 10px !important;
	padding: 0 !important;
	border: 1.5px solid var(--lp-primary) !important;
	border-radius: 50% !important;
	background: transparent !important;
	cursor: pointer !important;
	transition: all 200ms !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	flex-shrink: 0 !important;
	box-shadow: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
}
.docto-lp-gallery-carousel__dots button.is-active {
	background: var(--lp-primary) !important;
	width: 28px !important;
	max-width: 28px !important;
	border-radius: 10px !important;
}
.docto-lp-gallery-carousel__dots button:hover:not(.is-active) {
	background: rgba(246,69,34,.2) !important;
}
.docto-lp-gallery-carousel__actions {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}
.docto-lp-gallery-viewall {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: #fff;
	border: 1.5px solid var(--lp-border);
	border-radius: 999px;
	color: var(--lp-text);
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 200ms;
	text-decoration: none;
}
.docto-lp-gallery-viewall:hover {
	border-color: var(--lp-primary);
	color: var(--lp-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(246,69,34,.15);
}

@media (max-width: 768px) {
	.docto-lp-gallery-carousel__slide {
		width: calc((100% / 2) - 8px);
	}
	.docto-lp-gallery-carousel__nav { display: none; }
}
@media (max-width: 480px) {
	.docto-lp-gallery-carousel__slide {
		width: 85%;
	}
}

/* ══ GALLERY : BENTO ALTERNÉE 60/40 (cycle de 4 tuiles) ══════════
   Rangée 1 (items 1-2) : [═══ grande (60%) ═══] [petite (40%)]
   Rangée 2 (items 3-4) : [petite (40%)] [═══ grande (60%) ═══]
   Cycle se répète
*/
.docto-lp-gallery-bento {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-auto-rows: 400px;
	gap: 16px;
}
.docto-lp-gallery-bento__tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 20px;
	background: var(--lp-bg-soft);
	cursor: zoom-in;
	transition: transform 300ms cubic-bezier(.4,0,.2,1), box-shadow 300ms;
	grid-column: span 2; /* petite par défaut = 2/5 = 40% */
	grid-row: span 1;
}
.docto-lp-gallery-bento__tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0,0,0,.14);
}
.docto-lp-gallery-bento__tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.docto-lp-gallery-bento__tile:hover img {
	transform: scale(1.04);
}

/* Pattern : tiles 1 et 4 du cycle (de 4) sont grandes (3/5 = 60%) */
.docto-lp-gallery-bento__tile:nth-child(4n+1),
.docto-lp-gallery-bento__tile:nth-child(4n+4),
.docto-lp-gallery-bento__tile:nth-child(4n) {
	grid-column: span 3; /* grande = 3/5 = 60% */
}

/* Tablette : 2 colonnes égales, pattern simplifié */
@media (max-width: 900px) {
	.docto-lp-gallery-bento {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 320px;
	}
	.docto-lp-gallery-bento__tile,
	.docto-lp-gallery-bento__tile:nth-child(4n+1),
	.docto-lp-gallery-bento__tile:nth-child(4n+4),
	.docto-lp-gallery-bento__tile:nth-child(4n) {
		grid-column: span 1;
	}
}

/* Mobile : 1 colonne, toutes égales */
@media (max-width: 540px) {
	.docto-lp-gallery-bento {
		grid-template-columns: 1fr;
		grid-auto-rows: 280px;
	}
}
