/* ============================================================
   Claude Sandbox — site de présentation
   Palette dérivée du logo : teal du cube, corail de la créature,
   sable beige, fonds crème.
   ============================================================ */

:root {
	/* Couleurs de marque — alignées sur le thème de l'application.
	   Teal d'accent officiel = #008099 (boutons d'action, indicateur
	   d'étape du wizard). Surbrillance = #BEE6F1. */
	--teal-900: #063842;
	--teal-700: #0a4f5d;
	--teal-500: #008099;
	--teal-400: #2ba0b6;
	--teal-300: #7fcadb;
	--teal-highlight: #bee6f1;

	--coral-600: #c25a3c;
	--coral-500: #d2724f;
	--coral-400: #e08a68;

	--green-500: #3bbfa0;
	--green-100: #ebf8f5;

	--sand-200: #f0e3c4;
	--sand-100: #f7eeda;

	/* Neutres */
	--ink: #14201f;
	--ink-soft: #3f5250;
	--cream: #fbf8f1;
	--cream-2: #f4eee2;
	--white: #ffffff;
	--line: rgba(20, 32, 31, 0.10);

	/* Système */
	--radius: 16px;
	--radius-lg: 26px;
	--shadow-sm: 0 4px 16px rgba(13, 59, 61, 0.10);
	--shadow-md: 0 14px 38px rgba(13, 59, 61, 0.16);
	--shadow-lg: 0 32px 72px rgba(13, 59, 61, 0.26);
	--maxw: 1140px;

	--font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--mono: "Cascadia Code", "SF Mono", "Consolas", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	font-family: var(--font);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Boutons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	font-size: 0.98rem;
	border-radius: 999px;
	padding: 12px 24px;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
	white-space: nowrap;
}

.btn--sm {
	padding: 9px 18px;
	font-size: 0.9rem;
}

.btn--lg {
	padding: 15px 30px;
	font-size: 1.05rem;
}

.btn--primary {
	background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
	color: var(--white);
	box-shadow: 0 8px 22px rgba(194, 90, 60, 0.32);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(194, 90, 60, 0.42);
}

/* Bouton désactivé — ex. téléchargement sur un OS non-Windows */
.btn.is-disabled {
	background: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.55);
	box-shadow: none;
	cursor: not-allowed;
	pointer-events: none;
}

.btn.is-disabled:hover {
	transform: none;
	box-shadow: none;
}

.btn--ghost {
	background: transparent;
	color: var(--teal-900);
	border-color: var(--line);
}

.btn--ghost:hover {
	border-color: var(--teal-500);
	color: var(--teal-700);
	transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	background: rgba(251, 248, 241, 0.72);
	backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-sm);
}

.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	gap: 20px;
}

.nav__brand {
	display: flex;
	align-items: center;
}

.nav__brand-logo {
	height: 42px;
	width: auto;
}

.nav__links {
	display: flex;
	gap: 28px;
	margin-left: auto;
}

.nav__links a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--ink-soft);
	position: relative;
	padding: 4px 0;
}

.nav__links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: var(--coral-500);
	transition: width 0.22s ease;
}

.nav__links a:hover {
	color: var(--teal-900);
}

.nav__links a:hover::after {
	width: 100%;
}

.nav__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* ---------- Bascule de langue ---------- */
.lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--cream-2);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 6px 12px;
	font-family: var(--font);
	font-weight: 700;
	font-size: 0.82rem;
	cursor: pointer;
	color: var(--ink-soft);
	transition: border-color 0.2s ease;
}

.lang-toggle:hover {
	border-color: var(--teal-400);
}

.lang-toggle__opt.is-active {
	color: var(--coral-600);
}

.lang-toggle__sep {
	opacity: 0.4;
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	padding: 150px 0 45px;
	background:
		radial-gradient(1200px 600px at 75% -10%, rgba(0, 128, 153, 0.14), transparent 60%),
		linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
	overflow: hidden;
}

.hero__glow {
	position: absolute;
	top: -180px;
	right: -120px;
	width: 560px;
	height: 560px;
	background: radial-gradient(circle, rgba(224, 138, 104, 0.22), transparent 65%);
	filter: blur(20px);
	pointer-events: none;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 40px;
	position: relative;
}

.badge {
	display: inline-block;
	background: rgba(0, 128, 153, 0.12);
	color: var(--teal-500);
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 22px;
}

.hero__title {
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: var(--teal-900);
	margin-bottom: 22px;
}

.hero__subtitle {
	font-size: 1.18rem;
	color: var(--ink-soft);
	max-width: 540px;
	margin-bottom: 34px;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 30px;
}

