/* ==========================================================================
   JCF SEO Landing Pages — Styles CTA & intro
   Cohérent avec le design system Encre & Ligne
   ========================================================================== */

.jcf-seo-landing {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px 60px;
}

/* ── Intro SEO ── */
.jcf-seo-intro {
	font-family: var(--jdw-font-body, 'Inter', sans-serif);
	font-size: 16px;
	line-height: 1.8;
	color: var(--jdw-text, #4a4a4a);
	margin-bottom: 40px;
	padding: 28px 28px 28px 26px;
	background: var(--jdw-card-bg, #fff);
	border: 1px solid var(--jdw-border, #e5e5e5);
	border-left: 3px solid var(--jdw-accent, #f06937);
	border-radius: var(--jdw-radius, 10px);
	box-shadow: var(--jdw-shadow, 0 1px 4px rgba(0, 0, 0, 0.06));
}

.jcf-seo-intro strong {
	color: var(--jdw-primary, #1e2a3a);
}

/* ── CTA "Inscrivez-moi" ── */
.jcf-seo-cta {
	margin-top: 48px;
	scroll-margin-top: 100px;
}

.jcf-seo-cta-inner {
	background: var(--jdw-primary, #1e2a3a);
	border-radius: var(--jdw-radius-lg, 14px);
	padding: 48px 44px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(30, 42, 58, 0.18);
}

.jcf-seo-cta-inner::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.03) 100%);
	pointer-events: none;
}

.jcf-seo-cta-inner::after {
	content: '';
	position: absolute;
	top: 20px;
	bottom: 20px;
	left: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--jdw-accent, #f06937), var(--jdw-accent-2, #0fa899));
	border-radius: 0 3px 3px 0;
}

.jcf-seo-cta-inner h2 {
	font-family: var(--jdw-font-heading, 'Poppins', sans-serif);
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 14px 0;
	color: #fff;
	position: relative;
	z-index: 1;
}

.jcf-seo-cta-inner > p {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 28px 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.jcf-seo-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.jcf-seo-btn-primary {
	display: inline-block;
	padding: 14px 32px;
	background: linear-gradient(135deg, var(--jdw-accent, #f06937), #f09837);
	color: #fff !important;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none !important;
	transition: all 0.25s ease;
	box-shadow: 0 4px 16px rgba(240, 105, 55, 0.35);
}

.jcf-seo-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(240, 105, 55, 0.5);
}

.jcf-seo-btn-secondary {
	display: inline-block;
	padding: 14px 32px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none !important;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: all 0.25s ease;
}

.jcf-seo-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
}

.jcf-seo-cta-reassurance {
	font-size: 13px !important;
	color: rgba(255, 255, 255, 0.5) !important;
	margin: 0 !important;
	letter-spacing: 0.02em;
	position: relative;
	z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.jcf-seo-cta-inner {
		padding: 32px 24px 32px 28px;
	}

	.jcf-seo-cta-inner h2 {
		font-size: 22px;
	}

	.jcf-seo-cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.jcf-seo-btn-primary,
	.jcf-seo-btn-secondary {
		width: 100%;
		max-width: 320px;
		text-align: center;
	}

	.jcf-seo-intro {
		padding: 20px 20px 20px 18px;
	}
}

@media (max-width: 479px) {
	.jcf-seo-cta-inner {
		padding: 24px 20px 24px 24px;
	}

	.jcf-seo-cta-inner h2 {
		font-size: 20px;
	}
}
