/* =============================================================
 * CRISTAL · COMPONENTS · v1 (étape 1 — base)
 * =============================================================
 * Styles de composants qui complètent theme.json.
 * Tous référencent les tokens de tokens.css.
 *
 * Cette version contient le minimum pour valider l'étape 1 :
 *   - reset doux
 *   - container layout
 *   - header sticky avec trust strip
 *   - footer trust
 *   - layout 3 colonnes article (squelette uniquement, sans composants)
 *   - bouton CTA primary
 *
 * Les composants (sticky CTA partenaire, match strip, simulateur,
 * comparatif, etc.) seront ajoutés dans les étapes suivantes.
 * ============================================================= */


/* ----- Reset doux ----- */
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; height: auto; }
* { box-sizing: border-box; }


/* ----- Layout container ----- */
.wp-site-blocks {
	background: var(--bg-page);
	color: var(--color-text);
}


/* ============================================================= */
/* HEADER · trust strip + sticky nav                              */
/* ============================================================= */

.cristal-trust-strip {
	background: var(--c-ink-1000);
	color: var(--color-text-invert);
	padding: var(--space-2) var(--space-8);
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	letter-spacing: var(--ls-loose-sm);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-4);
}

.cristal-trust-strip__left,
.cristal-trust-strip__right {
	display: flex;
	gap: var(--space-5);
	align-items: center;
	flex-wrap: wrap;
}

.cristal-trust-strip__check {
	color: var(--c-green-600);
	margin-right: var(--space-1);
}

.cristal-trust-strip a {
	color: var(--c-yellow-500);
	text-decoration: none;
	font-weight: var(--fw-bold);
}


.cristal-header {
	padding: var(--space-4) var(--space-8);
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
	position: sticky;
	top: 0;
	z-index: var(--z-header);
}

.cristal-logo {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-xl);
	display: flex;
	align-items: center;
	gap: var(--space-3);
	color: var(--color-text);
	text-decoration: none;
}

.cristal-logo::before {
	content: "";
	width: 24px;
	height: 24px;
	background: var(--grad-brand);
	border-radius: var(--radius-sm);
	flex-shrink: 0;
}

.cristal-nav {
	display: flex;
	gap: var(--space-6);
	font-size: 14px;
	font-weight: var(--fw-medium);
}

.cristal-nav a {
	color: var(--color-text-mute);
	text-decoration: none;
	transition: color var(--motion-fast) var(--ease-out);
}

.cristal-nav a:hover,
.cristal-nav a.current-menu-item,
.cristal-nav a[aria-current] {
	color: var(--color-text);
}


/* CTA primary universel — utilisable partout dans le thème */
.cristal-cta {
	background: var(--cta-primary-bg);
	color: var(--cta-primary-fg);
	padding: var(--space-3) var(--space-5);
	border-radius: var(--radius-md);
	font-size: var(--fs-small);
	font-weight: var(--fw-bold);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	box-shadow: var(--shadow-sm);
	transition: background var(--motion-fast) var(--ease-out), transform var(--motion-fast) var(--ease-out);
	border: 0;
	cursor: pointer;
	font-family: var(--font-text);
}

.cristal-cta:hover {
	background: var(--cta-primary-bg-hover);
	transform: translateY(-1px);
}

.cristal-cta::after {
	content: "→";
}

.cristal-cta--accent {
	background: var(--cta-accent-bg);
	color: var(--cta-accent-fg);
}

.cristal-cta--affiliate {
	background: var(--cta-affiliate-bg);
	color: var(--cta-affiliate-fg);
}


/* ============================================================= */
/* FOOTER · trust + sitemap                                       */
/* ============================================================= */

.cristal-footer {
	background: var(--c-ink-1000);
	color: var(--color-text-invert);
	padding: var(--space-10) var(--space-8) var(--space-6);
	margin-top: var(--space-16);
}

.cristal-footer__container {
	max-width: var(--container-max);
	margin: 0 auto;
}

.cristal-footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--space-8);
	padding-bottom: var(--space-6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cristal-footer__brand .name {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--fw-bold);
	margin-bottom: var(--space-3);
}

.cristal-footer__brand p {
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.6);
	max-width: 340px;
	line-height: var(--lh-base);
}

.cristal-footer h6 {
	font-family: var(--font-mono);
	font-size: var(--fs-nano);
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-lg);
	margin-bottom: var(--space-3);
	font-weight: var(--fw-bold);
}

.cristal-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cristal-footer ul li {
	padding: var(--space-1) 0;
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.75);
}

.cristal-footer ul li a {
	color: inherit;
	text-decoration: none;
	transition: color var(--motion-fast);
}

.cristal-footer ul li a:hover {
	color: var(--color-text-invert);
}

.cristal-footer__trust {
	padding-top: var(--space-5);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-mono);
	font-size: var(--fs-nano);
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	flex-wrap: wrap;
	gap: var(--space-4);
}

