/* ═══════════════════════════════════════════════
   Créations 2G — style.css
   Stack : HTML5 + CSS3 + GSAP
   Mode : Dark
   ═══════════════════════════════════════════════ */

:root {
  --color-primary:   #0D0F1C;
  --color-secondary: #6C63FF;
  --color-bg:        #000000;
  --color-surface:   #111111;
  --color-text:      #f0ede8;
  --color-muted:     #a0a0a0;
  --font-heading:    'DM Serif Display', serif;
  --font-body:       'Outfit', sans-serif;
  --font-mono:       'DM Mono', monospace;
  --radius:          12px;
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:       1200px;
  --nav-height:      72px;
}

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── Couverture de page (anti-flash au chargement) ────── */
#page-cover {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 9999;
  pointer-events: none;
  cursor: none;
}

::selection {
  background: var(--color-secondary);
  color: #fff;
}

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

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-dark  { background: var(--color-bg); }
.section-light { background: var(--color-surface); }

/* ── Section Title ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 56px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  height: 3px;
  width: 56px;
  background: var(--color-secondary);
  margin-top: 12px;
  border-radius: 2px;
}

.section-title.center {
  display: block;
  text-align: center;
}

.section-title.center::after {
  margin: 12px auto 0;
}

/* ── Badge ─────────────────────────────────────── */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid color-mix(in srgb, var(--color-secondary) 50%, transparent);
  color: var(--color-secondary);
  background: color-mix(in srgb, var(--color-secondary) 8%, transparent);
}

/* ── Buttons ─────────────────────────────────────── */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--color-secondary) 80%, #fff);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--color-secondary) 35%, transparent);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: color-mix(in srgb, var(--color-text) 30%, transparent);
}
.btn-secondary:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

/* ── Navigation ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height); z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* Logo groupe */
.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 0 28px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.75; }

.nav-tagline {
  font-size: 0.6rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 12px;
  white-space: nowrap;
}

/* Liens centrés */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  list-style: none;
  padding: 0 24px;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  opacity: 0.6;
  transition: opacity var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-secondary);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Droite : toggle langue + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 0 28px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.lang-active  { color: var(--color-secondary); cursor: none; }
.lang-sep     { opacity: 0.3; }
.lang-inactive {
  opacity: 0.4;
  cursor: none;
  transition: opacity var(--transition);
}
.lang-inactive:hover { opacity: 0.85; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--color-secondary);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }

/* Hamburger mobile */
.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 16px;
  transition: opacity var(--transition);
}
.menu-toggle:hover { opacity: 0.7; }

/* ── Main ─────────────────────────────────────── */
main { padding-top: var(--nav-height); }

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-aurora {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0; z-index: 1;
  background: color-mix(in srgb, var(--color-bg) 42%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

/* Gradient texte — hero accent + titres stats */
.hero-content h1 .accent,
.stat-accent {
  background: linear-gradient(120deg, var(--color-secondary) 0%, #a78bfa 55%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-content .tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Page Hero intérieur ─────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--color-primary);
}

.page-hero-bg {
  position: absolute;
  inset: 0; z-index: 0;
  opacity: 0.25;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.page-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 500px;
}

/* ── Marquee ─────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  padding: 20px 0;
  background: var(--color-surface);
  border-top: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

/* Marquee ancré en bas du hero */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: color-mix(in srgb, var(--color-bg) 70%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
  border-bottom: none;
  z-index: 2;
}

.marquee-track { overflow: hidden; width: 100%; }

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}
.marquee-item::after {
  content: '✦';
  color: var(--color-secondary);
  font-size: 0.6rem;
}

/* ── Grilles ─────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Cards ─────────────────────────────────────── */
@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes card-border-spin {
  to { --card-angle: 360deg; }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    from var(--card-angle),
    transparent 0%,
    transparent 35%,
    var(--color-secondary) 55%,
    #60a5fa 68%,
    transparent 78%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
  opacity: 0;
  animation: card-border-spin 3s linear infinite;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.card:hover::before {
  opacity: 1;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--color-secondary) 18%, transparent);
}
.card-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.card-icon svg { width: 2rem; height: 2rem; stroke: var(--color-secondary); stroke-width: 1.5; }
.card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; }
.card p  { color: var(--color-muted); font-size: 1rem; line-height: 1.7; }

