/* =========================================================
   WEBIFY MEAUX — Studio de création de sites
   Design système : minimaliste premium, mobile-first
   ========================================================= */

:root {
  --bg: #fafaf7;
  --bg-alt: #f3f1ec;
  --bg-dark: #0e0e10;
  --ink: #0e0e10;
  --ink-soft: #4a4a4f;
  --muted: #8a8a8f;
  --line: #e6e3dc;
  --accent: #e11d48;
  --accent-2: #f43f5e;
  --gradient: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(14, 14, 16, 0.04);
  --shadow-md: 0 12px 40px rgba(14, 14, 16, 0.08);
  --shadow-lg: 0 24px 80px rgba(14, 14, 16, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== Typography ====== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(225, 29, 72, 0.08);
  border-radius: 999px;
}
.eyebrow-light { color: #fff; background: rgba(255,255,255,0.1); }

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 18px auto 0;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* ====== Scroll indicator ====== */
.scroll-indicator {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 100;
  transition: width 0.1s linear;
}

/* ====== Navbar (style Brouez) ====== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 32px;
  transition: padding 0.3s var(--ease);
}
.navbar.scrolled {
  padding: 14px 32px;
  background: rgba(14, 14, 16, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.15);
}
.footer-dark .logo-img { height: 80px; }
@media (max-width: 768px) {
  .logo-img { height: 48px; }
  .footer-dark .logo-img { height: 60px; }
}
.logo-mark {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff, #d8d8d8);
  color: var(--bg-dark);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0;
}
.logo-text em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.8;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-pill a {
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.nav-pill a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 24px rgba(225,29,72,0.35);
  justify-self: end;
}
.btn-cta:hover {
  background: #be123c;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(225,29,72,0.5);
}
.btn-cta-lg {
  padding: 18px 32px;
  font-size: 1rem;
}

.burger {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px 0 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  justify-self: end;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 101;
  position: relative;
}
.burger:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.burger-label-open, .burger-label-close {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  transition: opacity 0.3s var(--ease);
}
.burger-label-close { display: none; }
.burger.active .burger-label-open { display: none; }
.burger.active .burger-label-close { display: inline; color: #fff; }

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.burger-lines span {
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}
.burger.active .burger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active .burger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.active .burger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.burger.active {
  background: rgba(225,29,72,0.15);
  border-color: rgba(225,29,72,0.3);
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  flex-direction: column;
  gap: 0;
  padding: 110px 24px 40px;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: none;
  border-radius: 0;
  margin: 0;
  z-index: 95;
  /* Le navbar (z-index 100) reste au-dessus pour garder le logo visible */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-20px);
}
.mobile-menu a::after {
  content: '↗';
  color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.mobile-menu a:hover, .mobile-menu a:active {
  color: var(--accent);
  padding-left: 12px;
}
.mobile-menu a:hover::after { color: var(--accent); transform: rotate(45deg); }
.mobile-menu.open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open a:nth-child(1) { transition: opacity 0.4s 0.1s, transform 0.4s 0.1s, color 0.3s, padding 0.3s; }
.mobile-menu.open a:nth-child(2) { transition: opacity 0.4s 0.15s, transform 0.4s 0.15s, color 0.3s, padding 0.3s; }
.mobile-menu.open a:nth-child(3) { transition: opacity 0.4s 0.2s, transform 0.4s 0.2s, color 0.3s, padding 0.3s; }
.mobile-menu.open a:nth-child(4) { transition: opacity 0.4s 0.25s, transform 0.4s 0.25s, color 0.3s, padding 0.3s; }
.mobile-menu.open a:nth-child(5) { transition: opacity 0.4s 0.3s, transform 0.4s 0.3s, color 0.3s, padding 0.3s; }
.mobile-menu.open a:nth-child(6) { transition: opacity 0.4s 0.35s, transform 0.4s 0.35s, color 0.3s, padding 0.3s; }
.mobile-menu .btn-cta {
  margin-top: 32px;
  justify-self: stretch;
  justify-content: center;
  padding: 18px 24px;
  font-size: 1rem;
  border-bottom: none !important;
}
.mobile-menu .btn-cta::after { display: none; }
.mobile-menu .btn-cta:hover { padding-left: 24px; }

/* Bloc contact en bas du menu mobile */
.mobile-menu-contact {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
}
.mobile-menu-contact a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  padding: 0;
  border: none;
  opacity: 1;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu-contact a::after { display: none; }
.mobile-menu-contact a:hover { color: var(--accent); padding: 0; }

/* Empêcher le scroll du body quand menu ouvert */
body.menu-open { overflow: hidden; }

/* ====== Hero (sombre style Brouez) ====== */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 160px 0 0;
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 80%);
}