.cristal-footer__badges {
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap;
}

.cristal-footer__badge {
	background: rgba(255, 255, 255, 0.08);
	padding: var(--space-1) var(--space-3);
	border-radius: var(--radius-xs);
}


/* ============================================================= */
/* LAYOUT ARTICLE 3 COLONNES (squelette CSS, sera utilisé étape 2) */
/* ============================================================= */

.cristal-article-layout {
	display: grid;
	grid-template-columns: var(--layout-article-cols);
	gap: var(--layout-article-gap);
	padding: var(--space-10) var(--space-8) var(--space-16);
	max-width: var(--container-max);
	margin: 0 auto;
}

.cristal-article-layout__toc {
	position: sticky;
	top: 80px;
	align-self: start;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

.cristal-article-layout__body {
	max-width: var(--container-prose);
	min-width: 0;
}

.cristal-article-layout__aside {
	position: sticky;
	top: 80px;
	align-self: start;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}

/* Article body typographie de base — corps long-form */
.cristal-article-layout__body p,
.cristal-article-layout__body li {
	font-family: var(--font-text);
	font-size: var(--fs-body);
	line-height: var(--lh-relaxed);
	color: var(--color-text);
}

.cristal-article-layout__body p {
	margin-bottom: var(--space-3);
}

.cristal-article-layout__body a {
	color: var(--color-text-link);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

/* === H2 dans le corps d'article : signe distinctif === */
/* Barre verticale gradient à gauche, taille 34px, ink, couleur d'accent */
.cristal-article-layout__body h2 {
	font-family: var(--font-display);
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: var(--fw-black);
	letter-spacing: var(--ls-tight-lg);
	line-height: 1.15;
	color: var(--color-text);
	margin: var(--space-12) 0 var(--space-4);
	padding-left: var(--space-5);
	position: relative;
	scroll-margin-top: 24px;
}

.cristal-article-layout__body h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 8px;
	width: 5px;
	background: var(--grad-brand);
	border-radius: 3px;
}

/* === H3 dans le corps d'article : plus petit, sans barre === */
.cristal-article-layout__body h3 {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-md);
	line-height: 1.25;
	color: var(--c-indigo-700);
	margin: var(--space-8) 0 var(--space-3);
}

/* === H4 : plus petit, ink normal === */
.cristal-article-layout__body h4 {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-md);
	color: var(--color-text);
	margin: var(--space-6) 0 var(--space-2);
}

/* === Titre principal de l'article (H1 généré par wp:post-title) === */
.cristal-article__title,
.cristal-article-layout__body > h1 {
	font-family: var(--font-display);
	font-size: clamp(36px, 4vw, 52px);
	font-weight: var(--fw-black);
	letter-spacing: var(--ls-tight-lg);
	line-height: 1.02;
	color: var(--color-text);
	margin: 0 0 var(--space-5);
}

/* Meta article */
.cristal-article__meta {
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	margin-bottom: var(--space-7);
	display: flex;
	gap: var(--space-4);
	flex-wrap: wrap;
	padding-bottom: var(--space-5);
	border-bottom: 1px solid var(--border-line);
}

.cristal-article__meta a {
	color: var(--c-indigo-600);
	text-decoration: none;
	font-weight: var(--fw-bold);
}


/* === Lists in article body === */
.cristal-article-layout__body ul,
.cristal-article-layout__body ol {
	margin: var(--space-4) 0;
	padding-left: var(--space-6);
}

.cristal-article-layout__body ul li,
.cristal-article-layout__body ol li {
	margin-bottom: var(--space-2);
}

/* === Blockquote === */
.cristal-article-layout__body blockquote {
	margin: var(--space-6) 0;
	padding: var(--space-5) var(--space-6);
	background: var(--bg-card-2);
	border-left: 3px solid var(--c-indigo-600);
	border-radius: var(--radius-md);
	font-style: normal;
}

.cristal-article-layout__body blockquote p {
	margin: 0;
	font-size: 16px;
	color: var(--color-text);
}

/* === Strong / em === */
.cristal-article-layout__body strong {
	font-weight: var(--fw-bold);
	color: var(--color-text);
}


/* ============================================================= */
/* TOC sidebar gauche                                             */
/* ============================================================= */

.cristal-toc-label {
	font-family: var(--font-mono);
	font-size: var(--fs-nano);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-xl);
	color: var(--color-text-mute);
	margin-bottom: var(--space-4);
	font-weight: var(--fw-bold);
	padding-bottom: var(--space-3);
	border-bottom: 1px solid var(--border-line);
}

.cristal-toc-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cristal-toc-list li {
	margin: 2px 0;
}

