/* =============================================
   1NSPIRE – CSS Principal
   ============================================= */

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

:root {
  /* Variables standards (code.md) */
  --color-primary:    #0A0A0A;
  --color-secondary:  #FFFFFF;
  --color-accent:     #C0C0C0;
  --color-dark:       #1A1A1A;
  --color-text-muted: #888888;
  --font-title:       'Bebas Neue', 'Montserrat', sans-serif;
  --font-body:        'Inter', sans-serif;
  --transition:       all 0.3s ease;
  --shadow:           0 4px 20px rgba(0,0,0,0.3);
  --max-width:        1440px;
  --padding-section:  80px 5%;

  /* Alias internes */
  --black:          #0A0A0A;
  --black-2:        #111111;
  --black-3:        #1A1A1A;
  --white:          #FFFFFF;
  --silver:         #C0C0C0;
  --silver-2:       #888888;
  --silver-3:       #E8E8F0;
  --accent:         #C0C0C0;
  --transition-fast: 0.2s ease;
  --radius:         2px;
  --container:      1440px;
  --section-pad:    clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; }

/* --- Focus visible (WCAG 2.1 AA) --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* --- Curseur personnalisé --- */
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  background: var(--silver);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
  mix-blend-mode: difference;
}

#custom-cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(192,192,200,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

#custom-cursor.hover { transform: translate(-50%, -50%) scale(2); }
#custom-cursor-follower.hover { width: 64px; height: 64px; border-color: var(--silver); }

/* --- Loader --- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-logo {
  width: 140px;
  opacity: 0;
  transform: translateY(10px);
  animation: loaderLogoIn 0.6s 0.2s forwards ease;
}

.loader-bar {
  margin: 1.5rem auto 0;
  width: 120px;
  height: 1px;
  background: var(--black-3);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  animation: loaderBarSlide 1.4s 0.4s forwards ease;
  transform: translateX(-100%);
}

@keyframes loaderLogoIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderBarSlide {
  to { transform: translateX(100%); }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

/* --- Typographie --- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.5rem, 10vw, 9rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: 2.5rem; }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 1rem; }

em { font-style: normal; color: var(--silver); }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--silver);
}

.text-center { text-align: center; }
.text-center .section-tag { padding-left: 0; padding-right: 2rem; }
.text-center .section-tag::before { left: auto; right: 0; }

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.page-hero,
.page-content,
main {
  padding-top: 0;
}

/* --- NAVBAR --- */
nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 70px;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
}

.social-link {
  color: var(--silver-2);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: flex;
  align-items: center;
}

.social-link:hover { color: var(--white); transform: translateY(-2px); }

.nav-social-link {
  color: var(--silver-2);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: flex;
  align-items: center;
}

.nav-social-link:hover { color: var(--white); transform: translateY(-2px); }

.nav-left-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding-right: 0;
  margin-left: 16px;
}

.lang-switcher a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 2px 4px;
}

.lang-switcher a:hover {
  color: #FFFFFF;
}

.lang-switcher a.active {
  color: #FFFFFF;
}

.lang-switcher span {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img { height: 65px; width: auto; transition: opacity 0.3s ease; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-2);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: right;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  background: var(--silver) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.25rem !important;
  font-weight: 600 !important;
  transition: background var(--transition-fast) !important;
}

.nav-cta:hover { background: var(--silver-3) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.3s ease,
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s ease;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 1000;
  pointer-events: none;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(10,10,10,0.85);
  border-left: 1px solid rgba(192,192,192,0.15);
  border-top: 1px solid rgba(192,192,192,0.15);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
  background: rgba(192,192,192,0.08);
  color: #FFFFFF;
}

.nav-dropdown > a {
  cursor: pointer;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px 5%;
  flex-direction: column;
  gap: 24px;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover { color: #FFFFFF; }

/* --- GRAIN --- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-move 8s steps(10) infinite;
}

@keyframes grain-move {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-5%, -5%); }
  20%  { transform: translate(-10%, 5%); }
  30%  { transform: translate(5%, -10%); }
  40%  { transform: translate(-5%, 15%); }
  50%  { transform: translate(-10%, 5%); }
  60%  { transform: translate(15%, 0); }
  70%  { transform: translate(0, 10%); }
  80%  { transform: translate(-15%, 0); }
  90%  { transform: translate(10%, 5%); }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: -8% 0 0 0;
  z-index: 0;
  background: var(--black);
}

.hero-video-wrap video {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2)  0%,
    rgba(10,10,10,0.05) 35%,
    rgba(10,10,10,0.6)  68%,
    rgba(10,10,10,0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 88px;
  width: 100%;
  max-width: 1440px;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(14px);
  animation: fade-up-hero 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}
.hero-eyebrow-line {
  width: 36px; height: 1px;
  background: var(--silver);
  opacity: 0.55;
}
.hero-eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Titre cinématographique */
.hero-title {
  color: var(--white);
  font-size: clamp(72px, 11.5vw, 162px);
  line-height: 0.91;
  letter-spacing: 0.025em;
  margin-bottom: 36px;
  text-shadow: none;
}
.hero-title-word {
  display: block;
  overflow: hidden;
}
.hero-title-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-title-inner.is-visible {
  animation: word-reveal-hero 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Sous-titre et CTA */
.hero-subtitle {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-2);
  margin: 0 0 52px;
  max-width: none;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-fade-el {
  opacity: 0;
  transform: translateY(14px);
}
.hero-fade-el.is-visible {
  animation: fade-up-hero 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Flèche bouton */
.btn-arrow-icon {
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}
.btn-arrow-icon::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .btn-arrow-icon { width: 22px; }

/* Scroll indicator — droite */
.hero-scroll-right {
  position: absolute;
  right: 5%;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fade-up-hero 1s ease 2.4s forwards;
}
.hero-scroll-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-2);
  writing-mode: vertical-rl;
}
.hero-scroll-track {
  width: 1px; height: 56px;
  background: rgba(192,192,192,0.18);
  position: relative;
  overflow: hidden;
}
.hero-scroll-track::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--silver);
  animation: scroll-track 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.4s infinite;
}

