:root {
  --cyan: #73dfff;
  --navy: #2d3343;
  --navy-deep: #1a1e28;
  --white: #ffffff;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --header-inset: 1.5rem;
  --radius-pill: 999px;
  --radius-header: 2.75rem;
  --radius-cta: 1.85rem;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* ---------- Header (capsule flottante) ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.15rem 1.5rem 0;
  padding-top: max(1.15rem, env(safe-area-inset-top));
  pointer-events: none;
}

.header-bar {
  pointer-events: auto;
  width: min(1180px, 100%);
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 0.4rem 0.3rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 2.55rem;
  background: rgba(40, 45, 57, 0.38);
  box-shadow: 0 8px 28px rgba(10, 13, 20, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled .header-bar {
  background: rgba(26, 30, 40, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 36px rgba(10, 13, 20, 0.28);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  text-decoration: none;
}

.logo img {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.nav-desktop {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: calc(100% - 8px);
  padding: 0 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav-desktop {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  display: block;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.28s ease, background-color 0.28s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-desktop a[aria-current="page"] {
  font-weight: 600;
  color: var(--white);
  background: rgba(115, 223, 255, 0.14);
}

.header-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.header-cta {
  display: none;
}

.header-cta-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.nav-toggle:focus-visible,
.nav-desktop a:focus-visible,
.header-cta:focus-visible,
.btn:focus-visible,
.mobile-nav a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Menu mobile (plein écran, distinct) ---------- */

.mobile-nav {
  display: none;
}

/* ---------- Bouton d'appel flottant ---------- */

.call-float {
  position: fixed;
  z-index: 80;
  right: calc(1.75rem + env(safe-area-inset-right));
  bottom: calc(2.25rem + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 3.7rem;
  padding: 0 0.42rem 0 0.42rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--navy-deep);
  background: var(--cyan);
  box-shadow:
    0 12px 32px rgba(18, 22, 30, 0.22),
    0 0 0 8px rgba(115, 223, 255, 0.14);
  text-decoration: none;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.call-float-pulse {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(115, 223, 255, 0.45);
  animation: callPulse 2.6s ease-out infinite;
  pointer-events: none;
}

.call-float-label {
  max-width: 0;
  margin-right: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transform: translateX(8px);
  transition:
    max-width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.call-float-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 30, 40, 0.1);
}

.call-float-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.call-float:hover,
.call-float:focus-visible {
  padding-left: 1.2rem;
  box-shadow:
    0 16px 40px rgba(18, 22, 30, 0.28),
    0 0 0 10px rgba(115, 223, 255, 0.18);
  transform: translateY(-2px);
}

.call-float:hover .call-float-label,
.call-float:focus-visible .call-float-label {
  max-width: 5.5rem;
  margin-right: 0.7rem;
  opacity: 1;
  transform: translateX(0);
}

.call-float:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
}

body.is-locked .call-float {
  opacity: 0;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(115, 223, 255, 0.42);
  }
  70%,
  100% {
    box-shadow: 0 0 0 16px rgba(115, 223, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-float,
  .call-float-label {
    transition: none;
  }

  .call-float-pulse {
    animation: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(26, 30, 40, 0.38) 0%,
      rgba(26, 30, 40, 0.52) 45%,
      rgba(26, 30, 40, 0.72) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 7.5rem 0 3rem;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.8vw, 4.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2.25rem 0 0;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  min-width: 140px;
  padding: 1.1rem 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(115, 223, 255, 0.18);
  color: var(--cyan);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature span:last-child {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(115, 223, 255, 0.28);
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ---------- Hero des pages ---------- */

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 430px;
  max-height: 580px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background-color: var(--navy-deep);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.page-hero-services {
  background-image: url("../images/services-hero.jpg");
  background-position: center 58%;
}

.page-hero-gallery {
  background-image: url("../images/galerie/optimized/flexmove-realisation-09.webp");
  background-position: center 52%;
}

.page-hero-gallery .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 22, 30, 0.78) 0%, rgba(18, 22, 30, 0.35) 58%, rgba(18, 22, 30, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 22, 30, 0.18), rgba(18, 22, 30, 0.58));
}

.page-hero-legal {
  background-image:
    radial-gradient(circle at 82% 18%, rgba(115, 223, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #12161e 0%, #1d2430 48%, #151a22 100%);
  background-color: var(--navy-deep);
}

.page-hero-legal .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 22, 30, 0.55) 0%, rgba(18, 22, 30, 0.18) 62%, transparent 100%),
    linear-gradient(180deg, rgba(18, 22, 30, 0.12), rgba(18, 22, 30, 0.5));
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 22, 30, 0.8) 0%, rgba(18, 22, 30, 0.42) 56%, rgba(18, 22, 30, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 22, 30, 0.26), rgba(18, 22, 30, 0.62));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 8rem 0 3.5rem;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.page-hero-tagline {
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 400;
}

.page-hero-scroll {
  position: absolute;
  z-index: 1;
  right: max(1.5rem, calc((100% - 1180px) / 2));
  bottom: 3.5rem;
  width: 4.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.page-hero-scroll::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transform: rotate(-45deg);
}

/* ---------- Catalogue services ---------- */

.services-catalog {
  padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 8%, rgba(115, 223, 255, 0.15), transparent 28rem),
    #f5f6f6;
}

.services-catalog-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.catalog-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.catalog-heading > p {
  max-width: 370px;
  margin: 0 0 0.4rem;
  color: #656d7c;
  font-size: 1.08rem;
  line-height: 1.6;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.catalog-service {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(45, 51, 67, 0.1);
  border-radius: 1.8rem;
  background: var(--white);
  box-shadow: 0 15px 45px rgba(45, 51, 67, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.catalog-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(45, 51, 67, 0.13);
}

.catalog-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  isolation: isolate;
}

.catalog-image::before,
.catalog-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.catalog-image::before {
  top: -5rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.17);
}

.catalog-image::after {
  right: 3rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.catalog-image-transport {
  background: linear-gradient(145deg, #5ccce9, #2e6182);
}

.catalog-image-delivery {
  background: linear-gradient(145deg, #557088, #273442);
}

.catalog-image-moving {
  background: linear-gradient(145deg, #d6a868, #865d35);
}

.catalog-image-clearance {
  background: linear-gradient(145deg, #789c8b, #344e47);
}

.catalog-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-image img[hidden] {
  display: none;
}

.catalog-service:hover .catalog-image img {
  transform: scale(1.045);
}

.catalog-number {
  position: absolute;
  right: 1.35rem;
  bottom: 0.25rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.catalog-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 1.1rem;
  color: var(--white);
  background: rgba(23, 28, 37, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.catalog-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.catalog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.6rem, 3vw, 2.25rem);
}

.catalog-title-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.catalog-title-row h3 {
  max-width: 55%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.catalog-title-row > div {
  flex-shrink: 0;
  text-align: right;
}

.catalog-price {
  flex-shrink: 0;
  margin: 0;
  color: #1888a9;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.catalog-price + .catalog-price {
  margin-top: 0.25rem;
}

.catalog-price small {
  font-size: 0.72em;
  font-weight: 500;
}

.catalog-meta {
  margin: 0.8rem 0 0;
  color: #818896;
  font-size: 0.96rem;
}

.catalog-content ul {
  width: 100%;
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.catalog-content li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.7rem;
  border-bottom: 1px solid rgba(45, 51, 67, 0.09);
  color: #5f6776;
  font-size: 0.98rem;
  line-height: 1.45;
}

.catalog-content li::before {
  content: "✓";
  position: absolute;
  top: 0.66rem;
  left: 0;
  color: #1888a9;
  font-size: 0.82rem;
  font-weight: 700;
}

.catalog-note {
  margin: 1rem 0 2rem;
  color: #7b8290;
  font-size: 0.9rem;
  font-style: italic;
}

.catalog-content > a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.catalog-content > a span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.catalog-content > a:hover {
  color: var(--navy);
  background: var(--cyan);
  transform: translateY(-2px);
}

.catalog-content > a:hover span {
  transform: translateX(3px);
}

.catalog-content > a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Zone d'intervention ---------- */

.service-area {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

.service-area::before {
  content: "";
  position: absolute;
  top: -16rem;
  left: -14rem;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: rgba(115, 223, 255, 0.1);
  filter: blur(100px);
  pointer-events: none;
}

.service-area-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-area-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.service-area-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.service-area-heading > p {
  max-width: 320px;
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.1rem;
  line-height: 1.5;
}

.service-map-shell {
  position: relative;
  height: clamp(480px, 56vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.25rem;
  background: #dce3e5;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.service-map {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at center, rgba(115, 223, 255, 0.28), transparent 25%),
    #dce3e5;
}

.service-map .leaflet-tile-pane {
  filter: saturate(0.4) contrast(0.94) brightness(1.04);
}

.service-map .leaflet-control-zoom {
  margin: 1.25rem 1.25rem 0 0;
  overflow: hidden;
  border: 0;
  border-radius: 0.85rem;
  box-shadow: 0 8px 24px rgba(45, 51, 67, 0.16);
}

.service-map .leaflet-control-zoom a {
  width: 2.7rem;
  height: 2.7rem;
  border-color: rgba(45, 51, 67, 0.1);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  font: 400 1.25rem/2.7rem var(--font-display);
}

.service-map .leaflet-control-zoom a:hover {
  color: var(--navy-deep);
  background: var(--cyan);
}

.service-map .leaflet-control-attribution {
  padding: 0.25rem 0.5rem;
  color: #68717b;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.65rem;
  backdrop-filter: blur(8px);
}

.service-map .leaflet-control-attribution a {
  color: var(--navy);
}

.service-map-label {
  position: absolute;
  z-index: 500;
  left: 1.5rem;
  bottom: 1.5rem;
  max-width: calc(100% - 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.25rem;
  color: var(--white);
  background: rgba(26, 30, 40, 0.82);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}

.service-map-label > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.service-map-label span:not(.service-map-pulse) {
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-map-label strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.service-map-pulse {
  position: relative;
  width: 0.85rem;
  height: 0.85rem;
  flex: 0 0 0.85rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0.4rem rgba(115, 223, 255, 0.15);
}

.service-map-pulse::after {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border: 1px solid rgba(115, 223, 255, 0.5);
  border-radius: 50%;
  animation: mapPulse 2.2s ease-out infinite;
}

.flexmove-map-marker {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 8px rgba(115, 223, 255, 0.22),
    0 8px 22px rgba(45, 51, 67, 0.3);
}

@keyframes mapPulse {
  from {
    opacity: 0.85;
    transform: scale(0.7);
  }

  to {
    opacity: 0;
    transform: scale(1.8);
  }
}

/* ---------- Pourquoi choisir nos services ---------- */

.why-services {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 1.5rem;
  color: var(--navy);
  background: #f5f6f6;
  overflow: hidden;
}

.why-services::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -13rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(45, 51, 67, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(45, 51, 67, 0.018),
    0 0 0 9rem rgba(45, 51, 67, 0.012);
  pointer-events: none;
}

.why-services-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.why-services-heading {
  max-width: 950px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.why-services-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7.5vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-wrap: balance;
}

.why-services-heading h2::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 0.35rem;
  margin-top: 1.8rem;
  border-radius: 1rem;
  background: var(--cyan);
}

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

.why-service {
  position: relative;
  min-height: 300px;
  padding: 2rem 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(45, 51, 67, 0.13);
  border-left: 1px solid rgba(45, 51, 67, 0.13);
  isolation: isolate;
}

.why-service:nth-child(-n + 4) {
  border-top: 1px solid rgba(45, 51, 67, 0.13);
}

.why-service:nth-child(4n) {
  border-right: 1px solid rgba(45, 51, 67, 0.13);
}

.why-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--cyan);
  transform: translateY(102%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-service:hover::before {
  transform: translateY(0);
}

.why-service-number {
  display: block;
  margin-bottom: 4.2rem;
  color: #9299a4;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  transition: color 0.3s ease;
}

.why-service h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.why-service p {
  margin: 1rem 0 0;
  color: #6b7280;
  font-size: 0.96rem;
  line-height: 1.55;
  transition: color 0.3s ease;
}

.why-service:hover .why-service-number,
.why-service:hover p {
  color: rgba(26, 30, 40, 0.68);
}

/* ---------- Galerie ---------- */

.gallery-collection {
  padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
  color: var(--navy);
  background:
    radial-gradient(circle at 90% 4%, rgba(115, 223, 255, 0.16), transparent 28rem),
    #f5f6f6;
}

.gallery-collection-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery-heading h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.gallery-heading h2 span {
  color: #208dac;
}

.gallery-heading p {
  max-width: 350px;
  margin: 0 0 0.35rem;
  color: #656d7c;
  font-size: 1.08rem;
  line-height: 1.6;
}

.gallery-grid-modern {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 105px;
  gap: 1rem;
}

.gallery-photo {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 38px rgba(45, 51, 67, 0.1);
  cursor: zoom-in;
}

.gallery-photo:nth-child(9n + 1) {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-photo:nth-child(9n + 2) {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-photo:nth-child(9n + 6) {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-photo:nth-child(9n + 7) {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-photo:nth-child(9n + 8),
.gallery-photo:nth-child(9n + 9) {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-photo[hidden] {
  display: none;
}

.gallery-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 18, 25, 0.68));
  opacity: 0.75;
  transition: opacity 0.35s ease;
}

.gallery-photo::after {
  content: "↗";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: var(--white);
  background: rgba(26, 30, 40, 0.32);
  font: 400 1.25rem var(--font-display);
  opacity: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translate(-50%, -42%) rotate(-18deg);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-photo > span {
  position: absolute;
  right: 1.1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.gallery-photo:hover img {
  transform: scale(1.045);
}

.gallery-photo:hover::before {
  opacity: 1;
}

.gallery-photo:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
}

.gallery-photo:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
}

.gallery-page-numbers {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(45, 51, 67, 0.11);
  border-radius: 1rem;
  background: var(--white);
}

.gallery-pagination button {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(45, 51, 67, 0.12);
  border-radius: 0.85rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  font: 600 0.9rem var(--font-display);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.gallery-page-numbers button {
  border: 0;
  background: transparent;
}

.gallery-pagination button:hover:not(:disabled),
.gallery-page-numbers button.is-active {
  color: var(--navy-deep);
  background: var(--cyan);
  transform: translateY(-1px);
}

.gallery-pagination button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.gallery-pagination button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 4rem;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  color: var(--white);
  background: rgba(10, 13, 19, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.gallery-lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  max-height: calc(100svh - 8rem);
  border-radius: 1.25rem;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox figcaption {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.gallery-lightbox figcaption span {
  color: var(--cyan);
}

.gallery-lightbox button {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font: 400 1.25rem var(--font-display);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox button:hover {
  color: var(--navy-deep);
  background: var(--cyan);
  transform: scale(1.05);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  font-size: 1.6rem !important;
}

.gallery-lightbox button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Mentions légales ---------- */

.legal-page {
  background: #f5f6f6;
}

.legal-mentions {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
  color: var(--navy);
  overflow: hidden;
}

.legal-mentions-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-heading {
  max-width: 760px;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.legal-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
  text-wrap: balance;
}

.legal-heading h2 span {
  color: #6b7384;
}

.legal-heading h2::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 0.35rem;
  margin-top: 1.6rem;
  border-radius: 1rem;
  background: var(--cyan);
}

.legal-heading p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: #5d6472;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

.legal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(45, 51, 67, 0.14);
}

.legal-item {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) 0;
  border-bottom: 1px solid rgba(45, 51, 67, 0.14);
  transition: background-color 0.35s ease, padding-left 0.35s ease;
}

.legal-item:hover {
  padding-left: 0.65rem;
  background: linear-gradient(90deg, rgba(115, 223, 255, 0.12), transparent 58%);
}

.legal-item-index {
  padding-top: 0.35rem;
  color: #9299a4;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.legal-item-body h3 {
  margin: 0 0 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-item-body p {
  margin: 0;
  color: #555c69;
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-item-body p + p {
  margin-top: 0.35rem;
}

.legal-item-body a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 51, 67, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-item-body a:hover {
  color: #1f7f99;
  border-color: rgba(115, 223, 255, 0.9);
}

.legal-watermark {
  position: absolute;
  right: max(-1rem, calc((100% - 1180px) / 2 - 2rem));
  bottom: -1.2rem;
  z-index: 0;
  color: rgba(45, 51, 67, 0.045);
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

/* ---------- À propos ---------- */

.about {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 1.5rem;
  color: var(--navy);
  background:
    radial-gradient(circle at 8% 12%, rgba(115, 223, 255, 0.16), transparent 28rem),
    #f6f7f8;
  overflow: hidden;
}

.about-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.about-visual {
  position: relative;
  min-height: 620px;
}

.about-image {
  position: absolute;
  inset: 0 1.35rem 1.35rem 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(45, 51, 67, 0.18);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 30, 40, 0.24));
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.025);
}

.about-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  border-radius: 2rem;
  background: var(--cyan);
}

.about-content {
  max-width: 620px;
}

.about-eyebrow {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #278aa8;
}

.about h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.about h2 span {
  color: #2497b9;
}

.about-text {
  margin-top: 2rem;
}

.about-text p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #596171;
}

.about-text p + p {
  margin-top: 0.85rem;
}

.about-text strong {
  color: var(--navy);
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.check-icon {
  display: inline-grid;
  flex: 0 0 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.25rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.65rem;
  border-radius: 1rem;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(45, 51, 67, 0.18);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  color: var(--navy);
  background: var(--cyan);
}

.about-cta:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* ---------- Services ---------- */

.services-showcase {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 76%, transparent);
}

.services-glow {
  position: absolute;
  top: -15rem;
  right: -14rem;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: rgba(115, 223, 255, 0.15);
  filter: blur(100px);
  pointer-events: none;
}

.services-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.services-heading > p {
  max-width: 460px;
  margin: 0 0 0.35rem auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(115, 223, 255, 0.08);
  transition: transform 0.5s ease, background-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(115, 223, 255, 0.5);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.service-card:hover::before {
  transform: scale(1.25);
  background: rgba(115, 223, 255, 0.14);
}

.service-card-featured {
  color: var(--navy-deep);
  border-color: var(--cyan);
  background: var(--cyan);
}

.service-card-featured::before {
  background: rgba(255, 255, 255, 0.3);
}

.service-card-featured:hover {
  border-color: var(--cyan);
  background: #85e3ff;
}

.service-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}

.service-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--cyan);
  background: rgba(115, 223, 255, 0.12);
  border: 1px solid rgba(115, 223, 255, 0.22);
}

.service-icon svg {
  width: 1.6rem;
  height: 1.6rem;
}

.service-card-featured .service-icon {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.55);
}

.service-arrow {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.05rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-arrow {
  transform: rotate(45deg);
  color: var(--white);
}

.service-card-featured .service-arrow {
  color: var(--navy-deep);
  border-color: rgba(45, 51, 67, 0.22);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-meta {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 1rem;
}

.service-card-featured .service-meta {
  color: rgba(26, 30, 40, 0.62);
}

.service-price {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.service-price small {
  font-size: 0.65em;
  font-weight: 500;
}

.service-card-featured .service-price {
  color: var(--navy-deep);
}

.service-prices {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.service-prices .service-price {
  margin-top: 0.25rem;
}

.service-description,
.service-note {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.55;
}

.service-note {
  margin-top: 0.4rem;
  font-size: 0.88rem;
}

.service-card-featured .service-description,
.service-card-featured .service-note {
  color: rgba(26, 30, 40, 0.68);
}

.services-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  margin-top: 3rem;
}

.tariffs-disclaimer {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.services-catalog .tariffs-disclaimer {
  margin: 1.75rem auto 0;
  color: #8a929f;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.8rem 1.65rem;
  border-radius: 1rem;
  color: var(--navy-deep);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.services-link span {
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}

.services-link:hover {
  transform: translateY(-2px);
  background: var(--cyan);
}

.services-link:hover span {
  transform: translateX(4px);
}

.services-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Services partenaires ---------- */

.partners {
  padding: clamp(5.5rem, 10vw, 9rem) 1.5rem;
  color: var(--navy);
  background: #f3f0eb;
}

.partners-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.partners-heading {
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.partners-eyebrow {
  margin: 0 0 1rem;
  color: #278aa8;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partners-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.partners-heading > p:last-child {
  max-width: 650px;
  margin: 1.5rem auto 0;
  color: #606878;
  font-size: 1.1rem;
  line-height: 1.65;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.partner-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(45, 51, 67, 0.1);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 42px rgba(45, 51, 67, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(45, 51, 67, 0.14);
}

.partner-image {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  isolation: isolate;
}

.partner-image::before,
.partner-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.partner-image::before {
  top: -3rem;
  right: -2rem;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.2);
}

.partner-image::after {
  right: 3rem;
  bottom: -5rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.partner-image-energy {
  background: linear-gradient(145deg, #dfb45d, #9b6227);
}

.partner-image-internet {
  background: linear-gradient(145deg, #5ccde8, #315b8d);
}

.partner-image-insurance {
  background: linear-gradient(145deg, #7c9e8c, #354f48);
}

.partner-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.partner-image img[hidden] {
  display: none;
}

.partner-card:hover .partner-image img {
  transform: scale(1.045);
}

.partner-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.1rem;
  color: var(--white);
  background: rgba(26, 30, 40, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.partner-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.partner-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem;
}

.partner-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.partner-content p {
  margin: 1rem 0 1.8rem;
  color: #697080;
  font-size: 1rem;
  line-height: 1.55;
}

.partner-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.partner-content a::before {
  content: "";
  width: 2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.partner-content a span {
  transition: transform 0.25s ease;
}

.partner-content a:hover::before {
  width: 2.75rem;
}

.partner-content a:hover span {
  transform: translate(2px, -2px);
}

.partner-content a:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
}

/* ---------- Partenaires locaux ---------- */

.local-partners {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 1.5rem;
  color: var(--navy);
  background: var(--white);
  overflow: hidden;
}

.local-partners::before {
  content: "FLEXMOVE";
  position: absolute;
  right: -0.04em;
  bottom: -0.22em;
  color: rgba(45, 51, 67, 0.035);
  font-family: var(--font-display);
  font-size: clamp(8rem, 21vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  pointer-events: none;
}

.local-partners-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 7.5rem);
}

.local-partners-intro {
  align-self: start;
  position: sticky;
  top: 3rem;
}

.local-partners-mark {
  display: block;
  width: 4rem;
  height: 0.35rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: var(--cyan);
}

.local-partners-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.local-partners-intro p {
  max-width: 380px;
  margin: 2rem 0 0;
  color: #626a79;
  font-size: 1.08rem;
  line-height: 1.65;
}

.local-partners-list {
  border-top: 0;
}

.local-partner-row {
  position: relative;
  min-height: 235px;
  display: grid;
  grid-template-columns: 2.5rem 4.5rem minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 1rem;
  border-bottom: 1px solid rgba(45, 51, 67, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.local-partner-row:last-child {
  border-bottom: 0;
}

.local-partner-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(115, 223, 255, 0.28), rgba(115, 223, 255, 0.06));
  transform: translateX(-102%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.local-partner-row:hover::before {
  transform: translateX(0);
}

.local-partner-number {
  align-self: start;
  padding-top: 0.4rem;
  color: #9298a4;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.local-partner-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 1px solid rgba(45, 51, 67, 0.16);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s ease;
}

.local-partner-icon svg {
  width: 2rem;
  height: 2rem;
}

.local-partner-row:hover .local-partner-icon {
  color: var(--white);
  background: var(--navy);
  transform: rotate(-5deg) scale(1.06);
}

.local-partner-copy h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.local-partner-copy h3 span {
  color: #7a8290;
  font-weight: 400;
}

.local-partner-copy p {
  max-width: 590px;
  margin: 1rem 0 0;
  color: #697080;
  font-size: 1rem;
  line-height: 1.6;
}

.local-partner-line {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  width: 2.75rem;
  height: 2px;
  background: var(--navy);
  transform-origin: right;
  transition: width 0.35s ease;
}

.local-partner-row:hover .local-partner-line {
  width: 5rem;
}

/* ---------- Avis clients ---------- */

.testimonials {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 1.5rem;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 12%, rgba(115, 223, 255, 0.16), transparent 30rem),
    var(--navy-deep);
  overflow: hidden;
}

.testimonials-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.testimonials-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.testimonials-eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonials-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.2vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.testimonials-rating:hover,
.testimonials-rating:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(115, 223, 255, 0.45);
  transform: translateY(-2px);
}

.testimonials-rating:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.testimonials-rating img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
}

.testimonials-rating > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonials-rating > div > span:last-child {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.testimonial-stars {
  color: #f7c948;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
}

.testimonials-stage {
  position: relative;
  min-height: 440px;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2.25rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.testimonials-stage::after {
  content: "";
  position: absolute;
  top: -8rem;
  right: -6rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(115, 223, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(115, 223, 255, 0.025),
    0 0 0 7rem rgba(115, 223, 255, 0.018);
  pointer-events: none;
}

.testimonial-quote-mark {
  position: absolute;
  top: -0.22em;
  left: 0.25em;
  color: rgba(115, 223, 255, 0.13);
  font-family: Georgia, serif;
  font-size: clamp(12rem, 24vw, 22rem);
  line-height: 1;
  pointer-events: none;
}

.testimonial-slide {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: 100%;
}

.testimonial-slide[hidden] {
  display: none;
}

.testimonial-slide blockquote {
  max-width: 970px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.testimonial-slide footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonial-avatar {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 3.4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonial-slide footer > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-slide cite {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 600;
}

.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.5rem;
}

.testimonial-tabs {
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.045);
}

.testimonial-tab {
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  font: 500 0.9rem var(--font-display);
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.testimonial-tab:hover {
  color: var(--white);
}

.testimonial-tab.is-active {
  color: var(--navy-deep);
  background: var(--cyan);
}

.testimonial-arrows {
  display: flex;
  gap: 0.55rem;
}

.testimonial-arrows button {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.testimonial-arrows button:hover {
  color: var(--navy-deep);
  background: var(--cyan);
  transform: scale(1.05);
}

.testimonial-tab:focus-visible,
.testimonial-arrows button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- CTA galerie ---------- */

.gallery-cta-section {
  background: var(--navy-deep);
}

.gallery-cta {
  position: relative;
  min-height: 620px;
  height: 68vh;
  height: 68svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}

.gallery-cta-image {
  position: absolute;
  inset: 0;
}

.gallery-cta-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 18, 25, 0.76) 0%, rgba(15, 18, 25, 0.38) 58%, rgba(15, 18, 25, 0.16) 100%),
    linear-gradient(180deg, rgba(15, 18, 25, 0.18) 25%, rgba(15, 18, 25, 0.72) 100%);
  pointer-events: none;
}

.gallery-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-cta:hover .gallery-cta-image img {
  transform: scale(1.035);
}

.gallery-cta-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 0 clamp(4.5rem, 9vh, 7rem);
  color: var(--white);
}

.gallery-cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 0.32rem;
  border-radius: 1rem;
  background: var(--cyan);
}

.gallery-cta-content h2 {
  position: relative;
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.gallery-cta-content p {
  position: relative;
  max-width: 670px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.65;
}

.gallery-cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.gallery-cta-arrow {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--cyan);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 1.25rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.gallery-cta-link:hover .gallery-cta-arrow {
  transform: rotate(45deg) scale(1.06);
  background: var(--white);
}

.gallery-cta-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

/* ---------- Contact ---------- */

.contact {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) 1.5rem;
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 8%, rgba(115, 223, 255, 0.24), transparent 28rem),
    #eef2f3;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  left: -10rem;
  bottom: -15rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(45, 51, 67, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(45, 51, 67, 0.02),
    0 0 0 9rem rgba(45, 51, 67, 0.015);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.contact-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.contact-heading > p {
  max-width: 310px;
  margin: 0 0 0.35rem;
  color: #606978;
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-details {
  padding: 0.5rem 0;
}

.contact-detail {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(45, 51, 67, 0.14);
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail > span,
.contact-socials > span {
  display: block;
  margin-bottom: 0.45rem;
  color: #818896;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: #1887a8;
}

.contact-detail a span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.contact-detail a:hover span {
  transform: translate(2px, -2px);
}

.contact-socials {
  padding-top: 1.5rem;
}

.contact-socials > div {
  display: flex;
  gap: 0.65rem;
}

.contact-socials a {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(45, 51, 67, 0.16);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.52);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.contact-socials a:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

.contact-socials svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-form {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 2.25rem;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: 0 30px 80px rgba(45, 51, 67, 0.18);
}

.contact-form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-form-heading h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-form-heading > span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 1.1rem;
}

.form-field {
  padding: 1.15rem 0 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.2s ease;
}

.form-field:focus-within {
  border-color: var(--cyan);
}

.form-field label {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font: 400 1.1rem/1.5 var(--font-body);
  resize: vertical;
}

.form-field input {
  height: 2.1rem;
}

.form-field textarea {
  min-height: 8rem;
}

.contact-submit {
  width: 100%;
  min-height: 4rem;
  margin-top: 2.5rem;
  padding: 0.45rem 0.45rem 0.45rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 1.25rem;
  color: var(--navy-deep);
  background: var(--cyan);
  font: 600 1.05rem var(--font-display);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.contact-submit-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border-radius: 0.9rem;
  color: var(--white);
  background: var(--navy-deep);
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.contact-submit:hover .contact-submit-icon {
  transform: translateX(2px);
}

.contact-submit:focus-visible,
.contact-socials a:focus-visible,
.contact-detail a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem 2rem;
  color: var(--white);
  background: #11151d;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -14rem;
  left: 50%;
  width: 42rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(115, 223, 255, 0.08);
  filter: blur(110px);
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.footer-logo img {
  width: clamp(105px, 12vw, 145px);
  height: auto;
}

.footer-links > p,
.footer-contact > p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 0.8rem;
}

.footer-links a,
.footer-contact a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer-contact a span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.footer-contact a:hover span {
  transform: translate(2px, -2px);
}

.footer-wordmark {
  margin: clamp(4rem, 9vw, 8rem) 0 0;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display);
  font-size: clamp(7rem, 20.5vw, 15.5rem);
  font-weight: 700;
  letter-spacing: -0.085em;
  line-height: 0.68;
  white-space: nowrap;
  user-select: none;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-links a:focus-visible,
.footer-contact a:focus-visible,
.footer-bottom a:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (max-width: 980px) and (min-width: 769px) {
  .gallery-grid-modern {
    grid-auto-rows: 90px;
  }

  .gallery-heading {
    gap: 2rem;
  }

  .catalog-image {
    height: 250px;
  }

  .catalog-title-row {
    flex-direction: column;
  }

  .catalog-title-row h3 {
    max-width: none;
  }

  .catalog-title-row > div,
  .catalog-price {
    text-align: left;
  }

  .service-map-shell {
    height: 540px;
  }

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

  .why-service:nth-child(-n + 4) {
    border-top: 0;
  }

  .why-service:nth-child(-n + 2) {
    border-top: 1px solid rgba(45, 51, 67, 0.13);
  }

  .why-service:nth-child(4n) {
    border-right: 0;
  }

  .why-service:nth-child(2n) {
    border-right: 1px solid rgba(45, 51, 67, 0.13);
  }

  .about-container {
    gap: 3rem;
  }

  .about-visual {
    min-height: 520px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .services-heading {
    gap: 2rem;
  }

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

  .local-partners-inner {
    grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
    gap: 3rem;
  }

  .local-partner-row {
    grid-template-columns: 2rem 3.75rem minmax(0, 1fr);
    gap: 1rem;
  }

  .local-partner-icon {
    width: 3.75rem;
    height: 3.75rem;
  }

  .testimonials-stage {
    min-height: 400px;
  }

  .contact-layout {
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 3rem;
  }
}

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

@media (max-width: 768px) {
  :root {
    --header-inset: 0.85rem;
  }

  .site-header {
    padding: 0.8rem 0.8rem 0;
    padding-top: max(0.8rem, env(safe-area-inset-top));
  }

  .header-bar {
    display: flex;
    width: 100%;
    height: 76px;
    min-height: 0;
    padding: 0.25rem 0.45rem 0.25rem 0.35rem;
    border-radius: 2.3rem;
  }

  .logo img {
    width: 72px;
    height: 72px;
  }

  .nav-desktop {
    display: none;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 40;
    align-items: center;
    justify-content: center;
    padding: 6.5rem 1.5rem 2.5rem;
    background: rgba(26, 30, 40, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav[hidden] {
    display: flex;
  }

  .mobile-nav-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .mobile-nav-panel li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mobile-nav.is-open .mobile-nav-panel li {
    opacity: 1;
    transform: none;
  }

  .mobile-nav.is-open .mobile-nav-panel li:nth-child(1) { transition-delay: 0.08s; }
  .mobile-nav.is-open .mobile-nav-panel li:nth-child(2) { transition-delay: 0.16s; }
  .mobile-nav.is-open .mobile-nav-panel li:nth-child(3) { transition-delay: 0.24s; }
  .mobile-nav.is-open .mobile-nav-panel li:nth-child(4) { transition-delay: 0.32s; }

  .mobile-nav-panel a {
    display: block;
    padding: 0.85rem 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 8vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--white);
  }

  .mobile-nav-panel a[aria-current="page"] {
    color: var(--cyan);
  }

  .hero-content {
    padding: 6.5rem 0 2.25rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1.6rem;
  }

  .feature {
    flex-direction: row;
    justify-content: flex-start;
    min-width: 0;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    margin-top: 1.6rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }

  .page-hero {
    height: 50svh;
    min-height: 390px;
    max-height: 500px;
  }

  .page-hero-inner {
    width: calc(100% - 2rem);
    padding: 7rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .page-hero-scroll {
    display: none;
  }

  .call-float {
    right: calc(1.35rem + env(safe-area-inset-right));
    bottom: calc(1.85rem + env(safe-area-inset-bottom));
    height: 3.45rem;
    box-shadow:
      0 10px 26px rgba(18, 22, 30, 0.22),
      0 0 0 6px rgba(115, 223, 255, 0.14);
  }

  .call-float-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .legal-mentions {
    padding: 5rem 1rem 6rem;
  }

  .legal-heading h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .legal-heading p {
    font-size: 1.05rem;
  }

  .legal-item {
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1.55rem 0;
  }

  .legal-item:hover {
    padding-left: 0.2rem;
  }

  .legal-item-body h3 {
    font-size: 1.35rem;
  }

  .legal-item-body p {
    font-size: 1rem;
  }

  .legal-watermark {
    display: none;
  }

  .gallery-collection {
    padding: 5rem 1rem;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
  }

  .gallery-heading h2 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .gallery-heading p {
    margin: 0;
  }

  .gallery-grid-modern {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
    gap: 0.8rem;
  }

  .gallery-photo,
  .gallery-photo:nth-child(9n + 1),
  .gallery-photo:nth-child(9n + 2),
  .gallery-photo:nth-child(9n + 6),
  .gallery-photo:nth-child(9n + 7),
  .gallery-photo:nth-child(9n + 8),
  .gallery-photo:nth-child(9n + 9) {
    grid-column: 1;
    grid-row: span 1;
    border-radius: 1.25rem;
  }

  .gallery-lightbox {
    grid-template-columns: 1fr;
    padding: 4.5rem 1rem 1.25rem;
  }

  .gallery-lightbox figure img {
    max-height: calc(100svh - 11rem);
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    position: absolute;
    bottom: 1.25rem;
  }

  .gallery-lightbox-prev {
    left: 1rem;
  }

  .gallery-lightbox-next {
    right: 1rem;
  }

  .services-catalog {
    padding: 5rem 1rem;
  }

  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.4rem;
  }

  .catalog-heading h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .catalog-heading > p {
    margin: 0;
  }

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

  .catalog-image {
    height: 260px;
  }

  .catalog-title-row {
    flex-direction: column;
  }

  .catalog-title-row h3 {
    max-width: none;
  }

  .catalog-title-row > div,
  .catalog-price {
    text-align: left;
  }

  .service-area {
    padding: 5rem 1rem;
  }

  .service-area-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .service-area-heading h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .service-area-heading > p {
    margin: 0;
  }

  .service-map-shell {
    height: 520px;
    border-radius: 1.5rem;
  }

  .service-map-label {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: none;
    padding: 0.9rem 1rem;
  }

  .why-services {
    padding: 5.5rem 1rem;
  }

  .why-services-heading h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .why-services-grid {
    grid-template-columns: 1fr;
  }

  .why-service {
    min-height: 0;
    padding: 2rem 0.5rem;
    border-top: 0;
    border-right: 0;
    border-left: 0;
  }

  .why-service:nth-child(-n + 4),
  .why-service:nth-child(-n + 2),
  .why-service:nth-child(2n),
  .why-service:nth-child(4n) {
    border-top: 0;
    border-right: 0;
  }

  .why-service:first-child {
    border-top: 1px solid rgba(45, 51, 67, 0.13);
  }

  .why-service-number {
    margin-bottom: 2.4rem;
  }

  .about {
    padding: 4.5rem 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    min-height: min(120vw, 520px);
  }

  .about-image {
    inset: 0 0.8rem 0.8rem 0;
    border-radius: 1.5rem;
  }

  .about-accent {
    border-radius: 1.5rem;
  }

  .about h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .about-text {
    margin-top: 1.6rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-cta {
    width: 100%;
  }

  .services-showcase {
    padding: 5rem 1rem;
  }

  .services-showcase::before {
    background-size: 52px 52px;
  }

  .services-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .services-heading h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .services-heading > p {
    margin: 0;
  }

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

  .service-card {
    min-height: 340px;
  }

  .partners {
    padding: 5rem 1rem;
  }

  .partners-heading {
    text-align: left;
  }

  .partners-heading > p:last-child {
    margin-left: 0;
  }

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

  .partner-image {
    min-height: 230px;
  }

  .local-partners {
    padding: 5rem 1rem 6rem;
  }

  .local-partners::before {
    display: none;
  }

  .local-partners-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .local-partners-intro {
    position: static;
  }

  .local-partners-intro h2 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .local-partner-row {
    min-height: 0;
    grid-template-columns: 2rem 3.75rem minmax(0, 1fr);
    align-items: start;
    gap: 0.85rem;
    padding: 2rem 0.25rem;
  }

  .local-partner-icon {
    width: 3.75rem;
    height: 3.75rem;
  }

  .local-partner-icon svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .local-partner-copy h3 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }

  .local-partner-line {
    display: none;
  }

  .testimonials {
    padding: 5.5rem 1rem;
  }

  .testimonials-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .testimonials-heading h2 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .testimonials-stage {
    min-height: 460px;
    padding: 2rem 1.4rem;
    border-radius: 1.5rem;
  }

  .testimonial-slide blockquote {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .testimonial-slide footer {
    margin-top: 2rem;
  }

  .testimonials-navigation {
    align-items: stretch;
    flex-direction: column;
  }

  .testimonial-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-tab {
    padding: 0.7rem 0.35rem;
    font-size: 0.76rem;
  }

  .testimonial-arrows {
    justify-content: flex-end;
  }

  .gallery-cta {
    min-height: 560px;
    height: 72svh;
  }

  .gallery-cta-content {
    width: calc(100% - 2rem);
    padding: 4rem 0 3rem;
  }

  .gallery-cta-content h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .gallery-cta-image::after {
    background:
      linear-gradient(180deg, rgba(15, 18, 25, 0.2) 10%, rgba(15, 18, 25, 0.84) 82%),
      linear-gradient(90deg, rgba(15, 18, 25, 0.38), transparent);
  }

  .gallery-cta-image img {
    object-position: 47% center;
  }

  .contact {
    padding: 5.5rem 1rem;
  }

  .contact-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-heading h2 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .contact-heading > p {
    margin: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form {
    padding: 2rem 1.25rem 1.25rem;
    border-radius: 1.5rem;
  }

  .contact-form-heading {
    margin-bottom: 1.5rem;
  }

  .contact-submit {
    margin-top: 2rem;
  }

  .site-footer {
    padding: 4.5rem 1rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

  .footer-logo img {
    width: 110px;
  }

  .footer-wordmark {
    margin-top: 4.5rem;
    font-size: clamp(5rem, 23.5vw, 8rem);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 2rem;
  }
}

@media (max-width: 400px) {
  .hero-content {
    width: min(960px, calc(100% - 1.5rem));
  }

  .hero h1 {
    font-size: 2.15rem;
  }
}
