/* BP Comment Utiliser — Final CTA widget styles
 *
 * Width architecture (HARD CONSTRAINT):
 *   .bp-cu-fcta                  transparent outer section, sits
 *                                on the page cream background
 *     .bp-cu-fcta__box           ONE single 1140px centered card
 *                                (max-width 1140px, width 100%,
 *                                margin-inline: auto, rounded
 *                                corners). The whole card uses
 *                                ONE singular background image
 *                                covering the entire box.
 *       .bp-cu-fcta__overlay     absolute; cream-to-clear L→R fade
 *       .bp-cu-fcta__content     left-side text block
 *         .bp-cu-fcta__eyebrow
 *         .bp-cu-fcta__title
 *         .bp-cu-fcta__divider   small olive underline
 *         .bp-cu-fcta__paragraph
 *         .bp-cu-fcta__benefits  3 compact items (horizontal on
 *                                desktop, stacked on mobile)
 *       .bp-cu-fcta__panel       dark-green rounded lower panel
 *                                (child of the SAME card)
 *         .bp-cu-fcta__panel-icon
 *         .bp-cu-fcta__panel-text
 *         .bp-cu-fcta__panel-buttons (primary + secondary)
 *         .bp-cu-fcta__trust     3 cream-on-green items
 *
 * The CTA card is NOT full viewport width. The page background
 * remains visible on BOTH sides of the card. The whole box
 * feels like one cohesive premium block (NOT a left panel +
 * separate right image). The bottom dark-green panel belongs
 * to the same composition.
 *
 * Approved palette ONLY:
 *   #374F37  deep green
 *   #B8B25A  olive / gold
 *   #FBF6EC  cream
 *   #F4ECDC  cream tint
 *   #FFFFFF  white
 *   + existing neutrals (#1F2A1F, #5C6A5C, #E4DCCB).
 *
 * All visual rules use logical CSS properties (padding-inline,
 * inset-inline, border-inline-start, text-align start/end) so
 * the same stylesheet covers /ar/ without a separate RTL file.
 */

/* =========================================================
 * ROOT
 * ========================================================= */
.bp-cu-fcta {
	--bp-cu-fcta-green:        #374F37;
	--bp-cu-fcta-olive:        #B8B25A;
	--bp-cu-fcta-cream:        #FBF6EC;
	--bp-cu-fcta-cream-tint:   #F4ECDC;
	--bp-cu-fcta-text:         #1F2A1F;
	--bp-cu-fcta-text-muted:   #5C6A5C;
	--bp-cu-fcta-border:       #E4DCCB;
	--bp-cu-fcta-white:        #FFFFFF;

	--bp-cu-fcta-overlay-left:  rgba(244, 236, 220, 0.96);
	--bp-cu-fcta-overlay-mid:   rgba(244, 236, 220, 0.55);
	--bp-cu-fcta-overlay-right: rgba(244, 236, 220, 0);

	--bp-cu-fcta-box-max:       1140px;
	--bp-cu-fcta-box-radius:    28px;
	--bp-cu-fcta-box-padding:   56px;

	--bp-cu-fcta-panel-radius:  22px;

	--bp-cu-fcta-font-body:    var(--bp-font-body,    'Manrope', system-ui, sans-serif);
	--bp-cu-fcta-font-display: var(--bp-font-display, 'DM Serif Display', Georgia, serif);

	position: relative;
	isolation: isolate;
	overflow: visible;
	box-sizing: border-box;
	inline-size: 100%;
	max-inline-size: 100%;
	margin: 0;
	padding: 72px 24px 80px;
	background-color: var(--bp-cu-fcta-cream);
	color: var(--bp-cu-fcta-text);
	font-family: var(--bp-cu-fcta-font-body);
}

.bp-cu-fcta *,
.bp-cu-fcta *::before,
.bp-cu-fcta *::after {
	box-sizing: border-box;
}

/* Widget outer spacing — keeps the card centered. */
.elementor .elementor-widget.elementor-widget-bp-comment-utiliser-final-cta,
.elementor-widget.elementor-widget-bp-comment-utiliser-final-cta {
	position: relative;
	z-index: 1;
}

.elementor .elementor-widget.elementor-widget-bp-comment-utiliser-final-cta {
	--container-default-padding-top:    0px;
	--container-default-padding-bottom: 0px;
}