@keyframes word-reveal-hero {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fade-up-hero {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-track {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* --- HERO 3D PIÈCE --- */
.hero-3d {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: var(--black);
  overflow: hidden;
}

.hero-3d__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  pointer-events: none;
  z-index: 2;
}

.hero-3d__left  { display: flex; flex-direction: column; }
.hero-3d__right { display: flex; flex-direction: column; text-align: right; align-items: flex-end; }

.hero-3d__word {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  color: var(--white);
  line-height: 0.88;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-3d__word.is-visible { opacity: 1; transform: translateY(0); }

.hero-3d__sub {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-2);
  opacity: 0;
  transition: opacity 1s ease;
  white-space: nowrap;
  z-index: 2;
}
.hero-3d__sub.is-visible { opacity: 1; }

.hero-3d__cta {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 2;
}
.hero-3d__cta.is-visible { opacity: 1; }

.hero-3d__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-3d__scroll.is-visible { opacity: 1; }

/* --- ABOUT --- */
.section-about { background: var(--black-2); }

.about-split-new {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-col-left { position: relative; }

.about-name-wrap {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-name-line {
  width: 2px;
  background: var(--silver);
  align-self: stretch;
  flex-shrink: 0;
  opacity: 0.5;
}

.about-name-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.about-name-word { display: block; }

.about-intro {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--silver-2);
  line-height: 1.85;
  margin: 1.5rem 0 3rem;
  max-width: 52ch;
}

.about-stats {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(192,192,192,0.15);
  padding-top: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-stat-value {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  color: var(--silver);
  letter-spacing: 0.02em;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

/* --- BTN FILL (bouton remplissage argenté) --- */
.btn-fill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 36px;
  border: 1px solid rgba(192,192,192,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  background: none;
}

.btn-fill-bg {
  position: absolute;
  inset: 0;
  background: var(--silver);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-fill-text {
  position: relative;
  z-index: 1;
}

.btn-fill:hover .btn-fill-bg { transform: translateX(0); }
.btn-fill:hover { color: #0A0A0A; }

/* --- SERVICES SPLIT --- */
.section-services { background: var(--black); padding: 0; }

.services-split-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 80vh;
}

.services-zone {
  padding: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 5vw, 5.5rem);
  background: var(--black);
  transition: background 0.5s ease, opacity 0.5s ease;
}

.services-zone:hover { background: #111111; }

.services-split-wrap:has(.services-zone:hover) .services-zone:not(:hover) {
  opacity: 0.3;
}

.services-separator {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 4rem 0;
}

.services-separator-line {
  width: 1px;
  background: rgba(192,192,192,0.2);
  height: 100%;
}

.services-zone-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
  display: block;
}

.services-zone-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1;
}

.services-list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  counter-reset: service-counter;
}

.services-list-item {
  counter-increment: service-counter;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-bottom-color 0.3s ease,
              padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-list-item::before {
  content: counter(service-counter, decimal-leading-zero);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--silver);
  opacity: 0.55;
  font-family: var(--font-body);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 1.8rem;
  transition: opacity 0.3s ease;
}

.services-list-item span {
  flex: 1;
}

.services-list-item:hover {
  color: var(--white);
  border-bottom-color: rgba(192,192,192,0.3);
}

.services-list-item:hover::before {
  opacity: 1;
}

.services-list-item svg {
  opacity: 0;
  color: var(--silver);
  transform: translateX(-8px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.services-list-item:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* --- TICKER BANDE DÉFILANTE --- */
.ticker-wrap {
  background: var(--black);
  border-top: 1px solid rgba(192,192,192,0.1);
  border-bottom: 1px solid rgba(192,192,192,0.1);
  overflow: hidden;
}

.ticker-row {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0.6rem 0;
}

.ticker-row + .ticker-row {
  border-top: 1px solid rgba(192,192,192,0.06);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--silver);
  flex-shrink: 0;
}

.ticker-track--rev {
  animation: ticker-rev 40s linear infinite;
}

.ticker-dot {
  color: rgba(192,192,192,0.3);
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --- RÉALISATIONS MOSAÏQUE --- */
.section-realisations { background: var(--black-2); }

.mosaic-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 2px;
  margin-top: 3rem;
}

.mosaic-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mosaic-large,
.mosaic-small {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.mosaic-large { height: clamp(320px, 52vh, 560px); }
.mosaic-small { flex: 1; min-height: 150px; }

.mosaic-large img,
.mosaic-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: grayscale(15%);
}

.mosaic-large:hover img,
.mosaic-small:hover img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mosaic-large:hover .mosaic-overlay,
.mosaic-small:hover .mosaic-overlay { opacity: 1; }

.mosaic-overlay span {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-align: center;
  padding: 0 1.5rem;
  transform: translateY(14px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-large:hover .mosaic-overlay span,
.mosaic-small:hover .mosaic-overlay span {
  transform: translateY(0);
}

.realisations-cta { text-align: center; margin-top: 3rem; }

/* --- TARIFS LISTE PRIX --- */
.section-tarifs { background: var(--black); }

.price-list { margin-top: 3.5rem; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(192,192,192,0.1);
  transition: background 0.3s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0 -1.5rem;
}

.price-row:first-child { border-top: 1px solid rgba(192,192,192,0.1); }
.price-row:hover {
  background: rgba(192,192,192,0.04);
  transform: translateX(4px);
}

.price-row:hover .price-amount strong {
  color: #F0F0F0;
}
.price-row:hover .price-amount {
  color: rgba(192,192,192,0.9);
}

.price-name {
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.price-dots {
  flex: 1;
  min-width: 2rem;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(192,192,192,0.25) 0,
    rgba(192,192,192,0.25) 4px,
    transparent 4px,
    transparent 10px
  );
  align-self: center;
}

.price-amount {
  font-size: 0.9rem;
  color: var(--silver);
  white-space: nowrap;
  text-align: right;
}

.price-amount strong {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.price-amount em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--silver-2);
  margin-left: 0.25rem;
}

/* --- BLOG ÉDITORIAL --- */
.section-blog { background: var(--black-2); }

.blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3rem;
}

.blog-featured {
  background: #111111;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured:hover { transform: translateY(-4px); }

.blog-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}

.blog-featured h3 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
}

.blog-featured p {
  font-size: 0.9rem;
  color: var(--silver-2);
  line-height: 1.78;
  flex: 1;
  margin: 0;
}

.blog-secondary-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-secondary {
  background: #111111;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-secondary:hover { transform: translateY(-4px); }

.blog-secondary h3 {
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.blog-secondary p {
  font-size: 0.83rem;
  color: var(--silver-2);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.blog-featured h3 a,
.blog-secondary h3 a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-featured h3 a:hover,
.blog-secondary h3 a:hover { color: var(--silver); }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  transition: gap 0.3s ease;
  margin-top: auto;
  text-decoration: none;
}

.blog-read-more:hover { gap: 0.9rem; }

/* --- CONTACT --- */
.section-contact { background: var(--black); }

.contact-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 9vw, 8rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin-bottom: 5rem;
}

.contact-title-word {
  display: block;
  overflow: hidden;
  line-height: 1;
}

.contact-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--letter-idx, 0) * 28ms);
}

.contact-title.is-visible .contact-letter {
  opacity: 1;
  transform: translateY(0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info-text {
  color: var(--silver-2);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--silver-2);
  font-size: 0.9rem;
}

.contact-details svg { color: var(--silver); flex-shrink: 0; }
.contact-details a:hover { color: var(--white); }

/* Floating label form */
.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-float {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-float input,
.form-float textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(192,192,192,0.2);
  padding: 1.2rem 0 0.6rem;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  resize: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-float input:focus,
.form-float textarea:focus {
  border-bottom-color: rgba(192,192,192,0.5);
}

.form-float label {
  position: absolute;
  top: 1.2rem;
  left: 0;
  font-size: 0.875rem;
  color: var(--silver-2);
  pointer-events: none;
  transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
  letter-spacing: 0.02em;
}

.form-float input:focus + label,
.form-float input:not(:placeholder-shown) + label,
.form-float textarea:focus + label,
.form-float textarea:not(:placeholder-shown) + label {
  top: -0.1rem;
  font-size: 0.62rem;
  color: var(--silver);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-float-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-float input:focus ~ .form-float-bar,
.form-float textarea:focus ~ .form-float-bar { width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1.2rem 2rem;
  background: var(--silver);
  color: #0A0A0A;
  border: 1px solid var(--silver);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
  margin-top: 1.5rem;
}

.btn-submit:hover {
  background: var(--white);
  color: var(--color-primary);
  border-color: var(--white);
}

/* --- CONTACT PREVIEW --- */
#contact-preview {
  background: #0A0A0A;
  padding: 80px 5% 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

#contact-preview::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(192,192,192,0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-preview-inner {
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-preview-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.contact-preview-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  color: #FFFFFF;
  line-height: 0.9;
  letter-spacing: -1px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-preview-title span {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity   1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-preview-title span:nth-child(2) {
  transition-delay: 150ms;
}

.contact-preview-content.visible .contact-preview-title span {
  opacity: 1;
  transform: translateY(0);
}

.contact-preview-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s ease 400ms;
}

.contact-preview-content.visible .contact-preview-sub {
  opacity: 1;
}

.contact-preview-btn {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.6s ease 600ms,
    transform 0.6s ease 600ms,
    color     0.3s ease;
  font-size: 12px;
  letter-spacing: 4px;
  padding: 16px 56px;
}

.contact-preview-content.visible .contact-preview-btn {
  opacity: 1;
  transform: translateY(0);
}

/* --- FOOTER --- */
footer {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 5% 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  margin: 0 0 4px 0;
}

.footer-location {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  width: fit-content;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C0C0C0;
  transition: width 0.3s ease;
}

.footer-nav a:hover { color: #FFFFFF; }
.footer-nav a:hover::after { width: 100%; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social-link:hover { color: #FFFFFF; }

.footer-social-link svg {
  transition: stroke 0.3s ease;
  flex-shrink: 0;
}

.footer-social-link:hover svg { stroke: #C0C0C0; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* --- REVEAL SCALE (mosaïque, éléments avec scale) --- */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* --- REVEAL TITLE (h2 mot par mot via JS) --- */
.reveal-title {
  overflow: hidden;
}

.reveal-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-title.visible span {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */

#about-preview {
  background: #0A0A0A;
  padding: 160px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.about-preview-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.about-preview-right {
  position: relative;
}

.about-preview-img-wrap {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
  padding: 2px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 400ms,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 400ms;
}

.about-preview-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle-photo, 0deg),
    transparent 0deg,
    rgba(192, 192, 192, 0.6) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorderPhoto 4s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.about-preview-img-wrap::after {
  display: none;
}

.about-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.6s ease, transform 0.8s ease;
}

.about-preview-img-wrap:hover .about-preview-img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.03);
}

.about-preview-text {
  font-family: var(--font-title);
  font-size: clamp(24px, 3.5vw, 48px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 1px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-preview-text span {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-preview-text span:nth-child(1) { transition-delay: 0ms; }
.about-preview-text span:nth-child(2) { transition-delay: 120ms; color: rgba(255,255,255,0.5); }
.about-preview-text span:nth-child(3) { transition-delay: 240ms; }
.about-preview-text span:nth-child(4) { transition-delay: 360ms; color: #C0C0C0; }

.about-preview-text.visible span {
  opacity: 1;
  transform: translateY(0);
}

.about-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 600ms,
              transform 0.6s ease 600ms,
              color 0.4s ease;
}

.about-preview-text.visible ~ .about-btn {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RÉALISATIONS — MARQUEE PREMIUM
   ============================================= */

#realisations-preview {
  background: #0A0A0A;
  padding: 120px 0;
  overflow: hidden;
}

.realisations-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.realisations-header {
  text-align: center;
  margin-bottom: 64px;
}

.realisations-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 16px 0 0 0;
}

/* Marquee */
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 64px;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0A0A0A, transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0A0A0A, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}

/* Marquee item */
.marquee-item {
  position: relative;
  width: 380px;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid rgba(192, 192, 192, 0.1);
  transition: border-color 0.3s ease,
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover {
  border-color: rgba(192, 192, 192, 0.3);
  transform: scale(1.02);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.7);
}

.marquee-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Info au hover */
.marquee-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marquee-item:hover .marquee-item-info {
  opacity: 1;
  transform: translateY(0);
}

.marquee-item-info h3 {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 1px;
  margin: 0 0 4px 0;
}

.marquee-item-info p {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.realisations-cta {
  display: flex;
  justify-content: center;
}

/* =============================================
   TARIFS — ANIMATED GLASSY PRICING
   ============================================= */

#tarifs-preview {
  background: #0A0A0A;
  padding: 120px 5%;
}

.tarifs-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.tarifs-header {
  text-align: center;
  margin-bottom: 80px;
}

.tarifs-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 16px 0 0 0;
}

/* @property pour l'animation de bordure rotative */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --angle: 360deg; }
}

@property --angle-photo {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorderPhoto {
  to { --angle-photo: 360deg; }
}

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

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

/* Grille 3 colonnes */
.tarifs-radio-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-grid.hidden {
  display: none;
}

/* Card wrapper */
.pricing-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

/* Bordure lumineuse animée */
.pricing-card-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(192, 192, 192, 0.6) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorder 4s linear infinite;
}

.pricing-card.featured .pricing-card-border {
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(255, 255, 255, 0.9) 60deg,
    rgba(192, 192, 192, 0.6) 90deg,
    transparent 120deg
  );
  animation-duration: 3s;
}

/* Lueur diffuse derrière la card */
.pricing-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(192, 192, 192, 0.08),
    transparent 60%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover .pricing-card-glow,
.pricing-card.featured .pricing-card-glow {
  opacity: 1;
}

.pricing-card.featured .pricing-card-glow {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(192, 192, 192, 0.15),
    transparent 60%
  );
}

/* Contenu intérieur glass */
.pricing-card-content {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 19px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  box-sizing: border-box;
}

.pricing-card.featured .pricing-card-content {
  background: rgba(255, 255, 255, 0.06);
}

/* Badge POPULAIRE */
.pricing-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: #0A0A0A;
  background: #C0C0C0;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* Label catégorie */
.pricing-label {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}

/* Bloc prix */
.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.pricing-from {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.pricing-amount {
  font-family: var(--font-title);
  font-size: 64px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}

.pricing-card.featured .pricing-amount {
  color: var(--silver);
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(192, 192, 192, 0.6);
  letter-spacing: 1px;
}

/* Description */
.pricing-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* Liste features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.3px;
}

.pricing-check {
  color: var(--silver);
  font-size: 10px;
  flex-shrink: 0;
}

/* CTA */
.pricing-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Note bas de section */
.pricing-saving {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #C0C0C0;
  font-style: italic;
}

.tarifs-impression-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 32px;
  letter-spacing: 0.5px;
  font-style: italic;
}

