:root {
  --bg: #030506;
  --surface: #080d0c;
  --surface-2: #0d1412;
  --text: #f4f7f4;
  --muted: #a7b4ad;
  --line: rgba(255, 255, 255, 0.12);
  --green: #6ee33a;
  --green-2: #21a92e;
  --green-soft: rgba(110, 227, 58, 0.18);
  --blue: #6edcff;
  --radius: 8px;
  --container: 1180px;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(110, 227, 58, 0.13), transparent 28%),
    radial-gradient(circle at 14% 32%, rgba(110, 220, 255, 0.08), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.page-noise,
.cursor-glow {
  position: fixed;
  pointer-events: none;
}

.page-noise {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.cursor-glow {
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 227, 58, 0.16), rgba(110, 220, 255, 0.06), transparent 66%);
  filter: blur(14px);
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 12px clamp(18px, 4vw, 58px);
  border: 0;
  border-bottom: 1px solid rgba(110, 227, 58, 0.2);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.98), rgba(3, 12, 7, 0.88) 45%, rgba(3, 5, 6, 0.96)),
    rgba(3, 5, 6, 0.92);
  backdrop-filter: blur(26px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
  transition: border-color 0.25s ease, background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(110, 227, 58, 0.34);
  padding-block: 8px;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.99), rgba(4, 17, 8, 0.94) 45%, rgba(3, 5, 6, 0.99)),
    rgba(3, 5, 6, 0.96);
  box-shadow: 0 14px 58px rgba(0, 0, 0, 0.5), 0 0 34px rgba(110, 227, 58, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  justify-self: start;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(110, 227, 58, 0.65);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--green), var(--green-2));
  color: #041006;
  font-weight: 950;
  box-shadow: 0 0 34px rgba(110, 227, 58, 0.34);
}

.brand-logo {
  width: 96px;
  height: 60px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.64);
  color: inherit;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  justify-self: end;
  gap: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(110, 227, 58, 0.62);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.site-nav a:hover::before {
  transform: scaleX(1);
}

.mobile-nav-call {
  display: none;
}

.header-call {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(110, 227, 58, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--green), var(--green-2));
  color: #031006;
  font-size: 1.02rem;
  font-weight: 950;
  box-shadow: 0 0 34px rgba(110, 227, 58, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.header-call::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #031006;
  box-shadow: 0 0 0 5px rgba(3, 16, 6, 0.12);
}

.header-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 46px rgba(110, 227, 58, 0.34);
}

.menu-toggle {
  display: none;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.22s ease;
}

.menu-toggle strong {
  display: none;
}

.mobile-section-nav {
  display: none;
}

.menu-icon {
  display: none;
}

@media (max-width: 1160px) and (min-width: 981px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    width: 100%;
    padding-inline: 20px;
  }

  .brand {
    padding-right: 0;
  }

  .brand-copy {
    display: none;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  .header-call {
    padding-inline: 14px;
    font-size: 0.92rem;
  }
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 104px 0 46px;
  isolation: isolate;
}

.hero .container {
  width: min(1540px, calc(100% - 72px));
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.84), rgba(3, 5, 6, 0.62) 34%, rgba(3, 5, 6, 0.18) 72%),
    linear-gradient(0deg, var(--bg) 0%, rgba(3, 5, 6, 0.2) 42%, transparent 100%),
    radial-gradient(circle at 74% 48%, rgba(110, 227, 58, 0.2), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.42fr);
  align-items: end;
  gap: 34px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.4vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.16;
}