/* ── Galerie ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--color-primary) 70%, transparent);
  display: flex; align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { font-size: 1.1rem; color: #fff; }

/* ── Split Section ─────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

.split-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.split-content p  { color: var(--color-muted); margin-bottom: 16px; line-height: 1.75; }

/* ── Stats ─────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  padding: 48px 0;
}
.stat-item .counter {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-secondary);
  display: block;
}
.stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  margin-top: 12px;
}

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-secondary) 15%, transparent), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; position: relative; }
.cta-banner p  { color: var(--color-muted); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-banner .btn-primary { position: relative; }

/* ── Formulaire ─────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.9rem;
  letter-spacing: 0.05em; color: var(--color-muted); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-text) 15%, transparent);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-secondary) 15%, transparent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: color-mix(in srgb, var(--color-muted) 60%, transparent);
}
.btn-submit {
  width: 100%;
  background: var(--color-secondary);
  color: #fff; border: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-submit:hover {
  background: color-mix(in srgb, var(--color-secondary) 80%, #fff);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--color-secondary) 30%, transparent);
}
.form-status {
  padding: 14px 20px; border-radius: var(--radius);
  font-size: 0.9rem; margin-top: 16px; display: none;
}
.form-status.success {
  display: block;
  background: color-mix(in srgb, #22c55e 12%, transparent);
  border: 1px solid color-mix(in srgb, #22c55e 30%, transparent);
  color: #86efac;
}
.form-status.error {
  display: block;
  background: color-mix(in srgb, #ef4444 12%, transparent);
  border: 1px solid color-mix(in srgb, #ef4444 30%, transparent);
  color: #fca5a5;
}

/* ── Contact Info ─────────────────────────────────────── */
.contact-info h2 { font-size: 1.8rem; margin-bottom: 12px; }
.contact-info .intro { color: var(--color-muted); margin-bottom: 36px; line-height: 1.7; }
.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact-icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: color-mix(in srgb, var(--color-secondary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-secondary) 25%, transparent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item h4 {
  font-family: var(--font-body); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 4px; font-weight: 500;
}
.contact-item p,
.contact-item a { font-size: 0.95rem; color: var(--color-text); }
.contact-item a:hover { color: var(--color-secondary); }

/* ── Services ─────────────────────────────────────── */
.service-card {
  background: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--color-secondary) 18%, transparent);
  border-color: color-mix(in srgb, var(--color-secondary) 30%, transparent);
}
.service-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.service-icon svg { width: 2.2rem; height: 2.2rem; stroke: var(--color-secondary); stroke-width: 1.5; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 12px; }
.service-card p  { color: var(--color-muted); font-size: 1rem; margin-bottom: 20px; line-height: 1.75; }
.service-price {
  font-family: var(--font-mono); font-size: 1rem;
  color: var(--color-secondary); font-weight: 500;
  display: block; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
}

/* ── Process ─────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-connector {
  grid-column: 1 / -1;
  grid-row: 1;
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  font-family: var(--font-mono); font-size: 1rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: box-shadow 0.3s ease;
}
.step.is-visible .step-number {
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-secondary) 12%, transparent);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p  { font-size: 0.95rem; color: var(--color-muted); }

/* ── Témoignages ─────────────────────────────────────── */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.testimonial-quote {
  font-size: 2.5rem; color: var(--color-secondary);
  font-family: var(--font-heading); line-height: 1; margin-bottom: 16px;
}
.testimonial-text {
  color: var(--color-muted); font-size: 1rem;
  line-height: 1.75; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 500; font-size: 1rem; }
.testimonial-role { font-size: 0.88rem; color: var(--color-muted); }