.tarifs-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* 1024px */
@media (max-width: 1024px) {
  .nav-links .nav-dropdown { display: none; }
  .about-split-new { grid-template-columns: 1fr; gap: 3rem; }
  .about-col-left { display: none; }
}

/* 768px */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .services-split-wrap { grid-template-columns: 1fr; }
  .services-separator { display: none; }
  .services-zone { min-height: unset; }

  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-large { height: 300px; }
  .mosaic-small { min-height: 180px; }

  .blog-featured-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  footer { padding: 32px 5% 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 24px; margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 10px; }

  .price-row { flex-wrap: wrap; margin: 0; padding: 1.25rem 0; }
  .price-dots { display: none; }
  .price-amount { width: 100%; margin-top: 0.25rem; }

  .contact-title { font-size: clamp(2.5rem, 12vw, 5rem); margin-bottom: 3rem; }

  body { cursor: auto; }
  button { cursor: pointer; }
  .cookie-btn-accept,
  .cookie-btn-refuse {
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 999999;
  }

  .apropos-hero {
    min-height: unset;
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .apropos-hero-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
    padding: 40px 5% !important;
  }
  .apropos-hero-right {
    order: -1;
    width: 100% !important;
    padding: 0 !important;
    justify-content: center;
  }
  .apropos-photo-card {
    width: 100% !important;
    height: 320px !important;
  }
  .apropos-hero-left {
    width: 100% !important;
  }
  .apropos-card-content {
    padding: 24px !important;
    gap: 16px;
  }
  .apropos-hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem) !important;
    white-space: normal !important;
    flex-wrap: wrap !important;
  }
  .apropos-hero-sub {
    font-size: 0.9rem !important;
    line-height: 1.7;
  }
  .apropos-histoire {
    padding: 60px 5%;
  }
  .apropos-histoire-title {
    font-size: clamp(2rem, 10vw, 4rem) !important;
  }
  .apropos-histoire-text {
    font-size: 0.95rem !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
  }
  .apropos-valeurs {
    padding: 60px 5%;
  }
  .apropos-valeurs-title {
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
    white-space: normal !important;
  }
  .apropos-valeurs-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .apropos-distingue {
    padding: 60px 5%;
  }
  .apropos-distingue-title {
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
  }
  .dest-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .dest-card {
    min-height: 260px;
  }
  .dest-card-bg {
    opacity: 1 !important;
    transform: none !important;
  }
  .dest-card-overlay {
    opacity: 0.5 !important;
  }
  .dest-card-content {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 375px */
@media (max-width: 375px) {
  .btn-fill { font-size: 0.65rem; padding: 12px 24px; }
}

@media (max-width: 480px) {
  footer { padding: 28px 5% 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; padding-bottom: 20px; margin-bottom: 16px; }
  .footer-inner > div:first-child { text-align: center; }
  .footer-logo { margin: 0 auto 10px; height: 32px; }
  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: 100%;
  }

  .footer-nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
  .footer-social { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .footer-bottom { gap: 8px; align-items: center; text-align: center; }
  .footer-bottom p { text-align: center; }
  .footer-legal { justify-content: center; gap: 10px; }

  .apropos-photo-card {
    height: 240px !important;
  }
  .apropos-hero-title {
    font-size: clamp(1.8rem, 12vw, 2.8rem) !important;
  }
  .dest-card {
    min-height: 220px;
  }
  .dest-card-bg {
    opacity: 1 !important;
    transform: none !important;
  }
  .dest-card-overlay {
    opacity: 0.5 !important;
  }
  .dest-card-content {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =============================================
   SCROLL VIDÉO CINÉMATIQUE — Transitions & états
   ============================================= */

/* Transitions hero text */
#hero-title span {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#hero-title span.visible {
  opacity: 1;
  transform: translateY(0);
}

#hero-title span:nth-child(2) {
  transition-delay: 200ms;
}

#hero-subtitle {
  transition: opacity 0.8s ease 400ms,
              transform 0.8s ease 400ms;
}