.hero__points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	list-style: none;
}

.hero__points li {
	position: relative;
	padding-left: 24px;
	font-size: 0.95rem;
	color: var(--ink-soft);
	font-weight: 500;
}

.hero__points li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--teal-500);
	font-weight: 800;
}

.hero__pricing-note {
	margin-top: 16px;
	font-size: 0.85rem;
	color: var(--ink-soft);
	opacity: 0.75;
}

.hero__legal-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 24px;
	padding: 10px 14px;
	background: var(--sand-100);
	border-left: 3px solid var(--coral-400);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	font-size: 0.78rem;
	color: var(--ink-soft);
	line-height: 1.5;
}

.hero__legal-note::before {
	content: "®";
	flex-shrink: 0;
	font-size: 0.9rem;
	color: var(--coral-500);
	font-weight: 700;
	margin-top: 1px;
}

.hero__users {
	margin: 16px 0 0 0;
	padding: 8px 14px;
	border: none;
	background: var(--green-100);
	border-radius: 8px;
	font-size: 0.85rem;
	color: var(--ink-soft);
	font-style: italic;
	box-shadow:
		0 2px 0 #2ea88a,
		0 4px 8px rgba(59, 191, 160, 0.20);
}

.hero__visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__logo {
	width: min(100%, 420px);
	filter: drop-shadow(0 40px 60px rgba(13, 59, 61, 0.28));
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-16px); }
}

/* ---------- Sections génériques ---------- */
section {
	padding: 90px 0;
}

.section-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 54px;
}

.section-head__eyebrow {
	display: inline-block;
	color: var(--coral-500);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.section-head__title {
	font-size: clamp(1.7rem, 3.2vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--teal-900);
	font-weight: 800;
}

/* ---------- Pourquoi ---------- */
.why {
	background: var(--white);
}

.why__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 32px;
	align-items: center;
}

.why__col {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: var(--shadow-sm);
}

.why__col--solution {
	background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
	border-color: transparent;
	color: var(--sand-100);
	box-shadow: var(--shadow-md);
}

.why__col--solution .section-head__title,
.why__col--solution h2 {
	color: var(--white);
}

.why__tag {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--coral-600);
	background: rgba(194, 90, 60, 0.12);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.why__tag--ok {
	color: var(--teal-300);
	background: rgba(111, 205, 207, 0.16);
}

.why__col h2 {
	font-size: 1.45rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin-bottom: 14px;
	color: var(--teal-900);
}

.why__col p {
	color: var(--ink-soft);
	font-size: 1.02rem;
}

.why__col--solution p {
	color: rgba(247, 238, 218, 0.85);
}

.why__arrow {
	font-size: 2rem;
	color: var(--teal-400);
	font-weight: 700;
}

/* ---------- Multi-dépôts / multi-sessions ---------- */
.multi {
	background:
		radial-gradient(900px 500px at 12% 0%, rgba(190, 230, 241, 0.55), transparent 60%),
		var(--cream);
}

.multi__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 54px;
	align-items: center;
}

.multi__title {
	text-align: left;
	margin-bottom: 32px;
	max-width: 16ch;
}

.multi__list {
	list-style: none;
	display: grid;
	gap: 24px;
}

.multi__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.multi__badge {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	color: var(--teal-500);
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1;
}

.multi__item h3 {
	font-size: 1.14rem;
	color: var(--teal-900);
	margin-bottom: 4px;
	letter-spacing: -0.01em;
}

.multi__item p {
	color: var(--ink-soft);
	font-size: 0.98rem;
}

/* Panneau maquette — arborescence dépôts → sessions */
.multi__visual {
	display: flex;
	justify-content: center;
}

.panel {
	width: 100%;
	max-width: 380px;
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.panel__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 13px 16px;
	background: var(--teal-900);
}

.panel__bar em {
	font-style: normal;
	font-weight: 700;
	color: var(--white);
	font-size: 0.95rem;
}

.panel__add {
	margin-left: auto;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--teal-900);
	background: var(--teal-highlight);
	padding: 4px 10px;
	border-radius: 999px;
}

.panel__body {
	padding: 12px 10px;
}

.tree {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tree__repo {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 10px;
	border-radius: 8px;
	font-weight: 700;
	color: var(--teal-900);
	font-size: 0.95rem;
}

.tree__repo:not(:first-child) {
	margin-top: 8px;
}

.tree__session {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 10px 7px 30px;
	border-radius: 8px;
	color: var(--ink-soft);
	font-size: 0.9rem;
	position: relative;
	transition: background 0.18s ease;
}

.tree__session::before {
	content: "";
	position: absolute;
	left: 17px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--line);
}