/* =========================================================
 * BOX — the single centered CTA card
 * ONE singular background image covers the whole card. The
 * readability overlay sits above it, the content sits above
 * the overlay. The bottom dark-green panel is a child of the
 * same box (no breakout, no separate section).
 * ========================================================= */
.bp-cu-fcta__box {
	position: relative;
	isolation: isolate;
	inline-size: 100%;
	max-inline-size: var(--bp-cu-fcta-box-max);
	margin-inline: auto;
	background-color: var(--bp-cu-fcta-cream);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: var(--bp-cu-fcta-box-radius);
	overflow: hidden;
	padding: var(--bp-cu-fcta-box-padding);
	display: flex;
	flex-direction: column;
	gap: 32px;
	min-block-size: 480px;
	box-shadow: 0 18px 44px -22px rgba(31, 42, 31, 0.22);
}

/* The single L→R cream readability overlay. In RTL the
 * logical properties flip the gradient automatically. */
.bp-cu-fcta__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to right,
		var(--bp-cu-fcta-overlay-left)  0%,
		var(--bp-cu-fcta-overlay-left)  32%,
		var(--bp-cu-fcta-overlay-mid)   58%,
		var(--bp-cu-fcta-overlay-right) 88%,
		var(--bp-cu-fcta-overlay-right) 100%
	);
}

/* =========================================================
 * CONTENT — left text block above the panel
 * ========================================================= */
.bp-cu-fcta__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	max-inline-size: 560px;
	min-inline-size: 0;
}

.bp-cu-fcta__eyebrow {
	margin: 0;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: var(--bp-cu-fcta-green);
	font-family: var(--bp-cu-fcta-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1.3;
}

/* Subtle circular treatment for the eyebrow mark. The
 * Elementor icon (the actual chosen icon) is the primary
 * mark; the static leaf SVG is a backup, hidden by default. */
.bp-cu-fcta__eyebrow-mark {
	display: none;
	inline-size: 26px;
	block-size: 26px;
	border-radius: 50%;
	background-color: rgba(55, 79, 55, 0.08);
	color: var(--bp-cu-fcta-green);
	align-items: center;
	justify-content: center;
}

.bp-cu-fcta__eyebrow-mark svg {
	inline-size: 14px;
	block-size: 14px;
}

.bp-cu-fcta__eyebrow-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 32px;
	block-size: 32px;
	border-radius: 50%;
	background-color: rgba(55, 79, 55, 0.10);
	color: var(--bp-cu-fcta-green);
	flex: 0 0 auto;
}

.bp-cu-fcta__eyebrow-icon,
.bp-cu-fcta__eyebrow-icon i,
.bp-cu-fcta__eyebrow-icon svg,
.bp-cu-fcta__eyebrow-icon svg * {
	color: var(--bp-cu-fcta-green);
	fill: var(--bp-cu-fcta-green);
	stroke: var(--bp-cu-fcta-green);
}