#hero-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-out du texte au scroll — géré par JS via inline style */
#hero-text-left {
  transition: opacity 0.4s ease;
}

/* Indicateur disparaît avec le texte */
#scroll-indicator {
  transition: opacity 0.4s ease;
}

/* Vignette sombre sur les bords du canvas pour profondeur */
#scroll-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,10,10,0.55) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, transparent 25%),
    linear-gradient(to top,    rgba(10,10,10,0.35) 0%, transparent 25%);
  pointer-events: none;
  z-index: 5;
}

/* Responsive — hero text */
@media (max-width: 768px) {
  #hero-text-left {
    left: 6%;
    max-width: 80vw;
  }
  #scroll-indicator {
    right: 20px;
  }
  #hero-title {
    font-size: clamp(48px, 10vw, 80px);
  }
  #hero-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #hero-title {
    font-size: clamp(40px, 13vw, 64px);
  }
  #scroll-indicator { display: none; }
}


/* =============================================
   HOME — Ticker couleur overrides (30s)
   ============================================= */
.ticker-home {
  color: var(--white);
  font-size: 14px;
  animation-duration: 30s;
}
.ticker-home .ticker-dot {
  color: var(--silver);
  opacity: 0.7;
}

/* =============================================
   HERO PRINCIPAL — Mots cinématographiques
   ============================================= */
#hero-main {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  overflow: hidden;
}

.hero-main-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

/* Conteneur des lignes de texte */
.hero-words {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2vw, 2rem);
  line-height: 0.9;
}

/* Chaque mot — état initial défini en inline CSS dans <head> */
.hero-word {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 15vw, 15rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 0.9;
  display: inline-block;
  will-change: transform, opacity;
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Positions initiales selon direction */
.hero-word[data-dir="left"]   { transform: translateX(-160px); }
.hero-word[data-dir="right"]  { transform: translateX(160px); }
.hero-word[data-dir="bottom"] { transform: translateY(130px); }

/* État visible — JS ajoute cette classe */
.hero-word.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Footer sous le slogan (sous-titre + CTA) */
.hero-main-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  will-change: transform, opacity;
  transform: translateY(28px);
  transition:
    opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-main-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sous-titre */
.hero-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--silver-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* CTA bouton */
.btn-hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1px solid var(--silver);
  background: transparent;
  padding: 16px 48px;
  transition:
    background 0.3s ease,
    color      0.3s ease,
    border-color 0.3s ease;
  cursor: none;
}

.btn-hero-cta:hover {
  background: var(--silver);
  color: var(--black);
}

.btn-hero-cta:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 4px;
}

/* =============================================
   HOME — Responsive hero
   ============================================= */
@media (max-width: 768px) {
  .hero-line {
    gap: clamp(0.4rem, 2vw, 1rem);
  }
  .hero-word {
    font-size: clamp(3rem, 17vw, 7rem);
  }
  .hero-main-footer {
    gap: 24px;
  }
  .btn-hero-cta {
    padding: 14px 36px;
  }
}

@media (max-width: 480px) {
  .hero-word {
    font-size: clamp(2.8rem, 19vw, 5.5rem);
  }
}

/* =============================================
   HERO — Container Scroll Animation
   ============================================= */

#hero-scroll {
  height: 300vh;
  height: 300dvh;
  background: var(--black);
}

#hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: clamp(2rem, 4vw, 3.5rem);
}

/* Texte au-dessus de la card */
#hero-text-top {
  text-align: center;
  will-change: opacity;
  pointer-events: none;
  user-select: none;
}

#hero-text-top h1 {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 10vw, 9rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 0.9;
}

