/* ======================================================================
   You Energie — Form styles (simulateur + upload facture)
   Scoped under body.yel-landing for maximal specificity vs parent theme.
   ====================================================================== */

body.yel-landing .yel-lp-simulator,
body.yel-landing .yel-lp-upload {
	box-sizing: border-box;
}
body.yel-landing .yel-lp-simulator *,
body.yel-landing .yel-lp-upload * {
	box-sizing: border-box;
}

/* IMPORTANT — respecter l'attribut HTML [hidden] partout dans les modules
   form. Nos display: inline-flex et display: grid l'écraseraient sinon. */
body.yel-landing .yel-lp-simulator [hidden],
body.yel-landing .yel-lp-upload [hidden] {
	display: none !important;
}

/* ======================================================================
   SIMULATEUR
   ====================================================================== */
body.yel-landing .yel-lp-simulator {
	background: linear-gradient(180deg, #F5FBF7 0%, #FFFFFF 100%);
	padding: clamp(56px, 8vw, 96px) 24px;
}
body.yel-landing .yel-lp-simulator__inner {
	max-width: 880px;
	margin: 0 auto;
}
body.yel-landing .yel-lp-simulator__head {
	text-align: center;
	margin-bottom: 36px;
}
body.yel-landing .yel-lp-simulator__eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(63, 208, 113, 0.16);
	color: #0F7A3A;
	border: 1px solid rgba(63, 208, 113, 0.35);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 16px;
}
body.yel-landing .yel-lp-simulator__title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	color: #093D1D;
	letter-spacing: -0.025em;
	margin: 0 0 12px;
	line-height: 1.1;
}
body.yel-landing .yel-lp-simulator__lead {
	color: #5C6B61;
	font-size: 17px;
	margin: 0;
}
body.yel-landing .yel-lp-simulator__card {
	background: #fff;
	border-radius: 24px;
	padding: clamp(28px, 4vw, 48px);
	box-shadow: 0 30px 80px -30px rgba(15, 122, 58, 0.25), 0 4px 12px rgba(9, 61, 29, 0.04);
	border: 1px solid #EDF5F0;
	position: relative;
	overflow: hidden;
}
body.yel-landing .yel-lp-simulator__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0F7A3A 0%, #3FD071 100%);
}

/* Progress */
body.yel-landing .yel-lp-sim-progress {
	margin-bottom: 32px;
}
body.yel-landing .yel-lp-sim-progress__bar {
	height: 6px;
	background: linear-gradient(90deg, #3FD071 0%, #0F7A3A 100%);
	border-radius: 999px;
	transition: width .4s cubic-bezier(.2, .8, .2, 1);
}
body.yel-landing .yel-lp-sim-progress__steps {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
}
body.yel-landing .yel-lp-sim-progress__steps span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #EDF5F0;
	color: #5C6B61;
	font-size: 13px;
	font-weight: 700;
	transition: all .25s;
}
body.yel-landing .yel-lp-sim-progress__steps span.is-active {
	background: #0F7A3A;
	color: #fff;
}
body.yel-landing .yel-lp-sim-progress__steps span.is-done {
	background: #3FD071;
	color: #093D1D;
}

/* Steps — DEFAULT HIDDEN, only the .is-active is shown */
body.yel-landing .yel-lp-sim-step {
	display: none;
	animation: yelFade .35s ease;
}
body.yel-landing .yel-lp-sim-step.is-active {
	display: block;
}
@keyframes yelFade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}
body.yel-landing .yel-lp-sim-step__kicker {
	color: #0F7A3A;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 6px;
}
body.yel-landing .yel-lp-sim-step__title {
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 700;
	color: #093D1D;
	margin: 0 0 8px;
	letter-spacing: -0.02em;
}
body.yel-landing .yel-lp-sim-step__hint {
	color: #5C6B61;
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.5;
}