.cristal-toc-list a {
	display: flex;
	gap: var(--space-2);
	align-items: flex-start;
	padding: var(--space-2) 0 var(--space-2) var(--space-3);
	font-size: 13px;
	color: var(--color-text-mute);
	text-decoration: none;
	line-height: 1.35;
	border-left: 2px solid transparent;
	transition: all var(--motion-fast) var(--ease-out);
}

.cristal-toc-list a:hover {
	color: var(--color-text);
	border-left-color: var(--border-line);
}

.cristal-toc-list a.active {
	color: var(--color-text);
	font-weight: var(--fw-bold);
	border-left-color: var(--c-indigo-600);
	background: linear-gradient(90deg, var(--c-indigo-100) 0%, transparent 70%);
}

.cristal-toc-list a .num {
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--color-text-soft);
	letter-spacing: var(--ls-loose-md);
	flex-shrink: 0;
	padding-top: 2px;
}

.cristal-toc-list a.active .num {
	color: var(--c-indigo-600);
}

.cristal-toc-list a .text {
	flex: 1;
}

.cristal-toc-progress {
	height: 3px;
	background: var(--border-line);
	border-radius: 3px;
	margin-top: var(--space-5);
	overflow: hidden;
}

.cristal-toc-progress__fill {
	height: 100%;
	width: 0;
	background: var(--grad-brand);
	border-radius: 3px;
	transition: width var(--motion-base) var(--ease-out);
}


/* ============================================================= */
/* PARTNER sidebar droite                                         */
/* ============================================================= */

.cristal-partner {
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-3xl);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	position: relative;
}

.cristal-partner::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius-3xl);
	padding: 1.5px;
	background: var(--grad-brand);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

/* Variantes (couleur du liseré + logo) */
.cristal-partner--warm::before { background: var(--grad-warm); }
.cristal-partner--success::before { background: var(--grad-success); }

.cristal-partner__head {
	padding: var(--space-5) var(--space-5) 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cristal-partner__cat {
	font-family: var(--font-mono);
	font-size: 9px;
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-xl);
	font-weight: var(--fw-bold);
	line-height: 1.4;
}

.cristal-partner__cat strong {
	color: var(--c-indigo-600);
	display: block;
	margin-top: 2px;
}

.cristal-partner--warm .cristal-partner__cat strong { color: var(--c-coral-600); }
.cristal-partner--success .cristal-partner__cat strong { color: var(--c-green-600); }

.cristal-partner__logo {
	width: 44px; height: 44px;
	background: var(--grad-brand);
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-white);
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--fw-black);
	box-shadow: 0 6px 14px -4px rgba(45, 63, 224, 0.4);
}

.cristal-partner--warm .cristal-partner__logo {
	background: var(--grad-warm);
	color: var(--c-ink-1000);
	box-shadow: 0 6px 14px -4px rgba(245, 197, 24, 0.5);
}
.cristal-partner--success .cristal-partner__logo {
	background: var(--grad-success);
	box-shadow: 0 6px 14px -4px rgba(20, 176, 122, 0.4);
}

.cristal-partner__body {
	padding: var(--space-5);
}

.cristal-partner__title {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-md);
	line-height: 1.2;
	color: var(--color-text);
	margin-bottom: var(--space-3);
}

.cristal-partner__desc {
	font-size: 12.5px;
	color: var(--color-text-mute);
	line-height: var(--lh-base);
	margin-bottom: var(--space-4);
}

.cristal-partner__check {
	display: flex;
	gap: var(--space-2);
	padding: var(--space-3);
	background: var(--c-green-100);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-4);
}

.cristal-partner__check::before {
	content: "✓";
	color: var(--c-green-600);
	font-weight: var(--fw-black);
	flex-shrink: 0;
	font-size: 14px;
}

.cristal-partner__check span {
	font-size: 11.5px;
	color: var(--color-text);
	line-height: 1.45;
}

.cristal-partner__promo {
	border: 1.5px dashed var(--c-indigo-600);
	border-radius: var(--radius-lg);
	padding: var(--space-3) var(--space-4);
	text-align: center;
	margin-bottom: var(--space-4);
	background: var(--bg-card-2);
}

.cristal-partner--warm .cristal-partner__promo { border-color: var(--c-coral-600); }
.cristal-partner--success .cristal-partner__promo { border-color: var(--c-green-600); }

.cristal-partner__promo .small {
	font-family: var(--font-mono);
	font-size: 9px;
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-xl);
	margin-bottom: 4px;
}

.cristal-partner__promo .code {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: var(--fw-black);
	letter-spacing: 0.05em;
	color: var(--c-indigo-600);
	margin-bottom: 2px;
}

.cristal-partner--warm .cristal-partner__promo .code { color: var(--c-coral-600); }
.cristal-partner--success .cristal-partner__promo .code { color: var(--c-green-600); }

.cristal-partner__promo .perk {
	font-size: 11px;
	color: var(--color-text-mute);
	font-style: italic;
}