#hero-text-top p {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  color: var(--silver-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* Conteneur de perspective */
#hero-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* La card animée */
#hero-card {
  width: min(700px, 100%);
  height: clamp(260px, 38vw, 420px);
  background: var(--black-3);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform-origin: top center;
  will-change: transform;
  /* État initial (avant JS) défini en inline dans le <head> */
}

#hero-card img {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  display: block;
}

#hero-card p {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  color: var(--silver-2);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}


/* =============================================
   SHOWCASE SERVICES — Pièce 3D + Cards
   ============================================= */

#showcase {
  background: #0A0A0A;
  padding: 80px 5% 0;
}

.showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5%;
  text-align: center;
}

.showcase-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 2px;
  margin: 0 0 56px 0;
}

/* ── Liquid Radio toggle ── */
.liquid-radio-wrap {
  margin-bottom: 20px;
}

.liquid-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.liquid-radio-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: rgba(192, 192, 192, 0.12);
  border: 1px solid rgba(192, 192, 192, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 20px rgba(192, 192, 192, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    left  0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}

.liquid-radio-btn {
  position: relative;
  z-index: 1;
  padding: 12px 32px;
  border: none;
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.liquid-radio-btn.active {
  color: var(--white);
}

.liquid-radio-btn:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 4px;
}

.liquid-btn {
  position: relative;
  padding: 14px 36px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
  isolation: isolate;
}

.liquid-btn-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.liquid-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(192, 192, 192, 0.3) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.liquid-btn:hover::before,
.liquid-btn.active::before {
  opacity: 1;
}

.liquid-btn.active {
  color: var(--white);
}

.liquid-btn.active .liquid-btn-bg {
  background: rgba(192, 192, 192, 0.12);
  border-color: rgba(192, 192, 192, 0.4);
  box-shadow:
    0 0 20px rgba(192, 192, 192, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.liquid-btn:hover .liquid-btn-bg {
  background: rgba(192, 192, 192, 0.08);
  border-color: rgba(192, 192, 192, 0.25);
}

.liquid-btn-text {
  position: relative;
  z-index: 1;
}

.liquid-btn:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 4px;
}

/* ── iPad scroll section ── */
.ipad-scroll-section {
  height: 250vh;
  position: relative;
  background: transparent;
}

.ipad-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  gap: 0;
}


.ipad-perspective {
}

.ipad-frame {
  transform: translateY(0px);
  opacity: 1;
  transition: none;
  will-change: transform;
}

.ipad-wrapper {
  position: relative;
  width: 900px;
  height: 660px;
  overflow: visible;
  background-image: url('../images/tablette-fond.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  pointer-events: none;
}

.ipad-screen-area {
  position: absolute;
  top: 18%;
  left: 20%;
  width: 52%;
  height: 70%;
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

#ipad-pro, #ipad-part {
  pointer-events: none;
}

#ipad-pro.active, #ipad-part.active {
  pointer-events: none;
}

#ipad-pro.active .ipad-services-list,
#ipad-part.active .ipad-services-list {
  pointer-events: none;
}

#ipad-pro.active .ipad-services-list li,
#ipad-part.active .ipad-services-list li {
  pointer-events: auto !important;
}

.ipad-content {
  position: absolute;
  inset: 0;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow: visible;
  scrollbar-width: none;
  z-index: 2;
  pointer-events: none;
}

.ipad-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  overflow: visible;
  height: auto;
  min-height: 100%;
}

.ipad-content.active .ipad-services-list li {
  pointer-events: auto;
  cursor: pointer;
}

.ipad-content-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: auto;
}

.ipad-content-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #C0C0C0;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.ipad-content-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0 0 4px 0;
}

.ipad-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ipad-services-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.ipad-service-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 4px;
  background: rgba(192,192,192,0.08);
  border: 1px solid rgba(192,192,192,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C0C0C0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.ipad-service-icon svg {
  width: 11px;
  height: 11px;
}

.ipad-services-list li > div {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ipad-services-list li span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  transition: color 0.2s ease;
}

.ipad-services-list li small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(192,192,192,0.5);
}

.ipad-note {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  color: rgba(192,192,192,0.4);
  font-style: italic;
  margin: 6px 0 0 0;
  letter-spacing: 0.5px;
}

.ipad-cta {
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
}

.showcase-bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: -120px;
  padding-bottom: 120px;
}

.showcase-devis-btn {
  font-size: 12px;
  letter-spacing: 4px;
  padding: 16px 48px;
}

.showcase-devis-btn .liquid-btn-bg {
  background: rgba(192,192,192,0.1);
  border-color: rgba(192,192,192,0.3);
  box-shadow:
    0 0 30px rgba(192,192,192,0.08),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ── Mobile services cards (desktop : masqué) ── */
.mobile-services-cards {
  display: none;
}

.mobile-service-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  isolation: isolate;
}

.mobile-service-card-content {
  background: rgba(255,255,255,0.03);
  border-radius: 19px;
  padding: 32px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-service-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-service-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #C0C0C0;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mobile-service-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0;
}

.mobile-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-service-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C0C0C0;
  flex-shrink: 0;
}

.mobile-service-list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-service-list li span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.mobile-service-list li small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(192,192,192,0.5);
}

.mobile-service-note {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(192,192,192,0.4);
  font-style: italic;
  margin: 0;
}

.showcase-devis-btn:hover {
  color: #FFFFFF;
}