.hero-lead,
.section-head p,
.zone-copy p,
.contact p {
  color: #d9e3dc;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

.hero-lead {
  max-width: 660px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 950;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.btn-call {
  min-height: 66px;
  padding-inline: 30px;
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  letter-spacing: 0;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  border-color: rgba(110, 227, 58, 0.7);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #041006;
  box-shadow: 0 0 42px rgba(110, 227, 58, 0.34);
}

.btn-whatsapp {
  border-color: rgba(110, 227, 58, 0.32);
  background: rgba(110, 227, 58, 0.08);
  color: #e4ffdf;
}

.btn-google {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: #f5fff2;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #d9e3dc;
  font-size: 0.84rem;
  font-weight: 800;
}

.dispatch-panel {
  padding: 24px;
  border: 1px solid rgba(110, 227, 58, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(110, 227, 58, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(6, 10, 10, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transform: translateY(-18px);
}

.live-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-status span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(110, 227, 58, 0.12), 0 0 28px rgba(110, 227, 58, 0.8);
}

.dispatch-panel p {
  margin: 18px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.dispatch-panel a {
  display: block;
  color: var(--green);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 950;
}

.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(8, 13, 12, 0.38);
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.marquee div {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 100%;
  animation: marquee 26s linear infinite;
}

.marquee span {
  padding: 21px 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.logo-strip {
  padding: 12px 0;
}

.logo-strip div {
  gap: clamp(32px, 5vw, 72px);
  min-width: max-content;
  padding-right: clamp(32px, 5vw, 72px);
  animation-duration: 48s;
}

.logo-strip img {
  width: clamp(58px, 7vw, 92px);
  height: 54px;
  object-fit: contain;
  opacity: 0.95;
  filter: saturate(1.12) contrast(1.05);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.logo-strip img:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.05);
}

.section {
  padding: 112px 0;
}

section[id] {
  scroll-margin-top: 14px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 46px;
  margin-bottom: 42px;
}

.section-head .eyebrow,
.section-head h2 {
  grid-column: 1;
}

.section-head p {
  grid-column: 2;
  margin-bottom: 8px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.showcase {
  position: relative;
  padding: 82px 0 68px;
}

.showcase .section-head {
  gap: 34px;
  margin-bottom: 28px;
}

.showcase .section-head h2 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 18px;
  align-items: stretch;
}

.slider {
  position: relative;
  min-height: clamp(430px, 48vh, 520px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.75s ease, transform 1.15s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 62%),
    radial-gradient(circle at 80% 22%, rgba(110, 227, 58, 0.18), transparent 30%);
}

.slide-caption {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 34px;
  width: min(520px, calc(100% - 64px));
}

.slide-caption span {
  color: var(--green);
  font-weight: 950;
}

.slide-caption h3 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 950;
}

.slide-caption p {
  max-width: 460px;
  color: #dfe8e2;
  line-height: 1.58;
}

.slider-controls {
  position: absolute;
  right: 28px;
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 48px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.slider-controls button.is-active {
  background: var(--green);
  box-shadow: 0 0 22px rgba(110, 227, 58, 0.62);
}

.metrics {
  display: grid;
  gap: 14px;
}

.metrics article {
  display: grid;
  align-content: end;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(110, 227, 58, 0.16), transparent 42%),
    var(--surface-2);
}

.metrics strong {
  display: block;
  color: var(--green);
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 950;
}

.metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.real-interventions {
  padding-top: 48px;
  padding-bottom: 44px;
  overflow: hidden;
}

.services {
  padding-top: 48px;
  padding-bottom: 74px;
}

.intervention-marquee {
  width: 100%;
  overflow: hidden;
  overscroll-behavior-inline: contain;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.intervention-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-block: 8px 18px;
  animation: interventionsScroll 42s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .intervention-track:hover {
    animation-play-state: paused;
  }
}

.intervention-track article {
  position: relative;
  flex: 0 0 clamp(280px, 34vw, 460px);
  height: clamp(260px, 32vw, 420px);
  contain: layout paint;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.intervention-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
  transition: transform 0.45s ease;
}

.intervention-track article:hover img {
  transform: scale(1.06);
}

.intervention-track article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 52%);
}

.intervention-track span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 10px 12px;
  border: 1px solid rgba(110, 227, 58, 0.32);
  border-radius: var(--radius);
  background: rgba(3, 5, 6, 0.68);
  color: #e8ffe3;
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

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

.review-grid article,
.steps article {
  position: relative;
  min-height: 222px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--surface-2);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.review-grid article::before,
.steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(110, 227, 58, 0.19), transparent 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.review-grid article:hover,
.steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 227, 58, 0.34);
}

.review-grid article:hover::before,
.steps article:hover::before {
  opacity: 1;
}

.steps span {
  position: relative;
  color: var(--green);
  font-weight: 950;
}

.review-grid p,
.steps p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.insurance-info {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  margin-bottom: 18px;
}

.insurance-intro,
.insurance-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(110, 227, 58, 0.1), rgba(255, 255, 255, 0.028)),
    var(--surface-2);
}

