/* ============================================================
   Artisan du Jeu — Nos Animations
   Charte : NAVY profond + ORANGE vif + gros titres capitales.
   Design sombre immersif, full-bleed, façon page d'accueil.
   ============================================================ */
/* La police est chargée via wp_enqueue_style('aja-fonts') (voir class-aja-render.php). */

.aja-app {
	--aja-orange: #F26C1A;
	--aja-orange-2: #ff8a3d;
	--aja-bg: #0a1626;          /* nuit profonde */
	--aja-bg-2: #0e1f35;        /* navy légèrement plus clair */
	--aja-panel: #122337;       /* cartes / panneaux */
	--aja-panel-2: #16273e;
	--aja-text: #eef3f9;
	--aja-muted: #9db0c7;
	--aja-line: rgba(255,255,255,.10);
	--aja-radius: 22px;
	--aja-shadow: 0 18px 50px rgba(0,0,0,.45);
	--aja-glow: 0 18px 50px rgba(242,108,26,.35);
	--aja-font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

	/* full-bleed : déborde du conteneur du thème pour un fond sombre edge-to-edge */
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
	overflow: hidden; /* clippe les halos animés + neutralise le débordement horizontal du full-bleed */

	font-family: var(--aja-font);
	color: var(--aja-text);
	line-height: 1.6;
	background:
		radial-gradient(1200px 600px at 12% -5%, rgba(242,108,26,.18), transparent 55%),
		radial-gradient(1000px 700px at 100% 30%, rgba(36,83,214,.16), transparent 55%),
		linear-gradient(180deg, var(--aja-bg), var(--aja-bg-2));
}
.aja-app *,
.aja-app *::before,
.aja-app *::after { box-sizing: border-box; }

/* Force la police même si le thème ou Elementor tente de l'écraser (font-family !important sur body *). */
.aja-app,
.aja-app *:not(svg):not(svg *) { font-family: var(--aja-font) !important; }
/* Exception : le logo « Google » garde sa police Arial d'origine. */
.aja-app .glogo,
.aja-app .glogo span { font-family: Arial, Helvetica, sans-serif !important; }

/* Force les COULEURS des titres (le thème/Elementor impose souvent une couleur sur h1..h4). */
.aja-app .aja-hero__title,
.aja-app .aja-section-title,
.aja-app .aja-card__title,
.aja-app .aja-tile__title,
.aja-app .aja-modal__title,
.aja-app .aja-modal__section,
.aja-app .reviews-header h2,
.aja-app .aja-final-cta h2,
.aja-app .review-card-cta h4 { color: #fff !important; }
/* …et les mots en accent restent orange (priorité plus forte). */
.aja-app .aja-hero__title span,
.aja-app .aja-section-title em,
.aja-app .aja-tile__title span,
.aja-app .reviews-header h2 .accent { color: var(--aja-orange) !important; }
/* Titres sur fond clair (cartes d'avis blanches). */
.aja-app .review-name { color: #1a1a2e !important; }

.aja-app__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 22px 80px;
}

/* texture pointillée discrète */
.aja-app::before {
	content: "";
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
	opacity: .5;
}

/* ---------- Eyebrow pill (façon "TROUVEZ L'ANIMATION...") ---------- */
.aja-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.18);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .74rem;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 999px;
}
.aja-eyebrow::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%;
	background: var(--aja-orange); box-shadow: 0 0 12px var(--aja-orange);
}