.cristal-partner__cta {
	display: block;
	background: var(--c-ink-1000);
	color: var(--c-white);
	padding: var(--space-4);
	border-radius: var(--radius-lg);
	text-decoration: none;
	text-align: center;
	font-weight: var(--fw-bold);
	font-size: 14px;
	transition: transform var(--motion-fast) var(--ease-out);
}

.cristal-partner__cta::after {
	content: " →";
}

.cristal-partner__cta:hover {
	transform: translateY(-2px);
}

.cristal-partner__foot {
	padding: var(--space-3) var(--space-5);
	background: var(--bg-card-2);
	border-top: 1px solid var(--border-line);
	font-family: var(--font-mono);
	font-size: var(--fs-nano);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cristal-partner__stars {
	color: var(--c-stars);
	letter-spacing: 1px;
}


/* ============================================================= */
/* RELATED articles (sous le partner)                             */
/* ============================================================= */

.cristal-related {
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	margin-top: var(--space-4);
}

.cristal-related__head {
	padding: var(--space-3) var(--space-5);
	background: var(--bg-card-2);
	font-family: var(--font-mono);
	font-size: var(--fs-nano);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-lg);
	font-weight: var(--fw-bold);
	border-bottom: 1px solid var(--border-line);
}

.cristal-related__list {
	list-style: none;
	padding: var(--space-2) 0;
	margin: 0;
}

.cristal-related__list li {
	border-bottom: 1px solid var(--border-line);
	padding: 0;
}

.cristal-related__list li:last-child {
	border-bottom: none;
}

.cristal-related__list a {
	display: block;
	padding: var(--space-3) var(--space-5) var(--space-3) var(--space-5);
	font-size: 12.5px;
	line-height: 1.4;
	color: var(--color-text);
	text-decoration: none;
	transition: background var(--motion-fast);
	position: relative;
	padding-right: var(--space-8);
}

.cristal-related__list a:hover {
	background: var(--bg-card-2);
}

.cristal-related__list a::after {
	content: "→";
	position: absolute;
	right: var(--space-5);
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-text-soft);
	font-size: 14px;
}


/* ============================================================= */
/* NAVIGATION (wp:navigation styling)                             */
/* ============================================================= */

.cristal-header .wp-block-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
	gap: var(--space-5);
}

.cristal-header .wp-block-navigation__container {
	gap: var(--space-5) !important;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.cristal-header .wp-block-navigation-item {
	font-size: 14px;
	font-weight: var(--fw-medium);
	line-height: 1.4;
}

.cristal-header .wp-block-navigation-item__content {
	color: var(--color-text);
	text-decoration: none;
	padding: var(--space-2) 0;
	white-space: nowrap;
	transition: color var(--motion-fast);
}

.cristal-header .wp-block-navigation-item__content:hover {
	color: var(--c-indigo-600);
}

.cristal-header .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content {
	color: var(--c-indigo-600);
	font-weight: var(--fw-bold);
}

/* Mobile overlay menu */
.wp-block-navigation__responsive-container.is-menu-open {
	background: var(--bg-card);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	color: var(--color-text);
	font-size: 18px;
	font-weight: var(--fw-bold);
}

/* Bouton burger mobile */
.wp-block-navigation__responsive-container-open {
	color: var(--color-text);
}

/* CTA in header — adjust pour s'aligner sur la nav */
.cristal-cta--header {
	flex-shrink: 0;
}


/* ============================================================= */
/* HOME PAGE — sections                                            */
/* ============================================================= */

.cristal-home {
	background: var(--bg-page);
}

/* ----- Utility : gradient text universel ----- */
.cristal-grad-text {
	background: var(--grad-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ----- CTA variations ----- */
.cristal-cta--gradient {
	background: var(--grad-brand);
	color: var(--color-text-invert);
	box-shadow: var(--shadow-md), var(--glow-indigo);
	padding: var(--space-4) var(--space-7);
	font-size: 15px;
	border-radius: var(--radius-lg);
}

.cristal-cta--gradient:hover {
	background: var(--grad-brand);
	transform: translateY(-2px);
}

.cristal-cta--ink {
	background: var(--cta-primary-bg);
	color: var(--cta-primary-fg);
	padding: var(--space-3) var(--space-6);
	border-radius: var(--radius-lg);
	font-size: 14px;
	font-weight: var(--fw-bold);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	white-space: nowrap;
}
.cristal-cta--ink::after { content: "→"; }

.cristal-cta--yellow {
	background: var(--c-yellow-500);
	color: var(--c-ink-1000);
	box-shadow: var(--shadow-md), var(--glow-yellow);
	padding: var(--space-4) var(--space-7);
	font-size: 15px;
	border-radius: var(--radius-lg);
	font-weight: var(--fw-black);
}
.cristal-cta--yellow:hover {
	background: var(--c-yellow-500);
	transform: translateY(-2px);
}

.cristal-cta--ghost {
	color: var(--color-text);
	font-size: 15px;
	font-weight: var(--fw-bold);
	text-decoration: none;
	border-bottom: 2px solid var(--c-indigo-600);
	padding-bottom: 4px;
}
.cristal-cta--ghost-light {
	color: var(--color-text-invert);
	font-size: 15px;
	font-weight: var(--fw-bold);
	text-decoration: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.4);
	padding-bottom: 4px;
}


/* ============================================================= */
/* HERO + SIMULATEUR                                              */
/* ============================================================= */

.cristal-hero {
	padding: var(--space-12) var(--space-8) var(--space-10);
	position: relative;
	overflow: hidden;
}

.cristal-hero::before {
	content: "";
	position: absolute;
	top: 100px; left: 30%;
	width: 360px; height: 360px;
	background: var(--glow-ambient-indigo);
	pointer-events: none;
}

.cristal-hero__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: var(--space-12);
	align-items: center;
	position: relative;
	z-index: 1;
}

.cristal-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	background: var(--c-indigo-100);
	color: var(--c-indigo-600);
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius-md);
	font-size: var(--fs-micro);
	font-weight: var(--fw-bold);
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	margin-bottom: var(--space-6);
}

