/************************************/
/***   36. Free Audit Page css    ***/
/************************************/

/*
 * Aucune couleur littérale : tout passe par la palette administrable, sinon un
 * changement de charte laisserait cette page en arrière. Les gravités
 * réutilisent les rôles sémantiques existants (danger / warning / success)
 * plutôt que d'introduire trois teintes de plus.
 */

.page-free-audit {
	padding: 100px 0;
}

.free-audit-panel {
	background-color: var(--background-accent-color);
	border-radius: 20px;
	padding: 40px;
	margin-top: 30px;
}

.free-audit-lead {
	margin-bottom: 25px;
}


.page-free-audit .link{
	color: var(--accent-color);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}
.page-free-audit .link:hover{
	padding-bottom: 2px;
	color: color-mix(in var(--accent-color), var(--white-color), 30%);
}

/* --- Étape 1 : l'adresse ------------------------------------------------ */

/*
 * Le pot de miel doit rester dans le flux et focalisable par un robot, mais
 * invisible et inatteignable pour un humain : `display: none` suffirait à
 * certains robots pour l'ignorer.
 */
.free-audit-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* --- Étape 2 : les constats --------------------------------------------- */

.free-audit-host {
	font-size: 14px;
	text-transform: lowercase;
	letter-spacing: 0.05em;
	margin-bottom: 5px;
	color: var(--text-color);
}

.free-audit-verdict {
	margin-bottom: 30px;
}

.free-audit-findings {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.free-audit-finding {
	background-color: var(--white-color);
	border-left: 4px solid var(--divider-color);
	border-radius: 10px;
	padding: 20px 25px;
	margin-bottom: 15px;
}

.free-audit-finding--critical {
	border-left-color: var(--danger-color);
}

.free-audit-finding--warning {
	border-left-color: var(--warning-color);
}

.free-audit-finding--ok {
	border-left-color: var(--success-color);
}

.free-audit-finding-label {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-color);
	margin-bottom: 8px;
}

.free-audit-finding-headline {
	font-size: 18px;
	line-height: 1.5;
	color: var(--heading-color);
	margin: 0;
}

/* --- Ce qui reste à livrer ---------------------------------------------- */

.free-audit-withheld {
	border: 1px dashed var(--divider-color);
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 30px;
}

.free-audit-withheld-title {
	font-weight: 600;
	color: var(--heading-color);
	margin-bottom: 12px;
}

.free-audit-withheld-list {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
}

.free-audit-withheld-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 6px;
	color: var(--text-color);
}

/* Un cadenas plutôt qu'une puce : le constat existe, il n'est pas encore ouvert. */
.free-audit-withheld-list li::before {
	content: '\f023';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-size: 12px;
}

.free-audit-withheld-hint {
	margin: 0;
	font-style: italic;
}

/* --- Le couple courriel / WhatsApp -------------------------------------- */

.free-audit-phone {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.free-audit-phone-country {
	flex: 0 0 190px;
	max-width: 100%;
}

.free-audit-phone input {
	flex: 1 1 180px;
}

.free-audit-choice-hint {
	font-size: 14px;
	color: var(--text-color);
	margin-bottom: 20px;
}

.free-audit-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	cursor: pointer;
}

.free-audit-consent input {
	margin-top: 4px;
	flex: 0 0 auto;
	width: 18px;
  height: 18px;
  accent-color: var(--accent-color);
}
/* --- Étape 3 : la confirmation ------------------------------------------ */

.free-audit-done-lead {
	margin-bottom: 25px;
}

.free-audit-restart {
	margin: 30px 0 0;
}

.free-audit-restart-link {
	background: none;
	border: 0;
	padding: 0;
	color: var(--accent-color);
	text-decoration: underline;
	cursor: pointer;
}

.free-audit-scope {
	margin-top: 25px;
	font-size: 14px;
	text-align: center;
	color: var(--text-color);
}

/* --- Responsive --------------------------------------------------------- */

@media only screen and (max-width: 767px) {
	.page-free-audit {
		padding: 60px 0;
	}

	.free-audit-panel {
		padding: 25px 20px;
	}

	.free-audit-phone-country {
		flex: 1 1 100%;
	}
}
