.tfm-devis {
	background: #0f2320;
	color: #f4f7f6;
	padding: clamp(56px, 9vw, 100px) 20px clamp(40px, 6vw, 56px);
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tfm-devis__inner {
	max-width: 1140px;
	margin: 0 auto;
}

.tfm-devis__title {
	margin: 0;
	text-align: center;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
}

.tfm-devis__subtitle {
	margin: 18px auto 0;
	max-width: 640px;
	text-align: center;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(244, 247, 246, 0.78);
}

.tfm-devis__notice {
	margin: 20px auto 0;
	max-width: 560px;
	padding: 12px 16px;
	border-radius: 8px;
	text-align: center;
	font-size: 14px;
}

.tfm-devis__notice--ok {
	background: rgba(43, 143, 122, 0.25);
	color: #b8ebe0;
	border: 1px solid rgba(43, 143, 122, 0.45);
}

.tfm-devis__notice--err {
	background: rgba(180, 60, 50, 0.2);
	color: #f5c4c0;
	border: 1px solid rgba(180, 60, 50, 0.35);
}

.tfm-devis__cols {
	margin-top: clamp(40px, 6vw, 64px);
	display: grid;
	grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 56px);
	align-items: start;
}

.tfm-devis__aside {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.tfm-devis__info {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.tfm-devis__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(34, 99, 84, 0.55);
	color: #5bc4a6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tfm-devis__label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7eb8aa;
	margin-bottom: 6px;
}

.tfm-devis__value {
	margin: 0;
	font-size: 17px;
	color: #fff;
	line-height: 1.35;
}

.tfm-devis__value a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.tfm-devis__value a:hover {
	border-bottom-color: rgba(255, 255, 255, 0.6);
}

.tfm-devis__form-wrap {
	min-width: 0;
}

.tfm-devis__form {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tfm-devis__row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

@media (max-width: 560px) {
	.tfm-devis__row--half {
		grid-template-columns: 1fr;
	}
}

.tfm-devis__field input,
.tfm-devis__field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: rgba(18, 48, 42, 0.85);
	color: #f4f7f6;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tfm-devis__field input::placeholder,
.tfm-devis__field textarea::placeholder {
	color: rgba(244, 247, 246, 0.45);
}

.tfm-devis__field input:focus,
.tfm-devis__field textarea:focus {
	outline: none;
	border-color: rgba(91, 196, 166, 0.45);
	background: rgba(22, 58, 50, 0.95);
}

.tfm-devis__field textarea {
	resize: vertical;
	min-height: 140px;
}

.tfm-devis__submit-wrap {
	margin-top: 6px;
}

.tfm-devis__submit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border: none;
	border-radius: 10px;
	background: #1f7e68;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.tfm-devis__submit:hover {
	background: #176b58;
}

.tfm-devis__submit:active {
	transform: translateY(1px);
}

.tfm-devis__footer {
	margin-top: clamp(48px, 8vw, 72px);
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.tfm-devis__brand {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
}

.tfm-devis__brand-a {
	font-family: inherit;
	font-weight: 600;
	color: #7eb8aa;
	margin-right: 6px;
}

.tfm-devis__brand-b {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 700;
	color: #fff;
}

.tfm-devis__copy {
	margin: 0;
	font-size: 13px;
	color: rgba(244, 247, 246, 0.55);
}

@media (max-width: 900px) {
	.tfm-devis__cols {
		grid-template-columns: 1fr;
	}

	.tfm-devis__footer {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}

@media (max-width: 560px) {
	.tfm-devis {
		padding-left: 14px;
		padding-right: 14px;
	}
}
