/* ═══════════════════════════════════════════════
   TRISTANB. V4
   Space Grotesk · Dark premium · Green accent
   Bento grid · Gradient borders · Gradient text
═══════════════════════════════════════════════ */

:root {
	/* Fonds — légèrement remontés pour plus d'air et de lisibilité */
	--bg0: #0b1018; /* fond de base : bleu-nuit, pas cave */
	--bg1: #121b28; /* sections alternées */
	--bg2: #1a2538; /* inputs / barre navigateur */
	--bgc: #182030; /* cartes — bien visible sur --bg0 */
	--bgch: #1e2a3e; /* cartes au hover */

	--bdr: #253a55; /* bordures lisibles */
	--bdrh: #335070; /* bordures au hover */

	--g1: #7ed640;
	--g2: #50c080;
	--green: #7ed640;
	--glow: rgba(126, 214, 64, 0.2);
	--gdim: rgba(126, 214, 64, 0.12);

	--white: #ffffff;
	--hi: #edf2ff; /* texte principal : quasi blanc, très lisible */
	--mid: #92aacc; /* texte secondaire : bleu-gris clair */
	--low: #4a6080; /* texte discret */
	--red: #e84040;

	--fh: "Space Grotesk", system-ui, sans-serif;
	--fb: "Space Grotesk", system-ui, sans-serif;
	--fm: "Space Mono", ui-monospace, monospace;

	--cw: 1200px;
	--r: 14px;
	--rs: 8px;
	--rl: 20px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--t: 0.3s var(--ease);
}

/* ── Reset ─────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: var(--fb);
	font-size: 16px;
	line-height: 1.65;
	color: var(--hi);
	background: var(--bg0);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
::selection {
	background: var(--green);
	color: var(--bg0);
}
img,
svg {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
}
button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--green);
	color: var(--bg0);
	padding: 10px 20px;
	font-weight: 700;
	z-index: 9999;
}
.skip-link:focus {
	left: 16px;
	top: 16px;
	border-radius: var(--rs);
}
.container {
	max-width: var(--cw);
	margin: 0 auto;
	padding: 0 28px;
}

/* ── Typography ────────────────────────────── */
h1,
h2,
h3,
h4 {
	font-family: var(--fh);
	line-height: 1.08;
	letter-spacing: -0.035em;
	font-weight: 700;
}
h1 {
	font-size: clamp(2.6rem, 6vw, 4.2rem);
}
h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
	font-size: 1.15rem;
	letter-spacing: -0.02em;
}

/* Gradient text animé */
.grad-text {
	background: linear-gradient(90deg, var(--g1), var(--g2), var(--g1));
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradShift 4s linear infinite;
}
@keyframes gradShift {
	to {
		background-position: 200% center;
	}
}

.eyebrow {
	display: inline-block;
	font-family: var(--fm);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mid);
	margin-bottom: 14px;
}
.eyebrow.accent {
	color: var(--green);
}

/* ── Buttons ───────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 22px;
	border-radius: var(--rs);
	font-family: var(--fh);
	font-weight: 600;
	font-size: 0.93rem;
	transition: var(--t);
	white-space: nowrap;
	cursor: pointer;
}
.btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	transition: transform 0.3s;
}
.btn:hover svg {
	transform: translateX(4px);
}
.btn-green {
	background: var(--green);
	color: var(--bg0);
}
.btn-green:hover {
	background: #8fe849;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px var(--glow);
}
.btn-ghost {
	border: 1.5px solid var(--bdrh);
	color: var(--hi);
}
.btn-ghost:hover {
	border-color: var(--green);
	color: var(--green);
}
.btn-lg {
	padding: 16px 28px;
	font-size: 1rem;
	border-radius: var(--rs);
}
.btn-block {
	width: 100%;
	justify-content: center;
}

/* ── HEADER ─────────────────────────────────── */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(6, 8, 15, 0.6);
	backdrop-filter: blur(20px) saturate(1.6);
	-webkit-backdrop-filter: blur(20px) saturate(1.6);
	border-bottom: 1px solid transparent;
	transition:
		background var(--t),
		border-color var(--t);
}
.header.scrolled {
	background: rgba(6, 8, 15, 0.92);
	border-bottom-color: var(--bdr);
}
.header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	height: 68px;
}

.logo {
	display: flex;
	align-items: center;
}
.logo img {
	height: 36px;
	width: auto;
	display: block;
}

.nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}
.nav a {
	padding: 8px 14px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--mid);
	border-radius: var(--rs);
	transition: var(--t);
}
.nav a:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.05);
}
.nav .nav-pill {
	margin-left: 8px;
	background: var(--gdim);
	border: 1.5px solid rgba(126, 214, 64, 0.3);
	color: var(--green);
	padding: 8px 18px;
}
.nav .nav-pill:hover {
	background: var(--green);
	color: var(--bg0);
}

.burger {
	display: none;
	flex-direction: column;
	gap: 4.5px;
	padding: 8px;
	margin-left: auto;
}
.burger span {
	width: 22px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: var(--t);
}
.burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	width: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────── */
.hero {
	padding: 148px 0 0;
	position: relative;
	background: var(--bg0);
}
.hero-glow {
	position: absolute;
	top: -100px;
	left: -200px;
	width: 900px;
	height: 900px;
	background: radial-gradient(
		ellipse,
		rgba(126, 214, 64, 0.13) 0%,
		transparent 60%
	);
	pointer-events: none;
	animation: glow-drift 10s ease-in-out infinite alternate;
}
@keyframes glow-drift {
	to {
		transform: translate(80px, 60px);
	}
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: center;
	padding-bottom: 48px;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 16px;
	background: var(--gdim);
	border: 1px solid rgba(126, 214, 64, 0.25);
	color: var(--green);
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 24px;
}
.tag-dot {
	width: 7px;
	height: 7px;
	background: var(--green);
	border-radius: 50%;
	animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.35;
	}
}

.hero h1 {
	color: var(--white);
	margin-bottom: 20px;
}

.hero-sub {
	color: var(--mid);
	font-size: 1.05rem;
	max-width: 510px;
	margin-bottom: 28px;
}

.hero-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin-bottom: 36px;
}
.hero-checks span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hi);
}
.hero-checks svg {
	width: 16px;
	height: 16px;
	color: var(--green);
	flex-shrink: 0;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}

.proof {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	padding-top: 28px;
	border-top: 1px solid var(--bdr);
}
.proof-avatars {
	display: flex;
}
.proof-avatars span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2.5px solid var(--bg0);
	margin-left: -8px;
	flex-shrink: 0;
}
.proof-avatars span:first-child {
	margin-left: 0;
}
.proof-stars {
	color: var(--green);
	font-size: 1rem;
	letter-spacing: 2px;
}
.proof p {
	font-size: 0.88rem;
	color: var(--mid);
}

/* Mockup navigateur */
.hero-right {
	position: relative;
}
.mockup-wrap {
	position: relative;
}

.mockup-browser {
	background: var(--bg1);
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	overflow: hidden;
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.04);
	animation: float 7s ease-in-out infinite;
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.mb-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: var(--bg2);
	border-bottom: 1px solid var(--bdr);
}
.mb-dots {
	display: flex;
	gap: 6px;
}
.mb-dots i {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	font-style: normal;
}
.mb-dots i:nth-child(1) {
	background: #ff5f57;
}
.mb-dots i:nth-child(2) {
	background: #febc2e;
}
.mb-dots i:nth-child(3) {
	background: #28c840;
}
.mb-url {
	flex: 1;
	text-align: center;
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: 6px;
	padding: 4px 12px;
	font-family: var(--fm);
	font-size: 0.7rem;
	color: var(--low);
}