/* ── Portfolio ─────────────────────────────────────── */
.portfolio-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--color-text) 20%, transparent);
  border-radius: 100px; padding: 8px 20px;
  color: var(--color-muted); font-family: var(--font-body);
  font-size: 0.95rem; cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background: color-mix(in srgb, var(--color-secondary) 8%, transparent);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--color-primary) 80%, transparent);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 28px 24px; opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-secondary); margin-bottom: 6px;
}
.portfolio-title { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; margin-bottom: 12px; }
.portfolio-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-secondary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.portfolio-item { transition: opacity 0.3s, transform 0.3s; }
.portfolio-item.hidden { opacity: 0; pointer-events: none; transform: scale(0.95); }

/* ── Équipe ─────────────────────────────────────── */
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 20px;
  border: 3px solid color-mix(in srgb, var(--color-secondary) 40%, transparent);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 4px; }
.team-role { font-size: 0.9rem; color: var(--color-secondary); letter-spacing: 0.05em; margin-bottom: 12px; }
.team-bio  { font-size: 0.95rem; color: var(--color-muted); line-height: 1.7; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--color-bg);
}
.footer-video-brand {
  background: var(--color-bg);
}
.footer-brand-title {
  position: relative; overflow: hidden;
  height: clamp(110px, 17vw, 210px); background: var(--color-bg); isolation: isolate;
}
.footer-brand-title video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.footer-video-overlay {
  position: absolute; inset: 0; background: var(--color-bg);
  mix-blend-mode: multiply; display: flex; align-items: center; justify-content: center;
  padding: 12px 0 4px;
}
.footer-video-text {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 15rem);
  color: #fff; white-space: nowrap; letter-spacing: -0.03em; line-height: 1;
  display: block; user-select: none;
}
.footer-brand-contacts {
  padding: 28px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 6%, transparent);
}
.footer-brand-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-contacts {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--color-muted); transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--color-secondary); }
.footer-contact-icon { font-size: 1rem; }
.footer-contact-icon svg { width: 0.95rem; height: 0.95rem; stroke: currentColor; vertical-align: middle; }
.contact-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--color-secondary); stroke-width: 1.5; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid color-mix(in srgb, var(--color-text) 8%, transparent);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-bottom a { font-size: 0.88rem; color: var(--color-muted); }
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-secondary); }

/* ── FAQ Accordéon ─────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-secondary) 18%, transparent);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--color-secondary) 40%, transparent);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-secondary) 40%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.35s ease, background 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.faq-body {
  padding: 0 28px 22px;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Utilitaires divers ─────────────────────────────────────── */
.accent { color: var(--color-secondary); }
.muted  { color: var(--color-muted); }
.text-center { text-align: center; }
/* opacity:0 initial géré par GSAP uniquement — pas de CSS ici pour éviter le contenu bloqué */
.divider {
  height: 1px;
  background: color-mix(in srgb, var(--color-text) 8%, transparent);
}

/* ── Browser Mockup ─────────────────────────────────────── */
.browser-mockup {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 48px 96px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
  background: #1e1e1e;
}
.browser-bar {
  height: 44px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.browser-dots {
  display: flex;
  gap: 7px;
}
.browser-dots span {
  width: 12px; height: 12px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-muted);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-screen {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
}

/* ── Projet Vedette ─────────────────────────────────────── */
.featured-project {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.featured-info { display: flex; flex-direction: column; }
.featured-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 14px 0 20px;
  line-height: 1.1;
}
.featured-info > p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}
.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.featured-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--color-secondary) 10%, transparent);
  color: var(--color-secondary);
  border: 1px solid color-mix(in srgb, var(--color-secondary) 25%, transparent);
}

