/*
 * Astra Child — Othmane Marini (thème sombre, accent vert menthe)
 * Tokens : --om-bg #0C0F10 · --om-bg-alt #0A0D0E · --om-bg-deep #070A0B
 *          --om-surface #14181A · --om-surface-hover #171C1E · --om-border #242A2C
 *          --om-ink #FFFFFF · --om-body #A8B0B2 · --om-strong #C9CFD0 · --om-muted #7C8486
 *          --om-accent #2FE6A6 · --om-accent-hover #24C78D · --om-accent-light #7DF0C8
 *          --om-accent-soft rgba(47,230,166,.12) · --om-on-accent #06251B
 * Sections : 1 Reset/tokens · 2 Typo · 3 Layout · 4 Boutons · 5 Header
 *            6 Retour-en-haut · 7 Hero · 8 Cartes services · 9 Portfolio
 *            10 Tarifs · 11 Contact · 12 FAQ/disponibilité · 13 Footer
 *            14 Reveal & motion · 15 Responsive
 */

/* ===== 1. TOKENS & RESET ===== */
:root{
	--om-bg:#0C0F10;
	--om-bg-alt:#0A0D0E;
	--om-bg-deep:#070A0B;
	--om-surface:#14181A;
	--om-surface-hover:#171C1E;
	--om-border:#242A2C;
	--om-hairline:rgba(255,255,255,.07);
	--om-ink:#FFFFFF;
	--om-body:#A8B0B2;
	--om-strong:#C9CFD0;
	--om-muted:#7C8486;
	--om-accent:#2FE6A6;
	--om-accent-hover:#24C78D;
	--om-accent-light:#7DF0C8;
	--om-accent-soft:rgba(47,230,166,.12);
	--om-accent-line:rgba(47,230,166,.30);
	--om-on-accent:#06251B;
	--om-ease:cubic-bezier(.22,.61,.36,1);
	--om-container:1200px;
	--om-gutter:48px;
	--om-header-h:88px;
	--om-header-h-stuck:72px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
	margin:0;
	background:var(--om-bg);
	color:var(--om-body);
	font-family:'DM Sans', system-ui, sans-serif;
	font-weight:400;
	font-size:16px;
	line-height:1.6;
	-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a,a:link,a:visited{color:var(--om-accent);text-decoration:none;cursor:pointer}
a:hover,a:focus,a:active{color:var(--om-accent-light)}
button{font-family:inherit;cursor:pointer}
ul{margin:0;padding:0}

.om-skip-link{
	position:absolute;left:-9999px;top:0;background:var(--om-accent);color:var(--om-on-accent);
	padding:10px 16px;border-radius:8px;z-index:9999;font-weight:600;
}
.om-skip-link:focus{left:16px;top:16px}

:focus-visible{outline:2px solid var(--om-accent);outline-offset:3px}

@media (prefers-reduced-motion: reduce){
	*,*::before,*::after{
		animation-duration:.01ms!important;
		animation-iteration-count:1!important;
		transition-duration:.01ms!important;
		scroll-behavior:auto!important;
	}
}

/* ===== 2. TYPOGRAPHIE ===== */
h1,h2,h3{
	font-family:'Sora', sans-serif;
	font-weight:600;
	letter-spacing:-0.025em;
	color:var(--om-ink);
	margin:0;
}
h1{font-size:48px;line-height:1.12}
h2{font-size:40px;line-height:1.18}
h3{font-size:20px;line-height:1.3}
p{margin:0}

.om-eyebrow{
	font-size:12.5px;
	letter-spacing:.18em;
	text-transform:uppercase;
	color:var(--om-accent);
	font-weight:600;
	margin:0 0 14px;
}

/* ===== 3. LAYOUT ===== */
.om-section__inner,
.om-header__inner,
.om-cta-band__inner,
.om-page-head__inner,
.om-contact-wrap{
	max-width:var(--om-container);
	margin:0 auto;
	padding:0 var(--om-gutter);
}

.om-section{padding:100px 0}
.om-section--alt{background:var(--om-bg-alt)}

.om-section__head{max-width:640px;margin:0 auto 56px;text-align:left}
.om-section__head--center{max-width:640px;text-align:center;margin:0 auto 56px}
.om-section__head--split{
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	max-width:none;
	gap:24px;
}
.om-section__lead{font-size:18px;line-height:1.75;color:var(--om-body);margin-top:14px}
.om-h2-muted{color:var(--om-muted);font-weight:400}

.om-cards{display:grid;gap:24px}
.om-cards--2{grid-template-columns:repeat(2, minmax(0,1fr))}
.om-cards--4{grid-template-columns:repeat(4, minmax(0,1fr))}

body.om-home main{padding-top:0}
body:not(.om-home) main{padding-top:var(--om-header-h)}

[id]{scroll-margin-top:96px}

/* ===== 4. BOUTONS ===== */
.om-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:56px;
	padding:0 28px;
	border-radius:8px;
	font-family:'Sora', sans-serif;
	font-size:14px;
	font-weight:600;
	letter-spacing:.05em;
	text-transform:uppercase;
	border:1px solid transparent;
	cursor:pointer;
	transition:background .4s var(--om-ease), border-color .4s var(--om-ease), color .4s var(--om-ease), transform .4s var(--om-ease), box-shadow .4s ease;
	white-space:nowrap;
}
.om-btn--primary{background:var(--om-accent);color:var(--om-on-accent)}
.om-btn--primary:hover,.om-btn--primary:focus-visible{background:var(--om-accent-hover);transform:translateY(-3px);box-shadow:0 18px 34px -18px rgba(47,230,166,.70)}
.om-btn--primary:active{transform:translateY(-1px)}
.om-btn--primary:hover svg,.om-btn--primary:focus-visible svg{transform:translateX(4px)}