.mb-screen {
	background: #1a1d2e;
	min-height: 280px;
	display: flex;
	flex-direction: column;
}
.mbs-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	background: rgba(15, 15, 25, 0.9);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mbs-nav b {
	font-family: "Georgia", serif;
	font-style: italic;
	font-size: 0.85rem;
	color: #e8c97c;
	font-weight: 400;
}
.mbs-nav span {
	font-size: 0.62rem;
	color: rgba(255, 255, 255, 0.45);
	margin-left: 10px;
}
.mbs-body {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.mbs-text {
	padding: 22px 18px;
	background: linear-gradient(135deg, #0e1218, #181f30);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
}
.mbs-text small {
	font-size: 0.6rem;
	color: #e8c97c;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.mbs-text h4 {
	font-family: "Georgia", serif;
	font-style: italic;
	font-size: 1rem;
	font-weight: 400;
	color: #fff;
	line-height: 1.2;
}
.mbs-text button {
	display: inline-block;
	background: #e8c97c;
	color: #1a1200;
	padding: 6px 12px;
	border-radius: 3px;
	font-size: 0.62rem;
	font-weight: 700;
	align-self: flex-start;
	margin-top: 4px;
}
.mbs-img {
	background: linear-gradient(135deg, #8b6f47, #d4a574);
	position: relative;
}
.mbs-img-overlay {
	position: absolute;
	inset: 20% 15% 25% 20%;
	background: linear-gradient(
		180deg,
		rgba(40, 30, 20, 0.85),
		rgba(60, 45, 30, 0.5)
	);
	border-radius: 4px;
}

/* Chips résultats flottants */
.result-chip {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: rgba(12, 16, 32, 0.92);
	border: 1px solid var(--bdr);
	border-radius: var(--rs);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
	animation: chipFloat 5s ease-in-out infinite;
}
.result-chip svg {
	width: 22px;
	height: 22px;
	color: var(--green);
	flex-shrink: 0;
}
.result-chip b {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--white);
}
.result-chip span {
	font-size: 0.72rem;
	color: var(--mid);
}
.chip-a {
	bottom: -14px;
	left: -18px;
	animation-delay: 0s;
}
.chip-b {
	top: 32px;
	right: -22px;
	animation-delay: 1.4s;
}
.chip-c {
	bottom: 80px;
	right: -28px;
	animation-delay: 2.8s;
}
@keyframes chipFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

/* Marquee */
.marquee-wrap {
	border-top: 1px solid var(--bdr);
	border-bottom: 1px solid var(--bdr);
	overflow: hidden;
	padding: 14px 0;
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 10%,
		#000 90%,
		transparent
	);
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent,
		#000 10%,
		#000 90%,
		transparent
	);
}
.marquee-track {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	white-space: nowrap;
	animation: scroll 35s linear infinite;
}
.marquee-track span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--mid);
	letter-spacing: 0.01em;
}
.marquee-track i {
	color: var(--green);
	font-style: normal;
	font-size: 0.7rem;
	opacity: 0.7;
}
@keyframes scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* ── STATS ──────────────────────────────────── */
.stats {
	padding: 60px 0;
	border-bottom: 1px solid var(--bdr);
	background: var(--bg1);
}
.stats-grid {
	display: flex;
	align-items: center;
}
.stat {
	flex: 1;
	text-align: center;
	padding: 0 16px;
}
.stat-n {
	font-family: var(--fh);
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.05em;
	color: var(--green);
	display: inline-block;
	line-height: 1;
}
.stat sup {
	font-size: 1.3rem;
	color: var(--green);
	opacity: 0.8;
	vertical-align: top;
	margin-top: 10px;
	font-weight: 600;
}
.stat p {
	font-size: 0.85rem;
	color: var(--mid);
	margin-top: 6px;
	font-weight: 500;
}
.stat-sep {
	width: 1px;
	height: 52px;
	flex-shrink: 0;
	background: linear-gradient(180deg, transparent, var(--bdr), transparent);
}

/* ── PROBLÈME ───────────────────────────────── */
.problem {
	padding: 100px 0;
	background: var(--bg0);
}
.problem h2 {
	margin-bottom: 48px;
	max-width: 700px;
}
.problem-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 36px;
}

.pcard {
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	padding: 36px 28px;
	text-align: center;
	transition: var(--t);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}
.pcard:hover {
	border-color: var(--bdrh);
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.pcard-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(232, 64, 64, 0.1);
	border: 1.5px solid rgba(232, 64, 64, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	margin: 0 auto 20px;
}
.pcard-icon svg {
	width: 26px;
	height: 26px;
}
.pcard h3 {
	color: var(--white);
	margin-bottom: 12px;
}
.pcard p {
	color: var(--mid);
	font-size: 0.93rem;
	line-height: 1.6;
}

.problem-result {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 28px;
	background: rgba(232, 64, 64, 0.06);
	border: 1px solid rgba(232, 64, 64, 0.18);
	border-radius: var(--rs);
	font-size: 0.98rem;
	color: var(--hi);
}
.problem-result svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}
.problem-result strong {
	color: var(--white);
}

/* ── BENTO GRID ─────────────────────────────── */
.services {
	padding: 100px 0;
	background: var(--bg1);
	border-top: 1px solid var(--bdr);
	border-bottom: 1px solid var(--bdr);
}
.services h2 {
	margin-bottom: 48px;
}