.cristal-hero__dot {
	width: 6px; height: 6px;
	background: var(--c-green-600);
	border-radius: 50%;
	animation: cristal-pulse 1.5s infinite;
}

.cristal-hero__title {
	font-family: var(--font-display);
	font-size: var(--fs-display-xl);
	font-weight: var(--fw-black);
	line-height: var(--lh-tight);
	letter-spacing: var(--ls-tight-xl);
	margin: 0 0 var(--space-5) 0;
	color: var(--color-text);
}

.cristal-hero__grad {
	background: var(--grad-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cristal-hero__underline {
	position: relative;
	font-style: italic;
}

.cristal-hero__underline::after {
	content: "";
	position: absolute;
	left: 0; right: 0;
	bottom: -2px;
	height: 4px;
	background: var(--c-yellow-500);
	border-radius: 2px;
}

.cristal-hero__lead {
	font-family: var(--font-text);
	font-size: 17px;
	line-height: var(--lh-base);
	color: var(--color-text-mute);
	max-width: 480px;
	margin: 0 0 var(--space-7) 0;
}

.cristal-hero__lead strong {
	color: var(--color-text);
	font-weight: var(--fw-bold);
}

.cristal-hero__actions {
	display: flex;
	gap: var(--space-4);
	align-items: center;
	margin-bottom: var(--space-7);
	flex-wrap: wrap;
}

.cristal-hero__stats {
	display: flex;
	gap: var(--space-7);
	padding-top: var(--space-5);
	border-top: 1px solid var(--border-line);
}

.cristal-hero__stat-val {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: var(--fw-black);
	line-height: 1;
	color: var(--color-text);
}

.cristal-hero__stat-lab {
	font-size: var(--fs-nano);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	margin-top: var(--space-1);
	font-family: var(--font-mono);
}


/* Simulator card */
.cristal-sim {
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-3xl);
	padding: var(--space-7);
	box-shadow: var(--shadow-lg);
	position: relative;
}

.cristal-sim__glow {
	position: absolute;
	inset: -3px;
	background: var(--grad-brand);
	border-radius: calc(var(--radius-3xl) + 3px);
	z-index: -1;
	opacity: 0.25;
	filter: blur(20px);
}

.cristal-sim__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-5);
}

.cristal-sim__title {
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
}

.cristal-sim__live {
	background: var(--c-indigo-100);
	color: var(--c-indigo-600);
	padding: 4px var(--space-3);
	border-radius: var(--radius-sm);
	font-family: var(--font-mono);
	font-size: var(--fs-nano);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-lg);
	display: inline-flex;
	align-items: center;
	gap: var(--space-1);
}

.cristal-sim__live span {
	width: 6px; height: 6px;
	background: var(--c-green-600);
	border-radius: 50%;
	animation: cristal-pulse 1.5s infinite;
}

.cristal-sim__amount {
	font-family: var(--font-display);
	font-size: 60px;
	font-weight: var(--fw-black);
	letter-spacing: var(--ls-tight-xl);
	line-height: 1;
	margin-bottom: 4px;
}

.cristal-sim__amount-lab {
	font-size: 13px;
	color: var(--color-text-mute);
	margin-bottom: var(--space-6);
}

.cristal-sim__slider {
	margin-bottom: var(--space-5);
}

.cristal-sim__slider-row {
	display: flex;
	justify-content: space-between;
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	margin-bottom: var(--space-2);
	font-family: var(--font-mono);
}

.cristal-sim__slider-row strong {
	color: var(--color-text);
	background: var(--c-indigo-100);
	padding: 2px var(--space-2);
	border-radius: var(--radius-xs);
}