.bp-cu-fcta__eyebrow-icon i,
.bp-cu-fcta__eyebrow-icon svg {
	inline-size: 16px;
	block-size: 16px;
	fill: var(--bp-cu-fcta-green);
	stroke: var(--bp-cu-fcta-green);
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bp-cu-fcta__eyebrow-line {
	display: inline-block;
	inline-size: 28px;
	block-size: 1px;
	background-color: var(--bp-cu-fcta-olive);
}

.bp-cu-fcta__eyebrow-text {
	display: inline-block;
}

.bp-cu-fcta__title {
	margin: 6px 0 0;
	font-family: var(--bp-cu-fcta-font-display);
	font-weight: 400;
	font-size: clamp(36px, 4.4vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.005em;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.bp-cu-fcta__title-line,
.bp-cu-fcta__title-accent {
	display: block;
}

.bp-cu-fcta__title-line {
	color: var(--bp-cu-fcta-green);
}

.bp-cu-fcta__title-accent {
	color: var(--bp-cu-fcta-olive);
}

.bp-cu-fcta__divider {
	display: block;
	inline-size: 56px;
	block-size: 2px;
	background-color: var(--bp-cu-fcta-olive);
	border-radius: 2px;
	margin-block-start: 6px;
}

.bp-cu-fcta__paragraph {
	margin: 4px 0 0;
	color: var(--bp-cu-fcta-text-muted);
	font-family: var(--bp-cu-fcta-font-body);
	font-size: 15px;
	line-height: 1.65;
	max-inline-size: 480px;
}

/* =========================================================
 * BENEFITS — 3 compact items, horizontal on desktop
 * ========================================================= */
.bp-cu-fcta__benefits {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px 22px;
	max-inline-size: 100%;
}

.bp-cu-fcta__benefit {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 4px 18px 4px 4px;
	position: relative;
	min-inline-size: 0;
}

/* Subtle vertical separator between items. */
.bp-cu-fcta__benefit:not(:last-child)::after {
	content: "";
	position: absolute;
	inset-block: 8px;
	inset-inline-end: -11px;
	inline-size: 1px;
	block-size: calc(100% - 16px);
	background-color: rgba(55, 79, 55, 0.18);
}

.bp-cu-fcta__benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 40px;
	block-size: 40px;
	border-radius: 50%;
	background-color: rgba(55, 79, 55, 0.08);
	color: var(--bp-cu-fcta-green);
	flex: 0 0 auto;
	overflow: hidden;
}

.bp-cu-fcta__benefit-icon,
.bp-cu-fcta__benefit-icon i,
.bp-cu-fcta__benefit-icon svg,
.bp-cu-fcta__benefit-icon svg * {
	color: var(--bp-cu-fcta-green);
	fill: var(--bp-cu-fcta-green);
	stroke: var(--bp-cu-fcta-green);
}

.bp-cu-fcta__benefit-icon i,
.bp-cu-fcta__benefit-icon svg,
.bp-cu-fcta__benefit-icon img {
	inline-size: 18px;
	block-size: 18px;
	object-fit: contain;
	fill: var(--bp-cu-fcta-green);
	stroke: var(--bp-cu-fcta-green);
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bp-cu-fcta__benefit-text {
	color: var(--bp-cu-fcta-text);
	font-family: var(--bp-cu-fcta-font-body);
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.35;
}

/* =========================================================
 * PANEL — dark-green rounded lower panel (child of the box)
 * ========================================================= */
.bp-cu-fcta__panel {
	position: relative;
	z-index: 2;
	background-color: var(--bp-cu-fcta-green);
	color: var(--bp-cu-fcta-cream);
	border-radius: var(--bp-cu-fcta-panel-radius);
	padding: 28px 32px 22px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-areas:
		"icon    text     buttons"
		"trust   trust    trust";
	gap: 18px 24px;
	align-items: center;
	margin-block-start: auto;
	box-shadow: 0 14px 30px -20px rgba(31, 42, 31, 0.45);
}

.bp-cu-fcta__panel-icon {
	grid-area: icon;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 64px;
	block-size: 64px;
	border-radius: 50%;
	background-color: rgba(251, 246, 236, 0.10);
	color: var(--bp-cu-fcta-cream);
	flex: 0 0 auto;
}

.bp-cu-fcta__panel-icon,
.bp-cu-fcta__panel-icon i,
.bp-cu-fcta__panel-icon svg,
.bp-cu-fcta__panel-icon svg * {
	color: var(--bp-cu-fcta-cream);
	fill: var(--bp-cu-fcta-cream);
	stroke: var(--bp-cu-fcta-cream);
}

.bp-cu-fcta__panel-icon i,
.bp-cu-fcta__panel-icon svg {
	inline-size: 28px;
	block-size: 28px;
	fill: var(--bp-cu-fcta-cream);
	stroke: var(--bp-cu-fcta-cream);
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bp-cu-fcta__panel-text {
	grid-area: text;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-inline-size: 0;
}

.bp-cu-fcta__panel-heading {
	margin: 0;
	color: var(--bp-cu-fcta-cream);
	font-family: var(--bp-cu-fcta-font-display);
	font-weight: 400;
	font-size: clamp(20px, 1.6vw, 24px);
	line-height: 1.2;
	letter-spacing: -0.005em;
}

.bp-cu-fcta__panel-supporting {
	margin: 0;
	color: rgba(251, 246, 236, 0.78);
	font-family: var(--bp-cu-fcta-font-body);
	font-size: 13.5px;
	line-height: 1.5;
}

.bp-cu-fcta__panel-buttons {
	grid-area: buttons;
	display: inline-flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
	min-inline-size: 0;
}

/* =========================================================
 * BUTTONS — primary (olive→dark green gradient, cream text)
 * + secondary (cream surface, dark green text)
 * ========================================================= */
.bp-cu-fcta__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-block-size: 48px;
	padding-inline: 18px;
	padding-block: 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--bp-cu-fcta-font-body);
	font-weight: 600;
	font-size: 13.5px;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	white-space: nowrap;
}

.bp-cu-fcta__btn:focus-visible {
	outline: 2px solid var(--bp-cu-fcta-cream);
	outline-offset: 3px;
}

.bp-cu-fcta__btn-label {
	display: inline-block;
}

.bp-cu-fcta__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 18px;
	block-size: 18px;
	color: currentColor;
	flex: 0 0 auto;
}

.bp-cu-fcta__btn-icon,
.bp-cu-fcta__btn-icon i,
.bp-cu-fcta__btn-icon svg,
.bp-cu-fcta__btn-icon svg * {
	color: currentColor;
	fill: currentColor;
	stroke: currentColor;
}

.bp-cu-fcta__btn-icon i,
.bp-cu-fcta__btn-icon svg {
	inline-size: 100%;
	block-size: 100%;
}

.bp-cu-fcta__btn-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 22px;
	block-size: 22px;
	border-radius: 50%;
	background-color: currentColor;
	color: inherit;
	flex: 0 0 auto;
	position: relative;
	isolation: isolate;
}