.bento {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 20px;
	align-items: stretch;
}
.bento-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Carte de base */
.bento-card {
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	padding: 32px 28px;
	position: relative;
	overflow: hidden;
	transition: var(--t);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.14);
}
.bento-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--r);
	background: linear-gradient(
		135deg,
		rgba(126, 214, 64, 0.08),
		transparent 60%
	);
	opacity: 0;
	transition: opacity 0.4s;
}
.bento-card:hover {
	border-color: rgba(126, 214, 64, 0.35);
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}
.bento-card:hover::before {
	opacity: 1;
}

.bento-num {
	font-family: var(--fm);
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.12em;
	margin-bottom: 14px;
}
.bento-icon {
	width: 46px;
	height: 46px;
	background: var(--gdim);
	border-radius: var(--rs);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	margin-bottom: 16px;
	transition: var(--t);
}
.bento-card:hover .bento-icon {
	background: rgba(126, 214, 64, 0.18);
	transform: scale(1.08);
}
.bento-icon svg {
	width: 24px;
	height: 24px;
}
.bento-card h3 {
	color: var(--white);
	margin-bottom: 10px;
}
.bento-card p {
	color: var(--mid);
	font-size: 0.92rem;
	line-height: 1.55;
}

/* Grande card */
.bento-big {
	display: flex;
	flex-direction: column;
}

/* Visuel interne de la grande card */
.bento-visual {
	margin-top: 24px;
	flex: 1;
	border-radius: var(--rs);
	overflow: hidden;
	min-height: 140px;
	background: var(--bg2);
	border: 1px solid var(--bdr);
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bv-window {
	width: 100%;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
}
.bv-bar {
	display: flex;
	gap: 5px;
	padding: 7px 10px;
	background: #f5f5f5;
	border-bottom: 1px solid #e5e5e5;
}
.bv-bar i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	font-style: normal;
}
.bv-bar i:nth-child(1) {
	background: #ff5f57;
}
.bv-bar i:nth-child(2) {
	background: #febc2e;
}
.bv-bar i:nth-child(3) {
	background: #28c840;
}
.bv-body {
	height: 70px;
	background: linear-gradient(135deg, #1a1d2e, #252840);
}

/* Speed bar */
.speed-bar {
	margin-top: 18px;
	background: var(--bg2);
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
	position: relative;
}
.speed-fill {
	height: 100%;
	width: var(--w);
	background: linear-gradient(90deg, var(--g1), var(--g2));
	border-radius: 999px;
	position: relative;
	animation: fillUp 1.5s var(--ease) both;
}
@keyframes fillUp {
	from {
		width: 0;
	}
	to {
		width: var(--w);
	}
}
.speed-fill span {
	position: absolute;
	right: 4px;
	top: -20px;
	font-family: var(--fm);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--green);
}

/* ── RÉALISATIONS ───────────────────────────── */
.work {
	padding: 100px 0;
	background: var(--bg0);
}
.section-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.section-head-row h2 {
	margin-bottom: 0;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}
.wcard--feat {
	grid-column: 1/-1;
}

.wcard {
	border-radius: var(--r);
	overflow: hidden;
	border: 1px solid var(--bdr);
	transition: transform var(--t);
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}
.wcard:hover {
	transform: translateY(-5px);
	border-color: var(--bdrh);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.wcard-screen {
	position: relative;
	display: flex;
	flex-direction: column;
}
.ws-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 9px 13px;
	background: var(--bg2);
}
.ws-bar i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	font-style: normal;
}
.ws-bar i:nth-child(1) {
	background: #ff5f57;
}
.ws-bar i:nth-child(2) {
	background: #febc2e;
}
.ws-bar i:nth-child(3) {
	background: #28c840;
}
.ws-bar span {
	margin-left: 8px;
	font-family: var(--fm);
	font-size: 0.68rem;
	color: var(--low);
}