/* ── Nena Preview (inside browser) ─────────────────────── */
.nena-preview {
  width: 100%;
  height: 100%;
  background: #0c0a07;
  background-image: url('https://nena-website.pages.dev/assets/images/galerie/equipe.jpg');
  background-size: cover;
  background-position: center 30%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nena-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.72);
  pointer-events: none;
}
.nena-nav {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nena-nav-links {
  display: flex;
  gap: 22px;
}
.nena-nav-links span {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.nena-nav-links span.active-nav { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.nena-reserve-btn {
  background: #d4e22a;
  color: #111;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
}
.nena-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
  gap: 10px;
}
.nena-location {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4e22a;
}
.nena-title {
  font-family: 'Gill Sans', 'Gill Sans MT', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(36px, 10vw, 80px);
  font-weight: 100;
  color: #fff;
  letter-spacing: 8px;
  line-height: 1;
  margin: 4px 0;
  text-transform: uppercase;
}
.nena-subtitle {
  font-family: 'Palatino Linotype', 'Book Antiqua', 'Palatino', Georgia, serif;
  font-size: clamp(11px, 2.5vw, 20px);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.nena-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.nena-btn-primary {
  background: #d4e22a;
  color: #111;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
}
.nena-btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
}
.nena-marquee {
  position: relative; z-index: 2;
  padding: 10px 0;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4e22a;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

/* ── Mini-Palettes Preview (inside browser) ─────────────── */
.palettes-preview {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1a1a1a;
}
.palettes-nav {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 66px;
  background: #e91e63;
  flex-shrink: 0;
}
.palettes-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.palettes-logo-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #000;
  flex-shrink: 0;
}
.palettes-logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.palettes-logo-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.palettes-logo-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
  font-style: italic;
}
.palettes-nav-links {
  display: flex;
  gap: 22px;
}
.palettes-nav-links span {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  cursor: pointer;
}
.palettes-nav-links .palettes-active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.palettes-hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.palettes-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://www.minipalettes.ca/images/slide-apropos.webp');
  background-size: cover;
  background-position: center;
}
.palettes-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
}
.palettes-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 26px 36px;
  text-align: center;
  max-width: 60%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.palettes-card h2 {
  color: #e91e63;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(13px, 2.6vw, 22px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.palettes-card-btn {
  display: inline-block;
  background: #e91e63;
  color: #fff;
  border-radius: 20px;
  padding: 9px 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Projet vedette inversé (info à gauche, mockup à droite) */
.featured-project.reverse {
  grid-template-columns: 340px 1fr;
}

@media (max-width: 900px) {
  .featured-project { grid-template-columns: 1fr; gap: 36px; }
  .featured-project.reverse { grid-template-columns: 1fr; }
  /* Mockup : toujours visible en 1ère position sur mobile */
  .featured-project .browser-mockup { order: -1; }
  .featured-project.reverse .browser-mockup { order: -1; }
  .browser-screen { min-height: 220px; }
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .process-connector { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .menu-toggle { display: block; }
  .navbar { grid-template-columns: 1fr auto; }
  .nav-right { display: none; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--color-bg); padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 20px;
  }
  .nav-links a { font-size: 0.85rem; letter-spacing: 0.08em; }
  .nav-links.open { display: flex; }
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 2.5rem; }
  .cta-banner { padding: 48px 28px; }
}

/* ── Galerie : carte CTA "Votre projet" ─────────────────── */
.gallery-item-cta {
  background: color-mix(in srgb, var(--color-secondary) 8%, var(--color-surface));
  border: 1px dashed color-mix(in srgb, var(--color-secondary) 30%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.gallery-item-cta:hover {
  background: color-mix(in srgb, var(--color-secondary) 14%, var(--color-surface));
  border-color: color-mix(in srgb, var(--color-secondary) 55%, transparent);
}
.gallery-cta-content {
  text-align: center;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
.gallery-cta-content p {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.gallery-cta-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.gallery-item-cta:hover .gallery-cta-btn {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .cta-banner { padding: 40px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Portfolio placeholder "Votre site" */
.portfolio-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--color-secondary) 8%, var(--color-surface)),
    var(--color-surface) 60%,
    color-mix(in srgb, var(--color-secondary) 5%, var(--color-surface))
  );
  border: 2px dashed color-mix(in srgb, var(--color-secondary) 35%, transparent);
  display: flex; align-items: center; justify-content: center;
}
.portfolio-placeholder-inner {
  text-align: center;
}
.portfolio-placeholder-icon {
  font-size: 2.5rem;
  color: color-mix(in srgb, var(--color-secondary) 50%, transparent);
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.portfolio-placeholder-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-secondary) 60%, transparent);
}
.portfolio-item--cta:hover .portfolio-overlay {
  background: color-mix(in srgb, var(--color-primary) 85%, transparent) !important;
}