/* Tiles (radio cards) */
body.yel-landing .yel-lp-sim-tiles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 16px;
}
body.yel-landing .yel-lp-sim-tiles.is-2col {
	grid-template-columns: repeat(2, 1fr);
}
body.yel-landing .yel-lp-sim-tile {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 18px 16px;
	background: #F5FBF7;
	border: 2px solid transparent;
	border-radius: 14px;
	cursor: pointer;
	transition: all .2s;
	position: relative;
	margin: 0;
}
body.yel-landing .yel-lp-sim-tile:hover {
	border-color: rgba(63, 208, 113, 0.5);
	transform: translateY(-1px);
}
body.yel-landing .yel-lp-sim-tile input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
body.yel-landing .yel-lp-sim-tile.is-checked,
body.yel-landing .yel-lp-sim-tile:has(input:checked) {
	background: rgba(63, 208, 113, 0.12);
	border-color: #0F7A3A;
	box-shadow: 0 0 0 4px rgba(63, 208, 113, 0.12);
}
body.yel-landing .yel-lp-sim-tile__emoji {
	font-size: 26px;
	line-height: 1;
}
body.yel-landing .yel-lp-sim-tile__label {
	font-size: 14px;
	color: #093D1D;
	line-height: 1.3;
	font-weight: 600;
}
body.yel-landing .yel-lp-sim-tile__label small {
	display: block;
	color: #5C6B61;
	font-weight: 400;
	font-size: 12px;
	margin-top: 2px;
}

/* Fields (texte/select/textarea) — partagés simulateur + upload */
body.yel-landing .yel-lp-sim-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
body.yel-landing .yel-lp-sim-field {
	display: block;
	margin: 0;
}
body.yel-landing .yel-lp-sim-field > span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #093D1D;
	margin-bottom: 6px;
}
body.yel-landing .yel-lp-sim-field input,
body.yel-landing .yel-lp-sim-field select,
body.yel-landing .yel-lp-sim-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #D8E5DC;
	border-radius: 10px;
	font-size: 15px;
	color: #0A1F12;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
	font-family: inherit;
	box-sizing: border-box;
}
body.yel-landing .yel-lp-sim-field input:focus,
body.yel-landing .yel-lp-sim-field select:focus,
body.yel-landing .yel-lp-sim-field textarea:focus {
	outline: none;
	border-color: #0F7A3A;
	box-shadow: 0 0 0 3px rgba(63, 208, 113, 0.18);
}
body.yel-landing .yel-lp-sim-field input:invalid:not(:placeholder-shown) {
	border-color: #E63946;
}

/* Consent */
body.yel-landing .yel-lp-sim-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: #5C6B61;
	line-height: 1.5;
	margin-top: 8px;
	cursor: pointer;
}
body.yel-landing .yel-lp-sim-consent input {
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #0F7A3A;
}
body.yel-landing .yel-lp-sim-consent a {
	color: #0F7A3A;
	text-decoration: underline;
}

/* Nav buttons */
body.yel-landing .yel-lp-sim-nav {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #EDF5F0;
}
body.yel-landing .yel-lp-sim-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 24px;
	font-weight: 700;
	font-size: 15px;
	border-radius: 12px;
	cursor: pointer;
	border: none;
	font-family: inherit;
	transition: all .15s;
	text-decoration: none;
	position: relative;
}
body.yel-landing .yel-lp-sim-btn--primary {
	background: linear-gradient(135deg, #0F7A3A 0%, #3FD071 100%);
	color: #fff;
	box-shadow: 0 8px 22px -8px rgba(15, 122, 58, 0.5);
}
body.yel-landing .yel-lp-sim-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -8px rgba(15, 122, 58, 0.6);
}
body.yel-landing .yel-lp-sim-btn--primary:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}
body.yel-landing .yel-lp-sim-btn--ghost {
	background: transparent;
	color: #0F7A3A;
	border: 1.5px solid #D8E5DC;
}
body.yel-landing .yel-lp-sim-btn--ghost:hover {
	background: #F5FBF7;
	border-color: #0F7A3A;
}
body.yel-landing .yel-lp-sim-btn[data-yel-prev] {
	margin-right: auto;
}
body.yel-landing .yel-lp-sim-btn__loader {
	display: none;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: yelSpin .8s linear infinite;
}
body.yel-landing .is-loading .yel-lp-sim-btn__label {
	display: none;
}
body.yel-landing .is-loading .yel-lp-sim-btn__loader {
	display: inline-block;
}
@keyframes yelSpin {
	to { transform: rotate(360deg); }
}