.hero-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(ellipse, rgba(225,29,72,0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}
.pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 12px #4ade80;
}
.pulse::after {
  content: '';
  position: absolute; inset: 0;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

.hero-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 53px;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  color: rgb(255, 255, 255);
}
@media (max-width: 600px) {
  .hero-title { font-size: 34px; line-height: 40px; }
}
.accent-text {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.hero-tags-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 36px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.tags-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: tagsMarquee 35s linear infinite;
}
.tags-track .tag { flex-shrink: 0; }
@keyframes tagsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}
.hero-tags-marquee:hover .tags-track { animation-play-state: paused; }
.tag {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.tag::first-letter { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-spacer { height: 60px; }

.hero-social {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 70px;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatar-mini {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -10px;
}
.avatar-mini:first-child { margin-left: 0; }
.avatar-plus {
  background: var(--accent) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.stars-rating {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.rating span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* ====== Marquee carousel ====== */
.hero-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee-card {
  flex-shrink: 0;
  width: 360px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.marquee-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1d;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  margin-bottom: 22px;
}
.marquee-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.marquee-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.marquee-sub {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.marquee-stat {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}
.hero-marquee:hover .marquee-track { animation-play-state: paused; }

/* ====== Trust ====== */
.trust {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  align-items: center;
}
.trust-logos span {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-size: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.trust-logos span:hover { opacity: 1; color: var(--ink); }

/* ====== Sections ====== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

/* ====== Problème ====== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all 0.4s var(--ease);
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.problem-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-icon svg { width: 24px; height: 24px; }
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ====== Solution ====== */
.solution {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(225,29,72,0.15), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(244,63,94,0.1), transparent 50%);
  pointer-events: none;
}
.solution .section-head { color: #fff; }
.solution .lead { color: rgba(255,255,255,0.7); }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
}
.pillar {
  padding: 40px 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: all 0.4s var(--ease);
}
.pillar:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-6px);
  border-color: var(--accent);
}
.pillar-num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.pillar h3 { margin-bottom: 10px; color: #fff; }
.pillar p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ====== Services ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.service-card:hover .service-link { color: var(--accent); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 22px;
  transition: all 0.4s var(--ease);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  background: var(--gradient);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 18px; }
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s;
}

.service-card-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.service-card-dark p { color: rgba(255,255,255,0.7); }
.service-card-dark .service-link { color: var(--accent-2); }
.service-icon-dark {
  background: rgba(255,255,255,0.08);
  color: var(--accent-2);
}
.service-card-dark:hover { transform: translateY(-6px); }

/* ====== Portfolio ====== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}
.project {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.project:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease);
}
.project:hover .project-image img { transform: scale(1.04); }

.project-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
}
.project-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.project-info p { font-size: 0.85rem; color: var(--muted); }
.project-arrow {
  font-size: 1.4rem;
  color: var(--ink);
  transition: transform 0.3s;
}
.project:hover .project-arrow { transform: rotate(45deg); color: var(--accent); }

.portfolio-cta { text-align: center; }

/* ====== Process ====== */
.process {
  background: var(--ink);
  color: #fff;
}
.process .section-head { color: #fff; }
.process .lead { color: rgba(255,255,255,0.7); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.step {
  padding: 30px 24px;
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: 50px; right: -15px;
  width: 30px; height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0.4;
}
.step:last-child::before { display: none; }

.step-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  background: rgba(225,29,72,0.15);
  color: var(--accent-2);
  border-radius: 6px;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
.step h3 { margin-bottom: 8px; color: #fff; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.93rem; }

/* ====== Stats ====== */
.stats { background: var(--bg-alt); padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ====== Testimonials ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: #f5b400;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial p {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.65;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial footer strong { display: block; font-size: 0.95rem; }
.testimonial footer span { font-size: 0.82rem; color: var(--muted); }

/* ====== CTA Final ====== */
.cta-final { padding: 80px 0; }
.cta-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(225,29,72,0.25), transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(244,63,94,0.18), transparent 60%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: #fff; margin-bottom: 16px; }
.cta-card p {
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-foot {
  margin-top: 28px !important;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5) !important;
}

/* ====== Footer ====== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  line-height: 1.6;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.socials a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer h4 { color: #fff; margin-bottom: 18px; font-size: 0.85rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer ul a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer ul a:hover { color: var(--accent-2); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.legal { display: flex; gap: 24px; flex-wrap: wrap; }
.legal a { transition: color 0.2s; }
.legal a:hover { color: #fff; }

/* ====== Reveal animations ====== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-pill { display: none; }
  .navbar-inner { grid-template-columns: 1fr auto; }
  .navbar-inner > .btn-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 16px; }
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 0; min-height: auto; }
  .hero-tags { gap: 6px; }
  .tag { padding: 6px 12px; font-size: 0.7rem; }
  .hero-social { flex-direction: column; gap: 14px; padding-bottom: 50px; }
  .marquee-card { width: 260px; }
  .cta-card { padding: 60px 24px; }
  .step::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-logos { gap: 28px; }
  .trust-logos span { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-num { font-size: 2.4rem; }
}

/* =========================================================
   STYLES BROUEZ — sections sombres
   ========================================================= */

body { background: var(--bg-dark); color: #fff; }

.section-dark {
  background: var(--bg-dark);
  color: #fff;
  padding: 90px 0;
  position: relative;
}

.eyebrow-line {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.section-title-sm {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.text-muted { color: rgba(255,255,255,0.55); font-size: 0.96rem; line-height: 1.65; max-width: 540px; }
.text-muted-sm { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.5; }

.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head-center .text-muted { margin: 0 auto; }

/* ====== Split grid (text + visual) ====== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text { max-width: 480px; }
.split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-mockup {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}
.device-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slideshow auto-rotate */
.device-slideshow {
  aspect-ratio: 16 / 10;
}
.device-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.device-slideshow .slide.active { opacity: 1; }
.device-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  font-size: 0.82rem;
  color: #fff;
  font-weight: 500;
  z-index: 2;
}

/* ====== Accordion ====== */
.accordion {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.acc-item[open] {
  background: rgba(225,29,72,0.06);
  border-color: rgba(225,29,72,0.3);
}
.acc-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 500;
  color: #fff;
  list-style: none;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-icon {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s;
}
.acc-item[open] .acc-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.acc-content { padding: 0 22px 22px 58px; color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.6; }

/* ====== Btn pill outline ====== */
.btn-pill-outline, .btn-pill-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 0.88rem;
  color: #fff;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s var(--ease);
}
.btn-pill-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); }
.btn-pill-outline-sm { padding: 9px 16px; font-size: 0.82rem; }
.dot-orange {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* ====== Step cards ====== */
.steps-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}
.step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 28px 30px;
  background: var(--bg-dark);
  align-items: start;
}
.step-meta { display: flex; flex-direction: column; gap: 12px; }
.step-num-pill {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(225,29,72,0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.step-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.step-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ====== Big card (Chaque site) ====== */
.big-card {
  background: linear-gradient(180deg, #161618, #0e0e10);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}
.big-card::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(225,29,72,0.15), transparent 70%);
  pointer-events: none;
}
.big-card-head {
  position: relative;
  max-width: 580px;
  margin-bottom: 50px;
}
.big-card-head .text-muted { margin-bottom: 24px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  position: relative;
}
.feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s var(--ease);
}
.feature:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(225,29,72,0.3);
}
.feature-wide { grid-column: span 2; }
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
}
.feature-icon-orange { background: rgba(225,29,72,0.18); color: var(--accent); }

/* ====== Feature emojis animés ====== */
.feature-emoji {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.feature-emoji .emoji {
  font-size: 1.5rem;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.feature:hover .feature-emoji {
  background: rgba(225,29,72,0.12);
  border-color: rgba(225,29,72,0.25);
}

/* Animations spécifiques par icône (toujours actives) */
.emoji-globe .emoji { animation: spinGlobe 8s linear infinite; }
.emoji-mobile .emoji { animation: shakeMobile 3s ease-in-out infinite; }
.emoji-palette .emoji { animation: wigglePalette 4s ease-in-out infinite; }
.emoji-clipboard .emoji { animation: bounceClipboard 2.5s ease-in-out infinite; }
.emoji-pin .emoji { animation: pulsePin 2s ease-in-out infinite; transform-origin: bottom center; }

@keyframes spinGlobe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shakeMobile {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50% { transform: rotate(-6deg); }
  20%, 40%, 60% { transform: rotate(6deg); }
  70% { transform: rotate(0deg); }
}
@keyframes wigglePalette {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.08); }
}
@keyframes bounceClipboard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulsePin {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.15) translateY(-4px); }
}

/* Glow accent au hover */
.feature:hover .feature-emoji::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(225,29,72,0.4), transparent 60%);
  filter: blur(15px);
  z-index: -1;
}
.feature h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.feature p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ====== Solutions split ====== */
.solutions-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.dashboard-card, .solutions-list {
  background: linear-gradient(180deg, #161618, #0e0e10);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 32px;
}
.dash-header { margin-bottom: 28px; }
.dash-tabs, .dash-tabs-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.dash-tabs span, .dash-tabs-2 span {
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 999px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.dash-tabs span.active {
  background: rgba(225,29,72,0.15);
  color: var(--accent);
  border-color: rgba(225,29,72,0.4);
}
.bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.bar-row:last-child { border-bottom: none; }
.bar { flex: 0 0 140px; height: 6px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.bar > div { height: 100%; background: var(--gradient); border-radius: 4px; }

/* ====== Solutions pills + accordion (style Brouez) ====== */
.solution-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.sol-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s var(--ease);
}
.sol-pill:hover {
  background: rgba(225,29,72,0.1);
  border-color: rgba(225,29,72,0.3);
  transform: translateY(-2px);
}
.sol-emoji {
  font-size: 0.95rem;
  display: inline-block;
  animation: solWiggle 4s ease-in-out infinite;
}
.sol-pill:nth-child(2) .sol-emoji { animation-delay: 0.3s; }
.sol-pill:nth-child(3) .sol-emoji { animation-delay: 0.6s; }
.sol-pill:nth-child(4) .sol-emoji { animation-delay: 0.9s; }
.sol-pill:nth-child(5) .sol-emoji { animation-delay: 1.2s; }
.sol-pill:nth-child(6) .sol-emoji { animation-delay: 1.5s; }
.sol-pill:nth-child(7) .sol-emoji { animation-delay: 1.8s; }
@keyframes solWiggle {
  0%, 90%, 100% { transform: rotate(0deg) scale(1); }
  92% { transform: rotate(-10deg) scale(1.2); }
  94% { transform: rotate(10deg) scale(1.2); }
  96% { transform: rotate(-6deg) scale(1.15); }
  98% { transform: rotate(0deg) scale(1); }
}

.results-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px;
  margin-top: auto;
}
.results-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.result-row {
  display: grid;
  grid-template-columns: 130px 1fr 40px;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  font-size: 0.82rem;
}
.result-name { color: rgba(255,255,255,0.7); }
.result-bar {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.result-bar > div {
  height: 100%;
  background: var(--gradient);
  border-radius: 999px;
  animation: barGrow 1.4s var(--ease);
  transform-origin: left;
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.result-value {
  text-align: right;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.dashboard-card {
  display: flex;
  flex-direction: column;
}

.solutions-accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sol-acc {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sol-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  list-style: none;
}
.sol-acc summary::-webkit-details-marker { display: none; }
.sol-plus {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 14px rgba(225,29,72,0.3);
}
.sol-acc[open] .sol-plus {
  transform: rotate(45deg);
  background: #fff;
  color: var(--accent);
}
.sol-acc-body {
  padding: 0 0 24px 0;
  max-width: 540px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.solutions-list h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
.check-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ====== About ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid > div:first-child { max-width: 500px; }

.google-review {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.g-icon, .g-icon-mini {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #ea4335 50%, #fbbc05 75%, #34a853);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  font-family: serif;
}
.g-icon-mini { width: 18px; height: 18px; font-size: 0.6rem; }

.about-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-photo { grid-column: span 2; }
.photo-frame {
  background: linear-gradient(180deg, #1a1a1d, #0e0e10);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
  background-image: linear-gradient(135deg, #2a2a2f, #1a1a1d);
}
.about-stats {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.stat-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 16px;
}
.stat-block strong {
  font-family: 'Manrope', sans-serif;
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.stat-block strong small {
  font-size: 0.7rem;
  color: var(--accent);
  margin-left: 4px;
  font-weight: 500;
}
.stat-block span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  display: block;
}

/* ====== Audit card ====== */
.audit-card {
  background: linear-gradient(135deg, #1a1a1d, #0e0e10);
  border: 1px solid rgba(225,29,72,0.25);
  border-radius: 24px;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.audit-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(225,29,72,0.18), transparent 60%);
  pointer-events: none;
}
.audit-tag {
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  padding: 30px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

/* Audit mockup card (style Brouez) */
.audit-mockup {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(225,29,72,0.4);
  border-radius: 18px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(225,29,72,0.15);
  overflow: hidden;
}
.audit-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(225,29,72,0.18), transparent 60%);
  pointer-events: none;
}
.audit-mockup-inner {
  text-align: center;
  position: relative;
  padding: 30px 24px;
}
.audit-mockup-brand {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.audit-mockup-inner h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.audit-mockup-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(225,29,72,0.18);
  color: var(--accent);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.audit-mockup-emoji {
  font-size: 2.4rem;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(225,29,72,0.5));
  animation: searchBounce 2.4s ease-in-out infinite;
}
@keyframes searchBounce {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-8px, -4px) rotate(-15deg); }
  50% { transform: translate(0, -8px) rotate(0deg); }
  75% { transform: translate(8px, -4px) rotate(15deg); }
}
.audit-content { position: relative; }
.check-list-orange li strong { color: #fff; font-weight: 600; }
.check-text { display: inline; line-height: 1.6; }
.check-list li:has(.check-text) { align-items: flex-start; }
.audit-content .check-list { margin-bottom: 32px; }
.audit-content .btn-cta { margin-top: 8px; }

/* ====== Distinguish ====== */
.distinguish-head { margin-bottom: 60px; }
.distinguish-sub { margin-top: 14px; max-width: 520px; }

.distinguish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dist-card {
  position: relative;
  padding: 36px 34px 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.dist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(225,29,72,0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.dist-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(225,29,72,0.25);
  transform: translateY(-4px);
}
.dist-card:hover::before { opacity: 1; }

.dist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.dist-emoji {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(225,29,72,0.18), rgba(225,29,72,0.06));
  border: 1px solid rgba(225,29,72,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(225,29,72,0.15);
}
.dist-emoji .emoji {
  font-size: 1.6rem;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}
.dist-card:hover .dist-emoji {
  background: rgba(225,29,72,0.12);
  border-color: rgba(225,29,72,0.3);
}

/* Animations spécifiques */
.emoji-code .emoji { animation: codeFlash 1.8s ease-in-out infinite; }
.emoji-key .emoji { animation: keyTilt 3s ease-in-out infinite; }
.emoji-ai .emoji { animation: aiBlink 2.4s ease-in-out infinite; }
.emoji-rocket .emoji { animation: rocketShake 2.5s ease-in-out infinite; }

@keyframes codeFlash {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 10px rgba(225,29,72,0.4)); }
  50% { transform: scale(1.2); filter: drop-shadow(0 4px 16px rgba(225,29,72,0.8)); }
}
@keyframes keyTilt {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
}
@keyframes aiBlink {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-12deg); }
  94% { transform: rotate(12deg); }
  96% { transform: rotate(-8deg); }
  98% { transform: rotate(0deg); }
}
@keyframes rocketShake {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-6px) rotate(-15deg); }
}

.dist-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.dist-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.dist-card p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.dist-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  color: rgba(255,255,255,0.3);
  font-size: 1.3rem;
  transition: all 0.3s;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dist-card:hover .dist-arrow { color: var(--accent); transform: translate(4px, -4px); }

@media (max-width: 768px) {
  .distinguish-grid { grid-template-columns: 1fr; }
}

/* ====== Avis carousel (Brouez style) ====== */
.avis-marquee {
  width: calc(100% + 48px);
  margin: 0 -24px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  padding: 12px 0;
}
.avis-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: avisScroll 80s linear infinite;
  padding-left: 24px;
}
@keyframes avisScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
.avis-marquee:hover .avis-track { animation-play-state: paused; }

.avis-card {
  flex-shrink: 0;
  width: 380px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px 26px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.avis-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(225,29,72,0.25);
  transform: translateY(-4px);
}
.avis-card header {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.avis-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
}
.avis-meta strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}
.avis-meta span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}
.avis-card .stars-rating { font-size: 0.85rem; align-self: flex-start; }
.avis-quote {
  display: block;
  font-family: 'Manrope', serif;
  font-size: 2.4rem;
  line-height: 0.6;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.avis-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.avis-cta { text-align: center; margin-top: 36px; }

@media (max-width: 600px) {
  .avis-card { width: 300px; padding: 22px 20px; }
}

/* ====== Contact form ====== */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 40px 44px;
  color: var(--ink);
}
.form-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}
.form-step h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-hint { font-size: 0.88rem; color: var(--muted); margin-bottom: 22px; }