/* ═══════════════════════════════════════════════
   Effets UI premium
   ═══════════════════════════════════════════════ */

/* ── Grain film ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ── Curseur personnalisé ── */
@media (pointer: fine) {
  body, a, button, summary, [role="button"], label { cursor: none !important; }
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  background: var(--color-secondary);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 9999;
  transition: opacity 0.3s;
  mix-blend-mode: difference;
}

/* ── Page Transition ── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 10000;
  transform: scaleY(1);
  transform-origin: top;
  pointer-events: none;
}


/* ── Preview "Votre site" ── */
.votre-preview {
  width: 100%;
  height: 100%;
  background: #0f0f14;
  display: flex; flex-direction: column;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}

.votre-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* ── Preview "Votre site" ── */
.votre-preview {
  width: 100%;
  height: 100%;
  background: #0f0f14;
  display: flex; flex-direction: column;
  font-family: 'Outfit', sans-serif;
  overflow: hidden;
}
.votre-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.votre-logo-text {
  font-size: 0.95rem; font-weight: 600; color: #fff; letter-spacing: 0.08em;
}
.votre-nav-links {
  display: flex; gap: 16px;
}
.votre-nav-links span {
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
}
.votre-active { color: rgba(255,255,255,0.9) !important; }
.votre-hero {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px; text-align: center; gap: 14px;
}
.votre-tagline {
  font-size: 0.65rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.votre-title {
  font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1.2;
  font-family: 'DM Serif Display', serif;
}
.votre-btns {
  display: flex; gap: 12px; margin-top: 6px;
}
.votre-btn-primary {
  font-size: 0.65rem; padding: 8px 16px;
  background: #7c5cbf; color: #fff; border-radius: 4px;
}
.votre-btn-outline {
  font-size: 0.65rem; padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7);
  border-radius: 4px;
}
.votre-marquee {
  font-size: 0.60rem; color: rgba(255,255,255,0.2);
  padding: 9px 0; border-top: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap; overflow: hidden;
  letter-spacing: 0.1em;
}