.cristal-sim__track {
	height: 6px;
	background: var(--bg-card-2);
	border-radius: var(--radius-full);
	position: relative;
	border: 1px solid var(--border-line);
}

.cristal-sim__fill {
	position: absolute;
	inset: 0;
	height: 100%;
	background: var(--grad-brand);
	border-radius: var(--radius-full);
}

.cristal-sim__thumb {
	position: absolute;
	top: 50%;
	width: 20px; height: 20px;
	background: var(--c-white);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 2px 8px rgba(15, 21, 48, 0.25), 0 0 0 2px var(--c-indigo-600);
}

.cristal-sim__result {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
	padding-top: var(--space-5);
	border-top: 1px solid var(--border-line);
	margin-top: var(--space-2);
}

.cristal-sim__res {
	background: var(--bg-card-2);
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-md);
	border: 1px solid var(--border-line);
}

.cristal-sim__res-lab {
	font-size: var(--fs-nano);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	margin-bottom: 4px;
	font-family: var(--font-mono);
}

.cristal-sim__res-val {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: var(--fw-black);
	line-height: 1;
}

.cristal-sim__res-val--green {
	color: var(--c-green-600);
}


/* ============================================================= */
/* SECTION HELPERS                                                */
/* ============================================================= */

.cristal-section {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-8);
}

.cristal-section--narrow {
	padding-left: var(--space-8);
	padding-right: var(--space-8);
}

.cristal-section--padded {
	padding-top: var(--space-12);
	padding-bottom: var(--space-12);
}

.cristal-section--alt {
	background: var(--bg-card);
	max-width: none;
	padding-left: var(--space-8);
	padding-right: var(--space-8);
}

.cristal-section--alt > * {
	max-width: var(--container-max);
	margin-left: auto;
	margin-right: auto;
}

.cristal-section__head {
	max-width: 760px;
	margin-bottom: var(--space-10);
}

.cristal-section__eyebrow {
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-lg);
	margin-bottom: var(--space-3);
	font-weight: var(--fw-bold);
}

.cristal-section__title {
	font-family: var(--font-display);
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: var(--fw-black);
	line-height: 1.05;
	letter-spacing: var(--ls-tight-lg);
	margin: 0 0 var(--space-4) 0;
	color: var(--color-text);
}

.cristal-section__sub {
	font-size: 16px;
	line-height: var(--lh-base);
	color: var(--color-text-mute);
	max-width: 640px;
	margin: 0;
}


/* ============================================================= */
/* MATCH STRIP XL                                                 */
/* ============================================================= */

.cristal-match-xl {
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-3xl);
	padding: var(--space-6) var(--space-7);
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	gap: var(--space-6);
	align-items: center;
	position: relative;
	box-shadow: var(--shadow-md);
	overflow: hidden;
	max-width: var(--container-max);
	margin: var(--space-10) auto;
}

.cristal-match-xl::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius-3xl);
	padding: 1.5px;
	background: var(--grad-brand);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.cristal-match-xl__icon {
	width: 56px; height: 56px;
	background: var(--grad-brand);
	color: var(--c-white);
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: var(--fw-black);
	box-shadow: var(--glow-indigo);
	flex-shrink: 0;
}

.cristal-match-xl__tag {
	font-family: var(--font-mono);
	font-size: var(--fs-nano);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-lg);
	background: var(--grad-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: var(--space-1);
	font-weight: var(--fw-bold);
}

.cristal-match-xl__name {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-lg);
	margin: 0;
}

.cristal-match-xl__points {
	list-style: none;
	padding: 0;
	margin: var(--space-1) 0 0 0;
	display: flex;
	gap: var(--space-5);
	flex-wrap: wrap;
	font-size: 12px;
	color: var(--color-text-mute);
}

.cristal-match-xl__points li::before {
	content: "✓";
	color: var(--c-green-600);
	font-weight: var(--fw-bold);
	margin-right: var(--space-1);
}

.cristal-match-xl__score {
	text-align: center;
	padding-left: var(--space-5);
	border-left: 1px solid var(--border-line);
}

.cristal-match-xl__pct {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: var(--fw-black);
	background: var(--grad-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.cristal-match-xl__pct-lab {
	font-size: var(--fs-nano);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-lg);
	margin-top: 4px;
	font-family: var(--font-mono);
}


/* ============================================================= */
/* CARDS GRID — 16 cocons                                         */
/* ============================================================= */

.cristal-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
}

.cristal-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-3xl);
	padding: var(--space-6);
	text-decoration: none;
	color: var(--color-text);
	transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), border-color var(--motion-fast) var(--ease-out);
	position: relative;
	min-height: 220px;
}

.cristal-card:hover {
	transform: translateY(-4px);
	border-color: var(--c-indigo-300);
	box-shadow: var(--shadow-md);
}