.ws-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 200px;
}
.wcard--feat .ws-body {
	min-height: 260px;
}
.ws-dark {
	background: var(--bgc);
}
.ws-text {
	padding: 24px 20px;
	background: linear-gradient(135deg, #0c1018, #181f2e);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}
.ws-text small {
	font-size: 0.62rem;
	color: #e8c97c;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.ws-text h4 {
	font-family: "Georgia", serif;
	font-style: italic;
	font-size: 1.05rem;
	font-weight: 400;
	color: #fff;
	line-height: 1.2;
}
.ws-text p {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.6);
}
.ws-text button {
	display: inline-block;
	background: #e8c97c;
	color: #1a1200;
	padding: 7px 13px;
	border-radius: 3px;
	font-size: 0.62rem;
	font-weight: 700;
	align-self: flex-start;
	margin-top: 6px;
}
.ws-img--villa {
	background: linear-gradient(135deg, #8b6f47, #c4944e);
	position: relative;
	overflow: hidden;
}

/* Screenshot réel dans les cards */
.ws-screenshot {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	z-index: 0;
}

/* Zone screen pour les petites cards */
.ws-screen-body {
	position: relative;
	flex: 1;
	overflow: hidden;
	min-height: 200px;
}
.ws-screen-body .ws-mini {
	position: absolute;
	inset: 0;
	justify-content: flex-end;
	min-height: unset;
	padding: 18px 22px;
	z-index: 1;
}

.ws-mini {
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
}
.ws-ocean {
	background: linear-gradient(140deg, #0a1928, #1a3a56);
}
.ws-warm {
	background: linear-gradient(140deg, #1a1005, #3c2010);
}
.ws-mini h4 {
	font-family: var(--fh);
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}
.ws-mini p {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
}

.wcard-info {
	background: var(--bgc);
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.wcard-tag {
	font-family: var(--fm);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.wcard-text h3 {
	color: var(--white);
	font-size: 1.15rem;
	margin-bottom: 4px;
}
.wcard-text p {
	color: var(--mid);
	font-size: 0.9rem;
}
.wcard-result {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--green);
	padding-top: 10px;
	border-top: 1px solid var(--bdr);
	margin-top: auto;
}
.testi {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 0;
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.testi::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.testi-left {
	padding: 40px 44px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.testi-qs {
	color: var(--green);
	font-size: 1rem;
	letter-spacing: 3px;
}
#testiQ {
	font-size: 1.08rem;
	line-height: 1.65;
	color: var(--hi);
	font-style: italic;
	transition:
		opacity 0.3s,
		transform 0.3s;
}
.testi-who {
	display: flex;
	align-items: center;
	gap: 14px;
}
.testi-av {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid var(--bdrh);
}
.testi-who strong {
	display: block;
	color: var(--white);
	font-weight: 600;
}
.testi-who span {
	font-size: 0.82rem;
	color: var(--mid);
}
.testi-dots {
	display: flex;
	gap: 8px;
}
.tdot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--bdrh);
	transition: var(--t);
	cursor: pointer;
}
.tdot.on {
	background: var(--green);
	width: 28px;
	border-radius: 5px;
}

.testi-right {
	background: linear-gradient(
		135deg,
		rgba(126, 214, 64, 0.08),
		transparent 70%
	);
	border-left: 1px solid var(--bdr);
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 28px;
}
.testi-metric {
	text-align: center;
}
.tm-n {
	font-family: var(--fh);
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.05em;
	color: var(--green);
	display: inline-block;
	line-height: 1;
}
.testi-metric sup {
	font-size: 1.1rem;
	color: var(--green);
	opacity: 0.7;
	vertical-align: top;
	margin-top: 6px;
	font-weight: 600;
}
.testi-metric p {
	font-size: 0.82rem;
	color: var(--mid);
	margin-top: 4px;
	font-weight: 500;
}

/* ── TARIFS ─────────────────────────────────── */
.pricing {
	padding: 100px 0;
	background: var(--bg1);
	border-top: 1px solid var(--bdr);
	border-bottom: 1px solid var(--bdr);
}
.pricing h2 {
	margin-bottom: 48px;
}

.plans {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 32px;
	align-items: start;
}
.plans--4 {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.plan {
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	transition: var(--t);
}
.plan:hover {
	border-color: var(--bdrh);
	transform: translateY(-4px);
}

/* Gradient border sur la plan featured */
.plan--star {
	background:
		linear-gradient(var(--bg0), var(--bg0)) padding-box,
		linear-gradient(135deg, var(--g1), var(--g2)) border-box;
	border: 1.5px solid transparent;
}
.plan--star:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 60px var(--glow);
}

.plan-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(90deg, var(--g1), var(--g2));
	color: var(--bg0);
	padding: 5px 16px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}
.plan header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.plan-label {
	font-family: var(--fm);
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.plan header h3 {
	font-size: 1.35rem;
	color: var(--white);
	letter-spacing: -0.02em;
}
.plan header p {
	color: var(--mid);
	font-size: 0.88rem;
	line-height: 1.5;
}

.plan-price {
	padding: 20px 0;
	border-top: 1px solid var(--bdr);
	border-bottom: 1px solid var(--bdr);
}
.plan--star .plan-price {
	border-color: rgba(126, 214, 64, 0.2);
}
.plan-price small {
	display: block;
	font-size: 0.74rem;
	color: var(--mid);
	margin-bottom: 6px;
}
.plan-price strong {
	font-family: var(--fh);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.04em;
}
.plan--star .plan-price strong {
	color: var(--green);
}
.plan-price em {
	font-size: 1.2rem;
	color: var(--green);
	font-style: normal;
	margin-left: 2px;
	opacity: 0.8;
}

.plan ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.plan li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.93rem;
	color: var(--hi);
}
.plan svg {
	width: 15px;
	height: 15px;
	color: var(--green);
	flex-shrink: 0;
}

/* Audit strip */
.audit-strip {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	padding: 26px 32px;
	flex-wrap: wrap;
}
.as-icon {
	width: 50px;
	height: 50px;
	background: var(--gdim);
	border-radius: var(--rs);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green);
	flex-shrink: 0;
}
.as-icon svg {
	width: 26px;
	height: 26px;
}
.audit-strip > div {
	flex: 1;
	min-width: 200px;
}
.audit-strip strong {
	display: block;
	color: var(--white);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.audit-strip p {
	color: var(--mid);
	font-size: 0.9rem;
}

/* ── FAQ ────────────────────────────────────── */
.faq {
	padding: 100px 0;
	background: var(--bg1);
	border-top: 1px solid var(--bdr);
}
.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1.8fr;
	gap: 80px;
	align-items: start;
}
.faq-left h2 {
	margin-bottom: 16px;
}
.faq-left p {
	color: var(--mid);
	line-height: 1.65;
}

.faq-right {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.faq-item {
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: var(--rs);
	overflow: hidden;
	transition: var(--t);
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.14);
}
.faq-item:hover {
	border-color: var(--bdrh);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.faq-item[open] {
	border-color: rgba(126, 214, 64, 0.25);
}
.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	gap: 20px;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	font-size: 0.97rem;
	color: var(--white);
	transition: var(--t);
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item summary span {
	font-size: 1.5rem;
	color: var(--green);
	flex-shrink: 0;
	font-weight: 300;
	line-height: 1;
	transition: transform 0.3s;
}
.faq-item[open] summary span {
	transform: rotate(45deg);
}
.faq-item p {
	padding: 0 22px 18px;
	color: var(--mid);
	font-size: 0.93rem;
	line-height: 1.65;
}

/* ── CONTACT ────────────────────────────────── */
.contact {
	padding: 100px 0;
	background: var(--bg0);
	border-top: 1px solid var(--bdr);
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
	align-items: start;
}
.contact-left h2 {
	margin-bottom: 16px;
}
.contact-left > p {
	color: var(--mid);
	margin-bottom: 36px;
}

.cinfo {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 32px;
}
.cinfo a,
.cinfo span {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.95rem;
	color: var(--hi);
	transition: color 0.3s;
}
.cinfo a:hover {
	color: var(--green);
}
.cinfo svg {
	width: 18px;
	height: 18px;
	color: var(--green);
	flex-shrink: 0;
}

.csocials {
	display: flex;
	gap: 10px;
}
.csocials a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bgc);
	border: 1px solid var(--bdr);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mid);
	transition: var(--t);
}
.csocials a:hover {
	color: var(--green);
	border-color: var(--green);
	background: var(--gdim);
}
.csocials svg {
	width: 16px;
	height: 16px;
}