/* ── GST Preview ─────────────────────────────────────── */
.gst-preview {
  width: 100%;
  height: 100%;
  background: #0f1f38;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px),
    repeating-linear-gradient(0deg,  transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-family: 'Outfit', Georgia, sans-serif;
  overflow: hidden;
}
.gst-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 22px;
  background: rgba(15,31,56,0.97);
  border-bottom: 1px solid rgba(200,168,75,0.15);
}
.gst-logo-name {
  font-size: 0.95rem; font-weight: 700; color: #f8f7f4; letter-spacing: 0.02em; line-height: 1;
}
.gst-logo-sub {
  font-size: 0.62rem; color: #c8a84b; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px;
}
.gst-nav-links { display: flex; align-items: center; gap: 14px; }
.gst-nav-links span {
  font-size: 0.64rem; color: rgba(248,247,244,0.6); letter-spacing: 0.07em; text-transform: uppercase;
}
.gst-devis {
  border: 1px solid #c8a84b !important; color: #c8a84b !important;
  padding: 4px 12px; border-radius: 2px;
}
.gst-hero {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 28px; gap: 36px; overflow: hidden;
}
.gst-hero-left {
  display: flex; flex-direction: column; gap: 13px; flex: 1; min-width: 0;
}
.gst-badge-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.60rem; color: #c8a84b; letter-spacing: 0.14em; text-transform: uppercase;
}
.gst-eyebrow-line { display: inline-block; width: 20px; height: 1px; background: #c8a84b; flex-shrink: 0; }
.gst-title {
  font-size: 1.55rem; font-weight: 400; color: #f8f7f4; line-height: 1.22;
  font-family: 'DM Serif Display', Georgia, serif;
}
.gst-title em { font-style: italic; color: #e2c97e; }
.gst-desc { font-size: 0.67rem; color: rgba(248,247,244,0.55); line-height: 1.5; }
.gst-btns { display: flex; gap: 10px; margin-top: 4px; }
.gst-btn-primary {
  font-size: 0.62rem; padding: 7px 16px; background: #c8a84b;
  color: #0f1f38; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 2px;
}
.gst-btn-outline {
  font-size: 0.62rem; padding: 7px 16px;
  border: 1px solid rgba(248,247,244,0.28); color: rgba(248,247,244,0.75); border-radius: 2px;
}
.gst-stats { display: flex; gap: 26px; margin-top: 12px; }
.gst-stat-num {
  font-size: 1.20rem; color: #e2c97e; line-height: 1; margin-bottom: 2px;
  font-family: 'DM Serif Display', Georgia, serif;
}
.gst-stat-label { font-size: 0.50rem; color: rgba(248,247,244,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
.gst-doc {
  width: 172px; flex-shrink: 0; align-self: center;
  background: rgba(22,42,74,0.9);
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 4px; overflow: hidden;
  transform: rotate(1.5deg);
}
.gst-doc-header {
  background: rgba(200,168,75,0.1); border-bottom: 1px solid rgba(200,168,75,0.22);
  padding: 8px 12px; display: flex; justify-content: space-between; align-items: center;
}
.gst-doc-badge { font-size: 0.54rem; font-weight: 700; color: #c8a84b; letter-spacing: 0.14em; text-transform: uppercase; }
.gst-doc-dot { width: 6px; height: 6px; background: #c8a84b; border-radius: 50%; opacity: 0.6; }
.gst-doc-body { padding: 10px 12px 6px; }
.gst-doc-title { font-size: 0.80rem; font-weight: 400; color: #f8f7f4; line-height: 1.2; font-family: 'DM Serif Display', Georgia, serif; margin-bottom: 3px; }
.gst-doc-sub { font-size: 0.50rem; color: rgba(248,247,244,0.35); margin-bottom: 7px; }
.gst-doc-divider { height: 1px; background: rgba(200,168,75,0.15); margin-bottom: 7px; }
.gst-pcq-section { margin-bottom: 7px; }
.gst-pcq-label { font-size: 0.50rem; color: #c8a84b; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.gst-pcq-line { height: 4px; background: rgba(248,247,244,0.1); border-radius: 2px; margin-bottom: 3px; }
.gst-pcq-line.l { width: 100%; }
.gst-pcq-line.m { width: 72%; }
.gst-pcq-line.s { width: 46%; }
.gst-doc-footer { padding: 6px 12px 8px; }
.gst-stamp {
  font-size: 0.50rem; font-weight: 700; color: #c8a84b; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.25);
  border-radius: 2px; padding: 3px 7px; display: inline-block;
}
.gst-ticker {
  background: #c8a84b; padding: 7px 0;
  overflow: hidden; white-space: nowrap;
}
.gst-ticker-track {
  display: inline-flex;
  animation: gst-tick 20s linear infinite;
  width: max-content;
}
.gst-ticker-track span {
  font-size: 0.54rem; font-weight: 700; color: #0f1f38;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0 20px;
}
.gst-ticker-track span::after { content: '·'; margin-left: 20px; opacity: 0.4; }
@keyframes gst-tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ── Section vidéo plein-fond ── */
.section-video {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.section-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 18, 0.62);
}
.section-video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--gap);
  color: #fff;
}
.section-video-content .badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}
.section-video-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin: 20px 0 18px;
  line-height: 1.1;
}
.section-video-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
}

/* ── Bouton CTA flottant ── */
.float-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.float-cta.float-cta--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-cta a {
  display: block;
  padding: 14px 24px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--color-secondary) 40%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.float-cta a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--color-secondary) 55%, transparent);
}
@media (max-width: 480px) {
  .float-cta { bottom: 20px; right: 16px; }
  .float-cta a { padding: 12px 18px; font-size: 0.82rem; }
}