.cristal-card--featured {
	background: linear-gradient(180deg, var(--c-indigo-100) 0%, var(--bg-card) 70%);
	border-color: var(--c-indigo-600);
	grid-column: span 2;
}

.cristal-card--featured:hover {
	border-color: var(--c-indigo-600);
	box-shadow: var(--shadow-md), var(--glow-indigo);
}

.cristal-card__num {
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-loose-md);
	margin-bottom: var(--space-3);
}

.cristal-card__title {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-md);
	margin: 0 0 var(--space-2) 0;
	line-height: 1.2;
}

.cristal-card--featured .cristal-card__title {
	font-size: 28px;
	letter-spacing: var(--ls-tight-lg);
}

.cristal-card__desc {
	font-size: 13px;
	line-height: var(--lh-base);
	color: var(--color-text-mute);
	margin: 0 0 var(--space-5) 0;
	flex: 1;
}

.cristal-card--featured .cristal-card__desc {
	font-size: 15px;
}

.cristal-card__cta {
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	color: var(--c-indigo-600);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	margin-top: auto;
}


/* ============================================================= */
/* WHY GRID — pourquoi sos-credit                                 */
/* ============================================================= */

.cristal-why {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: var(--space-12);
	align-items: start;
}

.cristal-why__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-5);
}

.cristal-why__cell {
	padding: var(--space-6);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-2xl);
	background: var(--bg-card);
}

.cristal-why__icon {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: var(--fw-black);
	color: var(--c-white);
	background: var(--grad-brand);
	width: 36px; height: 36px;
	border-radius: var(--radius-md);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-3);
}

.cristal-why__cell h3 {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-md);
	margin: 0 0 var(--space-2) 0;
}

.cristal-why__cell p {
	font-size: 13px;
	line-height: var(--lh-base);
	color: var(--color-text-mute);
	margin: 0;
}


/* ============================================================= */
/* TRUST GRID                                                     */
/* ============================================================= */

.cristal-trust-head {
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-xl);
	margin-bottom: var(--space-6);
	text-align: center;
}

.cristal-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-4);
}

.cristal-trust-cell {
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-2xl);
	padding: var(--space-6);
	text-align: center;
}

.cristal-trust-cell__icon {
	width: 44px; height: 44px;
	margin: 0 auto var(--space-3);
	background: var(--c-indigo-100);
	color: var(--c-indigo-600);
	border-radius: var(--radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: var(--fw-bold);
}

.cristal-trust-cell__val {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: var(--fw-black);
	line-height: 1;
}

.cristal-trust-cell__lab {
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	margin-top: var(--space-2);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
}


/* ============================================================= */
/* TESTIMONIALS                                                   */
/* ============================================================= */

.cristal-testi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}

.cristal-testi {
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-2xl);
	padding: var(--space-6);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.cristal-testi__stars {
	color: var(--c-stars);
	letter-spacing: 1px;
	font-size: 14px;
}

.cristal-testi__quote {
	font-size: 13px;
	line-height: var(--lh-base);
	color: var(--color-text);
	margin: 0;
	flex: 1;
}

.cristal-testi__sign {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding-top: var(--space-3);
	border-top: 1px solid var(--border-line);
}

.cristal-testi__avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--grad-brand);
	color: var(--c-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: var(--fw-black);
	font-size: 13px;
	flex-shrink: 0;
}

.cristal-testi__name {
	font-size: 13px;
	font-weight: var(--fw-bold);
}

.cristal-testi__meta {
	font-size: var(--fs-micro);
	color: var(--color-text-mute);
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-sm);
}

.cristal-testi__sign-info {
	flex: 1;
}

.cristal-testi__tp {
	background: var(--c-trustpilot);
	color: var(--c-white);
	padding: 2px 7px;
	border-radius: var(--radius-xs);
	font-size: 9px;
	font-weight: var(--fw-bold);
	font-family: var(--font-mono);
}


/* ============================================================= */
/* LATEST POSTS (derniers guides via wp:query)                    */
/* ============================================================= */

.cristal-latest-posts {
	max-width: var(--container-max);
	margin: 0 auto;
}

.cristal-latest-posts .wp-block-post-template {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
	list-style: none;
	padding: 0;
}

.cristal-post-card {
	transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}

.cristal-post-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.cristal-post-card__title a {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-md);
	color: var(--color-text);
	text-decoration: none;
	line-height: 1.25;
}

.cristal-post-card__title a:hover {
	color: var(--c-indigo-600);
}

.cristal-post-card__excerpt {
	font-size: 13px;
	line-height: var(--lh-base);
	color: var(--color-text-mute);
	margin-top: var(--space-2);
}

.cristal-post-card__date {
	font-size: var(--fs-micro);
	color: var(--color-text-soft);
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-md);
	margin-top: var(--space-3);
}


/* ============================================================= */
/* FAQ accordion (native <details>)                               */
/* ============================================================= */

