*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --noir: #0A0A0A;
  --jaune: #D7E935;
  --blanc: #F2F2F0;
  --gris: #888;
  --border: #1E1E1E;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--noir); color: var(--blanc); -webkit-font-smoothing: antialiased; }

/* ---- NAV ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px; height: 64px;
  background: var(--noir); border-bottom: 1px solid var(--border);
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 22px;
  width: auto;
  max-width: 100%;
  display: block;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--gris); font-size: 13px; text-decoration: none;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.nav-cta,
.nav-cta {
  background: var(--jaune);
  color: var(--noir) !important;
  border: none;
  padding: 11px 22px;
  font-size: 14px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none; display: inline-block;
  position: relative; overflow: hidden;
  letter-spacing: 0; text-transform: none;
  white-space: nowrap;
}
.nav-links a.nav-cta:hover,
.nav-cta:hover {
  color: var(--noir) !important;
}
.nav-cta::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.nav-cta:hover::after {
  width: 400px; height: 400px; opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--noir); z-index: 99;
  flex-direction: column; padding: 40px; gap: 28px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: 28px; font-weight: 700; text-decoration: none; letter-spacing: -1px;
}
.mobile-menu .nav-cta {
  font-size: 15px; margin-top: 8px;
  display: inline-block; width: fit-content;
}

/* ---- HALO boutons ---- */
.btn-primary, .btn-ghost, .btn-noir {
  position: relative; overflow: hidden;
}
.btn-primary::after, .btn-ghost::after, .btn-noir::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn-primary:hover::after, .btn-ghost:hover::after, .btn-noir:hover::after {
  width: 400px; height: 400px; opacity: 1;
}

/* ---- HERO ---- */
.hero { background: var(--noir); padding: 88px 40px 80px; }
.eyebrow-y {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--jaune); margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 700; line-height: 1.0; color: #fff;
  letter-spacing: -3px; max-width: 640px;
}
.accent { color: var(--jaune); }
.hero-sub {
  font-size: 17px; color: var(--gris);
  margin: 28px 0 40px; max-width: 440px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--jaune); color: var(--noir);
  padding: 15px 30px; font-size: 14px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  border: none; text-decoration: none; display: inline-block;
}
.btn-ghost {
  background: transparent; color: #fff;
  padding: 14px 30px; font-size: 14px;
  border: 1px solid #333; text-decoration: none; display: inline-block;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: #666; }

/* ---- LOGOS CLIENTS ---- */
.clients-bar {
  background: var(--jaune);
  border-bottom: none;
  padding: 24px 40px;
}
.clients-bar-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(0,0,0,0.35); margin-bottom: 20px;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 32px;
  opacity: 1;
  flex-shrink: 0;
}
.client-logo img {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}

/* ---- SECTIONS ---- */
.section-dark { background: var(--noir); padding: 88px 40px; }
.section-light { background: var(--blanc); padding: 88px 40px; }

