:root {
	--accent: #af4261;
	--orange: #f2a65a;
	--fond: #fff7f0;
	--texte: #63313a;
}
html, body {
	background: var(--fond);
	color: var(--texte);
	font-family: 'Montserrat', Arial, sans-serif;
	margin: 0;
	padding: 0;
	min-height: 100vh;
}
.container {
	max-width: 700px;
	margin: 0 auto;
	padding: 24px 12px 0 12px;
}
h1, h2, h3 {
	margin: 0;
	font-weight: 700;
	color: var(--accent);
}
h1 {
	font-size: 2.1em;
	text-align: center;
	margin-bottom: 1em;
	line-height: 1.2;
}
.hero-subtitle {
	text-align: center;
	font-size: 1.19em;
	color: #86576c;
	margin-bottom: 12px;
	font-weight: 550;
	margin-bottom: 30px;
}
.hero-transmission {
	text-align: center;
	font-size: 1.09em;
	color: #63313a;
	margin: 30px;
	font-weight: 500;
}
.hero-illu {
	display: flex;
	justify-content: center;
	margin-bottom: 28px;
}

.cta-logo-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-logo {
  height: 130px;
  max-width: 130px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.cta-texte {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  text-align: center;
}

.cta-titre {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0;
  line-height: 1.1;
  width: 100%;
  text-align: center;
}

.cta-slogan {
  font-size: 1.15em;
  color: #63313a;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  width: 100%;
}

.illus {
    display: block;           /* Transforme l'image en bloc pour permettre le centrage */
    max-width: 100%;          /* Empêche l'image de dépasser la largeur du conteneur */
    height: auto;             /* Maintient les proportions originales */
    margin: 0 auto;           /* Centre horizontalement l'image */
    max-height: 5em;        /* Limite la hauteur maximale à 400px (ajuste selon besoin) */
    object-fit: contain;      /* Garantit que l'image ne sera jamais déformée */
}

/* Responsive : pile logo + texte en colonne */
@media (max-width: 600px) {
  .cta-logo-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .cta-texte {
    align-items: center;
    text-align: center;
  }
}

.cta-btn {
	display: block;
	background: linear-gradient(90deg, var(--accent) 60%, var(--orange) 100%);
	color: #fff;
	border: none;
	font-size: 1.1em;
	font-weight: 700;
	border-radius: 12px;
	padding: 15px 0;
	width: 85%;
	max-width: 350px;
	margin: 0 auto 36px auto;
	box-shadow: 0 4px 16px #af426120;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: background 0.2s;
}
.cta-btn:hover { background: linear-gradient(90deg, var(--orange), var(--accent)); }

/* Bénéfices */
.benefits {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}
.benefit {
	flex: 1 1 185px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 10px #af426110;
	padding: 22px 12px 16px 12px;
	text-align: center;
	min-width: 170px;
	margin: 4px 0;
}
.benefit svg {
	margin-bottom: 10px;
	width: 36px;
	height: 36px;
	color: var(--orange);
	display: inline-block;
}
.benefit-title {
	font-size: 1.04em;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 7px;
}
.benefit-desc {
	color: #86576c;
	font-size: 0.99em;
}

/* Encarts secondaires */
.secondary {
	background: #fff4;
	border-radius: 11px;
	margin: 0 auto 36px auto;
	padding: 13px 14px;
	max-width: 400px;
	text-align: center;
	color: #86576c;
	font-size: 0.99em;
	font-style: italic;
	box-shadow: 0 1px 6px #af426105;
}

/* Transmission douce */
.transmission, .finvie-section {
	background: #fff2;
	border-radius: 14px;
	box-shadow: 0 1px 5px #af426109;
	padding: 28px 14px 24px 14px;
	margin: 44px 0 40px 0;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	justify-content: center;
}
.transmission-illu, .finvie-illu {
	flex: 0 0 65px;
	display: flex;
	align-items: center;
}
.transmission-text, .finvie-text {
	flex: 1 1 200px;
	color: #63313a;
	font-size: 1.14em;
	font-weight: 500;
	line-height: 1.6;
	min-width: 170px;
}
.transmission-feature {
	font-size: 0.96em;
	color: var(--accent);
	margin-top: 10px;
	font-weight: 400;
}
.finvie-title {
	font-weight: 700;
	color: var(--accent);
	font-size: 1.11em;
	margin-bottom: 6px;
}
.finvie-text {
	font-size: 1.08em;
}
/* Formulaire */
.form-section {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px #af426110;
	max-width: 420px;
	margin: 0 auto 38px auto;
	padding: 28px 18px 20px 18px;
}
.form-title {
	font-weight: 700;
	font-size: 1.11em;
	margin-bottom: 14px;
	color: var(--accent);
	text-align: center;
}
form label {
	display: block;
	margin-bottom: 7px;
	font-size: 1em;
	color: var(--texte);
	font-weight: 500;
}
form input[type="text"],
form input[type="email"] {
	width: 100%;
	padding: 11px;
	border-radius: 8px;
	border: 1.5px solid var(--orange);
	margin-bottom: 17px;
	font-size: 1em;
	background: #fff7f0;
}
form button {
	width: 100%;
	background: linear-gradient(90deg, var(--accent), var(--orange));
	color: #fff;
	padding: 14px 0;
	border: none;
	border-radius: 8px;
	font-size: 1.08em;
	font-weight: bold;
	cursor: pointer;
	margin-top: 4px;
	transition: background 0.2s;
	box-shadow: 0 2px 8px #af426111;
}
form button:hover { background: linear-gradient(90deg, var(--orange), var(--accent)); }
.form-desc {
	font-size: 0.98em;
	text-align: center;
	margin-bottom: 14px;
	color: #86576c;
}

.form-success-message {
  margin-top: 20px;
  background-color: #fff7f0;
  border-left: 5px solid #af4261;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 8px;
}

#form-success-firstname {
	font-weight: bold;
}