.insurance-intro {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
}

.insurance-intro p,
.insurance-grid p {
  margin: 0;
  color: #d9e3dc;
  line-height: 1.62;
}

.insurance-intro strong {
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.insurance-grid article {
  padding: 22px;
}

.insurance-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 950;
}

.insurance-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: stretch;
}

.service-photo {
  position: relative;
  min-height: 500px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.service-photo-slider,
.service-photo-slider img {
  position: absolute;
  inset: 0;
}

.service-photo-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.04) contrast(1.04);
  animation: servicePhotoFade 25s infinite;
}

.service-photo-slider img:nth-child(1) {
  animation-delay: 0s;
}

.service-photo-slider img:nth-child(2) {
  animation-delay: 5s;
}

.service-photo-slider img:nth-child(3) {
  animation-delay: 10s;
}

.service-photo-slider img:nth-child(4) {
  animation-delay: 15s;
}

.service-photo-slider img:nth-child(5) {
  animation-delay: 20s;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 52%),
    radial-gradient(circle at 28% 18%, rgba(110, 227, 58, 0.16), transparent 36%);
}

.service-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(110, 227, 58, 0.28);
  border-radius: var(--radius);
  background: rgba(3, 5, 6, 0.7);
  backdrop-filter: blur(16px);
}

.service-photo figcaption strong {
  color: var(--green);
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 0.9;
  font-weight: 950;
}

.service-photo figcaption span {
  max-width: 180px;
  color: #ecfff0;
  font-weight: 900;
  text-align: right;
}

.service-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    var(--surface-2);
}

.service-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.service-list article:last-child {
  border-bottom: 0;
}

.service-list span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(110, 227, 58, 0.32);
  border-radius: 50%;
  background: rgba(110, 227, 58, 0.1);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
}