.contact-right form {
	background: var(--bgc);
	border: 1px solid var(--bdr);
	border-radius: var(--r);
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}
.frow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.ff {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.ff label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--mid);
}
.ff label span {
	color: var(--green);
}
.ff input,
.ff textarea {
	background: var(--bg1);
	border: 1px solid var(--bdr);
	border-radius: var(--rs);
	padding: 12px 16px;
	font-family: var(--fb);
	font-size: 0.95rem;
	color: var(--white);
	transition: var(--t);
}
.ff input::placeholder,
.ff textarea::placeholder {
	color: var(--mid);
}
.ff input:focus,
.ff textarea:focus {
	outline: none;
	border-color: var(--green);
	background: rgba(126, 214, 64, 0.04);
	box-shadow: 0 0 0 3px rgba(126, 214, 64, 0.12);
}
.ff textarea {
	resize: vertical;
}
.hp {
	position: absolute !important;
	left: -9999px !important;
	opacity: 0;
}
.btn-submit {
	margin-top: 4px;
}
.fnote {
	font-size: 0.8rem;
	color: var(--low);
	text-align: center;
}
.fstatus {
	font-size: 0.88rem;
	color: var(--green);
	text-align: center;
}
.fstatus.err {
	color: var(--red);
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
	background: var(--bg1);
	border-top: 1px solid var(--bdr);
}
.footer-inner {
	display: flex;
	gap: 48px;
	padding: 56px 28px;
	flex-wrap: wrap;
	align-items: flex-start;
}
.footer-brand {
	flex: 2;
	min-width: 220px;
}
.footer-brand .logo {
	margin-bottom: 14px;
	display: inline-block;
}
.footer-brand p {
	color: var(--mid);
	font-size: 0.9rem;
	line-height: 1.65;
	max-width: 300px;
	margin-bottom: 20px;
}
.footer-nav {
	display: flex;
	gap: 48px;
	flex: 2;
	flex-wrap: wrap;
}
.footer-nav > div {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-nav h5 {
	font-family: var(--fm);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--low);
	margin-bottom: 4px;
}
.footer-nav a,
.footer-nav span {
	font-size: 0.9rem;
	color: var(--mid);
	transition: color 0.3s;
}
.footer-nav a:hover {
	color: var(--green);
}
.footer-cta {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}
.footer-cta p {
	font-size: 0.88rem;
	color: var(--mid);
}
.footer-bottom {
	border-top: 1px solid var(--bdr);
	background: var(--bg0);
}
.footer-bottom-in {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 28px;
	font-size: 0.82rem;
	color: var(--low);
	flex-wrap: wrap;
	gap: 12px;
}
.footer-bottom-in div {
	display: flex;
	gap: 20px;
}
.footer-bottom-in a {
	color: var(--low);
	transition: color 0.3s;
}
.footer-bottom-in a:hover {
	color: var(--green);
}

