/* SECTION TARIFS */
.pricing-section {
	width: 100%;
	background: #ffffff;
	padding: 70px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	text-align: center;
}

.pricing-wrapper {
	max-width: 900px;
	margin: auto;
}

.pricing-section h2 {
	font-size: 26px;
	font-weight: 700;
	color: #2b2628;
	margin-bottom: 10px;
}

.pricing-subtitle {
	font-size: 16px;
	color: #2b2628;
	opacity: 0.9;
	margin-bottom: 35px;
}

/* CALCULATEUR */
.pricing-calculator {
	background: #fff4f4;
	border: 1px solid #ffd2d2;
	padding: 25px;
	border-radius: 12px;
	margin-bottom: 35px;
}

.pricing-calculator label {
	font-size: 15px;
	font-weight: 600;
	display: block;
	margin-bottom: 10px;
}

.pricing-calculator input {
	width: 140px;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	margin-bottom: 15px;
}

.pricing-calculator button {
	padding: 12px 22px;
	background: #e9302a;
	border: none;
	border-radius: 8px;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s;
}

.pricing-calculator button:hover {
	opacity: 0.9;
}

.calc-result {
	margin-top: 15px;
	font-size: 16px;
	font-weight: 600;
	color: #2b2628;
}

/* BOX UNIQUE */
.single-box {
	background: linear-gradient(180deg, #ffffff 0%, #ffeaea 100%);
	padding: 32px 25px;
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
}

.single-box h3 {
	font-size: 20px;
	color: #e9302a;
	font-weight: 700;
	margin-bottom: 20px;
}

/* TIERS */
.pricing-tiers {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tier {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	background: #fff;
	padding: 12px 18px;
	border-radius: 8px;
	border: 1px solid #f1caca;
}

.tier strong {
	color: #e9302a;
	font-weight: 700;
}

/* BUTTON */
.pricing-btn {
	display: inline-block;
	padding: 13px 28px;
	border: 2px solid #e9302a;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	color: #e9302a;
	text-decoration: none;
	transition: 0.2s;
}

.pricing-btn:hover {
	background: #e9302a;
	color: #fff;
}

/* RESPONSIVE */
@media ( max-width : 600px) {
	.pricing-section h2 {
		font-size: 22px;
	}
	.pricing-subtitle {
		font-size: 14px;
	}
	.tier {
		font-size: 14px;
	}
}