.service-list h3 {
  margin-bottom: 3px;
  font-size: 0.98rem;
  font-weight: 950;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.service-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.service-actions .btn {
  min-height: 50px;
  flex: 1;
}

.process {
  background:
    linear-gradient(90deg, rgba(110, 227, 58, 0.055), transparent 52%),
    rgba(8, 13, 12, 0.72);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

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

.steps article {
  min-height: 190px;
}

.steps strong {
  position: relative;
  display: block;
  margin: 42px 0 12px;
  font-size: 1.2rem;
}

.zone {
  padding-bottom: 124px;
}

.zone-grid {
  max-width: 760px;
}

.zone-copy p {
  max-width: 620px;
}

.review-grid article {
  min-height: 230px;
}

.review-grid strong {
  position: relative;
  display: block;
  margin-bottom: 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.review-grid span {
  position: relative;
  display: block;
  margin-top: 24px;
  color: var(--green);
  font-weight: 950;
}

.review-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.contact {
  margin-bottom: 84px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  min-height: 360px;
  padding: 52px;
  border: 1px solid rgba(110, 227, 58, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.9), rgba(3, 5, 6, 0.62)),
    url("assets/optimized/slider-depanneuse.jpg") center/cover;
  box-shadow: var(--shadow);
}

.contact h2 {
  margin-bottom: 14px;
}

.contact-address {
  margin-top: 14px;
  font-style: normal;
}

.contact-address a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.contact-address a:hover {
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(110, 227, 58, 0.28);
  border-radius: var(--radius);
  background: rgba(3, 5, 6, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: rgba(110, 227, 58, 0.1);
  color: #e2ffdb;
  font-size: 0.94rem;
  font-weight: 950;
}

.floating-cta img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.floating-cta a:first-child {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: #041006;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0;
}

footer strong {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.075);
  }
}

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

@keyframes interventionsScroll {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes servicePhotoFade {
  0%,
  16% {
    opacity: 1;
    transform: scale(1);
  }
  20%,
  96% {
    opacity: 0;
    transform: scale(1.045);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  section[id] {
    scroll-margin-top: 10px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, auto) 56px;
    align-items: center;
    justify-content: space-between;
    column-gap: 18px;
    min-height: 72px;
    padding: 8px;
  }

  .brand {
    max-width: calc(100vw - 132px);
    overflow: hidden;
  }

  .menu-toggle {
    position: relative;
    z-index: 70;
    grid-column: 2;
    justify-self: end;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(110, 227, 58, 0.42);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(110, 227, 58, 0.24), rgba(110, 227, 58, 0.08));
    box-shadow: 0 0 26px rgba(110, 227, 58, 0.22);
    cursor: pointer;
  }

  .menu-toggle strong {
    display: block;
    color: #fff;
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
  }

  .menu-toggle span:not(.sr-only) {
    display: none;
  }

  .menu-toggle.is-open::before {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle.is-open::after {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    z-index: 60;
    display: grid;
    gap: 8px;
    justify-content: stretch;
    padding: 12px;
    border: 1px solid rgba(110, 227, 58, 0.24);
    border-radius: var(--radius);
    background: rgba(3, 5, 6, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  }

  .site-nav.is-open a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    font-size: 0.96rem;
  }

  .site-nav.is-open .mobile-nav-call {
    display: flex;
    justify-content: center;
    border-color: rgba(110, 227, 58, 0.62);
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #041006;
    font-weight: 950;
  }

  .hero-grid,
  .showcase-grid,
  .insurance-info,
  .service-feature,
  .process-grid,
  .zone-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .dispatch-panel {
    max-width: 420px;
    transform: none;
  }

  .section-head {
    display: block;
    max-width: 780px;
  }

  .section-head p {
    margin-top: 0;
  }

  .metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metrics article {
    min-height: 112px;
  }

  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-photo {
    min-height: 360px;
  }

  .insurance-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  section[id] {
    scroll-margin-top: 8px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero .container {
    width: min(100% - 32px, var(--container));
  }

  .cursor-glow {
    display: none;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
    gap: 8px;
  }

  .site-nav.is-open {
    top: 84px;
    left: 10px;
    right: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-logo {
    width: 76px;
    height: 50px;
  }

  .brand-copy {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    width: 62px;
    height: 48px;
  }

  .hero {
    min-height: 86svh;
    padding: 82px 0 30px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 5, 6, 0.14), var(--bg) 92%),
      linear-gradient(90deg, rgba(3, 5, 6, 0.88), rgba(3, 5, 6, 0.42));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .btn-call {
    min-height: 72px;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .trust-row {
    display: grid;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .section-head.compact {
    margin-bottom: 26px;
  }

  .section-head p {
    font-size: 0.98rem;
  }

  .real-interventions {
    padding-top: 34px;
  }

  .intervention-marquee,
  .marquee {
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  }

  .intervention-track {
    gap: 12px;
    animation-duration: 34s;
  }

  .intervention-track article {
    flex-basis: 280px;
    height: 330px;
  }

  .intervention-track img {
    transform: translateZ(0);
  }

  .logo-strip {
    padding: 10px 0;
  }

  .logo-strip div {
    animation-duration: 38s;
  }

  .logo-strip img {
    width: 60px;
    height: 44px;
  }

  .marquee span {
    padding-inline: 24px;
  }

  .slider {
    min-height: 410px;
  }

  .slide-caption {
    left: 16px;
    bottom: 72px;
    width: calc(100% - 40px);
  }

  .slide-caption h3 {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
  }

  .slide-caption p {
    font-size: 0.95rem;
  }

  .slider-controls {
    left: 16px;
    right: auto;
    bottom: 26px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-photo {
    min-height: 260px;
  }

  .insurance-info {
    margin-bottom: 14px;
  }

  .insurance-intro,
  .insurance-grid article {
    padding: 18px;
  }

  .insurance-intro p,
  .insurance-grid p {
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .insurance-intro strong {
    font-size: 0.92rem;
  }

  .service-panel {
    padding: 14px;
  }

  .service-list article {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 10px 0;
  }

  .service-list span {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }

  .service-list h3 {
    font-size: 1rem;
  }

  .service-list p {
    font-size: 0.84rem;
    line-height: 1.34;
  }

  .service-actions {
    display: grid;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .steps article,
  .review-grid article {
    min-height: 0;
    padding: 22px;
  }

  .metrics article {
    min-height: 96px;
    padding: 14px 10px;
    align-content: center;
    text-align: center;
  }

  .metrics strong {
    font-size: 2rem;
  }

  .metrics span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .steps strong {
    margin-top: 20px;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
  }

  .steps span {
    font-size: 0.86rem;
  }

  .steps p {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .steps article {
    padding: 16px 12px;
  }

  .contact-inner {
    min-height: 0;
    padding: 24px;
  }

  .floating-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .floating-cta a {
    flex: 1;
    justify-content: center;
    min-height: 56px;
    font-size: 1rem;
  }

  .footer-inner {
    display: grid;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 12px);
    top: 6px;
    padding: 7px;
  }

  .site-nav.is-open {
    top: 70px;
    left: 6px;
    right: 6px;
  }

  .brand-logo {
    width: 62px;
    height: 42px;
    padding: 4px;
  }

  .menu-toggle {
    width: 58px !important;
    height: 46px !important;
    right: 7px !important;
  }

  .hero {
    padding-top: 110px;
  }

  .site-nav.is-open a {
    min-height: 46px;
    font-size: 0.92rem;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps article {
    padding: 16px 12px;
  }

  .metrics article {
    min-height: 78px;
  }

  .floating-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .floating-cta a {
    min-height: 52px;
    padding: 0 8px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .mobile-section-nav {
    display: none !important;
  }

  .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 72px !important;
    padding: 8px 12px !important;
    border-radius: 0 !important;
  }

  .brand {
    min-width: 0 !important;
    max-width: none !important;
    justify-self: start !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .brand-logo {
    width: 82px !important;
    height: 52px !important;
  }

  .brand-copy,
  .header-call {
    display: none !important;
  }

  .menu-toggle {
    position: relative !important;
    right: auto !important;
    z-index: 91 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-width: 112px !important;
    width: auto !important;
    height: 54px !important;
    padding: 0 16px !important;
    border: 1px solid rgba(110, 227, 58, 0.58) !important;
    border-radius: 15px !important;
    background:
      linear-gradient(135deg, rgba(110, 227, 58, 0.26), rgba(110, 227, 58, 0.08)),
      rgba(4, 9, 6, 0.92) !important;
    color: #fff !important;
    box-shadow: 0 0 30px rgba(110, 227, 58, 0.23), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    font: inherit !important;
    cursor: pointer !important;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    display: none !important;
  }

  .menu-lines {
    display: grid !important;
    gap: 5px !important;
    width: 24px !important;
  }

  .menu-lines span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: var(--green) !important;
    box-shadow: 0 0 12px rgba(110, 227, 58, 0.44) !important;
    transition: transform 0.22s ease, opacity 0.22s ease !important;
  }

  .menu-toggle strong {
    display: inline-block !important;
    color: #fff !important;
    font-size: 0.88rem !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
  }

  .menu-toggle.is-open .menu-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .menu-toggle.is-open .menu-lines span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle.is-open .menu-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .site-header .site-nav {
    display: none !important;
  }

  .site-header .site-nav.is-open {
    position: fixed !important;
    top: 76px !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 80 !important;
    display: grid !important;
    gap: 10px !important;
    padding: 14px !important;
    border: 1px solid rgba(110, 227, 58, 0.34) !important;
    border-radius: 20px !important;
    background:
      radial-gradient(circle at 20% 0%, rgba(110, 227, 58, 0.16), transparent 38%),
      rgba(3, 5, 6, 0.97) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62) !important;
  }

  .site-header .site-nav.is-open a {
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-radius: 13px !important;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
      rgba(255, 255, 255, 0.035) !important;
    color: var(--text) !important;
    font-size: 1rem !important;
    font-weight: 950 !important;
  }

  .site-header .site-nav.is-open a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
    transform: rotate(45deg);
    color: var(--green);
    font-weight: 950;
  }

  .site-header .site-nav.is-open .mobile-nav-call {
    display: flex !important;
    justify-content: center !important;
    border-color: rgba(110, 227, 58, 0.7) !important;
    background: linear-gradient(135deg, var(--green), var(--green-2)) !important;
    color: #041006 !important;
    box-shadow: 0 0 30px rgba(110, 227, 58, 0.22) !important;
  }

  .site-header .site-nav.is-open .mobile-nav-call::after {
    content: none !important;
  }

  .hero {
    padding-top: 82px !important;
  }
}

@media (max-width: 420px) {
  .site-header {
    top: 0 !important;
    width: 100% !important;
  }

  .brand-logo {
    width: 72px !important;
    height: 46px !important;
  }

  .menu-toggle {
    min-width: 96px !important;
    width: auto !important;
    right: auto !important;
    height: 48px !important;
    padding: 0 11px !important;
    gap: 8px !important;
  }

  .menu-toggle strong {
    font-size: 0.8rem !important;
  }

  .menu-lines,
  .menu-lines span {
    width: 21px !important;
  }

  .site-header .site-nav.is-open {
    top: 66px !important;
    left: 8px !important;
    right: 8px !important;
  }
}

/* Navigation finale : logo a gauche, actions a droite */
.site-header {
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  padding: 12px clamp(18px, 4vw, 58px) !important;
  border-bottom: 1px solid rgba(110, 227, 58, 0.2) !important;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.98), rgba(4, 15, 8, 0.9) 52%, rgba(3, 5, 6, 0.98)),
    rgba(3, 5, 6, 0.94) !important;
}

.site-header.is-scrolled {
  padding-block: 9px !important;
}

.site-header .brand {
  flex: 0 0 auto !important;
  margin-right: auto !important;
}

.site-header .brand-logo {
  width: 98px !important;
  height: 60px !important;
}

.site-header .brand-copy {
  display: block !important;
}

.site-header .site-nav {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  margin-left: auto !important;
  padding: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.site-header .site-nav a {
  min-height: 44px !important;
  padding: 0 15px !important;
  border-radius: 12px !important;
  color: #dce7df !important;
  font-size: 0.92rem !important;
  font-weight: 900 !important;
}

.site-header .site-nav a:hover {
  color: #fff !important;
  background: rgba(110, 227, 58, 0.12) !important;
}

.site-header .site-nav .mobile-nav-call {
  display: none !important;
}

.site-header .header-call {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  min-height: 54px !important;
  padding: 0 22px !important;
  border-radius: 14px !important;
}

.site-header .menu-toggle {
  display: none !important;
}

@media (max-width: 760px) {
  .site-header {
    padding: 8px 12px !important;
    gap: 10px !important;
  }

  .site-header .brand {
    margin-right: 0 !important;
  }

  .site-header .brand-logo {
    width: 78px !important;
    height: 50px !important;
  }

  .site-header .brand-copy,
  .site-header .header-call {
    display: none !important;
  }

  .site-header .menu-toggle {
    display: inline-flex !important;
    margin-left: auto !important;
  }

  .site-header .site-nav {
    display: none !important;
  }

  .site-header .site-nav.is-open {
    position: fixed !important;
    top: 74px !important;
    left: 10px !important;
    right: 10px !important;
    display: grid !important;
    margin: 0 !important;
    padding: 14px !important;
    border-radius: 18px !important;
    background: rgba(3, 5, 6, 0.97) !important;
  }

  .site-header .site-nav.is-open .mobile-nav-call {
    display: flex !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand-logo {
    width: 70px !important;
    height: 46px !important;
  }

  .site-header .site-nav.is-open {
    top: 66px !important;
  }
}

@media (max-width: 760px) {
  .real-interventions {
    padding-top: 22px !important;
    padding-bottom: 28px !important;
    overflow: hidden !important;
  }

  .services {
    padding-top: 38px !important;
  }

  .real-interventions .section-head.compact {
    margin-bottom: 18px !important;
  }

  .intervention-marquee {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    padding: 0 0 14px !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    scroll-snap-type: none !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: auto !important;
  }

  .intervention-marquee::-webkit-scrollbar {
    display: none !important;
  }

  .intervention-track {
    width: max-content !important;
    max-width: none !important;
    gap: 12px !important;
    padding: 0 !important;
    animation: interventionsScroll 34s linear infinite !important;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden !important;
    will-change: transform !important;
  }

  .intervention-track article {
    flex: 0 0 min(76vw, 310px) !important;
    height: clamp(220px, 62vw, 300px) !important;
    scroll-snap-align: none !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32) !important;
  }

  .intervention-track article:nth-child(n + 6) {
    display: block !important;
  }

  .intervention-track img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: saturate(1.02) contrast(1.02) !important;
    transform: none !important;
  }

  .intervention-track article:hover img {
    transform: none !important;
  }

  .intervention-track span {
    left: 12px !important;
    bottom: 12px !important;
    padding: 9px 10px !important;
    font-size: 0.78rem !important;
  }
}