.bp-cu-fcta__btn-arrow svg {
	inline-size: 12px;
	block-size: 12px;
	display: block;
	color: var(--bp-cu-fcta-green);
	stroke: var(--bp-cu-fcta-green);
}

.bp-cu-fcta__btn-arrow svg * {
	stroke: var(--bp-cu-fcta-green);
}

/* Primary: olive/dark-green gradient surface, cream text/icon. */
.bp-cu-fcta__btn--primary {
	background: linear-gradient(135deg, var(--bp-cu-fcta-olive) 0%, #7E8B3E 50%, var(--bp-cu-fcta-green) 100%);
	color: var(--bp-cu-fcta-cream);
	border-color: transparent;
	box-shadow: 0 8px 18px -10px rgba(31, 42, 31, 0.55);
}

a.bp-cu-fcta__btn--primary:hover,
a.bp-cu-fcta__btn--primary:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 12px 22px -10px rgba(31, 42, 31, 0.65);
}

.bp-cu-fcta__btn--primary .bp-cu-fcta__btn-arrow {
	background-color: var(--bp-cu-fcta-cream);
}

/* Secondary: cream surface, dark green text/icon. */
.bp-cu-fcta__btn--secondary {
	background-color: var(--bp-cu-fcta-cream);
	color: var(--bp-cu-fcta-green);
	border-color: var(--bp-cu-fcta-cream);
}

a.bp-cu-fcta__btn--secondary:hover,
a.bp-cu-fcta__btn--secondary:focus-visible {
	background-color: var(--bp-cu-fcta-white);
	border-color: var(--bp-cu-fcta-white);
}

.bp-cu-fcta__btn--secondary .bp-cu-fcta__btn-arrow {
	background-color: var(--bp-cu-fcta-green);
}

.bp-cu-fcta__btn--secondary .bp-cu-fcta__btn-arrow svg,
.bp-cu-fcta__btn--secondary .bp-cu-fcta__btn-arrow svg * {
	stroke: var(--bp-cu-fcta-cream);
	color: var(--bp-cu-fcta-cream);
}

/* =========================================================
 * TRUST ROW — 3 cream-on-green items below the buttons
 * Architecture: flex row with `flex: 1 1 0` so the 3 items
 * always share the row width evenly, and CSS-only vertical
 * separators via `border-inline-start` on every item except
 * the first. The separators are drawn by the items
 * themselves, so the layout never depends on extra grid
 * tracks or DOM nodes — no chance of an item being squished
 * into a 1px column track. `border-inline-start` flips
 * automatically in RTL.
 * ========================================================= */
.bp-cu-fcta__trust {
	grid-area: trust;
	list-style: none;
	margin: 0;
	padding: 14px 0 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px 0;
	align-items: stretch;
	border-block-start: 1px solid rgba(251, 246, 236, 0.16);
	min-inline-size: 0;
}

.bp-cu-fcta__trust-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	padding: 6px 18px;
	min-inline-size: 0;
	flex: 1 1 0;
	/* Left-side vertical separator (auto-flips in RTL). */
	border-inline-start: 1px solid rgba(251, 246, 236, 0.18);
}

.bp-cu-fcta__trust-item:first-child {
	border-inline-start: 0;
}

.bp-cu-fcta__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 26px;
	block-size: 26px;
	color: var(--bp-cu-fcta-cream);
	flex: 0 0 auto;
}