.capsule-btn {
  background: linear-gradient(135deg, #f2a65a, #af4261);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
}

.capsule-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(175, 66, 97, 0.3);
}

.capsule-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* FAQ */
.faq {
	margin: 38px 0 28px 0;
	background: #fff4;
	border-radius: 12px;
	padding: 25px 16px;
	box-shadow: 0 2px 8px #af426106;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.faq-title {
	font-weight: 700;
	color: var(--accent);
	font-size: 1.09em;
	margin-bottom: 18px;
	text-align: center;
}
.faq-item {
	margin-bottom: 18px;
}
.faq-q {
	font-weight: bold;
	color: var(--texte);
	font-size: 1em;
}
.faq-a {
	color: #86576c;
	margin-top: 2px;
	font-size: 0.98em;
	line-height: 1.5;
}

/* Footer */
footer {
	text-align: center;
	padding: 24px 0 14px 0;
	color: var(--texte);
	font-size: 1em;
	background: none;
	margin-top: auto;
	border-top: 1px solid #e5c6ca;
}
.footer-legend {
	margin-top: 10px;
	color: var(--accent);
	font-size: 0.98em;
	font-style: italic;
	letter-spacing: 0.01em;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-links a {
  background: #fff7f0;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.95em;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px #af426120;
}

.footer-links a:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px #af426130;
  transform: scale(1.05);
}

.footer-cta-link {
  background: linear-gradient(90deg, var(--accent), var(--orange)) !important;
  color: #fff;
  border: none;
  font-weight: bold;
  box-shadow: 0 3px 10px #af426130;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-cta-link:hover {
  background: linear-gradient(90deg, var(--orange), var(--accent));
  transform: scale(1.05);
  box-shadow: 0 5px 16px #af426130;
  color: #fff;
}

.footer-links a.footer-cta-link {
  background: linear-gradient(90deg, var(--accent), var(--orange));
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 10px #af426130;
  transition: all 0.2s ease;
}

.footer-links a.footer-cta-link:hover {
  background: linear-gradient(90deg, var(--orange), var(--accent));
  transform: scale(1.06);
  color: #fff;
}

.checkbox-rgpd {
	margin: 20px 0;
	font-size: 0.95em;
	color: #63313a;
}
.checkbox-rgpd input {
	margin-right: 8px;
}
.footer-legal {
	font-size: 0.85em;
	color: #86576c;
	text-align: center;
	padding: 20px 10px;
	margin-top: 40px;
	border-top: 1px solid #dfc6c8;
}

.section-fin-vie {
	background: #fff7f0;
	padding: 30px 20px;
	margin: 40px auto;
	border-radius: 16px;
	box-shadow: 0 2px 10px #af426110;
	text-align: center;
}
.section-fin-vie h2 {
	font-size: 1.3em;
	margin-bottom: 12px;
}
.section-fin-vie p {
	color: #63313a;
	font-size: 1.05em;
	line-height: 1.6;
}
.testimonial {
	font-style: italic;
	font-size: 1em;
	color: #63313a;
	margin: 30px 0;
	text-align: center;
	background: #fceeee;
	border-left: 4px solid var(--accent);
	padding: 15px 20px;
	border-radius: 12px;
}
.social-proof {
	text-align: center;
	font-size: 0.95em;
	color: #86576c;
	margin-bottom: 24px;
}
.footer-cta {
	text-align: center;
	/* margin-top: 40px;*/
	/* padding-top: 20px;*/
}
.footer-cta a {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: bold;
	margin-top: 12px;
}
	@media (max-width: 700px) {
		.container { padding: 11px 4px 0 4px; }
		.benefits { flex-direction: column; gap: 10px; }
		.transmission, .finvie-section { flex-direction: column; gap: 12px; padding: 18px 5px 12px 5px; }
		.transmission-illu, .finvie-illu { justify-content: center; }
		.form-section { padding: 18px 7px 13px 7px; }
		.faq { padding: 15px 4px; }
	}