.form-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.form-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.92rem;
  color: var(--ink);
}
.form-opt:hover { border-color: var(--accent); background: rgba(225,29,72,0.04); }
.form-opt input[type="radio"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--line);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
.form-opt input[type="radio"]:checked { border-color: var(--accent); }
.form-opt input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--accent);
  border-radius: 50%;
}
.form-opt:has(input:checked) { border-color: var(--accent); background: rgba(225,29,72,0.06); }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.form-actions .btn-pill-outline-sm {
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--line);
}
.form-bottom-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
}
.form-bottom-note a { color: var(--accent); font-weight: 600; }

/* ====== FAQ ====== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 500;
  color: #fff;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(225,29,72,0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.3s;
}
.faq-item[open] summary span { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-item > div {
  padding-bottom: 22px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 640px;
}

/* ====== Footer dark ====== */
.footer-dark {
  background: #0a0a0c;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p {
  margin: 18px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  line-height: 1.6;
}

/* Footer contact pills (style Brouez) */
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}
.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s var(--ease);
  width: fit-content;
}
.footer-pill svg {
  color: var(--accent);
  flex-shrink: 0;
}
.footer-pill:hover {
  background: rgba(225,29,72,0.1);
  border-color: rgba(225,29,72,0.3);
  color: #fff;
  transform: translateX(4px);
}
.footer-brand .socials { display: flex; gap: 10px; }
.footer-brand .socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.footer-brand .socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-cta {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px;
}
.footer-cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.footer-cta h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.footer-cta .btn-cta { padding: 10px 18px; font-size: 0.85rem; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 2;
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

.footer-mega-logo {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: -40px;
  pointer-events: none;
  user-select: none;
  line-height: 0.9;
}

/* ====== Responsive Brouez sections ====== */
@media (max-width: 900px) {
  .split-grid, .about-grid, .solutions-split, .faq-grid, .audit-card { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: span 1; }
  .avis-grid { grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 1fr; gap: 14px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .audit-card { padding: 36px 24px; }
  .big-card { padding: 36px 24px; }
  .device-mockup { transform: none; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-side { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}

/* ====== TARIFS ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225,29,72,0.3);
}
.price-card-featured {
  background: linear-gradient(180deg, rgba(225,29,72,0.08), rgba(225,29,72,0.02));
  border-color: rgba(225,29,72,0.4);
  box-shadow: 0 30px 80px rgba(225,29,72,0.15);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.price-tag-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.price-amount {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-from { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.price-amount strong {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  padding: 10px 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  padding-left: 26px;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-cta { width: 100%; justify-content: center; }
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.pricing-note a { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
}

/* ====== CTA pré-footer ====== */
.cta-pre-footer { padding: 60px 0 100px; }
.cta-pre-card {
  background: linear-gradient(135deg, rgba(225,29,72,0.12), rgba(225,29,72,0.02));
  border: 1px solid rgba(225,29,72,0.3);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-pre-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(225,29,72,0.18), transparent 60%);
  pointer-events: none;
}
.cta-pre-card > * { position: relative; }
.cta-pre-card .text-muted { max-width: 580px; margin: 0 auto 36px; }
.cta-pre-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ====== Newsletter footer ====== */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-newsletter h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #fff;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s;
}
.newsletter-form input:focus {
  border-color: rgba(225,29,72,0.5);
  background: rgba(255,255,255,0.06);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
.newsletter-form button:hover { background: #be123c; }

@media (max-width: 768px) {
  .footer-newsletter { grid-template-columns: 1fr; gap: 18px; }
  .newsletter-form { margin-left: 0; }
}

/* ====== Cookie banner ====== */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 1000;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(20,20,22,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: cookieSlide 0.6s var(--ease);
}
@keyframes cookieSlide {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-content > span:first-child { font-size: 1.4rem; }
.cookie-content p {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  min-width: 200px;
}
.cookie-content p a { color: var(--accent); }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-btn-secondary {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}
.cookie-btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.cookie-btn-primary {
  background: var(--accent);
  color: #fff;
}
.cookie-btn-primary:hover { background: #be123c; }

/* ====== Pages légales ====== */
.legal-page .navbar { position: relative; padding: 22px 32px; background: rgba(14,14,16,0.95); }
.legal-page .navbar-inner { grid-template-columns: 1fr auto; }
.legal-content {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 120px;
  min-height: 80vh;
}
.legal-content .container { max-width: 800px; }
.legal-back {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
}
.legal-back:hover { text-decoration: underline; }
.legal-content h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.legal-updated {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 40px 0 14px;
}
.legal-content p, .legal-content ul {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: #fff; }

/* ====== Selection ====== */
::selection { background: var(--accent); color: #fff; }

/* ====== Reduced motion ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