.showcase-devis-btn:hover .liquid-btn-bg {
  background: rgba(192,192,192,0.18);
  border-color: rgba(192,192,192,0.5);
  box-shadow:
    0 0 40px rgba(192,192,192,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* ── Card service ── */
/* ── Card liquid glass ── */
.services-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.services-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(192, 192, 192, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.services-card:hover::before {
  opacity: 1;
}

.services-card:hover {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.services-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle-card, 0deg),
    transparent 0deg,
    rgba(192, 192, 192, 0.5) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorderCard 5s linear infinite;
  z-index: 0;
  pointer-events: none;
}

#services-pro  .services-card::after { animation-delay: 0s; }
#services-part .services-card::after { animation-delay: -2s; }

.services-card-inner {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.services-card > * {
  position: relative;
  z-index: 1;
}

/* ── Typographie card ── */
.services-card-label {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 32px;
  line-height: 1;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-list li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  line-height: 1.5;
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition:
    color        0.2s ease,
    padding-left 0.3s ease;
}

.services-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-list li:hover {
  color: rgba(255, 255, 255, 1);
  padding-left: 28px;
}

.service-dot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--silver);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.services-list li:hover .service-dot {
  transform: translateY(-50%) scale(1.5);
}

.service-sub {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.services-card-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(192, 192, 192, 0.5);
  font-style: italic;
  margin: 24px 0 32px;
  letter-spacing: 0.5px;
}

/* ── CTA liquid glass ── */
.services-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border-radius: 100px;
  overflow: hidden;
  background: transparent;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  isolation: isolate;
  transition: color 0.4s ease;
  margin-top: 16px;
}

.services-cta-btn .liquid-btn-bg {
  background: rgba(192, 192, 192, 0.08);
  border-color: rgba(192, 192, 192, 0.2);
}

.services-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(192, 192, 192, 0.3) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.services-cta-btn:hover::before {
  opacity: 1;
}

.services-cta-btn:hover {
  color: var(--white);
}

.services-cta-btn:hover .liquid-btn-bg {
  background: rgba(192, 192, 192, 0.15);
  border-color: rgba(192, 192, 192, 0.4);
  box-shadow:
    0 0 20px rgba(192, 192, 192, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.services-cta-btn:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 4px;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive iPad showcase ── */
@media (max-width: 1024px) {
  .ipad-wrapper {
    width: 560px;
    height: 410px;
  }
}

@media (max-width: 768px) {
  .ipad-scroll-section {
    height: 250vh;
  }

  .ipad-wrapper {
    width: 360px;
    height: 265px;
  }

  .liquid-radio-btn {
    padding: 10px 20px;
    font-size: 10px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .ipad-wrapper {
    width: 300px;
    height: 220px;
  }

  .liquid-btn {
    padding: 12px 24px;
    font-size: 10px;
    letter-spacing: 2px;
  }
}

/* ── PAGE À PROPOS — Hero ── */
.apropos-hero {
  background-color: #0A0A0A;
  background-image: url('../images/satinnoir.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  padding-top: 70px;
  padding-right: 0;
  padding-bottom: 60px;
  padding-left: 0;
  margin-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apropos-hero-inner {
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  padding-top: 0;
  padding-right: 5%;
}

.apropos-hero-left {
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
}

.apropos-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.underline-animated {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
}

.underline-animated::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #C0C0C0, #FFFFFF, #C0C0C0);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  border-radius: 2px;
}

.underline-animated.visible::after {
  width: 100%;
}

.apropos-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  letter-spacing: 0.3px;
  margin: 0;
}

.apropos-hero-right {
  display: flex;
  padding: 0 5%;
  justify-content: flex-start;
}

.apropos-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.apropos-hero-img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: bottom;
  transform: scale(1.3);
  transform-origin: center center;
}


/* ── Section Valeurs À propos ── */
.apropos-valeurs {
  position: relative;
  padding: 120px 5%;
  background-image: url('../images/beaureaubois.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.apropos-valeurs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  z-index: 0;
}

.apropos-valeurs-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.apropos-valeurs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

.apropos-valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.valeur-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.valeur-card:hover {
  transform: translateY(-8px);
}

.valeur-card-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle-valeur, 0deg),
    transparent 0deg,
    rgba(192,192,192,0.6) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorderValeur 4s linear infinite;
  pointer-events: none;
}

@property --angle-valeur {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorderValeur {
  to { --angle-valeur: 360deg; }
}

.valeur-card:nth-child(2) .valeur-card-border {
  animation-delay: -1.3s;
}

.valeur-card:nth-child(3) .valeur-card-border {
  animation-delay: -2.6s;
}

.valeur-card-content {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 40px 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  box-sizing: border-box;
}

.valeur-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(192,192,192,0.1);
  border: 1px solid rgba(192,192,192,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C0C0C0;
}

.valeur-card-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0;
}

.valeur-card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
}

/* Container cartes empilées */
.display-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1200px;
}

/* Carte individuelle */
.display-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.5s
    cubic-bezier(0.16, 1, 0.3, 1);
}

/* Effet empilé — ombres derrière */
.display-card::before,
.display-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(192,192,192,0.1);
  transition: transform 0.5s
    cubic-bezier(0.16, 1, 0.3, 1);
}

.display-card::before {
  transform: rotate(-3deg)
             translateY(8px)
             scale(0.97);
  z-index: -2;
  filter: brightness(0.6);
}

.display-card::after {
  transform: rotate(-1.5deg)
             translateY(4px)
             scale(0.985);
  z-index: -1;
  filter: brightness(0.8);
}

/* Au hover — soulèvement */
.display-card:hover {
  transform: translateY(-16px)
             rotate(0deg);
}

.display-card:hover::before {
  transform: rotate(-4deg)
             translateY(16px)
             scale(0.95);
}

.display-card:hover::after {
  transform: rotate(-2deg)
             translateY(8px)
             scale(0.975);
}

/* Contenu de la carte */
.display-card-inner {
  position: relative;
  z-index: 1;
  background: rgba(15,15,15,0.85);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 0 0.5px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.display-card:hover .display-card-inner {
  border-color: rgba(192,192,192,0.35);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 0.5px rgba(192,192,192,0.1),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.display-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(192,192,192,0.08);
  border: 1px solid rgba(192,192,192,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C0C0C0;
  transition: background 0.3s ease,
              border-color 0.3s ease;
}

.display-card:hover .display-card-icon {
  background: rgba(192,192,192,0.15);
  border-color: rgba(192,192,192,0.4);
}

.display-card-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0 0 12px 0;
}

.display-card-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.display-card:hover .display-card-text p {
  color: rgba(255,255,255,0.75);
}

/* Décale légèrement chaque carte
   pour l'effet éventail */
.display-card:nth-child(1) {
  transform: rotate(-2deg);
}

.display-card:nth-child(2) {
  transform: rotate(0deg) translateY(-8px);
}

.display-card:nth-child(3) {
  transform: rotate(2deg);
}

.display-card:nth-child(1):hover {
  transform: rotate(0deg) translateY(-16px);
}

.display-card:nth-child(2):hover {
  transform: rotate(0deg) translateY(-20px);
}

.display-card:nth-child(3):hover {
  transform: rotate(0deg) translateY(-16px);
}

/* ── Section CE QUI ME DISTINGUE — Stack Cards ── */
.apropos-distingue {
  background: #0A0A0A;
  padding: 120px 5%;
}

.apropos-distingue-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.apropos-distingue-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0;
  text-align: center;
}

.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.dest-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-bg {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
  transition: background 0.4s ease;
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.5) 60%,
    rgba(0,0,0,0.2) 100%
  );
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  transition: transform 0.4s
    cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(192,192,192,0.15);
  border: 1px solid rgba(192,192,192,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C0C0C0;
  margin-bottom: 12px;
  transition: background 0.3s ease;
}

.dest-card:hover .dest-card-icon {
  background: rgba(192,192,192,0.25);
}

.dest-card-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
}

.dest-card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s,
              transform 0.4s ease 0.1s;
}

.dest-card:hover .dest-card-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Histoire À propos ── */
.apropos-histoire {
  background: #111111;
  padding: 100px 5%;
}

.apropos-histoire-inner {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.apropos-histoire-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  color: #FFFFFF;
  line-height: 0.9;
  letter-spacing: -1px;
  margin: 0;
  width: 100%;
  text-align: center;
}

.apropos-histoire-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  letter-spacing: 0.3px;
  max-width: 100%;
  width: 100%;
  text-align: center;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Card liquid glass texte À propos ── */
.apropos-text-card {
  position: relative;
  border-radius: 24px;
  padding: 2px;
  isolation: isolate;
  height: 100%;
  box-sizing: border-box;
}

@property --angle-card-apropos {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorderCardApropos {
  to { --angle-card-apropos: 360deg; }
}

.apropos-card-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle-card-apropos, 0deg),
    transparent 0deg,
    rgba(192,192,192,0.5) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorderCardApropos 5s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.apropos-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(192,192,192,0.08),
    transparent 60%
  );
  z-index: -1;
}