/* Result */
body.yel-landing .yel-lp-sim-result {
	text-align: center;
	animation: yelFade .5s ease;
}
body.yel-landing .yel-lp-sim-result__badge {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(63, 208, 113, 0.16);
	color: #0F7A3A;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 14px;
	text-transform: uppercase;
}
body.yel-landing .yel-lp-sim-result__title {
	font-size: clamp(20px, 2.4vw, 24px);
	color: #5C6B61;
	font-weight: 500;
	margin: 0 0 16px;
}
body.yel-landing .yel-lp-sim-result__amount {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: baseline;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
body.yel-landing .yel-lp-sim-result__min,
body.yel-landing .yel-lp-sim-result__max {
	font-size: clamp(44px, 8vw, 72px);
	font-weight: 800;
	background: linear-gradient(135deg, #0F7A3A 0%, #3FD071 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -0.04em;
	line-height: 1;
}
body.yel-landing .yel-lp-sim-result__sep {
	font-size: 22px;
	color: #5C6B61;
	font-weight: 500;
}
body.yel-landing .yel-lp-sim-result__unit {
	font-size: 18px;
	color: #0F7A3A;
	font-weight: 700;
	margin-left: 4px;
}
body.yel-landing .yel-lp-sim-result__annual {
	font-size: 17px;
	color: #093D1D;
	margin: 0 0 32px;
}
body.yel-landing .yel-lp-sim-result__annual strong {
	color: #0F7A3A;
	font-weight: 800;
}
body.yel-landing .yel-lp-sim-result__next {
	background: #F5FBF7;
	border: 1px solid #D8E5DC;
	border-radius: 16px;
	padding: 24px;
	margin: 0 0 20px;
}
body.yel-landing .yel-lp-sim-result__next > p {
	color: #093D1D;
	font-size: 15px;
	margin: 0 0 16px;
}
body.yel-landing .yel-lp-sim-result__ctas {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}
body.yel-landing .yel-lp-sim-result__disclaimer {
	font-size: 12px;
	color: #5C6B61;
	line-height: 1.5;
	margin: 0;
}

/* Error */
body.yel-landing .yel-lp-sim-error {
	background: #FFF4F3;
	border: 1px solid #FFCDC8;
	border-radius: 12px;
	padding: 16px;
	margin-top: 16px;
}
body.yel-landing .yel-lp-sim-error p {
	margin: 0;
	color: #93251B;
	font-size: 14px;
}
body.yel-landing .yel-lp-sim-error a {
	color: #93251B;
	font-weight: 600;
}

/* ======================================================================
   UPLOAD FACTURE
   ====================================================================== */
body.yel-landing .yel-lp-upload {
	background: linear-gradient(180deg, #fff 0%, #F5FBF7 100%);
	padding: clamp(56px, 8vw, 96px) 24px;
}
body.yel-landing .yel-lp-upload__inner {
	max-width: 880px;
	margin: 0 auto;
}
body.yel-landing .yel-lp-upload__head {
	text-align: center;
	margin-bottom: 36px;
}
body.yel-landing .yel-lp-upload__eyebrow {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(245, 166, 35, 0.14);
	color: #B47012;
	border: 1px solid rgba(245, 166, 35, 0.35);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 14px;
}
body.yel-landing .yel-lp-upload__title {
	font-size: clamp(26px, 3.6vw, 40px);
	color: #093D1D;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 12px;
}
body.yel-landing .yel-lp-upload__title strong {
	color: #0F7A3A;
}
body.yel-landing .yel-lp-upload__lead {
	color: #5C6B61;
	font-size: 16px;
	line-height: 1.55;
	margin: 0 auto;
	max-width: 56ch;
}

body.yel-landing .yel-lp-upload__card {
	background: #fff;
	border-radius: 24px;
	padding: clamp(28px, 4vw, 44px);
	box-shadow: 0 30px 80px -30px rgba(15, 122, 58, 0.22), 0 4px 12px rgba(9, 61, 29, 0.04);
	border: 1px solid #EDF5F0;
	position: relative;
	overflow: hidden;
}
body.yel-landing .yel-lp-upload__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #F5A623, #FF6B35);
}

/* Drop zone */
body.yel-landing .yel-lp-dropzone {
	border: 2px dashed #D8E5DC;
	border-radius: 18px;
	padding: 36px 24px;
	background: #F5FBF7;
	cursor: pointer;
	transition: all .2s;
	margin-bottom: 24px;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
body.yel-landing .yel-lp-dropzone:hover,
body.yel-landing .yel-lp-dropzone:focus-visible,
body.yel-landing .yel-lp-dropzone.is-dragover {
	border-color: #0F7A3A;
	background: rgba(63, 208, 113, 0.06);
	outline: none;
}
body.yel-landing .yel-lp-dropzone.is-dragover {
	transform: scale(1.005);
}
body.yel-landing .yel-lp-dropzone__inner {
	text-align: center;
}
body.yel-landing .yel-lp-dropzone__icon {
	font-size: 40px;
	margin-bottom: 8px;
}
body.yel-landing .yel-lp-dropzone__title {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: #093D1D;
	letter-spacing: -0.01em;
}
body.yel-landing .yel-lp-dropzone__hint {
	margin: 0 0 8px;
	color: #5C6B61;
	font-size: 14px;
}
body.yel-landing .yel-lp-dropzone__pick {
	background: none;
	border: none;
	color: #0F7A3A;
	font-weight: 700;
	cursor: pointer;
	font-size: 14px;
	text-decoration: underline;
	padding: 0;
	font-family: inherit;
}
body.yel-landing .yel-lp-dropzone__sub {
	margin: 0;
	color: #5C6B61;
	font-size: 12px;
}
body.yel-landing .yel-lp-dropzone__files {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
body.yel-landing .yel-lp-dropzone__file {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid #C9F0D8;
	border-radius: 12px;
}
body.yel-landing .yel-lp-dropzone__file-icon {
	font-size: 22px;
	flex-shrink: 0;
}
body.yel-landing .yel-lp-dropzone__file-info {
	flex: 1;
	min-width: 0;
}
body.yel-landing .yel-lp-dropzone__file-name {
	font-size: 14px;
	font-weight: 600;
	color: #093D1D;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
body.yel-landing .yel-lp-dropzone__file-size {
	font-size: 12px;
	color: #5C6B61;
	margin-top: 2px;
}
body.yel-landing .yel-lp-dropzone__file-remove {
	background: none;
	border: none;
	color: #93251B;
	cursor: pointer;
	font-size: 18px;
	padding: 4px 8px;
	border-radius: 6px;
	transition: background .15s;
}
body.yel-landing .yel-lp-dropzone__file-remove:hover {
	background: #FFF4F3;
}

/* Upload field grid */
body.yel-landing .yel-lp-upload__field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}
body.yel-landing .yel-lp-upload__field {
	display: block;
	margin-bottom: 14px;
}
body.yel-landing .yel-lp-upload__field > span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #093D1D;
	margin-bottom: 6px;
}
body.yel-landing .yel-lp-upload__field input,
body.yel-landing .yel-lp-upload__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #D8E5DC;
	border-radius: 10px;
	font-size: 15px;
	color: #0A1F12;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
	font-family: inherit;
	box-sizing: border-box;
}
body.yel-landing .yel-lp-upload__field textarea {
	resize: vertical;
	min-height: 44px;
}
body.yel-landing .yel-lp-upload__field input:focus,
body.yel-landing .yel-lp-upload__field textarea:focus {
	outline: none;
	border-color: #0F7A3A;
	box-shadow: 0 0 0 3px rgba(63, 208, 113, 0.18);
}

body.yel-landing .yel-lp-upload__consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	color: #5C6B61;
	line-height: 1.5;
	margin: 16px 0 24px;
	cursor: pointer;
}
body.yel-landing .yel-lp-upload__consent input {
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #0F7A3A;
}
body.yel-landing .yel-lp-upload__consent a {
	color: #0F7A3A;
	text-decoration: underline;
}

body.yel-landing .yel-lp-upload__submit-row {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	justify-content: space-between;
}
body.yel-landing .yel-lp-upload__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #F5A623 0%, #FF6B35 100%);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	font-family: inherit;
	transition: all .15s;
	text-decoration: none;
	box-shadow: 0 8px 22px -8px rgba(245, 166, 35, 0.55);
}
body.yel-landing .yel-lp-upload__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -8px rgba(245, 166, 35, 0.7);
}
body.yel-landing .yel-lp-upload__btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
}
body.yel-landing .yel-lp-upload__btn--ghost {
	background: transparent;
	color: #0F7A3A;
	border: 1.5px solid #D8E5DC;
	box-shadow: none;
}
body.yel-landing .yel-lp-upload__btn--ghost:hover {
	background: #F5FBF7;
	border-color: #0F7A3A;
}
body.yel-landing .yel-lp-upload__btn-loader {
	display: none;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: yelSpin .8s linear infinite;
}
body.yel-landing .is-loading .yel-lp-upload__btn-label {
	display: none;
}
body.yel-landing .is-loading .yel-lp-upload__btn-loader {
	display: inline-block;
}

