.page-plateforme .hero .btn{
	margin-top: 30px;
}
.viz {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.viz__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	max-height: 400px;
}
.viz__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.viz__list li {
	position: relative;
	padding: 0 0 18px 26px;
	margin-bottom: 18px;
	line-height: 1.6;
	color: var(--navy);
	border-bottom: 1px solid var(--navy);
}
.viz__list li strong{
	color: var(--orange);
}
.viz__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--orange);
}
.viz__list li:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}
.demoform {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: stretch;
}
.demoform__msg {
	grid-column: 2;
	grid-row: 3 / span 3;
	display: flex;
}
.demoform input, .demoform textarea {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid transparent;
	background: #fff;
	color: var(--navy);
	font-family: inherit;
	font-size: 0.95rem;
}
.demoform__msg .wpcf7-form-control-wrap, .demoform__msg textarea {
	width: 100%;
	height: 100%;
}
.demoform textarea {
	min-height: 180px;
	resize: vertical;
}
.demoform input:focus, .demoform textarea:focus {
	outline: none;
	border-color: var(--orange);
}
.demoform input::placeholder, .demoform textarea::placeholder {
	color: rgba(13, 27, 46, 0.45);
}
.demoform__note {
	margin: 0;
	font-size: 0.75rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.55);
}
.demoform__submit .wpcf7-submit {
	width: auto;
	padding: 15px 26px;
	border: none;
	background: var(--orange);
	color: #fff;
	font-family: inherit;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.demoform__submit .wpcf7-submit:hover {
	background: #e0512c;
}
.demoform .wpcf7-not-valid-tip {
	font-size: 0.72rem;
	color: #ffd9cf;
}
.page-service .hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}
.page-recyclage .hero__media {
	transform: scaleX(-1);
}
.hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--orange);
	margin: 0 0 16px;
}
.page-service .section__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--orange);
	margin: 0 0 12px;
}
.cta__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	font-weight: 700;
	margin: 0 0 14px;
	opacity: 0.8;
}
.feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 50px;
}
.feature-block {
	background: #fff;
	border: 1px solid rgba(13, 27, 46, 0.12);
	padding: 30px 32px;
}
.feature-block__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--orange);
	margin: 0 0 10px;
}
.feature-block__title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 14px;
	line-height: 1.25;
}
.feature-block__text {
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(13, 27, 46, 0.8);
	margin: 0;
}
.reasons {
	list-style: none;
	margin: 50px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px 56px;
}
.reason {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.reason__num {
	flex: 0 0 auto;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}
.reason__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
}
.reason__text {
	font-size: 0.92rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
}
.full-photo-band {
	width: 100%;
}
.full-photo-band__media {
	width: 100%;
	height: clamp(320px, 40vw, 520px);
	background-size: cover;
	background-position: center;
}

.page-accompagnement .hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}
.page-accompagnement .section__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--orange);
	margin: 0 0 12px;
}
.page-accompagnement .section--dark .section__intro {
	text-align: left;
	max-width: 920px;
	margin-top: 18px;
}

@media screen and (max-width: 1080px) {
	.demoform {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.demoform__msg {
		grid-column: auto;
		grid-row: auto;
	}
	.viz {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.espace {
		grid-template-columns: 1fr 1fr;
	}
	.espace-feature {
		grid-column: 1 / -1;
	}
	.feature-card__media img, .viz__media img {
		height: 400px;
	}
	.page-service .hero__actions {
		gap: 12px;
	}
	.feature-grid, .reasons {
		grid-template-columns: 1fr;
	}
	.page-accompagnement .hero__actions {
		gap: 12px;
	}
}

@media screen and (max-width: 600px) {
	.espace, .espace-feature {
		grid-template-columns: 1fr;
	}
	.page-amenagement .media-row:first-child .media-row__media img, .page-amenagement .why-experts__media img {
		object-position: right;
	}
	.page-manutention .cta__media {
		background-position: right;
	}
}