.apropos-card-content {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 22px;
  padding: 40px 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  height: 100%;
}

/* ══════════════════════════════════
   TABLETTE (max-width: 1024px)
══════════════════════════════════ */
@media (max-width: 1024px) {

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  #about-preview,
  #showcase,
  #realisations-preview,
  #tarifs-preview,
  #contact-preview {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ipad-wrapper {
    width: 500px;
    height: 365px;
  }

  .ipad-screen-area {
    top: 18%;
    left: 8%;
    width: 52%;
    height: 70%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ipad-scroll-section {
    display: none;
  }

  .showcase-bottom-cta {
    margin-top: 0;
  }

  .mobile-services-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 0 40px 0;
  }

}

/* ══════════════════════════════════
   MOBILE (max-width: 768px)
══════════════════════════════════ */
@media (max-width: 768px) {

  #scroll-scene {
    height: auto;
    min-height: 100vh;
  }

  #scroll-sticky {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background-image: url('../images/photoresponsive.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
  }

  #scroll-canvas {
    display: none;
  }

  #scroll-indicator {
    display: none;
  }

  #hero-text-left {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1 !important;
    max-width: 90%;
  }

  #hero-title {
    font-size: clamp(40px, 10vw, 64px);
  }

  #hero-subtitle {
    font-size: 14px;
  }

  #about-preview {
    padding: 60px 5%;
  }

  .about-preview-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    align-items: center;
    justify-items: center;
  }

  .about-preview-left {
    align-items: center;
    text-align: center;
  }

  .about-preview-text {
    font-size: clamp(24px, 6vw, 40px);
    text-align: center;
  }

  .about-preview-img-wrap {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }

  #about-preview,
  #showcase,
  #realisations-preview,
  #tarifs-preview,
  #contact-preview {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .showcase-header {
    margin-bottom: 20px;
  }

  .liquid-radio-wrap {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .ipad-scroll-section {
    height: 150vh;
  }

  .ipad-perspective {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .ipad-wrapper {
    width: 340px;
    height: 248px;
  }

  .ipad-screen-area {
    top: 18%;
    left: 8%;
    width: 52%;
    height: 70%;
  }

  .ipad-content {
    padding: 8px 10px;
  }

  .ipad-content-header h3 {
    font-size: 11px;
  }

  .ipad-content-tag {
    font-size: 7px;
  }

  .ipad-services-list li span {
    font-size: 9px;
  }

  .ipad-services-list li small {
    font-size: 7px;
  }

  .ipad-service-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .ipad-service-icon svg {
    width: 9px;
    height: 9px;
  }

  .ipad-services-list li {
    padding: 4px 0;
    gap: 6px;
  }

  .realisations-header {
    margin-bottom: 32px;
  }

  .tarifs-header {
    margin-bottom: 32px;
  }

  .tarifs-main-cta {
    white-space: nowrap;
    font-size: 0.75rem;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .marquee-item {
    width: 240px;
    height: 165px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
    gap: 16px;
  }

  .pricing-card-content {
    padding: 24px 20px;
  }

  .pricing-amount {
    font-size: 48px;
  }

  .contact-preview-title {
    font-size: clamp(36px, 9vw, 64px);
  }

  #contact-preview {
    padding: 60px 5% 80px;
  }

  footer {
    padding: 40px 5% 24px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-logo {
    height: 32px;
    margin-bottom: 4px;
  }

  .footer-nav-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    width: 100%;
    max-width: 280px;
  }

  .footer-nav {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-social {
    align-items: center;
    flex-direction: row;
    gap: 24px;
  }

  .footer-social-link span {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  #scroll-indicator {
    display: none;
  }

}

/* ══════════════════════════════════
   PETIT MOBILE (max-width: 480px)
══════════════════════════════════ */
@media (max-width: 480px) {

  .ipad-wrapper {
    width: 300px;
    height: 220px;
  }

  .liquid-radio-btn {
    padding: 10px 16px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .marquee-item {
    width: 200px;
    height: 140px;
  }

}

/* =============================================
   SERVICE FEATURES — Liquid glass pills
   ============================================= */

.service-features li {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,192,192,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  isolation: isolate;
}

.service-features li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(192,192,192,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-features li:hover::before {
  opacity: 1;
}

.service-features li:hover {
  border-color: rgba(192,192,192,0.4);
  color: #FFFFFF;
  box-shadow:
    0 0 20px rgba(192,192,192,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* =============================================
   SERVICES CARTE — Photo de fond bureau
   ============================================= */

.services-carte {
  background: url('../assets/images/bureauphotofond.webp') center/cover no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.services-carte::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 0;
}

.services-carte-inner {
  position: relative;
  z-index: 1;
}

.carte-card-content {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Bordure lumineuse animée — cards réalisations ── */
@property --angle-real {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorderReal {
  to { --angle-real: 360deg; }
}

.real-card {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  isolation: isolate;
}

.real-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle-real, 0deg),
    transparent 0deg,
    rgba(192,192,192,0.6) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorderReal 4s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.real-card:nth-child(2)::before { animation-delay: -0.6s; }
.real-card:nth-child(3)::before { animation-delay: -1.3s; }
.real-card:nth-child(4)::before { animation-delay: -2s; }
.real-card:nth-child(5)::before { animation-delay: -2.6s; }
.real-card:nth-child(6)::before { animation-delay: -3.3s; }


/* =============================================
   PAGE TARIFS
   ============================================= */

/* --- Utilitaires globaux --- */

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(192,192,192,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > span {
  display: block;
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-line.visible > span {
  transform: translateY(0);
}

/* --- Hero --- */

.tarifs-hero {
  background: url('../images/fondtarif.webp') center/cover no-repeat #0A0A0A;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  position: relative;
}

.tarifs-hero-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tarifs-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  color: #F5F5F5;
  line-height: 0.9;
  letter-spacing: -2px;
  margin: 0;
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tarifs-hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.tarifs-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 560px;
  margin: 0;
}

/* --- Sections --- */

.tarifs-section {
  background: #0A0A0A;
  padding: 100px 5%;
}

.tarifs-section-alt {
  background: #111111;
}

.tarifs-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.tarifs-section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tarifs-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  color: #F5F5F5;
  letter-spacing: 2px;
  margin: 0;
}

.tarifs-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 8px 0 0 0;
  max-width: 600px;
}

/* --- Grille --- */

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tarifs-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
  margin: 0 auto;
  width: 100%;
}

/* --- Cards --- */

.tarif-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tarif-card:hover {
  transform: translateY(-8px);
}

.tarif-card-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle-tarif, 0deg),
    transparent 0deg,
    rgba(192,192,192,0.5) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorderTarif 5s linear infinite;
  pointer-events: none;
}

@property --angle-tarif {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorderTarif {
  to { --angle-tarif: 360deg; }
}

.tarif-card:nth-child(2) .tarif-card-border { animation-delay: -1.6s; }
.tarif-card:nth-child(3) .tarif-card-border { animation-delay: -3.3s; }
.tarif-card:nth-child(4) .tarif-card-border { animation-delay: -5s; }
.tarif-card:nth-child(5) .tarif-card-border { animation-delay: -6.6s; }

.tarif-card-featured .tarif-card-border {
  background: conic-gradient(
    from var(--angle-tarif, 0deg),
    transparent 0deg,
    rgba(192,192,192,0.8) 60deg,
    transparent 120deg
  );
}

.tarif-card-content {
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  box-sizing: border-box;
}

.tarif-card-featured .tarif-card-content {
  background: rgba(192,192,192,0.05);
}

.tarif-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #C0C0C0;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(192,192,192,0.3);
  border-radius: 100px;
  width: fit-content;
}

.tarif-card-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #F5F5F5;
  letter-spacing: 2px;
  margin: 0;
}

.tarif-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(192,192,192,0.08);
  border: 1px solid rgba(192,192,192,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C0C0C0;
}

.tarif-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tarif-from {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.tarif-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: #F5F5F5;
  line-height: 1;
  letter-spacing: -1px;
}

.tarif-period {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(192,192,192,0.6);
  letter-spacing: 1px;
}

.tarif-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.tarif-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tarif-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.tarif-includes li svg {
  color: #C0C0C0;
  flex-shrink: 0;
}

.tarif-cta {
  margin-top: auto;
  text-align: center;
  justify-content: center;
  font-size: 10px !important;
  letter-spacing: 3px !important;
  padding: 12px 20px !important;
}

.tarifs-section-cta {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.tarifs-main-cta {
  font-size: 11px !important;
  letter-spacing: 3px !important;
  padding: 16px 48px !important;
}

/* --- FAQ --- */

.tarifs-faq {
  background: url('../images/noirtarif.webp') center/cover no-repeat #111111;
  padding: 100px 5%;
  position: relative;
}

.tarifs-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.faq-question span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  line-height: 1.5;
}

.faq-icon {
  color: #C0C0C0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  padding: 0 0 22px 0;
  margin: 0;
}

/* --- CTA Final --- */

.tarifs-cta-final {
  background: #0A0A0A;
  padding: 120px 5%;
  display: flex;
  justify-content: center;
}

.tarifs-cta-final-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.tarifs-cta-final-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  color: #F5F5F5;
  letter-spacing: 2px;
  margin: 0;
}

.tarifs-cta-final-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* --- Responsive Tarifs --- */

@media (max-width: 1024px) {
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 640px) {
  .tarifs-hero { padding: 120px 5% 60px; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarifs-section,
  .tarifs-section-alt,
  .tarifs-faq { padding: 80px 5%; }
  .tarifs-cta-final { padding: 80px 5%; }
  .tarif-card-content { padding: 28px 20px; }
}

/* ── Overlays et z-index backgrounds photographiques ── */

.tarifs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}

.tarifs-hero-inner {
  position: relative;
  z-index: 1;
}

.tarifs-section-alt {
  background: url('../images/burfond.webp') center/cover no-repeat;
  background-color: #111111;
  position: relative;
}

.tarifs-section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 0;
}