.tree__session:hover {
	background: var(--teal-highlight);
	color: var(--teal-900);
}

/* ---------- Fonctionnalités ---------- */
.features {
	background: var(--cream);
}

.cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px;
	box-shadow: var(--shadow-md);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(0, 128, 153, 0.4);
}

.card__icon {
	width: 46px;
	height: 46px;
	margin-bottom: 16px;
}

.card h3 {
	font-size: 1.12rem;
	color: var(--teal-900);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.card p {
	font-size: 0.96rem;
	color: var(--ink-soft);
}

/* ---------- Sécurité ---------- */
.security {
	background: var(--white);
}

.security__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.security__text .section-head__eyebrow {
	margin-bottom: 12px;
}

.security__text .section-head__title {
	text-align: left;
	margin-bottom: 18px;
}

.security__text > p {
	color: var(--ink-soft);
	font-size: 1.08rem;
	margin-bottom: 26px;
}

.checklist {
	list-style: none;
	display: grid;
	gap: 14px;
}

.checklist li {
	position: relative;
	padding-left: 34px;
	color: var(--ink);
	font-weight: 500;
}

.checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--teal-500);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}

/* ---------- Terminal ---------- */
.terminal {
	background: var(--teal-900);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal__bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(0, 0, 0, 0.2);
}

.terminal__bar span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
}

.terminal__bar span:nth-child(1) { background: #ff6058; }
.terminal__bar span:nth-child(2) { background: #ffbd2e; }
.terminal__bar span:nth-child(3) { background: #28ca42; }

.terminal__bar em {
	margin-left: auto;
	font-style: normal;
	font-family: var(--mono);
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.4);
}

.terminal__body {
	padding: 22px;
	font-family: var(--mono);
	font-size: 0.9rem;
	line-height: 1.9;
	color: var(--sand-100);
	overflow-x: auto;
}

.c-prompt { color: var(--teal-300); font-weight: 700; }
.c-muted { color: rgba(247, 238, 218, 0.4); }
.c-err { color: #ff8a7a; }
.c-ok { color: #7fd99a; }
.c-accent { color: var(--coral-400); }

/* ---------- Comment ça marche ---------- */
.how {
	background: var(--cream);
}

.steps {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	counter-reset: step;
}

.step {
	position: relative;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px 28px;
	box-shadow: var(--shadow-sm);
}

.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
	color: var(--white);
	font-weight: 800;
	font-size: 1.2rem;
	margin-bottom: 18px;
}

.step h3 {
	font-size: 1.18rem;
	color: var(--teal-900);
	margin-bottom: 10px;
}

.step p {
	color: var(--ink-soft);
}

/* ---------- Bon à savoir — bulles d'information ---------- */
.tips {
	background: var(--white);
}

.tips__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.tip {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 14px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 26px;
	box-shadow: var(--shadow-sm);
}

/* Pointe de la bulle — coin bas-gauche */
.tip::after {
	content: "";
	position: absolute;
	left: 36px;
	bottom: -10px;
	width: 20px;
	height: 20px;
	background: var(--cream);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transform: rotate(45deg);
}

.tip__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--teal-highlight);
}

.tip__icon img {
	width: 34px;
	height: 34px;
}

.tip__body h3 {
	font-size: 1.14rem;
	color: var(--teal-900);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.tip__body p {
	color: var(--ink-soft);
	font-size: 0.98rem;
}

.tip__body code {
	font-family: var(--mono);
	font-size: 0.9em;
	background: rgba(0, 128, 153, 0.1);
	color: var(--teal-700);
	padding: 1px 6px;
	border-radius: 6px;
}

/* ---------- Prérequis ---------- */
.requirements {
	background: var(--white);
}

.req-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.req-item {
	border: 1px dashed rgba(20, 32, 31, 0.18);
	border-radius: var(--radius);
	padding: 28px;
	text-align: center;
	background: var(--cream);
	box-shadow: var(--shadow-sm);
}

.req-item h3 {
	color: var(--teal-900);
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.req-item p {
	color: var(--ink-soft);
	font-size: 0.96rem;
}

/* ---------- Téléchargement ---------- */
.download {
	background: var(--cream);
}

.download__card {
	position: relative;
	text-align: center;
	background: linear-gradient(160deg, var(--teal-900), var(--teal-700) 70%, var(--teal-500));
	border-radius: var(--radius-lg);
	padding: 64px 32px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.download__card::after {
	content: "";
	position: absolute;
	bottom: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 320px;
	background: radial-gradient(circle, rgba(224, 138, 104, 0.3), transparent 65%);
	pointer-events: none;
}

.download__logo {
	width: auto;
	height: 78px;
	margin: 0 auto 24px;
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.3));
	position: relative;
}

.download__title {
	color: var(--white);
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	letter-spacing: -0.02em;
	margin-bottom: 14px;
	position: relative;
}

.download__points {
	list-style: none;
	display: inline-block;
	max-width: 520px;
	margin: 0 auto 30px;
	text-align: left;
	position: relative;
}

.download__points li {
	position: relative;
	padding-left: 26px;
	color: rgba(247, 238, 218, 0.85);
	font-size: 1.08rem;
	line-height: 1.5;
}

.download__points li + li {
	margin-top: 12px;
}

.download__points li::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 0.62em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--teal-300);
}