/* ---------- Titres ---------- */
.aja-section-title {
	text-align: center;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	font-weight: 900;
	letter-spacing: -.01em;
	margin: 14px 0 8px;
	color: #fff;
	line-height: 1.05;
}
.aja-section-title em { color: var(--aja-orange); font-style: normal; position: relative; }
.aja-section-title em::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 5px;
	background: var(--aja-orange); border-radius: 4px; transform: scaleX(0); transform-origin: left;
	animation: aja-underline .7s .2s forwards cubic-bezier(.2,.8,.2,1);
}
@keyframes aja-underline { to { transform: scaleX(1); } }
.aja-section-title--sm { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.aja-section-sub { text-align: center; color: var(--aja-muted); margin: 0 auto 30px; max-width: 620px; font-size: 1.08rem; }
.aja-center { text-align: center; }

/* ---------- Boutons ---------- */
.aja-btn {
	display: inline-flex; align-items: center; gap: .55em;
	font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
	text-decoration: none; border: 0; cursor: pointer;
	border-radius: 12px; padding: 15px 26px; font-size: .92rem;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	line-height: 1; font-family: inherit;
}
.aja-btn .aja-arrow { transition: transform .2s ease; }
.aja-btn:hover .aja-arrow { transform: translateX(4px); }
.aja-btn--lg { padding: 18px 34px; font-size: 1rem; }
.aja-btn--primary { background: linear-gradient(135deg, var(--aja-orange), var(--aja-orange-2)); color: #fff; box-shadow: 0 12px 28px rgba(242,108,26,.45); }
.aja-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(242,108,26,.6); }
.aja-btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.aja-btn--ghost:hover { border-color: #fff; transform: translateY(-3px); }
.aja-btn--light { background: #fff; color: #0a1626; }
.aja-btn--light:hover { transform: translateY(-3px); }

/* ---------- Hero ---------- */
.aja-hero { text-align: center; padding: 76px 0 26px; position: relative; z-index: 1; }
.aja-hero__title {
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	font-weight: 900; line-height: 1.05; margin: 22px auto 18px; color: #fff; letter-spacing: -.02em;
	max-width: 14ch; text-wrap: balance;
}
.aja-hero__title span {
	color: var(--aja-orange); position: relative;
	background-image: linear-gradient(var(--aja-orange), var(--aja-orange));
	background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 5px;
	padding-bottom: 6px;
}
.aja-hero__sub { font-size: 1.18rem; color: var(--aja-muted); max-width: 560px; margin: 0 auto 30px; }
.aja-hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stats / réassurance (strip sombre) ---------- */
.aja-stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
	background: var(--aja-line);
	border: 1px solid var(--aja-line);
	border-radius: var(--aja-radius); overflow: hidden;
	margin: 40px 0 10px;
}
.aja-stat { background: rgba(255,255,255,.02); padding: 24px 12px; text-align: center; }
.aja-stat__num { display: block; font-size: 2rem; font-weight: 900; color: var(--aja-orange); }
.aja-stat__label { font-size: .9rem; color: var(--aja-muted); }

/* ---------- Animations d'apparition (chargement + scroll) ---------- */
.aja-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .7s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--i, 0) * 90ms); will-change: opacity, transform; }
.aja-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.aja-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
	.aja-section-title em::after { animation: none; transform: scaleX(1); }
	.aja-app::after, .aja-float-orb { animation: none !important; }
	.aja-carousel__track { transition: none; }
	.aja-carousel__next { animation: none; }
}

/* halos animés en fond pour donner de la vie */
.aja-float-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; z-index: 0; }
.aja-float-orb--1 { width: 340px; height: 340px; background: rgba(242,108,26,.35); top: -60px; left: -40px; animation: aja-float 14s ease-in-out infinite; }
.aja-float-orb--2 { width: 380px; height: 380px; background: rgba(36,83,214,.30); top: 220px; right: -80px; animation: aja-float 18s ease-in-out infinite reverse; }
@keyframes aja-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, 40px) scale(1.12); }
}