/* ── BACK TO TOP ────────────────────────────── */
.back-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 90;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--green);
	color: var(--bg0);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px var(--glow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: var(--t);
}
.back-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.back-top:hover {
	background: #8fe849;
	transform: translateY(-3px);
}
.back-top svg {
	width: 20px;
	height: 20px;
}

/* ── REVEAL ANIMATION ───────────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s var(--ease),
		transform 0.8s var(--ease);
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1080px) {
	.hero-grid,
	.contact-grid,
	.about-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.hero-right {
		max-width: 560px;
		margin: 0 auto;
	}
	.bento {
		grid-template-columns: 1fr;
	}
	.bento-col {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.bento-col .bento-card {
		flex: 1;
		min-width: 220px;
	}
	.plans {
		grid-template-columns: 1fr;
	}
	.plans--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.testi {
		grid-template-columns: 1fr;
	}
	.testi-right {
		border-left: none;
		border-top: 1px solid var(--bdr);
		flex-direction: row;
		justify-content: space-around;
	}
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.nav {
		display: none;
	}
	.nav.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 68px;
		left: 0;
		right: 0;
		background: rgba(6, 8, 15, 0.97);
		backdrop-filter: blur(20px);
		padding: 24px 28px;
		gap: 6px;
		border-bottom: 1px solid var(--bdr);
		z-index: 99;
	}
	.nav.open a {
		padding: 14px;
		font-size: 1rem;
		border-radius: var(--rs);
	}
	.burger {
		display: flex;
	}
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	.hero {
		padding: 120px 0 0;
	}
	.problem-grid,
	.plans,
	.plans--4 {
		grid-template-columns: 1fr;
	}
	.work-grid {
		grid-template-columns: 1fr;
	}
	.wcard--feat {
		grid-column: 1;
	}
	.stats-grid {
		flex-wrap: wrap;
	}
	.stat {
		flex: calc(50% - 20px);
	}
	.stat-sep:nth-child(4) {
		display: none;
	}
	.testi-right {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.audit-strip {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.frow {
		grid-template-columns: 1fr;
	}
	.contact-right form {
		padding: 24px;
	}
	.footer-inner {
		flex-direction: column;
		gap: 32px;
		padding: 40px 24px;
	}
	.footer-nav {
		gap: 32px;
	}
	.section-head-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
	}
	html {
		scroll-behavior: auto;
	}
}