body.yel-landing .yel-lp-upload__assurance {
	font-size: 12px;
	color: #5C6B61;
}

body.yel-landing .yel-lp-upload__success {
	text-align: center;
	padding: 16px 0;
}
body.yel-landing .yel-lp-upload__success-badge {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(63, 208, 113, 0.16);
	color: #0F7A3A;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 14px;
	text-transform: uppercase;
}
body.yel-landing .yel-lp-upload__success h3 {
	font-size: clamp(22px, 3vw, 28px);
	color: #093D1D;
	margin: 0 0 10px;
}
body.yel-landing .yel-lp-upload__success h3 strong {
	color: #0F7A3A;
}
body.yel-landing .yel-lp-upload__success p {
	color: #5C6B61;
	font-size: 15px;
	line-height: 1.55;
	margin: 0 0 18px;
}
body.yel-landing .yel-lp-upload__success-cta {
	margin-top: 14px;
}

body.yel-landing .yel-lp-upload__error {
	background: #FFF4F3;
	border: 1px solid #FFCDC8;
	border-radius: 12px;
	padding: 16px;
	margin-top: 16px;
}
body.yel-landing .yel-lp-upload__error p {
	margin: 0 0 6px;
	color: #93251B;
	font-size: 14px;
}
body.yel-landing .yel-lp-upload__error a {
	color: #93251B;
	font-weight: 600;
}