/* ---------- Univers (grandes catégories façon "Quel est votre projet ?") ---------- */
.aja-universes { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 22px; margin-top: 30px; }
.aja-tile {
	position: relative; min-height: 320px; border-radius: var(--aja-radius); overflow: hidden;
	cursor: pointer; border: 1px solid var(--aja-line); background: var(--aja-panel);
	display: flex; align-items: flex-end;
	transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.aja-tile:hover { transform: translateY(-8px); box-shadow: var(--aja-shadow); }
.aja-tile__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.aja-tile:hover .aja-tile__bg { transform: scale(1.08); }
.aja-tile__bg::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,22,38,.25) 0%, rgba(10,22,38,.55) 45%, rgba(10,22,38,.94) 100%);
}
.aja-tile__pill {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	display: inline-flex; align-items: center; gap: 8px;
	background: #fff; color: #0a1626; font-weight: 800; text-transform: uppercase;
	letter-spacing: .08em; font-size: .72rem; padding: 7px 14px; border-radius: 999px;
}
.aja-tile__pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--aja-orange); }
.aja-tile__body { position: relative; z-index: 2; padding: 26px; }
.aja-tile__title { font-size: 1.7rem; font-weight: 900; text-transform: uppercase; line-height: 1.05; margin: 0 0 8px; color: #fff; }
.aja-tile__title span { color: var(--aja-orange); }
.aja-tile__desc { color: #d7e2f0; margin: 0 0 16px; font-size: .96rem; }
.aja-tile__link { color: var(--aja-orange); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; display: inline-flex; gap: 8px; }
.aja-tile.is-active { box-shadow: var(--aja-glow); border-color: var(--aja-orange); }

/* ---------- Barre de filtres rapides ---------- */
.aja-filter-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 18px 0 0; }
.aja-filter {
	border: 1px solid var(--aja-line); background: rgba(255,255,255,.03); color: var(--aja-text);
	font-weight: 700; font-size: .95rem; padding: 11px 22px; border-radius: 999px; cursor: pointer; font-family: inherit;
	transition: all .2s ease;
}
.aja-filter:hover { border-color: var(--aja-orange); transform: translateY(-2px); }
.aja-filter.is-active { background: var(--aja-orange); border-color: var(--aja-orange); color: #fff; box-shadow: 0 10px 24px rgba(242,108,26,.4); }

/* ---------- Grille des animations (cartes-images immersives) ---------- */
.aja-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; margin-top: 28px; }
.aja-card {
	position: relative; min-height: 360px; border-radius: var(--aja-radius); overflow: hidden;
	cursor: pointer; background: #0C384D;
	border: 1px solid rgba(255,255,255,.2);
	display: flex; align-items: flex-end; outline: none;
	box-shadow: 0 14px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.16);
	transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, grid-column .3s ease;
}
.aja-card:hover, .aja-card:focus-visible {
	transform: translateY(-10px) scale(1.015);
	box-shadow: 0 28px 64px rgba(0,0,0,.6), 0 0 0 2px var(--aja-orange), inset 0 1px 0 rgba(255,255,255,.18);
}
.aja-card.is-highlight { grid-column: span 2; min-height: 420px; animation: aja-pop .45s ease; }
.aja-card.is-dimmed { display: none; }

/* Mode filtré : la grille devient un flux centré, les cartes visibles restent grandes et centrées */
.aja-grid.is-filtered { display: flex; flex-wrap: wrap; justify-content: center; }
.aja-grid.is-filtered .aja-card { flex: 1 1 360px; max-width: 520px; min-height: 380px; }
.aja-grid.is-filtered .aja-card.is-highlight { grid-column: auto; }
@keyframes aja-pop { from { transform: scale(.96); opacity: .3; } to { transform: scale(1); opacity: 1; } }

