/* ============================================================================
 * index_v5.css - Landing page V5 (index_v5.cgi)
 * Prefixe .lp- = "landing page" (fonctionnel, pas de ec-/v5- dans les classes).
 * Couleurs : variables du site (var(--couleur-principale, #eb406d)).
 * ============================================================================ */

.lp-body {
	margin: 0;
	font-family: 'Poppins', Arial, sans-serif;
	color: #1c1c22;
	background: #0e0e12;
	line-height: 1.55;
	/* Fonds hero/footer : largeur max image + fondu vers #0e0e12 sur grands ecrans */
	--lp-wide-bg-max: 1920px;
	--lp-wide-bg-fade: 100px;
}
.lp-body * { box-sizing: border-box; }
.lp-body a:not(.lp-btn) { color: var(--couleur-principale, #eb406d); text-decoration: none; }
.lp-body a:not(.lp-btn):hover { text-decoration: underline; }
.lp-body a.lp-btn { text-decoration: none; }
.lp-body a.lp-btn:hover { text-decoration: none; }
.lp-body a.lp-btn-primary,
.lp-body a.lp-btn-primary:hover { color: #fff; }
.lp-body a.lp-btn-dark,
.lp-body a.lp-btn-dark:hover { color: #fff; }

/* ---------- Boutons ---------- */
.lp-btn {
	display: inline-block;
	border: 0;
	border-radius: 40px;
	padding: 14px 30px;
	font: 600 15px/1 'Poppins', sans-serif;
	cursor: pointer;
	transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
	text-align: center;
}
.lp-btn:hover { text-decoration: none; transform: translateY(-1px); }
.lp-btn-primary { background: var(--couleur-principale, #eb406d); color: #fff; box-shadow: 0 8px 22px rgba(235,64,109,.35); }
.lp-btn-primary:hover { background: var(--couleur-principale-hover, #d93a5f); color: #fff; }
.lp-btn-dark { background: #16161c; color: #fff; }
.lp-btn-dark:hover { background: #000; color: #fff; }
.lp-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); padding: 9px 22px; }
.lp-btn-outline:hover { background: #fff; color: #16161c; }
.lp-btn-ghost { background: #f1f1f4; color: #555; }
.lp-btn-block { display: block; width: 100%; }
.lp-btn-lg { padding: 17px 44px; font-size: 17px; }
.lp-btn.is-loading { opacity: .65; pointer-events: none; position: relative; }

/* ---------- Topbar ---------- */
.lp-topbar {
	position: absolute; top: 0; left: 0; right: 0; z-index: 20;
	padding: 18px 0;
}
.lp-topbar-inner {
	max-width: 1140px; margin: 0 auto; padding: 0 24px;
	display: flex; align-items: center; justify-content: space-between;
}
.lp-logo { display: flex; align-items: center; gap: 10px; }
.lp-logo img { height: 60px; }
.lp-logo span { display: none; color: #fff; font-weight: 700; font-size: 22px; }
.lp-logo.lp-logo-text span { display: inline; }

/* ---------- Hero ---------- */
.lp-hero {
	/* Decalage horizontal voulu : bloc 150% + shift -15% (pan vers la gauche) */
	--lp-hero-shift: -15%;
	/* Vertical : % bas dans l'image ancre au centre -> visage plus bas dans le cadre */
	--lp-hero-bg-pos-y: 38%;
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	padding: 120px 0 70px;
	background-color: #0e0e12;
	overflow: hidden;
}
/* Fond hero : bloc elargi (150%) pour pan sans bande noire ; overflow section clip */
.lp-hero::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 150%;
	transform: translateX(calc(-50% + var(--lp-hero-shift)));
	z-index: 0;
	background-image: url('/images_index_v5/index_couple.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center var(--lp-hero-bg-pos-y);
	pointer-events: none;
}
.lp-hero-inner {
	position: relative; z-index: 1;
	max-width: 1140px; margin: 0 auto; padding: 0 24px;
	display: grid; grid-template-columns: 1fr 420px; gap: 50px; width: 100%;
}
.lp-hero-text { color: #fff; margin-top: 50px; max-width: 520px; }
.lp-hero-text h1 {
	font-size: 38px; line-height: 1.2; margin: 0 0 14px; font-weight: 700;
	text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.35);
}
.lp-hero-text h1 span {
	display: block;
	margin-top: 0.35em;
	font-size: 0.65em;
	font-weight: 500;
	color: rgba(255,255,255,.92);
	letter-spacing: 0.01em;
}
.lp-hero-sub {
	font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.88);
	max-width: 440px; margin: 0 0 22px;
	text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.lp-hero-trust { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.lp-hero-trust li { position: relative; padding-left: 24px; font-size: 14px; color: #fff; font-weight: 500; }
.lp-hero-trust li::before {
	content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px; border-radius: 50%;
	background: var(--couleur-online, #2ef788);
}
.lp-hero-counts { display: flex; gap: 26px; font-size: 13px; color: #d9d4e0; }
.lp-hero-counts strong { color: #fff; font-size: 18px; display: block; }

/* ---------- Cartes (inscription / connexion / passperdu) ---------- */
.lp-signup-wrap {
	position: relative;
	width: 100%;
}
/* Panneaux superposes : la hauteur du bloc reste celle du plus grand (fixee en JS) */
.lp-signup-wrap > .lp-card {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.lp-card {
	background: #fff; border-radius: 16px; overflow: hidden;
	box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.lp-card-head {
	background: var(--couleur-principale, #eb406d); color: #fff;
	font-weight: 600; font-size: 19px; text-align: center; padding: 16px;
}
.lp-card form { padding: 22px 24px 26px; }

.lp-field { margin-bottom: 15px; }
.lp-field > label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.lp-field input[type=text],
.lp-field input[type=email],
.lp-field input[type=password],
.lp-select,
.lp-field select {
	width: 100%; padding: 11px 13px; border: 1px solid #d8d8e0; border-radius: 9px;
	font-size: 15px; font-family: inherit; background: #fff; color: #1c1c22;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.lp-field input:focus, .lp-field select:focus, .lp-select:focus {
	outline: 0; border-color: var(--couleur-principale, #eb406d);
	box-shadow: 0 0 0 3px var(--couleur-principale-light, rgba(235,64,109,.12));
}
.lp-date-row { display: flex; gap: 8px; }
.lp-date-row select { flex: 1; min-width: 0; }

.lp-input-wrap { position: relative; }
.lp-spinner {
	position: absolute; right: 12px; top: 50%; width: 16px; height: 16px; margin-top: -8px;
	border: 2px solid #ddd; border-top-color: var(--couleur-principale, #eb406d);
	border-radius: 50%; display: none; animation: lp-spin .7s linear infinite;
}
.lp-spinner.is-on { display: block; }
@keyframes lp-spin { to { transform: rotate(360deg); } }

.lp-field-help { font-size: 12px; color: var(--couleur-succes, #4caf50); margin-top: 5px; }
.lp-field-help.is-success { color: var(--couleur-succes, #4caf50); }
.lp-field-help:not(.is-success) { color: #f0a830; }
.lp-suggest-link { color: var(--couleur-principale, #eb406d); text-decoration: underline; font-weight: 600; cursor: pointer; }
.lp-suggest-link:hover { opacity: .85; }
.lp-field-error { font-size: 12px; color: var(--couleur-erreur, #EC4433); margin-top: 5px; display: none; }
.lp-field.is-invalid input, .lp-field.is-invalid select { border-color: var(--couleur-erreur, #EC4433); }
.lp-field.is-invalid .lp-field-error { display: block; }
.lp-field.is-valid input, .lp-field.is-valid select { border-color: var(--couleur-succes, #4caf50); }
.lp-field.is-loading .lp-spinner { display: block; }

/* Separateurs dans le select "Vous etes" */
.lp-select option[disabled] {
	color: #aaa;
	background: #f7f7f9;
	font-size: 11px;
	text-align: center;
}

.lp-field-cgu { margin-top: 6px; }
.lp-cgu { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: #555; font-weight: 400; cursor: pointer; }
.lp-cgu input { margin-top: 2px; }

.lp-phase-nav { display: flex; gap: 10px; }
.lp-phase-nav .lp-btn-ghost { flex: 0 0 auto; }
.lp-phase-nav .lp-btn-primary { flex: 1; }

/* Suggestions ville */
.lp-suggestions {
	position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 30;
	background: #fff; border: 1px solid #e0e0e8; border-radius: 9px; overflow: hidden;
	box-shadow: 0 12px 30px rgba(0,0,0,.16); display: none; max-height: 240px; overflow-y: auto;
}
.lp-suggestion { padding: 10px 13px; font-size: 14px; cursor: pointer; }
.lp-suggestion:hover, .lp-suggestion.is-active { background: var(--couleur-principale-light, rgba(235,64,109,.1)); }
.lp-suggestion-empty { color: #999; cursor: default; }

/* Connexion / passperdu */
.lp-eye {
	position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
	width: 30px; height: 30px; border: 0; background: transparent; cursor: pointer; opacity: .5;
}
.lp-eye::before { content: "\1F441"; font-size: 16px; }
.lp-cnx-msg { display: none; font-size: 13px; margin: 8px 0; padding: 9px 11px; border-radius: 8px; background: #fdecea; color: var(--couleur-erreur, #EC4433); }
#passperdu_retour1 { background: #e9f7ee; color: var(--couleur-succes, #4caf50); }
.lp-loader { display: none; height: 3px; border-radius: 3px; margin: 10px 0; background: linear-gradient(90deg, var(--couleur-principale,#eb406d), transparent); animation: lp-load 1s linear infinite; }
@keyframes lp-load { 0% { background-position: -200px 0; } 100% { background-position: 200px 0; } }
.lp-link { display: block; text-align: center; margin-top: 12px; font-size: 13px; }
.lp-switch { text-align: center; margin-top: 14px; font-size: 13px; color: #666; }
.lp-help-text { font-size: 13px; color: #666; margin: 0 0 12px; }

/* ---------- Pictos ---------- */
.lp-pictos { background: #0e0e12; padding: 56px 0; }
.lp-pictos-inner { max-width: 1040px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.lp-picto { text-align: center; color: #ddd; }
.lp-picto-ico { width: 110px; height: 110px; margin: 0 auto 14px; border-radius: 50%; background: var(--couleur-principale-light, rgba(235,64,109,.15)); display: flex; align-items: center; justify-content: center; }
.lp-picto-img { width: 90px; height: 90px; object-fit: contain; display: block; }
.lp-picto h3 { color: #fff; font-size: 17px; margin: 0 0 8px; }
.lp-picto p { font-size: 14px; color: #b6b3bf; margin: 0; }

/* ---------- Intro SEO ---------- */
.lp-intro { background: #0e0e12; padding: 20px 0; text-align: center; }
.lp-intro-inner { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.lp-intro h2 { font-size: 34px; color: var(--couleur-principale, #eb406d); margin: 0 0 20px; }
.lp-intro p { font-size: 16px; color: #bdbac6; }
.lp-cta-row { margin-top: 26px; }

/* ---------- Feature rows ---------- */
.lp-feature { background: #0e0e12; padding: 20px 0 70px; }
.lp-feature-row {
	max-width: 1040px; margin: 0 auto; padding: 40px 24px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.lp-feature-reverse .lp-feature-img { order: 2; }
.lp-feature-txt h3 { color: #fff; font-size: 26px; margin: 0 0 16px; }
.lp-feature-txt p { color: #bdbac6; font-size: 15px; margin: 0 0 22px; }
/* ---------- Blocs image ---------- */
.lp-img-frame {
	width: 100%;
	aspect-ratio: 4 / 3;
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: #1e1e28;
	box-shadow: 0 18px 40px rgba(0,0,0,.4);
	line-height: 0;
}
.lp-img-frame .lp-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ---------- Cartes roses ---------- */
.lp-cards { background: #0e0e12; padding: 10px 0 70px; }
.lp-cards-inner { max-width: 1040px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lp-card-pink {
	background: var(--couleur-principale, #eb406d);
	color: #fff;
	border-radius: 16px;
	overflow: hidden;
	padding: 0;
}
.lp-card-pink-img {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	line-height: 0;
	background: rgba(0,0,0,.12);
}
.lp-card-pink-img .lp-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.lp-card-pink-body { padding: 22px 26px 26px; }
.lp-card-pink h3 { font-size: 21px; margin: 0 0 12px; }
.lp-card-pink p { font-size: 14px; color: #ffe6ee; margin: 0; }
/* Liens satellites en plein contenu : maillage SEO conserve mais discret
   (couleur du texte, sans soulignement, sans effet au survol) — visibles,
   jamais caches. */
.lp-body .lp-card-pink a:not(.lp-btn),
.lp-body .lp-card-pink a:not(.lp-btn):hover { color: inherit; text-decoration: none; cursor: inherit; }

/* ---------- Conseils / avis ---------- */
.lp-advice { background: #14121a; padding: 20px 0; }
.lp-advice-inner { max-width: 1040px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 320px 1fr; gap: 44px; }
.lp-advice-title h2 { color: #fff; font-size: 34px; margin: 0; }
.lp-advice-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.lp-advice-cols h3 { color: var(--couleur-principale, #eb406d); font-size: 16px; margin: 18px 0 8px; }
/* Premier element d'une colonne : pas de marge haute (aligne les 2 colonnes) */
.lp-advice-cols > div > :first-child { margin-top: 0; }
.lp-advice-cols p { color: #b6b3bf; font-size: 13.5px; margin: 0; }
/* Liens d'articles (maillage SEO) discrets : couleur du texte, sans
   soulignement ni effet au survol — visibles, jamais caches.
   Selecteur plus specifique que .lp-body a:not(.lp-btn) (sinon rose). */
.lp-body .lp-advice-cols a:not(.lp-btn),
.lp-body .lp-advice-cols a:not(.lp-btn):hover { color: inherit; text-decoration: none; cursor: inherit; }

/* ---------- FAQ ---------- */
.lp-faq { background: #0e0e12; padding: 20px 0; }
.lp-faq-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.lp-faq-inner > h2 { color: #fff; font-size: 34px; text-align: center; margin: 0 0 36px; }
.lp-faq-item {
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 12px;
	background: #16141c;
	margin-bottom: 14px;
	overflow: hidden;
}
.lp-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 52px 18px 22px;
	position: relative;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	transition: color .15s ease;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary:hover { color: var(--couleur-principale, #eb406d); }
.lp-faq-item summary::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	width: 11px;
	height: 11px;
	border-right: 2px solid var(--couleur-principale, #eb406d);
	border-bottom: 2px solid var(--couleur-principale, #eb406d);
	transform: translateY(-65%) rotate(45deg);
	transition: transform .2s ease;
}
.lp-faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.lp-faq-answer { padding: 0 22px 20px; }
.lp-faq-answer p { color: #b6b3bf; font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ---------- Contact (modale) ---------- */
.lp-modal[hidden] { display: none; }
body.lp-modal-open { overflow: hidden; }
.lp-modal {
	position: fixed; inset: 0; z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.lp-modal-backdrop {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.7); backdrop-filter: blur(2px);
}
.lp-modal-dialog {
	position: relative; z-index: 1;
	width: 100%; max-width: 560px;
	max-height: calc(100vh - 40px); overflow-y: auto;
	background: #16161c; border: 1px solid #2a2933; border-radius: 16px;
	padding: 30px 28px 28px; box-shadow: 0 24px 60px rgba(0,0,0,.5);
	animation: lp-modal-in .18s ease-out;
}
@keyframes lp-modal-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.lp-modal-close {
	position: absolute; top: 12px; right: 14px;
	width: 34px; height: 34px; padding: 0;
	border: 0; border-radius: 50%; cursor: pointer;
	background: transparent; color: #b6b3bf;
	font-size: 26px; line-height: 1;
	transition: background .15s, color .15s;
}
.lp-modal-close:hover { background: #26252e; color: #fff; }
.lp-modal-dialog h2 { color: #fff; font-size: 26px; text-align: center; margin: 0 0 8px; }
.lp-contact-intro { color: #b6b3bf; font-size: 14.5px; text-align: center; margin: 0 auto 22px; max-width: 460px; line-height: 1.55; }
.lp-contact-form { display: flex; flex-direction: column; gap: 14px; }
.lp-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-contact-field { display: flex; flex-direction: column; }
.lp-contact-field label { color: #cfccd8; font-size: 13px; margin: 0 0 6px; font-weight: 500; }
.lp-contact-field input,
.lp-contact-field textarea {
	width: 100%; box-sizing: border-box;
	padding: 12px 14px; border-radius: 10px;
	border: 1px solid #33323c; background: #1f1e26; color: #fff;
	font-size: 15px; font-family: inherit; line-height: 1.4;
	transition: border-color .15s, box-shadow .15s;
}
.lp-contact-field textarea { resize: vertical; min-height: 120px; }
.lp-contact-field input::placeholder,
.lp-contact-field textarea::placeholder { color: #6f6c79; }
.lp-contact-field input:focus,
.lp-contact-field textarea:focus {
	outline: 0; border-color: var(--couleur-principale, #eb406d);
	box-shadow: 0 0 0 3px var(--couleur-principale-light, rgba(235,64,109,.12));
}
.lp-contact-field.is-error input,
.lp-contact-field.is-error textarea { border-color: var(--couleur-erreur, #EC4433); }
/* Honeypot : invisible pour l'humain, present pour les bots */
.lp-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.lp-contact-captcha { margin: 2px 0; }
.lp-contact-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.lp-contact-status { font-size: 14px; line-height: 1.4; }
.lp-contact-status.is-ok { color: var(--couleur-succes, #4caf50); }
.lp-contact-status.is-ko { color: var(--couleur-erreur, #EC4433); }

/* ---------- Footer hero ---------- */
.lp-footerhero {
	position: relative;
	padding: 90px 0;
	text-align: center;
	background-color: #0e0e12;
	overflow: hidden;
}
.lp-footerhero::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: min(100%, var(--lp-wide-bg-max));
	transform: translateX(-50%);
	z-index: 0;
	background-image: url('/images_index_v5/index_bdsm.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 40%;
	pointer-events: none;
}
.lp-footerhero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(14,12,18,.75) 0%, rgba(14,12,18,.55) 100%);
}
.lp-footerhero-inner { position: relative; z-index: 2; }
.lp-footerhero h2 { color: #fff; font-size: 36px; margin: 0 0 26px; }

/* ---------- Footer ---------- */
.lp-footer { background: #0a0a0d; color: #8b8895; padding: 40px 0; }
.lp-footer-inner { max-width: 1040px; margin: 0 auto; padding: 0 24px; text-align: center; }
.lp-footer-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.lp-footer-links a { color: #c9c6d2; font-size: 13px; }
.lp-tagcloud { font-size: 12px; margin-bottom: 14px; }
.lp-tagcloud a { color: #6f6c79; }
.lp-copy { font-size: 12px; color: #6f6c79; }
.lp-copy span { color: var(--couleur-principale, #eb406d); }

/* Grands ecrans : letterbox 1920px + fondu (hero : cadrage via bg-position, pas shift) */
@media (min-width: 1921px) {
	.lp-hero::before {
		width: var(--lp-wide-bg-max);
		transform: translateX(-50%);
		background-position: 42% var(--lp-hero-bg-pos-y);
		-webkit-mask-image: linear-gradient(to right,
			transparent 0,
			#000 var(--lp-wide-bg-fade),
			#000 calc(100% - var(--lp-wide-bg-fade)),
			transparent 100%);
		mask-image: linear-gradient(to right,
			transparent 0,
			#000 var(--lp-wide-bg-fade),
			#000 calc(100% - var(--lp-wide-bg-fade)),
			transparent 100%);
	}
	.lp-footerhero::before {
		-webkit-mask-image: linear-gradient(to right,
			transparent 0,
			#000 var(--lp-wide-bg-fade),
			#000 calc(100% - var(--lp-wide-bg-fade)),
			transparent 100%);
		mask-image: linear-gradient(to right,
			transparent 0,
			#000 var(--lp-wide-bg-fade),
			#000 calc(100% - var(--lp-wide-bg-fade)),
			transparent 100%);
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.lp-topbar { padding: 12px 0; }
	.lp-topbar-inner { padding: 0 16px; }
	.lp-logo img { height: 46px; }
	.lp-hero { min-height: 0; padding: 84px 0 44px; }
	/* Mobile : remonte l'image de fond du hero d'environ 50px */
	.lp-hero::before { background-position: center calc(var(--lp-hero-bg-pos-y) - 50px); }
	.lp-hero-inner { grid-template-columns: 1fr; gap: 16px; }
	.lp-hero-text { margin-top: 0; max-width: none; text-align: center; }
	.lp-hero-text h1 { font-size: 30px; margin: 0 0 10px; }
	.lp-hero-sub { max-width: none; margin: 0 auto 6px; }
	.lp-signup-wrap { max-width: 460px; margin: 0 auto;}
	.lp-pictos { padding: 40px 0; }
	.lp-pictos-inner { grid-template-columns: 1fr; gap: 26px; }
	/* Rythme vertical resserre sur mobile (evite les grands vides entre sections) */
	.lp-intro { padding: 36px 0; }
	.lp-feature { padding: 10px 0 36px; }
	.lp-feature-row { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
	.lp-feature-reverse .lp-feature-img { order: 0; }
	/* Mobile : centrer les CTA des blocs feature (lp-intro deja centre via text-align) */
	.lp-feature-txt {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.lp-feature-txt h3,
	.lp-feature-txt p { width: 100%; }
	.lp-feature-txt .lp-btn { align-self: center; }
	.lp-cards { padding: 10px 0 36px; }
	.lp-cards-inner { grid-template-columns: 1fr; gap: 22px; }
	.lp-advice { padding: 20px 0; }
	.lp-advice-inner { grid-template-columns: 1fr; gap: 24px; }
	.lp-advice-cols { grid-template-columns: 1fr; }
	.lp-contact-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.lp-topbar-inner {
		padding: 0 12px 0 10px;
	  }
	.lp-logo img { height: 44px; }
	.lp-hero { padding: 72px 0 32px; }
	.lp-hero-text h1 { font-size: 26px; margin: 0 0 14px; }
	/* Objectif inscription : on masque le paragraphe long, l'accroche (span du h1) suffit */
	.lp-hero-sub { display: none; }
	.lp-intro h2, .lp-footerhero h2, .lp-advice-title h2 { font-size: 26px; }
	.lp-modal-dialog { padding: 26px 18px 22px; }
	.lp-date-row { flex-wrap: wrap; }
}