.eyebrow-g {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #666; margin-bottom: 16px;
}
h2.tl {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 44px); font-weight: 700;
  line-height: 1.1; letter-spacing: -1.5px; color: #fff; margin-bottom: 20px;
}
h2.td {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 44px); font-weight: 700;
  line-height: 1.1; letter-spacing: -1.5px; color: var(--noir); margin-bottom: 20px;
}
.bl { font-size: 15px; color: var(--gris); line-height: 1.7; max-width: 480px; }
.bd { font-size: 15px; color: #555; line-height: 1.7; }

/* 2 colonnes */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* Points */
.points { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.point { display: flex; gap: 16px; align-items: flex-start; }
.pnum {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--jaune); min-width: 24px; padding-top: 2px;
}
.ptitle { font-size: 15px; font-weight: 500; color: #fff; display: block; margin-bottom: 4px; }
.pdesc { font-size: 14px; color: #666; line-height: 1.5; }

/* Video placeholder */
.video-placeholder {
  background: #111; border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
}
.play-btn {
  width: 56px; height: 56px; background: var(--jaune);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s;
  position: relative; overflow: hidden;
}
.play-btn:hover { transform: scale(1.08); }
.play-arrow {
  width: 0; height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 20px solid var(--noir);
  margin-left: 5px;
}
.video-caption { font-size: 12px; color: #333; }

/* Bloc SEO */
.seo-block {
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.seo-block h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 16px;
  font-weight: 700; color: #fff; margin-bottom: 12px;
}
.seo-block p { font-size: 13px; color: #555; line-height: 1.7; }
.seo-block a { color: var(--jaune); text-decoration: none; }

/* T&#233;moignages */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px;
}
.testi-card { background: #fff; padding: 28px 24px; }
.testi-quote { font-size: 14px; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-name { font-size: 13px; font-weight: 600; color: var(--noir); font-family: 'Space Grotesk', sans-serif; }
.testi-org { font-size: 12px; color: #888; }

/* CTA */
.section-cta {
  background: var(--jaune); padding: 88px 40px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 32px;
}
.cta-kicker {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  color: var(--noir); letter-spacing: -2px; line-height: 1.0;
}
.btn-noir {
  background: var(--noir); color: var(--jaune);
  padding: 16px 40px; font-size: 14px; font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  border: none; text-decoration: none; display: inline-block;
}

/* ---- FOOTER ---- */
footer {
  background: var(--noir);
  border-top: 1px solid var(--border);
  padding: 56px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--jaune); margin-bottom: 16px;
}
.footer-info { font-size: 13px; color: #444; line-height: 2.0; }
.footer-info a { color: var(--jaune); text-decoration: none; }
.fcol-title {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: #333; margin-bottom: 16px;
}
.fnav { display: flex; flex-direction: column; gap: 10px; }
.fnav a { font-size: 13px; color: #444; text-decoration: none; transition: color 0.2s; }
.fnav a:hover { color: #fff; }
.fsoc { display: flex; flex-direction: column; gap: 10px; }
.fsoc a { font-size: 13px; color: #444; text-decoration: none; transition: color 0.2s; }
.fsoc a:hover { color: var(--jaune); }
.footer-copy {
  font-size: 11px; color: #2A2A2A;
  padding-top: 24px; border-top: 1px solid var(--border);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .clients-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 20px;
    align-items: center;
    justify-items: center;
  }
  .client-logo {
    width: 100%;
    height: 28px;
    justify-content: center;
  }
  .client-logo img {
    height: 28px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
  }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .seo-block { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  nav { gap: 24px; }
  .nav-links, nav > .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .logo-img { height: 22px; }
  nav { padding: 0 20px; }

  .hero { padding: 48px 20px 56px; }
  .section-dark, .section-light { padding: 56px 20px; }
  .section-cta { padding: 64px 20px; }

  /* Logos : grille 3 colonnes sur mobile */
  .clients-bar { padding: 20px; }
  .clients-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
    align-items: center;
    justify-items: center;
  }
  .client-logo {
    width: 100%;
    height: 28px;
    justify-content: center;
  }
  .client-logo img {
    height: 28px;
    max-width: 80px;
  }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; gap: 2px; }

  footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -2px; }
  .clients-logos { grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
  .client-logo img { max-width: 72px; }
}

/* ---- A PROPOS ---- */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-card {
  background: #111;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #D7E935;
  letter-spacing: -2px;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: #666;
  font-family: 'Inter', sans-serif;
}
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
}
.client-logo-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.client-logo-lg:hover { opacity: 1; }
.client-logo-lg img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .clients-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
  .client-logo-lg img { max-width: 80px; height: 32px; }
}

/* ---- LECTEUR VIDEO ---- */
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--jaune);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, opacity 0.3s ease;
  z-index: 2;
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.video-wrapper.playing .video-thumb,
.video-wrapper.playing .video-play-btn { opacity: 0; pointer-events: none; }

/* ---- REASSURANCE BAR (contact) ---- */
.reassurance-bar {
  background: #111;
  border-bottom: 1px solid #1E1E1E;
  padding: 20px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.reassurance-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.reassurance-dot { width: 6px; height: 6px; background: #D7E935; border-radius: 50%; flex-shrink: 0; }
.reassurance-text { font-size: 13px; color: #666; }
.reassurance-text strong { color: #fff; font-weight: 500; }

/* ---- CONTACT LAYOUT ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-form-col { padding: 64px 48px 64px 40px; border-right: 1px solid #1E1E1E; }
.contact-info-col { padding: 64px 40px 64px 48px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #555; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select {
  background: #0F0F0F; border: 1px solid #1E1E1E; color: #fff;
  padding: 13px 16px; font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s; width: 100%;
  -webkit-appearance: none; border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #333; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #D7E935; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; color: #fff; }
.form-group select option { background: #111; color: #fff; }
.form-note { font-size: 11px; color: #333; margin-top: 4px; }
.info-block { margin-bottom: 28px; }
.info-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: #444; font-family: 'Space Grotesk', sans-serif; font-weight: 700; margin-bottom: 6px; display: block; }
.info-value { font-size: 15px; color: #fff; font-weight: 500; line-height: 1.6; text-decoration: none; display: block; }
.info-sep { border: none; border-top: 1px solid #1E1E1E; margin: 28px 0; }
.horaires-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-top: 4px; }
.horaire-row { font-size: 13px; color: #555; }
.map-wrapper { margin-top: 28px; aspect-ratio: 16/7; overflow: hidden; border: 1px solid #1E1E1E; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(90%) contrast(90%); }

/* ---- CONTACT ZONES ---- */
.zones { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.zone-tag { font-size: 11px; color: #555; border: 1px solid #1E1E1E; padding: 4px 10px; font-family: 'Inter', sans-serif; transition: all 0.2s; text-decoration: none; }
.zone-tag:hover { border-color: #D7E935; color: #D7E935; }

/* ---- FAQ (global) ---- */
.faq-section { padding: 88px 40px; background: var(--noir); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-top: 1px solid #1E1E1E; }
.faq-item:last-child { border-bottom: 1px solid #1E1E1E; }
.faq-q { width: 100%; background: none; border: none; color: #fff; font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; text-align: left; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; letter-spacing: -0.2px; }
.faq-q:hover { color: #D7E935; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; transition: transform 0.3s, opacity 0.3s; }
.faq-icon::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-item.open .faq-q { color: #D7E935; }
.faq-a { font-size: 14px; color: #666; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a a { color: #D7E935; text-decoration: none; }

/* ---- TEMOIGNAGE-VIDEO-VALAIS ---- */
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.format-card { background: #111; padding: 36px 28px; display: flex; flex-direction: column; gap: 16px; border-top: 2px solid #D7E935; }
.format-num { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: #D7E935; letter-spacing: 0.15em; text-transform: uppercase; }
.format-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.5px; }
.format-desc { font-size: 14px; color: #666; line-height: 1.65; flex: 1; }
.format-usages { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.format-usage { font-size: 12px; color: #444; padding-left: 16px; position: relative; }
.format-usage::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 1px; background: #D7E935; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.step { background: #111; padding: 28px 24px; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 700; color: #1E1E1E; line-height: 1; margin-bottom: 16px; }
.step-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.3px; }
.step-desc { font-size: 13px; color: #555; line-height: 1.6; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.result-card { background: #D7E935; padding: 32px 24px; text-align: center; }
.result-num { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; color: #0A0A0A; letter-spacing: -2px; line-height: 1; }
.result-label { font-size: 13px; color: rgba(0,0,0,0.6); margin-top: 8px; line-height: 1.4; }
.villes-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 32px; }
.ville-card { background: #111; padding: 24px 20px; display: flex; flex-direction: column; gap: 6px; text-decoration: none; transition: background 0.2s; }
.ville-card:hover { background: #161616; }
.ville-card:hover .ville-card-name { color: #D7E935; }
.ville-card-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.ville-card-desc { font-size: 12px; color: #555; line-height: 1.5; }
.ville-card-link { font-size: 12px; color: #D7E935; margin-top: 8px; }

/* ---- À PROPOS ---- */
.pourquoi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 48px; }
.pourquoi-card { background: #111; padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; }
.pourquoi-num { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: #D7E935; letter-spacing: 0.15em; }
.pourquoi-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.pourquoi-desc { font-size: 14px; color: #555; line-height: 1.65; }
.secteurs-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.secteur-tag { font-size: 12px; color: #555; border: 1px solid #1E1E1E; padding: 6px 14px; font-family: 'Inter', sans-serif; }
.marque-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ---- REALISATIONS ---- */
.realisations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.real-card-media { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer; }
.real-card-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, opacity 0.3s ease; }
.real-card-media:hover .real-card-thumb { transform: scale(1.03); }
.real-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.real-card-media:hover .real-overlay { background: rgba(0,0,0,0.5); }
.real-play { width: 52px; height: 52px; background: #D7E935; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; border: none; cursor: pointer; }
.real-card-media:hover .real-play { transform: scale(1.1); }
.real-arrow { width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 18px solid #0A0A0A; margin-left: 4px; }
.real-card-media video { display: none; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.real-card-media.playing .real-card-thumb,
.real-card-media.playing .real-overlay { opacity: 0; pointer-events: none; }
.real-card-media.playing video { display: block; }
.real-card-body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 6px; background: #111; }
.real-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.real-card-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: #D7E935; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.real-card-ville { font-size: 10px; color: #444; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.real-card-client { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.3px; }
.real-card-desc { font-size: 13px; color: #555; line-height: 1.5; }
.villes-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.ville-link { font-size: 13px; color: #555; border: 1px solid #1E1E1E; padding: 6px 14px; text-decoration: none; transition: all 0.2s; }
.ville-link:hover { border-color: #D7E935; color: #D7E935; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-card { background: #111; display: flex; flex-direction: column; }
.blog-card-img { aspect-ratio: 16/9; background: #1A1A1A; display: flex; align-items: center; justify-content: center; }
.blog-card-img-placeholder { font-size: 11px; color: #333; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #D7E935; font-family: 'Space Grotesk', sans-serif; }
.blog-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.3px; }
.blog-card-excerpt { font-size: 13px; color: #666; line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 11px; color: #444; display: flex; gap: 16px; }
.blog-card-link { display: inline-block; margin-top: 4px; font-size: 13px; font-weight: 600; color: #D7E935; text-decoration: none; font-family: 'Space Grotesk', sans-serif; }
.blog-card-link:hover { text-decoration: underline; }
.blog-featured { background: #111; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 2px; }
.blog-featured-img { background: #1A1A1A; min-height: 300px; display: flex; align-items: center; justify-content: center; }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.blog-featured-tag { font-size: 11px; background: #D7E935; color: #0A0A0A; padding: 4px 10px; display: inline-block; font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.05em; align-self: flex-start; }
.blog-featured-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -1px; }
.blog-featured-excerpt { font-size: 15px; color: #666; line-height: 1.7; }

/* ---- RESPONSIVE GLOBAL ---- */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .villes-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-col { padding: 48px 20px; border-right: none; border-bottom: 1px solid #1E1E1E; }
  .contact-info-col { padding: 48px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .reassurance-bar { padding: 16px 20px; gap: 20px; }
  .formats-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .realisations-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .marque-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .pourquoi-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .villes-cards { grid-template-columns: 1fr 1fr; }
  .reassurance-bar { padding: 14px 20px; gap: 14px; }
}
@media (max-width: 600px) {
  .realisations-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .villes-cards { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
