:root {
  --bg: #0b0b0f;
  --text: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --rose: #e8417c;

  /* Sticky topbar height (used for anchor offset) */
  --topbar-h: 78px;

  /* Optional rhythm tokens (keep if you want) */
  --sec-y: clamp(88px, 9vw, 130px);
  --sec-y-tight: clamp(64px, 7vw, 96px);
  --sec-y-loose: clamp(110px, 10vw, 150px);

  --stack-1: 12px;
  --stack-2: 18px;
  --stack-3: 28px;
  --stack-4: 40px;
  --stack-5: 56px;

  --gap-lg: clamp(24px, 4vw, 84px);
  --gap-md: clamp(16px, 2.5vw, 28px);
  --gap-sm: 14px;
}

/* Anchor offset for sticky topbar */
section[id] {
  scroll-margin-top: calc(var(--topbar-h) + 18px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   TOPBAR
   ========================= */
html {
  scroll-behavior: smooth;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 15, 0.72);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px;
}

.brand__name {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand__tag {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

/* NAV */
.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  font-family: "Inter Tight", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;

  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
  border-radius: 999px;

  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav a:hover {
  color: var(--rose);
  background: rgba(232, 65, 124, 0.12);
  transform: translateY(-1px);
}

/* Mobile topbar */
@media (max-width: 820px) {
  .brand__text {
    display: none;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    padding: 10px 10px;
    letter-spacing: 0.12em;
  }
}

/* =========================
   HERO
   ========================= */
.hero {
  padding: 120px 0 100px;
  background: radial-gradient(
      800px 400px at 20% 20%,
      rgba(232, 65, 124, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    );
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
}

.hero__title {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero__sub {
  margin-top: 26px;
  font-family: "Inter Tight", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn--primary {
  background: #e8417c;
  color: #0b0b0f;
  box-shadow: 0 12px 40px rgba(232, 65, 124, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* HERO STATS */
.hero__stats {
  margin-top: 92px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}

.stat {
  text-align: center;
  min-width: 140px;
}

.stat__value {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat__label {
  margin-top: 8px;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.stat:not(:last-child) {
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero responsive */
@media (max-width: 820px) {
  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 48px;
  }

  .stat {
    text-align: center;
    width: 100%;
    max-width: 320px;
    min-width: auto;
    padding-bottom: 18px;
  }

  .stat:not(:last-child) {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* =========================
   IMPACT
   ========================= */
.impact {
  padding: 90px 0 80px;
}

.impact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 84px;
  align-items: center;
}

/* LEFT */
.impact__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.impact__photoWrap {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.impact__photo {
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(0);
}

.impact__credit {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.impact__credit span {
  color: rgba(255, 255, 255, 0.52);
}

/* RIGHT */
.impact__content {
  max-width: 560px;
}

.impact__kicker {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.impact__text {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 60ch;
}

.impact__actions {
  margin-top: 28px;
}

/* Impact mobile */
@media (max-width: 960px) {
  :root {
    --topbar-h: 70px;
  }

  .impact {
    padding: 80px 0 70px;
  }

  .impact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .impact__media {
    align-items: center;
    width: 100%;
    max-width: 520px;
  }

  .impact__content {
    max-width: 520px;
    text-align: center;
  }

  .impact__actions {
    display: flex;
    justify-content: center;
  }
}

/* =========================
   IMPACT – PARTENAIRES (INLINE SVG)
   ========================= */

:root {
  --impact-accent: #e8417c; /* rose signature */
}

.impact-partners {
  padding: 20px 0 70px;
}

.impact-partners__title {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
  margin: 0 0 48px;
}

/* Zone marquee */
.impact-partners__logos {
  position: relative;
  overflow: hidden;
  width: 100%;

  /* espace interne pour que le tooltip puisse apparaître sans être coupé */
  padding-top: 28px;
}

/* Marquee (desktop) */
.impact-partners__marquee {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: impactPartnersMarquee 26s linear infinite;
}

/* Track */
.impact-partners__track {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  flex-shrink: 0;
}

/* Track B (aria-hidden) : pas d'interaction, pas de hover */
.impact-partners__track[aria-hidden="true"] {
  pointer-events: none;
}

/* Placeholder inline */
.logo-inline {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative; /* tooltip anchor */
}

/* SVG injecté */
.logo-inline svg {
  height: 82px;
  width: auto;
  display: block;
  flex-shrink: 0;

  opacity: 0.78;

  /* Blanc par défaut (vector + bitmap + gradients) */
  filter: brightness(0) invert(1);

  backface-visibility: hidden;
  transform: translateZ(0);

  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

/* Tooltip label (desktop) */
@media (hover: hover) and (pointer: fine) {
  .logo-inline[aria-label]::after {
    content: attr(aria-label);
    position: absolute;
    left: 50%;
    top: -22px; /* dans le padding-top du conteneur */
    transform: translateX(-50%) translateY(6px);

    white-space: nowrap;
    font-family: "Inter Tight", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.02em;

    padding: 6px 10px;
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  /* Hover -> rose + tooltip */
  .logo-inline:hover svg {
    opacity: 1;

    /* blanc -> rose (accent #e8417c vibe) */
    filter: brightness(0) saturate(100%) invert(33%) sepia(93%) saturate(5200%)
      hue-rotate(330deg) brightness(97%) contrast(105%);

    transform: translateY(-2px) translateZ(0);
  }

  .logo-inline:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  /* Pause marquee au hover */
  .impact-partners__logos:hover .impact-partners__marquee {
    animation-play-state: paused;
  }
}

/* Animation desktop */
@keyframes impactPartnersMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .impact-partners__marquee {
    animation-duration: 60s;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .impact-partners {
    padding: 16px 0 56px;
  }

  .impact-partners__title {
    margin: 0 0 28px;
  }

  .impact-partners__track {
    gap: 28px;
    padding-right: 28px;
  }

  .logo-inline svg {
    height: 52px;
  }

  .impact-partners__marquee {
    animation-duration: 34s;
  }
}

@media (max-width: 360px) {
  .logo-inline svg {
    height: 48px;
  }
}

/* Mobile: animation gérée par JS (zéro jump + inertie) */
@media (hover: none) and (pointer: coarse) {
  .impact-partners__marquee {
    animation: none !important;
    transform: translate3d(0, 0, 0);
  }

  .impact-partners__logos {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    padding-top: 0; /* pas de tooltip sur mobile */
  }
}

@media (hover: none) and (pointer: coarse) {
  .logo-inline[aria-label]::after {
    display: none !important;
  }
}

/* =========================
   SERVICES
   ========================= */
.services {
  padding: 100px 0;
}

.services__header {
  margin-bottom: 32px;
}

.services__eyebrow {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}

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

.service-card {
  position: relative;
  padding: 42px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-title {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 90%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 65, 124, 0.55);
  box-shadow: 0 24px 64px rgba(232, 65, 124, 0.25);
}

.service-card:hover .service-title {
  color: var(--rose);
}

@media (max-width: 960px) {
  .services {
    padding: 80px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .service-sub {
    max-width: 100%;
  }
}

.service-card {
  cursor: pointer;
}
.service-card:focus-visible {
  outline: 2px solid rgba(232, 65, 124, 0.7);
  outline-offset: 4px;
}

@keyframes ppmPulse {
  0% {
    box-shadow: 0 0 0 rgba(232, 65, 124, 0);
  }
  35% {
    box-shadow: 0 0 0 10px rgba(232, 65, 124, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(232, 65, 124, 0);
  }
}

.cta-form.is-pulse {
  animation: ppmPulse 0.7s ease-out;
}

/* Mobile auto-highlight on scroll */
@media (hover: none) and (pointer: coarse) {
  .service-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(232, 65, 124, 0.55);
    box-shadow: 0 24px 64px rgba(232, 65, 124, 0.25);
  }
  .service-card.is-active .service-title {
    color: var(--rose);
  }
}

@media (hover: none) and (pointer: coarse) {
  .service-card {
    transition: transform 0.35s ease, border-color 0.35s ease,
      box-shadow 0.35s ease;
  }
}

/* =========================
   REALISATIONS
   ========================= */

.realisations {
  padding: 100px 0;
}

.realisations__header {
  margin-bottom: 32px;
}

.realisations__eyebrow {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}

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

/* =========================
     REAL CARD
     ========================= */

.real-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  cursor: pointer;

  /* smooth GPU rendering */
  transform: translateZ(0);
}

.real-card.is-hidden {
  display: none;
}

/* =========================
     VIDEO
     ========================= */

.real-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform 320ms ease;
  will-change: transform;
}

/* Smooth zoom desktop only */
@media (hover: hover) {
  .real-card:hover video {
    transform: scale(1.04);
  }
}

/* =========================
     PLAY / PAUSE OVERLAY
     ========================= */

.real-toggle {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* icon central */
.real-toggle::after {
  content: "❚❚";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  font-size: 18px;
  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);

  opacity: 0;
  transition: opacity 0.2s ease;
}

/* hover desktop */
@media (hover: hover) {
  .real-card:hover .real-toggle::after {
    opacity: 1;
  }
}

/* mobile: toujours visible */
@media (hover: none) {
  .real-toggle::after {
    opacity: 0.55;
  }
}

/* paused = play icon */
.real-card.is-paused .real-toggle::after {
  content: "▶";
  opacity: 0.85;
}

/* =========================
     LABEL
     ========================= */

.real-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;

  background: rgba(0, 0, 0, 0.65);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

/* =========================
   PREMIUM POLISH (thumbnail fade + icon anim)
   ========================= */

.real-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 260ms ease;
  pointer-events: none;
}

/* On injecte l’image du poster dans l’overlay via CSS variable */
.real-card {
  --thumb: none;
}
.real-card .real-thumb {
  background-image: var(--thumb);
}

/* En lecture: thumbnail fade out */
.real-card.is-playing .real-thumb {
  opacity: 0;
}

/* Icon anim */
.real-toggle::after {
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.2s ease, transform 0.22s ease;
}

/* Quand playing: l’icône disparaît doucement */
.real-card.is-playing .real-toggle::after {
  opacity: 0 !important;
  transform: translate(-50%, -50%) scale(0.92);
}

/* Petit punch au hover desktop (plus premium) */
@media (hover: hover) {
  .real-card:hover .real-toggle::after {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/* =========================
     CTA
     ========================= */

.realisations__cta {
  margin-top: 48px;
  text-align: center;
}

.realisations__cta .btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.realisations__cta .btn--ghost:hover {
  background: rgba(232, 65, 124, 0.15);
  border-color: rgba(232, 65, 124, 0.6);
  color: #fff;
}

/* =========================
     MOBILE
     ========================= */

@media (max-width: 960px) {
  .realisations {
    padding: 80px 0;
  }

  .realisations__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =========================
   POURQUOI NOUS
   ========================= */
.why {
  padding: 100px 0;
}

.why__header {
  margin-bottom: 32px;
}

.why__eyebrow {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}

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

.why-card {
  padding: 42px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.why-title {
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.why-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

@media (hover: hover) {
  .why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 65, 124, 0.4);
    box-shadow: 0 18px 48px rgba(232, 65, 124, 0.18);
  }
}

@media (max-width: 960px) {
  .why {
    padding: 80px 0;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 36px 28px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .why-card.is-active {
    transform: translateY(-4px);
    border-color: rgba(232, 65, 124, 0.45);
    box-shadow: 0 18px 48px rgba(232, 65, 124, 0.22);
  }

  .why-card.is-active .why-title {
    color: var(--rose);
  }

  .why-card {
    transition: transform 0.35s ease, border-color 0.35s ease,
      box-shadow 0.35s ease;
  }
}

/* =========================
   CTA ULTIME + FORM
   ========================= */
.cta-ultime {
  padding: 130px 0;
  background: radial-gradient(
      1200px 600px at 50% 0%,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(180deg, #e8417c 0%, #c83667 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-ultime__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-ultime__title {
  color: #0b0b0f;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-size: clamp(30px, 4.6vw, 54px);
  margin: 0 0 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cta-ultime__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto 28px;
}

/* CTA FORM – Glass */
.cta-form {
  position: relative;
  margin-top: 26px;
  width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;

  padding: 22px;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);

  display: grid;
  gap: 18px;
}

.cta-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  pointer-events: none;
  background: radial-gradient(
    900px 240px at 50% -40px,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0.9;
}

.cta-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  text-align: left;
}

.field__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.field__input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.14);
  color: #fff;

  padding: 14px 16px;
  outline: none;

  transition: border-color 0.18s ease, background 0.18s ease,
    transform 0.18s ease;
}

.field__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.field__input:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.field__textarea {
  min-height: 150px;
  resize: vertical;
}

.cta-form__actions {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn--send {
  background: rgba(11, 11, 15, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);

  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;

  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn--send:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.cta-form__hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 960px) {
  .hero {
    padding: 100px 0 80px;
  }

  .services,
  .realisations,
  .why {
    padding: 80px 0;
  }

  .cta-ultime {
    padding: 100px 0;
  }

  .cta-form {
    padding: 18px;
    border-radius: 24px;
  }

  .cta-form::before {
    border-radius: 24px;
  }

  .cta-form__row {
    grid-template-columns: 1fr;
  }

  .cta-ultime__text {
    font-size: 15px;
  }
}

/* =========================
   FOOTER
   ========================= */
.footer {
  padding: 48px 0;
  background: #0b0b0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__left {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__center {
  display: flex;
  justify-content: center;
}

.footer__logo {
  height: 88px; /* 👈 gros mais contenu */
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer__right {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  text-align: right;
}