.cristal-faq {
	background: var(--bg-card);
	border: 1px solid var(--border-line);
	border-radius: var(--radius-2xl);
	overflow: hidden;
}

.cristal-faq__item {
	border-bottom: 1px solid var(--border-line);
	padding: var(--space-5) var(--space-6);
}

.cristal-faq__item:last-child {
	border-bottom: none;
}

.cristal-faq__q {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-tight-md);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-4);
	color: var(--color-text);
}

.cristal-faq__q::-webkit-details-marker {
	display: none;
}

.cristal-faq__q::after {
	content: "+";
	width: 28px; height: 28px;
	background: var(--c-indigo-100);
	color: var(--c-indigo-600);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: var(--fw-black);
	flex-shrink: 0;
	transition: all var(--motion-fast);
}

.cristal-faq__item[open] .cristal-faq__q::after {
	content: "−";
	background: var(--grad-brand);
	color: var(--c-white);
}

.cristal-faq__a {
	padding-top: var(--space-4);
}

.cristal-faq__a p {
	font-size: 14px;
	line-height: var(--lh-relaxed);
	color: var(--color-text-mute);
	margin: 0;
}

.cristal-faq__a a {
	color: var(--c-indigo-600);
	text-decoration: underline;
	text-underline-offset: 3px;
}


/* ============================================================= */
/* FINAL CTA                                                      */
/* ============================================================= */

.cristal-final-cta {
	background: var(--c-ink-1000);
	color: var(--color-text-invert);
	border-radius: var(--radius-3xl);
	padding: var(--space-12) var(--space-10);
	position: relative;
	overflow: hidden;
}

.cristal-final-cta__bg {
	position: absolute;
	top: -100px; right: -100px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(45, 63, 224, 0.4), transparent 65%);
	pointer-events: none;
}

.cristal-final-cta__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.cristal-final-cta__tag {
	font-family: var(--font-mono);
	font-size: var(--fs-micro);
	color: var(--c-yellow-500);
	text-transform: uppercase;
	letter-spacing: var(--ls-loose-lg);
	font-weight: var(--fw-bold);
	margin-bottom: var(--space-4);
}

.cristal-final-cta__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: var(--fw-black);
	line-height: 1.05;
	letter-spacing: var(--ls-tight-lg);
	margin: 0 0 var(--space-5) 0;
}

.cristal-final-cta__hl {
	background: var(--grad-warm);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cristal-final-cta__desc {
	font-size: 17px;
	line-height: var(--lh-base);
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 var(--space-7) 0;
}

.cristal-final-cta__actions {
	display: flex;
	gap: var(--space-4);
	align-items: center;
	flex-wrap: wrap;
}


/* =============================================================  */
/* RESPONSIVE                                                     */
/* =============================================================  */

@media (max-width: 1100px) {
	.cristal-article-layout {
		grid-template-columns: var(--container-toc) 1fr;
	}
	.cristal-article-layout__aside {
		display: none;
	}
	.cristal-hero__inner {
		grid-template-columns: 1fr;
		gap: var(--space-10);
	}
	.cristal-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.cristal-card--featured {
		grid-column: span 2;
	}
	.cristal-why {
		grid-template-columns: 1fr;
		gap: var(--space-8);
	}
	.cristal-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.cristal-testi-grid {
		grid-template-columns: 1fr;
	}
	.cristal-latest-posts .wp-block-post-template {
		grid-template-columns: 1fr !important;
	}
	.cristal-match-xl {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.cristal-match-xl__points {
		justify-content: center;
	}
	.cristal-match-xl__score {
		border-left: none;
		border-top: 1px solid var(--border-line);
		padding-left: 0;
		padding-top: var(--space-4);
	}
}

@media (max-width: 760px) {
	.cristal-article-layout {
		grid-template-columns: 1fr;
		padding: var(--space-6) var(--space-4);
	}
	.cristal-article-layout__toc {
		display: none;
	}
	.cristal-header {
		padding: var(--space-3) var(--space-4);
	}
	.cristal-nav {
		display: none;
	}
	.cristal-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-6);
	}
	.cristal-hero {
		padding: var(--space-8) var(--space-4);
	}
	.cristal-hero__stats {
		flex-wrap: wrap;
		gap: var(--space-4);
	}
	.cristal-section {
		padding-left: var(--space-4);
		padding-right: var(--space-4);
	}
	.cristal-section--padded {
		padding-top: var(--space-10);
		padding-bottom: var(--space-10);
	}
	.cristal-cards-grid {
		grid-template-columns: 1fr;
	}
	.cristal-card--featured {
		grid-column: span 1;
	}
	.cristal-why__grid {
		grid-template-columns: 1fr;
	}
	.cristal-trust-grid {
		grid-template-columns: 1fr 1fr;
	}
	.cristal-final-cta {
		padding: var(--space-8) var(--space-6);
	}
	.cristal-final-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}
}