.aja-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.aja-card:hover .aja-card__img { transform: scale(1.08); }
.aja-card::after {
	content: ""; position: absolute; inset: 0;
	/* Transparent en haut (la photo ressort) puis bande #0C384D en bas pour le texte. */
	background: linear-gradient(180deg, rgba(12,56,77,0) 0%, rgba(12,56,77,0) 52%, rgba(12,56,77,.60) 76%, rgba(12,56,77,1) 100%);
}
.aja-card__pill {
	position: absolute; top: 15px; left: 15px; z-index: 3;
	display: inline-flex; align-items: center; gap: 7px;
	background: #fff; color: #0a1626; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
	font-size: .68rem; padding: 6px 12px; border-radius: 999px;
}
.aja-card__pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--aja-orange); }
.aja-card__badge {
	position: absolute; top: 15px; right: 15px; z-index: 3;
	background: linear-gradient(135deg, var(--aja-orange), var(--aja-orange-2)); color: #fff;
	font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
	padding: 6px 12px; border-radius: 999px; box-shadow: 0 6px 16px rgba(242,108,26,.5);
}
.aja-card__content { position: relative; z-index: 2; padding: 24px; width: 100%; }
.aja-card__note { color: #ffce4d; font-weight: 800; font-size: .85rem; margin-bottom: 6px; display: inline-block; }
.aja-card__title { font-size: 1.45rem; font-weight: 900; text-transform: uppercase; line-height: 1.05; margin: 0 0 8px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.7); }
.aja-card__pitch { color: #eaf1f8; margin: 0 0 16px; font-size: .95rem; text-shadow: 0 1px 8px rgba(0,0,0,.75); }
.aja-card__cta {
	display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800;
	text-transform: uppercase; letter-spacing: .04em; font-size: .82rem;
	background: linear-gradient(135deg, var(--aja-orange), var(--aja-orange-2));
	padding: 11px 18px; border-radius: 10px; box-shadow: 0 10px 22px rgba(242,108,26,.4);
	transition: transform .2s ease;
}
.aja-card:hover .aja-card__cta { transform: translateX(0) scale(1.03); }
.aja-card__cta .aja-arrow { transition: transform .2s ease; }
.aja-card:hover .aja-card__cta .aja-arrow { transform: translateX(4px); }
.aja-grid__empty { text-align: center; color: var(--aja-muted); padding: 40px; }

/* ---------- Garanties ---------- */
.aja-guarantees {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
	background: var(--aja-line); border: 1px solid var(--aja-line);
	border-radius: var(--aja-radius); overflow: hidden; margin-top: 64px;
}
.aja-guarantee { background: rgba(255,255,255,.02); display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .92rem; padding: 22px; }
.aja-guarantee__icon { font-size: 1.5rem; }

/* ---------- Avis Google (style fourni) ---------- */
.aja-app .reviews { margin-top: 64px; }
.aja-app .section-inner { width: 100%; }
.aja-app .reviews-header { text-align: center; margin-bottom: 36px; }
.aja-app .google-badge {
	display: inline-flex; align-items: center; gap: 14px;
	background: #fff; border-radius: 999px; padding: 12px 24px;
	box-shadow: 0 14px 40px rgba(0,0,0,.35); margin-bottom: 22px;
}
.aja-app .glogo { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -.5px; }
.aja-app .glogo .gB { color: #4285F4; }
.aja-app .glogo .gR { color: #EA4335; }
.aja-app .glogo .gY { color: #FBBC04; }
.aja-app .glogo .gG { color: #34A853; }
.aja-app .grade { display: flex; align-items: center; gap: 8px; padding-left: 14px; border-left: 1px solid #e2e2e2; }
.aja-app .grade-num { font-weight: 800; color: #1a1a1a; font-size: 1.15rem; }
.aja-app .gstars { color: #FBBC04; font-size: 1.05rem; letter-spacing: 1px; }
.aja-app .reviews-header h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: #fff; margin: 0 0 10px; letter-spacing: -.01em; }
.aja-app .reviews-header h2 .accent { color: var(--aja-orange); }
.aja-app .reviews-header p { color: #cdd9e8; margin: 0; font-size: 1.02rem; }

.aja-app .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.aja-app .review-card {
	background: #fff; border-radius: 18px; padding: 26px; text-align: left;
	box-shadow: 0 18px 50px rgba(0,0,0,.30); display: flex; flex-direction: column;
}
.aja-app .review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.aja-app .review-avatar { width: 46px; height: 46px; border-radius: 50%; color: #fff; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.aja-app .review-meta { flex: 1; min-width: 0; }
.aja-app .review-name { font-weight: 800; color: #1a1a2e; }
.aja-app .review-date { color: #8a93a3; font-size: .82rem; }
.aja-app .gicon { width: 22px; height: 22px; flex: 0 0 auto; }
.aja-app .review-stars { color: #FBBC04; font-size: 1.05rem; letter-spacing: 1px; margin-bottom: 12px; }
.aja-app .review-text { color: #41495a; font-size: .96rem; line-height: 1.6; margin: 0; }

/* Carte CTA orange */
.aja-app .review-card-cta {
	background: linear-gradient(150deg, var(--aja-orange), #ff5e00); color: #fff;
	text-align: center; align-items: center; justify-content: center; text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease;
}
.aja-app .review-card-cta:hover { transform: translateY(-6px); box-shadow: var(--aja-glow); }
.aja-app .review-cta-icon { width: 60px; height: 60px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.aja-app .review-cta-icon svg { width: 28px; height: 28px; }
.aja-app .review-card-cta h4 { font-size: 1.12rem; font-weight: 800; text-transform: uppercase; margin: 0 0 8px; }
.aja-app .review-card-cta p { margin: 0 0 20px; opacity: .92; }
.aja-app .review-cta-link {
	display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-transform: uppercase;
	letter-spacing: .03em; font-size: .82rem; border: 1px solid rgba(255,255,255,.7);
	padding: 12px 22px; border-radius: 999px; transition: background .2s ease;
}
.aja-app .review-card-cta:hover .review-cta-link { background: rgba(255,255,255,.16); }

.aja-app .reviews-cta { text-align: center; margin-top: 28px; }
.aja-app .reviews-cta a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--aja-orange); padding-bottom: 3px; }
.aja-app .reviews-cta a:hover { color: var(--aja-orange); }

/* ---------- Partenaires / références ---------- */
.aja-app .clients-block { margin-top: 56px; text-align: center; }
.aja-app .clients-label { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--aja-muted); margin-bottom: 22px; }
.aja-app .clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.aja-app .client-tile {
	background: #fff; border-radius: 14px; padding: 18px; height: 92px;
	display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.22);
	transition: transform .2s ease;
}
.aja-app .client-tile:hover { transform: translateY(-4px); }
.aja-app .client-tile img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }

@media (max-width: 900px) {
	.aja-app .reviews-grid { grid-template-columns: 1fr; }
	.aja-app .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
	.aja-app .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA final ---------- */
.aja-final-cta {
	margin-top: 70px; text-align: center; border-radius: 28px; padding: 60px 24px; color: #fff; position: relative; overflow: hidden;
	background: linear-gradient(135deg, var(--aja-orange), #ff5e00);
	box-shadow: var(--aja-glow);
}
.aja-final-cta h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 900; text-transform: uppercase; margin: 0 0 8px; }
.aja-final-cta p { margin: 0 0 26px; font-size: 1.12rem; opacity: .95; }
.aja-final-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.aja-final-cta .aja-btn--dark { background: #0a1626; color: #fff; }

/* ---------- Modale ---------- */
.aja-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; }
.aja-modal[hidden] { display: none; }
.aja-modal__overlay { position: absolute; inset: 0; background: rgba(5,10,20,.78); backdrop-filter: blur(5px); animation: aja-fade .25s ease; }
.aja-modal__dialog {
	position: relative; z-index: 1; background: var(--aja-panel); color: var(--aja-text);
	border: 1px solid var(--aja-line); border-radius: 24px;
	max-width: 860px; width: calc(100% - 32px); max-height: 92vh; overflow: auto;
	box-shadow: 0 50px 110px rgba(0,0,0,.6); animation: aja-rise .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes aja-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes aja-rise { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.aja-modal__close { position: absolute; top: 14px; right: 14px; z-index: 5; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: #0a1626; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.aja-modal__close:hover { background: var(--aja-orange); color: #fff; }
/* Diaporama */
.aja-carousel { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 24px 24px 0 0; background: #0b1626; }
.aja-carousel__track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.aja-carousel__slide { flex: 0 0 100%; height: 100%; }
.aja-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aja-carousel__slide--empty { display: flex; align-items: center; justify-content: center; color: var(--aja-muted); font-weight: 600; }
.aja-carousel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(11,22,38,.92)); pointer-events: none; }
.aja-carousel__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
	border: 2px solid rgba(255,255,255,.85);
	background: rgba(11,22,38,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
	color: #fff; font-size: 2rem; line-height: 1; font-weight: 700; padding-bottom: 4px;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,.45);
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.aja-carousel__nav:hover, .aja-carousel__nav:focus-visible {
	background: linear-gradient(135deg, var(--aja-orange), var(--aja-orange-2));
	border-color: transparent; transform: translateY(-50%) scale(1.12); box-shadow: var(--aja-glow); outline: none;
}
.aja-carousel__nav:active { transform: translateY(-50%) scale(.96); }
.aja-carousel__prev { left: 16px; }
.aja-carousel__next { right: 16px; animation: aja-navpulse 2.4s ease-in-out infinite; }
@keyframes aja-navpulse {
	0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.45); }
	50% { box-shadow: 0 8px 30px rgba(242,108,26,.75); }
}
.aja-carousel__dots { position: absolute; bottom: 20px; right: 22px; z-index: 3; display: flex; gap: 8px; }
.aja-carousel__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,.5); transition: width .2s ease, background .2s ease; }
.aja-carousel__dot.is-active { background: var(--aja-orange); width: 22px; border-radius: 999px; }
.aja-carousel__count { position: absolute; top: 14px; right: 14px; z-index: 3; background: rgba(10,22,38,.72); color: #fff; font-size: .78rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.aja-modal__title { position: absolute; left: 28px; bottom: 18px; z-index: 3; max-width: 68%; font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 900; text-transform: uppercase; color: #fff; margin: 0; line-height: 1.1; text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.aja-modal__inner { padding: 26px 32px 36px; }

/* Lecteur d'écran / SEO : contenu indexable non visible */
.aja-sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.aja-specs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.aja-spec { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.04); border: 1px solid var(--aja-line); border-radius: 12px; padding: 10px 16px; font-weight: 600; font-size: .9rem; }
.aja-spec span:first-child { font-size: 1.15rem; }
.aja-spec b { color: #fff; }

.aja-modal__content-text { font-size: 1.04rem; color: var(--aja-text); }
.aja-modal__content-text p { margin: 0 0 14px; }

.aja-points { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.aja-points li { display: flex; gap: 10px; align-items: flex-start; }
.aja-points li::before { content: "✔"; color: #2fd07a; font-weight: 900; }
.aja-points[data-mark] li::before { content: attr(data-mark); }

/* ---- Sections enrichies de la fiche ---- */
.aja-modal__section { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 28px 0 14px; display: flex; align-items: center; gap: 10px; }
.aja-modal__section::after { content: ""; flex: 1; height: 1px; background: var(--aja-line); }

.aja-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.aja-chip { background: rgba(242,108,26,.14); color: #ffd0ab; border: 1px solid rgba(242,108,26,.4); border-radius: 999px; padding: 6px 14px; font-size: .82rem; font-weight: 700; }

.aja-goals { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.aja-goal { background: rgba(255,255,255,.04); border: 1px solid var(--aja-line); border-radius: 14px; padding: 16px; font-weight: 600; display: flex; gap: 10px; align-items: flex-start; }
.aja-goal__ic { font-size: 1.2rem; flex: 0 0 auto; }

.aja-timeline { list-style: none; margin: 0; padding: 0; }
.aja-timeline__step { position: relative; display: flex; gap: 14px; padding: 0 0 18px; }
.aja-timeline__num { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--aja-orange), var(--aja-orange-2)); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; z-index: 1; }
.aja-timeline__step:not(:last-child)::before { content: ""; position: absolute; left: 16px; top: 34px; bottom: 0; width: 2px; background: var(--aja-line); }
.aja-timeline__txt { padding-top: 5px; }

.aja-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.aja-cols .aja-modal__section { margin-top: 14px; }

.aja-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.aja-why__item { background: rgba(255,255,255,.04); border: 1px solid var(--aja-line); border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 10px; font-weight: 700; }
.aja-why__ic { font-size: 1.4rem; }

.aja-faq { display: flex; flex-direction: column; gap: 10px; }
.aja-faq__item { border: 1px solid var(--aja-line); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.03); }
.aja-faq__q { width: 100%; text-align: left; background: none; border: 0; color: #fff; font-weight: 700; font-size: 1rem; padding: 16px 18px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; }
.aja-faq__chevron { transition: transform .25s ease; color: var(--aja-orange); font-size: 1.2rem; }
.aja-faq__item.is-open .aja-faq__chevron { transform: rotate(180deg); }
.aja-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.aja-faq__item.is-open .aja-faq__a { max-height: 320px; }
.aja-faq__a p { margin: 0; padding: 0 18px 16px; color: var(--aja-muted); }

.aja-similar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.aja-similar__card { padding: 0; cursor: pointer; background: rgba(255,255,255,.04); border: 1px solid var(--aja-line); border-radius: 14px; overflow: hidden; text-align: left; font-family: inherit; transition: transform .2s ease, border-color .2s ease; }
.aja-similar__card:hover { transform: translateY(-4px); border-color: var(--aja-orange); }
.aja-similar__img { display: block; height: 90px; background-size: cover; background-position: center; }
.aja-similar__body { display: flex; flex-direction: column; gap: 4px; padding: 12px 14px; }
.aja-similar__title { font-weight: 800; color: #fff; font-size: .92rem; }
.aja-similar__more { color: var(--aja-orange); font-weight: 700; font-size: .8rem; }

.aja-modal__sticky { position: sticky; bottom: 0; z-index: 6; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 22px; background: rgba(11,22,38,.92); backdrop-filter: blur(8px); border-top: 1px solid var(--aja-line); }
.aja-modal__sticky-price { display: flex; flex-direction: column; line-height: 1.1; }
.aja-modal__sticky-price b { color: #fff; font-size: 1.05rem; }
.aja-modal__sticky-price small { color: var(--aja-muted); font-size: .75rem; }

/* --- Carte à gratter DANS la modale (étape 2 : on révèle le petit plus) --- */
.aja-bonus { margin: 22px 0; border: 1px dashed var(--aja-orange); border-radius: 16px; padding: 16px; background: rgba(242,108,26,.06); }
.aja-bonus__label { font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; color: var(--aja-orange); margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.aja-bonus__zone { position: relative; min-height: 92px; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.aja-bonus__reveal { padding: 16px 20px; font-size: 1.05rem; font-weight: 700; color: #fff; }
.aja-bonus__canvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: crosshair; touch-action: none; }
.aja-bonus.is-done .aja-bonus__canvas { opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.aja-bonus__hint { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 3; pointer-events: none; background: rgba(255,255,255,.92); color: #0a1626; font-size: .74rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.aja-bonus.is-done .aja-bonus__hint { opacity: 0; }

.aja-modal__gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 10px; margin: 18px 0; }
.aja-modal__gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }

.aja-modal__cta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.aja-modal__cta .aja-muted { color: var(--aja-muted); font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) { .aja-app__inner { padding: 0 18px 64px; } }
@media (max-width: 720px) {
	.aja-hero { padding: 48px 0 18px; }
	.aja-hero__cta .aja-btn, .aja-final-cta__buttons .aja-btn { flex: 1 1 auto; justify-content: center; }
	.aja-stats, .aja-guarantees { grid-template-columns: repeat(2, 1fr); }
	.aja-stat { padding: 18px 10px; }
	.aja-stat__num { font-size: 1.6rem; }
	.aja-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
	.aja-card.is-highlight { grid-column: span 1; min-height: 340px; }
	.aja-grid.is-filtered .aja-card { flex: 1 1 100%; max-width: 100%; }
	.aja-modal__inner { padding: 22px; }
	.aja-modal__title { left: 18px; bottom: 14px; max-width: 80%; }
	.aja-carousel { aspect-ratio: 4/3; }
	.aja-carousel__nav { width: 46px; height: 46px; font-size: 1.7rem; }
	.aja-spec { flex: 1 1 calc(50% - 8px); font-size: .85rem; }
	.aja-cols { grid-template-columns: 1fr; gap: 8px; }
	.aja-modal__sticky { padding: 12px 16px; }
	.aja-modal__sticky .aja-btn { padding: 13px 18px; font-size: .82rem; }
}
@media (max-width: 560px) { .aja-universes { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
	.aja-grid { grid-template-columns: 1fr; }
	.aja-spec { flex: 1 1 100%; }
	.aja-hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
	.aja-final-cta { padding: 40px 18px; }
}