.download__cta {
	position: relative;
	margin-bottom: 16px;
}

.download__note {
	color: rgba(247, 238, 218, 0.55);
	font-size: 0.88rem;
	position: relative;
}

.download__api-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	max-width: 480px;
	margin: 24px auto 0;
	padding: 10px 14px;
	background: rgba(59, 191, 160, 0.15);
	border-left: 3px solid var(--green-500);
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	font-size: 0.78rem;
	color: rgba(247, 238, 218, 0.85);
	line-height: 1.5;
	text-align: left;
	position: relative;
}

.download__api-note::before {
	content: "ⓘ";
	flex-shrink: 0;
	font-size: 0.9rem;
	color: var(--green-500);
	font-weight: 700;
	margin-top: 1px;
}

.download__oswarn {
	position: relative;
	max-width: 440px;
	margin: 0 auto 14px;
	padding: 10px 16px;
	border-radius: 12px;
	background: rgba(224, 138, 104, 0.18);
	border: 1px solid rgba(224, 138, 104, 0.4);
	color: var(--sand-100);
	font-size: 0.92rem;
	font-weight: 500;
}

.download__oswarn[hidden] {
	display: none;
}

/* ---------- Contact ---------- */
.contact {
	background: var(--white);
}

.contact__card {
	max-width: 620px;
	margin: 0 auto;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.contact__name {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--teal-900);
	margin-bottom: 24px;
}

.contact__links {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.contact__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact__label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--coral-500);
}

.contact__link {
	color: var(--teal-500);
	font-size: 1.05rem;
	font-weight: 600;
	text-decoration: none;
	word-break: break-word;
}

.contact__link:hover {
	text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
	background: var(--teal-900);
	color: rgba(247, 238, 218, 0.7);
	padding: 50px 0;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}

.footer__brand {
	display: flex;
	align-items: center;
}

.footer__brand-logo {
	height: 52px;
	width: auto;
}

.footer__note {
	font-size: 0.9rem;
}

.footer__copy {
	font-size: 0.85rem;
	opacity: 0.6;
}

/* ---------- Animations au scroll ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero__logo { animation: none; }
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
	.nav__links { display: none; }
	.cards { grid-template-columns: repeat(2, 1fr); }
	.hero__inner { grid-template-columns: 1fr; text-align: center; }
	.hero__content { order: 2; }
	.hero__visual { order: 1; }
	.hero__logo { width: min(70%, 320px); }
	.hero__subtitle { margin-inline: auto; }
	.hero__cta, .hero__points { justify-content: center; }
	.why__grid { grid-template-columns: 1fr; }
	.why__arrow { transform: rotate(90deg); margin: 0 auto; }
	.multi__inner { grid-template-columns: 1fr; gap: 40px; }
	.multi__title { text-align: center; max-width: none; margin-inline: auto; }
	.multi__visual { order: -1; }
	.security__inner { grid-template-columns: 1fr; }
	.security__text .section-head__title { text-align: center; }
	.steps { grid-template-columns: 1fr; }
	.tips__grid { grid-template-columns: 1fr; }
	.req-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
	.cards { grid-template-columns: 1fr; }
	.contact__links { grid-template-columns: 1fr; }
	section { padding: 64px 0; }
	.hero { padding: 130px 0 35px; }
	.why__col, .download__card { padding: 32px 22px; }
	.btn--lg { padding: 12px 22px; font-size: 0.96rem; }
	.download__cta .btn--lg { width: 100%; max-width: 320px; }
}

@media (max-width: 430px) {
	.container { padding: 0 18px; }
	.nav__inner { gap: 10px; }
	.nav__brand-logo { height: 34px; }
	.nav__actions { gap: 8px; }
	.btn--sm { padding: 8px 14px; font-size: 0.85rem; }
	.lang-toggle { padding: 5px 9px; }
}