.om-btn--ghost{background:transparent;border:1px solid rgba(255,255,255,.22);color:#fff}
.om-btn--ghost:hover,.om-btn--ghost:focus-visible{background:var(--om-accent);border-color:var(--om-accent);color:var(--om-on-accent);transform:translateY(-3px);box-shadow:0 16px 30px -18px rgba(47,230,166,.60)}

.om-btn--inverted{background:var(--om-on-accent);color:var(--om-accent)}
.om-btn--inverted:hover{opacity:.88;transform:translateY(-3px)}

.om-btn--sm{height:44px;padding:0 22px;font-size:13.5px}
.om-btn--block{width:100%}

/* États link/visited/hover/focus/active — jamais de bleu par défaut, jamais de soulignement */
.om-btn,.om-btn:link,.om-btn:visited,.om-btn:hover,.om-btn:focus,.om-btn:active{text-decoration:none}
.om-btn--primary,.om-btn--primary:link,.om-btn--primary:visited,.om-btn--primary:hover,.om-btn--primary:active{color:var(--om-on-accent)}
.om-btn--ghost,.om-btn--ghost:link,.om-btn--ghost:visited{color:#fff}
.om-btn--ghost:hover,.om-btn--ghost:focus,.om-btn--ghost:active{color:var(--om-on-accent)}

.om-link-arrow{
	display:inline-flex;align-items:center;gap:8px;
	color:var(--om-accent);font-weight:600;font-size:15px;
	transition:gap .4s var(--om-ease), color .4s var(--om-ease);
}
.om-link-arrow:hover{gap:14px;color:var(--om-accent-light)}

/* ===== 5. HEADER ===== */
.om-header{
	position:fixed;top:0;left:0;right:0;z-index:100;
	height:var(--om-header-h);
	background:transparent;
	border-bottom:1px solid transparent;
	transition:height .45s var(--om-ease), background .45s var(--om-ease), backdrop-filter .45s ease, box-shadow .45s ease, border-color .45s var(--om-ease);
}
.om-header.is-stuck{
	height:var(--om-header-h-stuck);
	background:rgba(12,15,16,.78);
	backdrop-filter:blur(18px) saturate(140%);
	border-bottom-color:var(--om-hairline);
	box-shadow:0 12px 30px -24px rgba(0,0,0,.9);
}

/* Pages internes : navbar sombre et fixe dès le chargement, jamais transparente. */
.om-header--solid{
	position:fixed;top:0;width:100%;
	background:#0C0F10;
	border-bottom:1px solid rgba(255,255,255,.08);
	z-index:1000;
}

/* Barre d'administration WordPress : décale le header fixe pour ne pas passer dessous. */
.admin-bar .om-header{top:32px}
@media (max-width:782px){
	.admin-bar .om-header{top:46px}
}
.om-header__inner{
	display:flex;align-items:center;justify-content:space-between;
	height:100%;
	max-width:var(--om-container);margin:0 auto;
}
.om-brand{display:inline-flex;align-items:center;gap:12px}
.om-logo__img{
	height:40px;width:auto;
	transition:height .45s var(--om-ease);
}
.om-header.is-stuck .om-logo__img{height:34px}
.om-wordmark{
	font-family:'Sora', sans-serif;font-weight:600;font-size:15.5px;
	letter-spacing:.04em;text-transform:uppercase;color:#FFF;
}

.om-nav__list{display:flex;align-items:center;gap:32px;list-style:none}
.om-nav__list a{
	font-size:15px;color:#E6EAEB;
	padding-bottom:5px;border-bottom:1.5px solid transparent;
	transition:color .35s var(--om-ease), border-color .35s var(--om-ease);
}
.om-nav__list a:hover,
.om-nav__list a:focus-visible{color:#fff}
.om-nav__list a.is-active{color:var(--om-accent);border-bottom-color:var(--om-accent)}

/* Sélecteurs renforcés : la navbar doit être identique et visible sur toutes les pages,
   même si une règle Astra plus générale tente d'hériter une autre couleur/opacité ici. */
body .om-header,
body .om-header *{opacity:1;visibility:visible}
body .om-header .om-nav__list a{color:#E6EAEB}
body .om-header .om-nav__list a:hover,
body .om-header .om-nav__list a:focus-visible{color:#fff}
body .om-header .om-nav__list a.is-active{color:var(--om-accent)}
body .om-header .om-wordmark{color:#fff}
body .om-header .om-btn--primary{background:var(--om-accent);color:var(--om-on-accent)}
body .om-header .om-burger__bar{background:#fff}

.om-header__actions{display:flex;align-items:center;gap:16px}

.om-lang-switcher{
	display:flex;align-items:center;gap:8px;list-style:none;margin:0;padding:0;
	font-family:'Sora', sans-serif;font-size:12.5px;font-weight:600;letter-spacing:.04em;
}
.om-lang-switcher li{display:flex;align-items:center}
.om-lang-switcher li:not(:last-child)::after{content:"|";margin-left:8px;color:rgba(255,255,255,.25)}
body .om-header .om-lang-switcher a,
.om-lang-switcher span{color:#E6EAEB;transition:color .35s var(--om-ease)}
body .om-header .om-lang-switcher a:hover,
body .om-header .om-lang-switcher a:focus-visible{color:#fff}
.om-lang-switcher .is-active{color:var(--om-accent)}
.om-lang-switcher--mobile{margin-top:24px;justify-content:center}
.om-lang-switcher--mobile span,
.om-lang-switcher--mobile a{font-size:15px}

.om-burger{
	display:none;background:none;border:0;padding:8px;
	width:38px;height:38px;position:relative;
}
.om-burger__bar{
	position:absolute;left:8px;right:8px;height:2px;background:#FFF;border-radius:2px;
	transition:transform .4s var(--om-ease), opacity .4s var(--om-ease), top .4s var(--om-ease);
}
.om-burger__bar:first-child{top:14px}
.om-burger__bar:last-child{top:22px}
.om-burger[aria-expanded="true"] .om-burger__bar:first-child{top:18px;transform:rotate(45deg)}
.om-burger[aria-expanded="true"] .om-burger__bar:last-child{top:18px;transform:rotate(-45deg)}

.om-mobile-panel{
	position:fixed;inset:0;z-index:200;
	background:rgba(10,13,14,.97);backdrop-filter:blur(20px);
	display:flex;align-items:center;justify-content:center;
	opacity:0;visibility:hidden;
	transition:opacity .4s var(--om-ease), visibility .4s;
}
.om-mobile-panel.is-open{opacity:1;visibility:visible}
.om-mobile-panel__list{list-style:none;display:flex;flex-direction:column;align-items:center;gap:28px}
.om-mobile-panel__list a{
	display:block;font-size:20px;padding:12px 0;min-height:48px;line-height:24px;color:#FFF;
	font-family:'Sora', sans-serif;font-weight:600;
}
.om-mobile-panel__list a:hover,
.om-mobile-panel__list a.is-active{color:var(--om-accent)}
.om-mobile-panel__cta{margin-top:12px}

/* ===== 6. RETOUR-EN-HAUT ===== */
.om-totop{
	position:fixed;right:28px;bottom:28px;z-index:60;
	width:48px;height:48px;padding:0;margin:0;line-height:0;
	display:flex;align-items:center;justify-content:center;
	border:0;border-radius:12px;background:var(--om-accent);color:var(--om-on-accent);
	cursor:pointer;opacity:0;visibility:hidden;transform:translateY(14px) scale(.94);
	box-shadow:0 16px 28px -14px rgba(47,230,166,.75);
	transition:opacity .4s var(--om-ease), transform .4s var(--om-ease), background .4s ease, visibility .4s;
}
.om-totop svg{display:block;flex:none;overflow:visible}
.om-totop.is-visible{opacity:1;visibility:visible;transform:none}
.om-totop:hover{background:var(--om-accent-hover);transform:translateY(-4px)}
.om-totop:focus-visible{outline:2px solid #fff;outline-offset:3px}

/* Verrou : le bouton natif d'Astra (#ast-scroll-top) ne doit jamais s'afficher,
   même si le filtre PHP est un jour contourné par un cache ou une mise à jour. */
#ast-scroll-top{display:none!important}

/* ===== 7. HERO ===== */
.om-hero{
	position:relative;padding:104px 48px 92px;background:var(--om-bg);overflow:hidden;
}
.om-hero__media{
	position:absolute;top:0;right:0;bottom:0;width:56%;opacity:.55;
	-webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 46%);
	        mask-image:linear-gradient(90deg,transparent 0%,#000 46%);
}
.om-hero__media img{
	width:100%;height:100%;object-fit:cover;object-position:center 40%;
	animation:om-slow-zoom 26s ease-in-out infinite alternate;
}
@keyframes om-slow-zoom{from{transform:scale(1)}to{transform:scale(1.07)}}
.om-hero__overlay{display:none}
.om-hero__glow{
	position:absolute;inset:0;pointer-events:none;
	background:radial-gradient(circle at 76% 22%, rgba(47,230,166,.12) 0%, rgba(12,15,16,0) 56%);
}
.om-hero__inner{position:relative;z-index:1;max-width:660px}
.om-hero__inner .om-eyebrow{margin-bottom:24px}
.om-hero__inner h1{color:#FFF;font-size:50px;line-height:1.10;margin-top:0}
.om-accent-word{color:var(--om-accent)}
.om-hero__lead{max-width:520px;margin-top:20px;font-size:18px;line-height:1.75;color:var(--om-body)}
.om-hero__actions{display:flex;align-items:center;gap:20px;margin-top:36px;flex-wrap:wrap}
.om-hero__stats{
	display:flex;gap:44px;margin-top:56px;padding-top:32px;
	border-top:1px solid rgba(255,255,255,.09);flex-wrap:wrap;
}
.om-hero__stat{display:flex;flex-direction:column;gap:6px}
.om-hero__stat-value{font-family:'Sora', sans-serif;font-size:28px;font-weight:600;color:#FFF}
.om-hero__stat-label{font-size:13.5px;color:var(--om-muted)}

/* Rail social vertical, ancré sur le bord droit du hero (desktop). */
.om-hero__social{
	position:absolute;right:48px;top:50%;transform:translateY(-50%);z-index:1;
}
.om-hero__social .om-social{flex-direction:column;gap:14px}
.om-hero__social .om-social a{width:46px;height:46px}
.om-hero__social .om-social a svg{width:20px;height:20px}
.om-hero__social .om-social a:hover,
.om-hero__social .om-social a:focus-visible{transform:translateX(-4px)}

.om-social{display:flex;gap:18px;list-style:none;margin:0;padding:0}
.om-social a{
	width:66px;height:66px;display:grid;place-items:center;border-radius:16px;
	background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.16);color:#E6EAEB;
	backdrop-filter:blur(6px);
	transition:background .45s var(--om-ease),border-color .45s ease,color .45s ease,transform .45s var(--om-ease),box-shadow .45s ease;
}
.om-social a:hover,.om-social a:focus-visible{transform:translateY(-6px);color:#fff}
.om-social a[data-net="facebook"]:hover,.om-social a[data-net="facebook"]:focus-visible{background:#1877F2;border-color:#1877F2;box-shadow:0 20px 34px -18px rgba(24,119,242,.70)}
.om-social a[data-net="instagram"]:hover,.om-social a[data-net="instagram"]:focus-visible{background:linear-gradient(135deg,#F9CE34 0%,#EE2A7B 50%,#6228D7 100%);border-color:#EE2A7B;box-shadow:0 20px 34px -18px rgba(238,42,123,.70)}
.om-social a[data-net="linkedin"]:hover,.om-social a[data-net="linkedin"]:focus-visible{background:#0A66C2;border-color:#0A66C2;box-shadow:0 20px 34px -18px rgba(10,102,194,.70)}

/* ===== 8. CARTES SERVICES ===== */
.om-card{
	background:var(--om-surface);border:1px solid var(--om-border);border-radius:14px;
	padding:36px 32px;display:flex;flex-direction:column;gap:16px;
	transition:transform .5s var(--om-ease), background .5s var(--om-ease), border-color .5s var(--om-ease);
}
.om-card:hover{transform:translateY(-8px);border-color:var(--om-accent);background:var(--om-surface-hover)}
.om-card__icon{
	width:52px;height:52px;border-radius:12px;background:var(--om-accent-soft);color:var(--om-accent);
	display:flex;align-items:center;justify-content:center;
}
.om-card h3{font-size:20px}
.om-card p{font-size:15.5px;line-height:1.75}

.om-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
.om-tag{
	display:inline-flex;align-items:center;height:26px;padding:0 12px;border-radius:6px;
	background:var(--om-accent-soft);color:var(--om-accent);font-size:12.5px;font-weight:600;
}
.om-tag--muted{background:var(--om-border);color:var(--om-body)}

.om-shot{margin:0;background:#101416;overflow:hidden}
.om-shot img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .7s var(--om-ease)}

/* ===== 9. PORTFOLIO ===== */
.om-page-head{padding:84px 0 56px;background:var(--om-bg-alt)}
.om-page-head--center{text-align:center}
.om-page-head--center .om-page-head__inner{margin:0 auto}
.om-page-head h1{font-size:48px}
.om-page-head__lead{margin-top:16px;font-size:18px;line-height:1.75;max-width:620px}
.om-page-head--center .om-page-head__lead{margin-left:auto;margin-right:auto}

.om-project-list{display:flex;flex-direction:column;gap:32px}
.om-project{
	display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);
	background:var(--om-surface);border:1px solid var(--om-border);border-radius:14px;overflow:hidden;
}
.om-project--reverse{grid-template-columns:minmax(0,1fr) minmax(0,1.05fr)}
.om-project--reverse .om-project__media{order:2}
.om-project__media{position:relative;background:#101416}
.om-project__media .om-shot{position:absolute;inset:0}
.om-project__media .om-shot img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.om-project__body{padding:52px 48px;display:flex;flex-direction:column;gap:18px}
.om-project__body h2{font-size:34px}
.om-project__body p{font-size:15.5px;line-height:1.75}
.om-project__points{list-style:none;display:flex;flex-direction:column;gap:10px;font-size:15px;color:var(--om-strong)}
.om-project__points li{position:relative;padding-left:18px}
.om-project__points li::before{
	content:"";position:absolute;left:0;top:8px;width:6px;height:6px;border-radius:50%;background:var(--om-accent);
}
.om-project__body .om-btn{align-self:flex-start;margin-top:8px}

.om-project-card{
	background:var(--om-surface);border:1px solid var(--om-border);border-radius:14px;overflow:hidden;
	transition:transform .55s var(--om-ease), border-color .55s var(--om-ease);
}
.om-project-card:hover{transform:translateY(-8px);border-color:var(--om-accent)}
.om-project-card__media{aspect-ratio:1/1;width:100%;height:auto;overflow:hidden}
.om-project-card:hover .om-project-card__media img{transform:scale(1.04)}
.om-project-card__body{padding:28px}
.om-project-card__body p{font-size:15.5px;line-height:1.75;margin:10px 0 14px}

.om-step{background:var(--om-surface);border:1px solid var(--om-border);border-radius:14px;padding:28px}
.om-step__num{font-family:'Sora', sans-serif;font-size:14px;color:var(--om-accent);font-weight:600}
.om-step h3{margin-top:10px;font-size:19px}
.om-step p{margin-top:8px;font-size:15px;line-height:1.6;color:var(--om-body)}

/* ===== 10. TARIFS ===== */
.om-pricing-grid{display:grid;grid-template-columns:repeat(4, minmax(0,1fr));gap:20px;align-items:start}
.om-pricing-card{
	position:relative;background:var(--om-surface);border:1px solid var(--om-border);border-radius:16px;
	padding:28px 26px 30px;display:flex;flex-direction:column;gap:14px;
	transition:transform .55s cubic-bezier(.22,.61,.36,1),
	           border-color .55s ease,
	           background .55s ease,
	           box-shadow .55s ease;
	will-change:transform;
}
.om-pricing-card:hover,
.om-pricing-card:focus-within{
	transform:translateY(-10px);
	border-color:var(--om-accent);
	background:var(--om-surface-hover);
	box-shadow:0 30px 56px -30px rgba(47,230,166,.45);
}
.om-pricing-card--featured{
	background:var(--om-accent);border-color:var(--om-accent);color:var(--om-on-accent);
	box-shadow:0 30px 56px -34px rgba(47,230,166,.6);
	transition:transform .55s cubic-bezier(.22,.61,.36,1), box-shadow .55s ease;
}
.om-pricing-card--featured:hover,
.om-pricing-card--featured:focus-within{
	transform:translateY(-12px);
	box-shadow:0 44px 70px -28px rgba(47,230,166,.70);
}
@media (prefers-reduced-motion: reduce){
	.om-pricing-card,
	.om-pricing-card--featured{transition-duration:.01ms}
	.om-pricing-card:hover,
	.om-pricing-card--featured:hover{transform:none}
}
.om-pricing-card__badge{
	position:absolute;top:24px;right:24px;background:rgba(6,37,27,.16);color:var(--om-on-accent);
	font-size:11.5px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
	padding:6px 12px;border-radius:6px;
}
.om-pricing-card__name{font-size:16px;font-weight:600}
.om-pricing-card--featured .om-pricing-card__name{color:var(--om-on-accent)}
.om-pricing-card__price{font-family:'Sora', sans-serif;font-size:32px;letter-spacing:-.03em;color:#FFF;font-weight:600}
.om-pricing-card--featured .om-pricing-card__price{color:var(--om-on-accent)}
.om-pricing-card__unit{font-size:14px;color:var(--om-muted);font-family:'DM Sans', sans-serif;font-weight:400;letter-spacing:0}
.om-pricing-card--featured .om-pricing-card__unit{color:rgba(6,37,27,.65)}
.om-pricing-card__desc{font-size:14.5px;line-height:1.7;color:var(--om-body)}
.om-pricing-card--featured .om-pricing-card__desc{color:rgba(6,37,27,.85)}
.om-pricing-card__label{
	font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--om-muted);margin-top:10px;
}
.om-pricing-card--featured .om-pricing-card__label{color:rgba(6,37,27,.65)}
.om-pricing-card__features{list-style:none;display:flex;flex-direction:column;gap:12px}
.om-pricing-card__features li{display:flex;align-items:flex-start;gap:10px;font-size:14.5px;color:var(--om-strong)}
.om-pricing-card--featured .om-pricing-card__features li{color:var(--om-on-accent)}
.om-pricing-card__features li svg{flex:0 0 auto;margin-top:1px;color:var(--om-accent)}
.om-pricing-card--featured .om-pricing-card__features li svg{color:var(--om-on-accent)}

/* ===== 11. CONTACT ===== */
.om-contact-wrap{display:flex;flex-direction:column;gap:48px}
.om-contact-card{
	max-width:720px;margin:0 auto;width:100%;background:var(--om-surface);border-radius:16px;
	border:1px solid var(--om-border);padding:48px;
}
.om-contact-card h2{font-size:26px}
.om-contact-card__hint{margin-top:8px;font-size:14.5px;color:var(--om-muted)}

.om-form{margin-top:28px;display:flex;flex-direction:column;gap:20px}
.om-form__row{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:20px}
.om-field{display:flex;flex-direction:column;gap:8px}
.om-field label{font-size:14px;font-weight:500;color:var(--om-strong)}
.om-field input[type=text],
.om-field input[type=email],
.om-field input[type=tel],
.om-field select,
.om-field textarea{
	height:52px;padding:0 16px;border:1px solid var(--om-border);border-radius:10px;
	font-size:15.5px;font-family:inherit;color:#FFF;background:#101416;
	transition:border-color .35s var(--om-ease), box-shadow .35s var(--om-ease);
}
.om-field input::placeholder,
.om-field textarea::placeholder{color:var(--om-muted)}
.om-field textarea{height:auto;min-height:150px;padding:14px 16px;resize:vertical}
.om-field input:focus,
.om-field select:focus,
.om-field textarea:focus{
	border-color:var(--om-accent);box-shadow:0 0 0 3px rgba(47,230,166,.16);outline:none;
}
.om-field--checkbox label{display:flex;align-items:flex-start;gap:10px;font-size:14.5px;font-weight:400;color:var(--om-body)}
.om-field--checkbox input{margin-top:3px}
.om-field__error{font-size:13px;color:#FF8A6B}
.om-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.om-form-success{
	max-width:720px;margin:0 auto;background:var(--om-accent-soft);border:1px solid var(--om-accent-line);
	border-radius:12px;padding:18px 22px;color:var(--om-accent-light);font-size:15px;
}

.om-contact-cards{max-width:720px;margin:0 auto;width:100%}
.om-contact-tile{
	display:flex;align-items:center;gap:14px;background:var(--om-surface);border:1px solid var(--om-border);
	border-radius:14px;padding:20px 22px;
	transition:transform .45s var(--om-ease), border-color .45s var(--om-ease);
}
.om-contact-tile:hover{transform:translateY(-4px);border-color:var(--om-accent)}
.om-contact-tile__icon{
	width:44px;height:44px;border-radius:12px;background:var(--om-accent-soft);color:var(--om-accent);
	display:flex;align-items:center;justify-content:center;flex:0 0 auto;
}
.om-contact-tile__text{display:flex;flex-direction:column;gap:2px}
.om-contact-tile__title{font-family:'Sora', sans-serif;font-size:16px;color:#FFF}
.om-contact-tile__value{font-size:15px;color:var(--om-body)}

/* ===== 12. FAQ / DISPONIBILITÉ ===== */
.om-faq-grid{display:grid;grid-template-columns:repeat(3, minmax(0,1fr));gap:32px}
.om-faq h3{font-size:17px}
.om-faq p{margin-top:10px;font-size:15px;line-height:1.7;color:var(--om-body)}

.om-availability{
	max-width:720px;margin:0 auto;width:100%;display:flex;align-items:center;gap:12px;
	background:var(--om-surface);border:1px solid var(--om-border);border-radius:12px;padding:22px 28px;
}
.om-availability__dot{width:8px;height:8px;border-radius:50%;background:var(--om-accent);flex:0 0 auto}
.om-availability p{font-size:14.5px;color:var(--om-body)}

/* ===== 13. CTA BAND & FOOTER ===== */
.om-cta-band{background:var(--om-bg-alt);padding:100px 0;text-align:center}
.om-cta-band__inner{display:flex;flex-direction:column;align-items:center;gap:20px}
.om-cta-band h2{font-size:34px}
.om-cta-band p{color:var(--om-body);max-width:460px}

.om-footer{background:var(--om-bg-deep);border-top:1px solid rgba(47,230,166,.22)}
.om-footer__top{
	max-width:var(--om-container);margin:0 auto;padding:66px var(--om-gutter) 54px;
	display:grid;grid-template-columns:minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr);gap:48px;
}
.om-footer__brand{display:inline-flex;align-items:center;gap:12px}
.om-footer__brand .om-logo__img{height:34px}
.om-footer__desc{font-size:15px;color:var(--om-muted);max-width:280px;margin-top:18px;line-height:1.7}
.om-footer__col--brand .om-social{margin-top:22px}
.om-footer__col--brand .om-social a{width:38px;height:38px;border-radius:10px}
.om-footer__col--brand .om-social a svg{width:17px;height:17px}

.om-footer__title{
	font-size:11.5px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
	color:var(--om-accent);margin:0 0 22px;
}
.om-footer__list{list-style:none;display:flex;flex-direction:column;gap:14px}
.om-footer__list a{
	font-size:15px;color:var(--om-body);display:inline-flex;align-items:center;gap:8px;
	transition:color .35s var(--om-ease), padding-left .35s var(--om-ease);
}
.om-footer__list a:hover,
.om-footer__list a:focus-visible{color:#fff;padding-left:6px}
.om-footer__static{
	font-size:15px;color:var(--om-body);display:flex;align-items:center;gap:8px;
}
.om-footer__list--contact svg{flex:0 0 auto;color:var(--om-accent)}
.om-footer__list--contact li{align-items:flex-start}

.om-footer__bottom{
	border-top:1px solid var(--om-hairline);
	max-width:var(--om-container);margin:0 auto;padding:22px var(--om-gutter);
	display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;
}
.om-footer__copy{color:#6B7274;font-size:13.5px}
.om-footer__legal{display:flex;gap:24px}
.om-footer__legal a{color:#6B7274;font-size:13.5px;transition:color .35s var(--om-ease)}
.om-footer__legal a:hover{color:var(--om-accent)}

/* ===== 14. REVEAL & MOTION ===== */
[data-reveal]{will-change:opacity, transform}

/* ===== 15. RESPONSIVE ===== */
@media (max-width:1024px){
	:root{--om-gutter:32px}
	.om-cards--2,
	.om-cards--4,
	.om-pricing-grid,
	.om-faq-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
}

@media (max-width:900px){
	.om-nav,
	.om-header__actions .om-btn{display:none}
	.om-burger{display:inline-flex}

	/* Hero mobile : photo pleine, voile standard, rail social horizontal sous les chiffres. */
	.om-hero{padding:88px 20px 64px}
	.om-hero__media{
		position:absolute;inset:0;top:0;right:0;bottom:0;width:auto;opacity:1;
		-webkit-mask-image:none;mask-image:none;
	}
	.om-hero__overlay{
		display:block;position:absolute;inset:0;
		background:linear-gradient(100deg, rgba(8,11,12,.90) 0%, rgba(8,11,12,.72) 50%, rgba(8,11,12,.45) 100%);
	}
	.om-hero__social{
		position:relative;right:auto;top:auto;transform:none;
		margin:28px 0 0;display:flex;justify-content:center;
	}
	.om-hero__social .om-social{flex-direction:row;gap:14px}
	.om-hero__social .om-social a:hover,
	.om-hero__social .om-social a:focus-visible{transform:translateY(-4px)}
}

@media (max-width:768px){
	:root{--om-gutter:20px}
	body{font-size:15.5px}
	h1{font-size:34px;line-height:1.18}
	h2{font-size:28px}
	.om-section{padding:56px 0}
	.om-section__lead{font-size:17px}
	.om-hero__stats{gap:28px}
	.om-cards--2,
	.om-cards--4,
	.om-faq-grid{grid-template-columns:minmax(0,1fr)}
	.om-project,
	.om-project--reverse{grid-template-columns:minmax(0,1fr)}
	.om-project--reverse .om-project__media{order:0}
	.om-project__media{height:240px}
	.om-project__body{padding:32px 24px}
	.om-project__body h2{font-size:26px}
	.om-section__head--split{flex-direction:column;align-items:flex-start}
	.om-form__row{grid-template-columns:minmax(0,1fr)}
	.om-contact-card{padding:32px 24px}
	.om-logo__img{height:32px}
	.om-totop{right:16px;bottom:16px;width:44px;height:44px}

	.om-footer__top{grid-template-columns:repeat(2, minmax(0,1fr))}
	.om-footer__bottom{flex-direction:column;justify-content:center;text-align:center;gap:14px}
}

@media (max-width:640px){
	.om-pricing-grid{grid-template-columns:minmax(0,1fr)}
	.om-pricing-card__price{font-size:30px}
	.om-pricing-card--featured{order:-1}
}

@media (max-width:480px){
	.om-footer__top{grid-template-columns:minmax(0,1fr)}
}