.bp-cu-fcta__trust-icon,
.bp-cu-fcta__trust-icon i,
.bp-cu-fcta__trust-icon svg,
.bp-cu-fcta__trust-icon svg * {
	color: var(--bp-cu-fcta-cream);
	fill: var(--bp-cu-fcta-cream);
	stroke: var(--bp-cu-fcta-cream);
}

.bp-cu-fcta__trust-icon i,
.bp-cu-fcta__trust-icon svg {
	inline-size: 100%;
	block-size: 100%;
	fill: var(--bp-cu-fcta-cream);
	stroke: var(--bp-cu-fcta-cream);
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bp-cu-fcta__trust-text {
	color: rgba(251, 246, 236, 0.92);
	font-family: var(--bp-cu-fcta-font-body);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

/* =========================================================
 * TABLET (≤ 1024px)
 * Buttons still side-by-side. Content stays in the left
 * column. The bottom panel keeps its 3-column grid but
 * starts to tighten the column widths.
 * ========================================================= */
@media (max-width: 1024px) {
	.bp-cu-fcta { padding: 56px 20px 64px; }

	.bp-cu-fcta__box {
		padding: 40px 36px;
		border-radius: 24px;
		gap: 28px;
		min-block-size: 440px;
	}

	.bp-cu-fcta__title { font-size: clamp(32px, 4.6vw, 46px); }
	.bp-cu-fcta__paragraph { font-size: 14.5px; max-inline-size: 100%; }

	.bp-cu-fcta__benefits { gap: 6px 18px; }

	.bp-cu-fcta__panel {
		grid-template-columns: auto 1fr auto;
		padding: 24px 28px 18px;
		gap: 18px 20px;
	}

	.bp-cu-fcta__panel-icon { inline-size: 56px; block-size: 56px; }
	.bp-cu-fcta__panel-icon i,
	.bp-cu-fcta__panel-icon svg { inline-size: 24px; block-size: 24px; }

	.bp-cu-fcta__btn { min-block-size: 46px; padding-inline: 16px; font-size: 13px; }
}

/* =========================================================
 * TABLET PORTRAIT (≤ 860px)
 * Content spans the full card width. The panel moves to
 * a stacked layout: icon on top, text, then buttons.
 * ========================================================= */
@media (max-width: 860px) {
	.bp-cu-fcta { padding: 48px 18px 56px; }

	.bp-cu-fcta__box {
		padding: 36px 28px;
		border-radius: 22px;
		gap: 24px;
		min-block-size: 0;
	}

	.bp-cu-fcta__title { font-size: clamp(30px, 6.4vw, 40px); }
	.bp-cu-fcta__paragraph { font-size: 14px; }

	.bp-cu-fcta__benefits {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.bp-cu-fcta__benefit:not(:last-child)::after {
		display: none;
	}

	.bp-cu-fcta__panel {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"icon    text"
			"buttons buttons"
			"trust   trust";
		padding: 22px 22px 18px;
		gap: 16px 16px;
	}

	.bp-cu-fcta__panel-buttons {
		justify-content: flex-start;
	}

	.bp-cu-fcta__trust {
		flex-direction: column;
		gap: 10px;
		padding: 12px 0 0;
	}

	.bp-cu-fcta__trust-item {
		padding: 2px 0;
		border-inline-start: 0;
	}
}

/* =========================================================
 * MOBILE (≤ 600px)
 * Full stacking. Buttons become full-width, comfortable
 * tap targets. Outer gutters tightened to 16-18px so the
 * card fills the available inner width without touching
 * the physical phone edges.
 *
 * MOBILE WIDTH ARCHITECTURE: explicit `inline-size: 100% /
 * max-inline-size: 100% / min-inline-size: 0` on every key
 * element so the CTA card fills the available inner width
 * (≈ viewport − 2 × gutter) on every phone — not a squeezed
 * desktop column. */
@media (max-width: 600px) {
	.bp-cu-fcta { padding: 40px 16px 48px; inline-size: 100%; max-inline-size: 100%; min-inline-size: 0; }

	.bp-cu-fcta__box {
		padding: 32px 22px 22px;
		border-radius: 20px;
		gap: 22px;
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
	}

	.bp-cu-fcta__eyebrow { font-size: 11.5px; letter-spacing: 0.18em; }
	.bp-cu-fcta__eyebrow-icon { inline-size: 28px; block-size: 28px; }
	.bp-cu-fcta__eyebrow-icon i,
	.bp-cu-fcta__eyebrow-icon svg { inline-size: 14px; block-size: 14px; }

	.bp-cu-fcta__title { font-size: clamp(28px, 8vw, 36px); line-height: 1.08; }
	.bp-cu-fcta__paragraph { font-size: 13.5px; line-height: 1.6; max-inline-size: 100%; }
	.bp-cu-fcta__divider { inline-size: 48px; }

	.bp-cu-fcta__benefits {
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
	}

	.bp-cu-fcta__benefit {
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
	}

	.bp-cu-fcta__content {
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
	}

	.bp-cu-fcta__panel {
		grid-template-columns: 1fr;
		grid-template-areas:
			"icon"
			"text"
			"buttons"
			"trust";
		padding: 22px 18px 18px;
		gap: 14px;
		text-align: start;
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
	}

	.bp-cu-fcta__panel-icon { inline-size: 52px; block-size: 52px; }
	.bp-cu-fcta__panel-icon i,
	.bp-cu-fcta__panel-icon svg { inline-size: 22px; block-size: 22px; }

	.bp-cu-fcta__panel-heading { font-size: 20px; }
	.bp-cu-fcta__panel-supporting { font-size: 13px; }
	.bp-cu-fcta__panel-text { inline-size: 100%; min-inline-size: 0; }

	.bp-cu-fcta__panel-buttons {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
		justify-content: flex-start;
	}

	.bp-cu-fcta__btn {
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
		min-block-size: 50px;
		padding-block: 12px;
		font-size: 13.5px;
	}

	.bp-cu-fcta__trust {
		flex-direction: column;
		gap: 10px;
		padding: 12px 0 0;
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
	}

	.bp-cu-fcta__trust-item {
		padding: 2px 0;
		inline-size: 100%;
		max-inline-size: 100%;
		min-inline-size: 0;
		border-inline-start: 0;
	}
}

/* =========================================================
 * SMALL MOBILE (≤ 380px)
 * ========================================================= */
@media (max-width: 380px) {
	.bp-cu-fcta { padding: 36px 14px 44px; }

	.bp-cu-fcta__box {
		padding: 28px 18px 18px;
		border-radius: 18px;
	}

	.bp-cu-fcta__title { font-size: 28px; }
}

/* =========================================================
 * Safe-area insets (notched devices)
 * ========================================================= */
@supports (padding: max(0px)) {
	.bp-cu-fcta {
		padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
	}
}

/* =========================================================
 * ARABIC / RTL
 * Logical properties handle the visual flip automatically.
 * Display family falls back to the Arabic Noto Sans. The
 * agricultural background photo is NOT mirrored.
 * ========================================================= */
[lang="ar"] .bp-cu-fcta__title,
[dir="rtl"] .bp-cu-fcta__title,
[lang="ar"] .bp-cu-fcta__title-line,
[dir="rtl"] .bp-cu-fcta__title-line,
[lang="ar"] .bp-cu-fcta__title-accent,
[dir="rtl"] .bp-cu-fcta__title-accent,
[lang="ar"] .bp-cu-fcta__panel-heading,
[dir="rtl"] .bp-cu-fcta__panel-heading {
	font-family: var(--bp-font-arabic, 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.3;
}

[lang="ar"] .bp-cu-fcta__benefit-text,
[dir="rtl"] .bp-cu-fcta__benefit-text,
[lang="ar"] .bp-cu-fcta__trust-text,
[dir="rtl"] .bp-cu-fcta__trust-text,
[lang="ar"] .bp-cu-fcta__panel-supporting,
[dir="rtl"] .bp-cu-fcta__panel-supporting,
[lang="ar"] .bp-cu-fcta__paragraph,
[dir="rtl"] .bp-cu-fcta__paragraph,
[lang="ar"] .bp-cu-fcta__btn,
[dir="rtl"] .bp-cu-fcta__btn {
	font-family: var(--bp-font-arabic, 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif);
	letter-spacing: 0;
}

/* =========================================================
 * Reduced motion
 * ========================================================= */
@media (prefers-reduced-motion: reduce) {
	.bp-cu-fcta [data-bp-reveal] {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
		transition: none !important;
	}
	.bp-cu-fcta__btn { transition: none !important; }
}

/* =========================================================
 * Print
 * ========================================================= */
@media print {
	.bp-cu-fcta { padding: 0 16px; }
	.bp-cu-fcta__box { box-shadow: none; padding: 16px; }
	.bp-cu-fcta__overlay { display: none; }
}