/* ======================================================================
   PAGE MERCI
   ====================================================================== */
body.yel-landing .yel-lp-merci {
	background: linear-gradient(180deg, #F5FBF7 0%, #fff 100%);
	padding: clamp(64px, 9vw, 112px) 24px;
	min-height: 70vh;
}
body.yel-landing .yel-lp-merci__inner {
	max-width: 900px;
	margin: 0 auto;
}
body.yel-landing .yel-lp-merci__head {
	text-align: center;
	margin-bottom: 56px;
}
body.yel-landing .yel-lp-merci__check {
	display: inline-flex;
	margin-bottom: 20px;
	animation: yelPop .6s cubic-bezier(.16, 1, .3, 1);
}
@keyframes yelPop {
	from { opacity: 0; transform: scale(0.5); }
	to { opacity: 1; transform: scale(1); }
}
body.yel-landing .yel-lp-merci__eyebrow {
	color: #0F7A3A;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 12px;
}
body.yel-landing .yel-lp-merci__title {
	font-size: clamp(32px, 5vw, 52px);
	color: #093D1D;
	font-weight: 800;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
	line-height: 1.05;
}
body.yel-landing .yel-lp-merci__lead {
	color: #5C6B61;
	font-size: 18px;
	max-width: 56ch;
	margin: 0 auto;
	line-height: 1.55;
}
body.yel-landing .yel-lp-merci__lead strong { color: #0F7A3A; font-weight: 700; }

body.yel-landing .yel-lp-merci__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 56px;
}
body.yel-landing .yel-lp-merci-step {
	background: #fff;
	border: 1px solid #EDF5F0;
	border-radius: 18px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: all .25s;
}
body.yel-landing .yel-lp-merci-step:hover {
	transform: translateY(-2px);
	border-color: #C9F0D8;
	box-shadow: 0 12px 32px -16px rgba(15, 122, 58, 0.22);
}
body.yel-landing .yel-lp-merci-step__icon {
	font-size: 32px;
	line-height: 1;
}
body.yel-landing .yel-lp-merci-step__time {
	color: #0F7A3A;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
}
body.yel-landing .yel-lp-merci-step h3 {
	font-size: 17px;
	color: #093D1D;
	font-weight: 700;
	margin: 4px 0;
	letter-spacing: -0.01em;
}
body.yel-landing .yel-lp-merci-step p:last-child {
	color: #5C6B61;
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

body.yel-landing .yel-lp-merci__cta-card {
	background: linear-gradient(135deg, #0F7A3A 0%, #093D1D 100%);
	color: #fff;
	border-radius: 22px;
	padding: clamp(28px, 4vw, 44px);
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 32px;
	align-items: center;
	margin-bottom: 48px;
	position: relative;
	overflow: hidden;
}
body.yel-landing .yel-lp-merci__cta-card::after {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(63, 208, 113, 0.25), transparent 70%);
	pointer-events: none;
}
body.yel-landing .yel-lp-merci__cta-text { position: relative; z-index: 1; }
body.yel-landing .yel-lp-merci__cta-text h2 {
	font-size: clamp(22px, 3vw, 28px);
	color: #fff;
	margin: 0 0 8px;
	font-weight: 800;
	letter-spacing: -0.02em;
}
body.yel-landing .yel-lp-merci__cta-text p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}
body.yel-landing .yel-lp-merci__cta-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	z-index: 1;
}
body.yel-landing .yel-lp-merci__cta-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 24px;
	background: #3FD071;
	color: #093D1D;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none;
	font-size: 15px;
	transition: transform .15s, box-shadow .15s;
	box-shadow: 0 8px 22px -8px rgba(63, 208, 113, 0.55);
}
body.yel-landing .yel-lp-merci__cta-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px -8px rgba(63, 208, 113, 0.7);
}
body.yel-landing .yel-lp-merci__cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 14px 24px;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	font-size: 15px;
	transition: all .15s;
}
body.yel-landing .yel-lp-merci__cta-secondary:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.5);
}