.tarifs-section-alt .tarifs-section-inner {
  position: relative;
  z-index: 1;
}

.tarifs-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}

.tarifs-faq-inner {
  position: relative;
  z-index: 1;
}


/* =============================================
   PAGE BLOG
   ============================================= */

.blog-hero {
  background: #0A0A0A;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
}

.blog-hero-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 140px);
  color: #F5F5F5;
  line-height: 0.9;
  letter-spacing: -2px;
  margin: 0;
}

.blog-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 500px;
  margin: 0;
}

/* --- Grille articles --- */

.blog-grid {
  background: #0A0A0A;
  padding: 80px 5% 120px;
}

.blog-grid-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Card blog --- */

.blog-card {
  position: relative;
  border-radius: 16px;
  padding: 2px;
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle-blog, 0deg),
    transparent 0deg,
    rgba(192,192,192,0.5) 60deg,
    transparent 120deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBorderBlog 5s linear infinite;
  pointer-events: none;
}

@property --angle-blog {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorderBlog {
  to { --angle-blog: 360deg; }
}

.blog-card:nth-child(2) .blog-card-border { animation-delay: -1.6s; }
.blog-card:nth-child(3) .blog-card-border { animation-delay: -3.3s; }

.blog-card-img-wrap {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.9);
  display: block;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1);
}

.blog-card-content {
  background: rgba(255,255,255,0.03);
  border-radius: 0 0 14px 14px;
  padding: 28px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-cat {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: #C0C0C0;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(192,192,192,0.2);
  border-radius: 100px;
}

.blog-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
}

.blog-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #F5F5F5;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.1;
}

.blog-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.blog-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #C0C0C0;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  width: fit-content;
}

.blog-card-link:hover {
  color: #F5F5F5;
  letter-spacing: 4px;
}

/* --- Responsive blog --- */

@media (max-width: 1024px) {
  .blog-grid-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
  .blog-hero { padding: 120px 5% 60px; }
  .blog-grid { padding: 60px 5% 80px; }
  .blog-grid-inner { grid-template-columns: 1fr; gap: 20px; }
}


/* ── Pointer-events tablette ── */
.ipad-wrapper {
  pointer-events: none;
}

.ipad-screen-area {
  pointer-events: auto;
}

.ipad-content.active {
  pointer-events: auto !important;
}

.ipad-services-list li {
  pointer-events: auto !important;
}

.article-hero-img {
  width: 100%;
  max-width: 900px;
  margin: 2.5rem auto 0;
  border-radius: 8px;
  overflow: hidden;
}

.article-hero-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.article-cta {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05), rgba(255,255,255,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.article-cta p {
  color: var(--silver-2);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.article-cta .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 0.9rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease, border-color 0.3s ease;
  transform: none !important;
}

.article-cta .btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: none !important;
}

/* ── À propos — Photo card ── */
.apropos-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 480px;
  height: 100%;
}

.apropos-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05), rgba(255,255,255,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.apropos-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(192,192,192,0.2);
  border-radius: 16px;
  padding: 20px 28px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-banner.hidden {
  transform: translateX(-50%) translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

.cookie-link {
  color: #C0C0C0;
  text-decoration: underline;
  margin-left: 4px;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #FFFFFF;
}

.cookie-buttons {
  position: relative;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept,
.cookie-btn-refuse {
  position: relative;
  z-index: 99999;
  cursor: pointer;
}

.cookie-btn-refuse {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cookie-btn-refuse:hover {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.4);
}

.cookie-btn-accept {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #FFFFFF;
  letter-spacing: 2px;
  background: rgba(192,192,192,0.15);
  border: 1px solid rgba(192,192,192,0.4);
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  background: rgba(192,192,192,0.25);
  border-color: rgba(192,192,192,0.6);
}

/* Real clients grid */
.real-clients-grid {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.real-client-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s ease;
}

.real-client-card:hover {
  transform: translateY(-6px);
}

.real-client-card-border {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(192,192,192,0.8), rgba(192,192,192,0.1), rgba(192,192,192,0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.real-client-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.real-client-card-info {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 0 0 16px 16px;
}

.real-client-card-info h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.real-client-card-info p {
  font-size: 0.85rem;
  color: var(--silver);
  opacity: 0.8;
}