body.yel-landing .yel-lp-merci__reassure {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 32px;
}
body.yel-landing .yel-lp-merci-tile {
	background: #fff;
	border: 1px solid #EDF5F0;
	border-radius: 14px;
	padding: 20px;
	text-align: center;
}
body.yel-landing .yel-lp-merci-tile strong {
	display: block;
	font-size: 22px;
	color: #0F7A3A;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-bottom: 4px;
}
body.yel-landing .yel-lp-merci-tile span {
	display: block;
	color: #5C6B61;
	font-size: 13px;
	line-height: 1.45;
}

body.yel-landing .yel-lp-merci__back {
	text-align: center;
	margin: 0;
}
body.yel-landing .yel-lp-merci__back a {
	color: #5C6B61;
	font-size: 14px;
	text-decoration: none;
	font-weight: 600;
	transition: color .15s;
}
body.yel-landing .yel-lp-merci__back a:hover { color: #0F7A3A; }

/* ======================================================================
   MOBILE
   ====================================================================== */
@media (max-width: 640px) {
	body.yel-landing .yel-lp-sim-tiles { grid-template-columns: 1fr; }
	body.yel-landing .yel-lp-sim-row { grid-template-columns: 1fr; }
	body.yel-landing .yel-lp-upload__field-grid { grid-template-columns: 1fr; }
	body.yel-landing .yel-lp-merci__steps { grid-template-columns: 1fr; }
	body.yel-landing .yel-lp-merci__cta-card { grid-template-columns: 1fr; }
	body.yel-landing .yel-lp-merci__reassure { grid-template-columns: 1fr; }
}
