/* ===== Design tokens ===== */
:root {
  --blue: #3355ff;
  --blue-dark: #1c35b8;
  --blue-light: #7d95ff;
  --cyan: #4de3ff;
  --navy: #05070f;
  --navy-2: #0a0e27;
  --navy-soft: #10163a;
  --ink: #0a0c1a;
  --gray-900: #14172b;
  --gray-700: #4b5170;
  --gray-500: #7b8199;
  --gray-300: #d7dae6;
  --gray-100: #f1f3fa;
  --gray-50: #f8f9fd;
  --white: #ffffff;
  --amber: #ffb020;
  --cut: 14px;
  --cut-sm: 9px;
  --shadow: 0 30px 60px -24px rgba(5, 7, 15, 0.35);
  --shadow-sm: 0 14px 30px -16px rgba(5, 7, 15, 0.22);
  --glow: 0 0 0 1px rgba(77, 227, 255, 0.15), 0 20px 60px -12px rgba(51, 85, 255, 0.45);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--navy);
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; color: var(--gray-700); }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; }
img { max-width: 100%; display: block; }
sup { font-size: 0.6em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.text-accent { color: var(--blue-light); background: linear-gradient(90deg, var(--blue-light), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Angular cut utility ===== */
.cut,
.btn,
.service-card,
.offer-card,
.testimonial-card,
.faq-item,
.step-connector-bolt,
.contact-form,
.photo-card {
  clip-path: polygon(
    var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)
  );
}
.btn { clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm)); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 0;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(100deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(51, 85, 255, 0.6);
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -8px rgba(51, 85, 255, 0.7); }
.btn-primary:hover::before { left: 130%; }
.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.hero .btn-ghost { color: var(--white); }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(20, 24, 46, 0.55) 0%, rgba(8, 10, 22, 0.45) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px -12px rgba(5, 7, 15, 0.5);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 600; font-size: 0.94rem; color: rgba(255, 255, 255, 0.75); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--cyan); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-chevron { width: 11px; height: 11px; transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 250px;
  padding: 16px 10px 10px;
  background: linear-gradient(180deg, rgba(20, 24, 46, 0.97) 0%, rgba(8, 10, 22, 0.98) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px -12px rgba(5, 7, 15, 0.6);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.nav-dropdown-menu a:hover { color: var(--cyan); background: rgba(255, 255, 255, 0.06); }
.nav-dropdown-menu-sep { height: 1px; background: rgba(255, 255, 255, 0.1); margin: 6px 4px 8px; }
.nav-dropdown-menu-all { color: var(--cyan) !important; font-size: 0.82rem !important; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--white); }
.nav-phone svg { width: 18px; height: 18px; color: var(--cyan); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { width: 22px; height: 2.5px; background: var(--white); border-radius: 0; transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 80px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; font-weight: 600; color: rgba(255, 255, 255, 0.8); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-nav a.mobile-nav-sub { padding-left: 18px; font-size: 0.88rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); border-bottom: none; }
.mobile-nav .btn { margin-top: 8px; justify-content: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 64px 0 0;
  background:
    radial-gradient(600px 500px at 82% 15%, rgba(51, 85, 255, 0.35), transparent 65%),
    radial-gradient(500px 420px at 8% 85%, rgba(77, 227, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(5, 7, 15, 0.5) 0%, rgba(10, 14, 39, 0.6) 100%),
    url('img/hero-bg.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* Plan de Campagne's real facade photo shouldn't stand in for a center it
   isn't a photo of — used on pages for centers we don't have real photos
   of yet (currently Alès), same navy gradient without the image layer. */
.hero.hero-no-photo {
  background:
    radial-gradient(600px 500px at 82% 15%, rgba(51, 85, 255, 0.35), transparent 65%),
    radial-gradient(500px 420px at 8% 85%, rgba(77, 227, 255, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(8, 11, 28, 0.96) 0%, rgba(10, 14, 39, 0.98) 100%);
}
.hero-bolt-bg {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 620px;
  height: 620px;
  opacity: 0.08;
  pointer-events: none;
  animation: bolt-pulse 5s ease-in-out infinite;
}
@keyframes bolt-pulse {
  0%, 100% { opacity: 0.06; transform: scale(1) rotate(-6deg); }
  50% { opacity: 0.12; transform: scale(1.04) rotate(-6deg); }
}

/* ===== Hero glass shards ===== */
.hero-shards {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.glass-shard {
  position: absolute;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cyan) 0%, var(--blue) 55%, var(--blue-dark) 100%);
  opacity: 0.36;
  filter: drop-shadow(0 0 10px rgba(77, 227, 255, 0.5));
  clip-path: polygon(54.17% 8.33%, 12.5% 58.33%, 50% 58.33%, 45.83% 91.67%, 87.5% 41.67%, 50% 41.67%);
  animation-name: shard-float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.glass-shard::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 58%);
  animation-name: shard-glint;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shard-float {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  50% { transform: translate(var(--dx, 10px), var(--dy, -14px)) rotate(calc(var(--rot, 0deg) + 5deg)); }
}
@keyframes shard-glint {
  0%, 42% { transform: translate(-60%, -60%); opacity: 0; }
  50% { opacity: 0.9; }
  58%, 100% { transform: translate(60%, 60%); opacity: 0; }
}
.shard-1 {
  top: 8%; left: 55%; width: 58px; height: 104px;
  --rot: -8deg; --dx: 12px; --dy: -16px;
  animation-duration: 15s;
}
.shard-1::before { animation-duration: 6s; }
.shard-2 {
  top: 34%; left: 84%; width: 40px; height: 68px;
  --rot: 12deg; --dx: -10px; --dy: 14px;
  animation-duration: 19s; animation-delay: -4s;
}
.shard-2::before { animation-duration: 7s; animation-delay: -2s; }
.shard-3 {
  top: 66%; left: 64%; width: 32px; height: 58px;
  --rot: -15deg; --dx: 8px; --dy: 12px;
  animation-duration: 13s; animation-delay: -8s;
}
.shard-3::before { animation-duration: 5.5s; animation-delay: -3s; }
.shard-4 {
  top: 4%; left: 22%; width: 27px; height: 50px;
  --rot: 20deg; --dx: -8px; --dy: -10px;
  animation-duration: 17s; animation-delay: -2s;
}
.shard-4::before { animation-duration: 6.5s; animation-delay: -5s; }
.shard-5 {
  top: 52%; left: 4%; width: 46px; height: 78px;
  --rot: -10deg; --dx: 10px; --dy: -8px;
  animation-duration: 14s; animation-delay: -6s;
}
.shard-5::before { animation-duration: 7.5s; animation-delay: -1s; }
.shard-6 {
  top: 82%; left: 32%; width: 29px; height: 52px;
  --rot: 8deg; --dx: -6px; --dy: 10px;
  animation-duration: 20s; animation-delay: -10s;
}
.shard-6::before { animation-duration: 6s; animation-delay: -4s; }
.shard-7 {
  top: 20%; left: 40%; width: 20px; height: 36px;
  --rot: -18deg; --dx: 6px; --dy: -6px;
  animation-duration: 16s; animation-delay: -12s;
}
.shard-7::before { animation-duration: 8s; animation-delay: -6s; }
@media (prefers-reduced-motion: reduce) {
  .glass-shard, .glass-shard::before, .hero-bolt-bg { animation: none; }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  padding-bottom: 70px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 14px;
  background: rgba(77, 227, 255, 0.1);
  border: 1px solid rgba(77, 227, 255, 0.3);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--cyan); box-shadow: 0 0 10px 2px rgba(77, 227, 255, 0.8); }
.hero h1 {
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
}
.hero-checks { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-bottom: 34px; }
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
}
.hero-check svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-asterisk { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-shape {
  position: absolute;
  width: 380px;
  height: 420px;
  background: linear-gradient(140deg, var(--blue) 0%, var(--navy-2) 100%);
  transform: rotate(-5deg) translate(14px, 14px);
  z-index: 0;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  box-shadow: var(--glow);
}
.hero-form-card {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 45%, rgba(255, 255, 255, 0.14) 100%);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.05);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.65);
  border-left-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 24px 40px -20px rgba(255, 255, 255, 0.22),
    inset 0 -20px 30px -20px rgba(0, 0, 40, 0.18),
    0 30px 70px -20px rgba(10, 15, 60, 0.55);
  padding: 38px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  border-radius: 50%;
}
.hero-form-card h2,
.hero-form-card > p,
.hero-form-card label {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.8);
}
.hero-form-card h2 { font-size: 1.35rem; color: var(--ink); margin-bottom: 6px; }
.hero-form-card > p { margin-bottom: 22px; font-size: 0.9rem; color: var(--white); }
.hero-form-card .form-field { margin-bottom: 14px; }
.hero-form-card .form-disclaimer { margin-top: 10px; color: var(--ink); font-weight: 600; opacity: 0.7; text-shadow: 0 1px 12px rgba(255, 255, 255, 0.8); }
.hero-form-card .form-field input,
.hero-form-card .form-field select {
  border-radius: 14px;
  border-color: rgba(10, 15, 60, 0.12);
  background: rgba(255, 255, 255, 0.75);
}
.hero-form-card .btn {
  clip-path: none;
  border-radius: 999px;
}

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--navy-2);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
}
.trust-item { color: rgba(255, 255, 255, 0.6); font-size: 0.87rem; }
.trust-item strong { color: var(--cyan); }
.trust-sep { width: 4px; height: 4px; background: rgba(255, 255, 255, 0.25); }

/* ===== Section slant dividers ===== */
.section-slant-top { position: relative; }
.section-slant-top::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 34px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: 2;
}
.section-dark.section-slant-top::before { background: var(--navy); clip-path: polygon(0 100%, 100% 0, 100% 100%); }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; background: var(--white); }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); }
.section-dark p, .section-dark h3 { color: rgba(255, 255, 255, 0.65); }
.section-dark .faq-item h3 { color: var(--white); }

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); color: var(--ink); margin: 12px 0 14px; }
.section-head p { font-size: 1.05rem; }
.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255, 255, 255, 0.6); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--blue);
}
.eyebrow-light { color: var(--cyan); }
.eyebrow-light::before { background: var(--cyan); }

.stars-row { color: var(--amber); font-size: 1.3rem; text-align: center; margin-top: 4px; letter-spacing: 2px; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
/* Optional faded background photo, set per-card via inline --service-bg */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--service-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.service-card > .service-icon,
.service-card > h3,
.service-card > p {
  position: relative;
  z-index: 1;
}
.service-card:nth-child(2) { transform: translateY(18px); }
.service-card:nth-child(4) { transform: translateY(18px); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--glow); border-color: rgba(51, 85, 255, 0.3); }
.service-card:nth-child(2):hover, .service-card:nth-child(4):hover { transform: translateY(14px); }

/* ===== Services carousel ===== */
.services-carousel { display: flex; align-items: center; gap: 18px; }
.carousel-viewport { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-card {
  flex: 0 0 calc((100% - 2 * 22px) / 3);
  min-width: 0;
  padding: 0;
  overflow: hidden;
}
.carousel-card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: rgba(51, 85, 255, 0.3); }
.service-card-image { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--navy); }
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.carousel-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(51, 85, 255, 0.05) 30%, rgba(28, 53, 184, 0.9) 100%);
  mix-blend-mode: multiply;
}
.service-card-image::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40%;
  background: linear-gradient(180deg, transparent, var(--white) 92%);
  z-index: 1;
}
.service-card-body { padding: 22px 24px 28px; position: relative; }
.service-card-body .service-icon { margin-top: -46px; margin-bottom: 16px; position: relative; z-index: 2; box-shadow: 0 10px 24px -8px rgba(28, 53, 184, 0.55); }

/* ===== Fleet: loaner vehicle + home intervention ===== */
.fleet-section {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.fleet-visual {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: -110px auto 0;
  padding: 0 24px;
}
.fleet-visual img { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5)); }
.fleet-panel {
  background: linear-gradient(100deg, #05070f 0%, #22242c 55%, #3a3c44 100%);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  padding-bottom: 44px;
}
.fleet-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 56px; }
.fleet-item { display: flex; flex-direction: column; align-items: flex-start; }
.fleet-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  box-shadow: 0 14px 30px -10px rgba(51, 85, 255, 0.6);
}
.fleet-icon svg { width: 26px; height: 26px; }
.fleet-item h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.fleet-item p { color: rgba(255, 255, 255, 0.62); font-size: 0.95rem; }
@media (max-width: 900px) {
  .fleet-visual { margin-top: -50px; max-width: 100%; padding: 0 16px; }
}
@media (max-width: 600px) {
  .fleet-visual { margin-top: -36px; padding: 0 12px; }
  .fleet-content { grid-template-columns: 1fr; gap: 32px; }
}
.carousel-arrow {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gray-100);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: scale(1.06); }
.carousel-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.08rem; color: var(--ink); margin-bottom: 10px; }
.service-card p { font-size: 0.91rem; }

/* ===== Offers ===== */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer-card-featured {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--glow);
}
.offer-card-featured .offer-desc { color: var(--white); }
.offer-card-featured .offer-list li { color: var(--white); }
.offer-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 7px 16px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
}
.offer-tag-alt { background: var(--blue); color: var(--white); }
.offer-card h3 { font-size: 1.45rem; color: var(--ink); margin-bottom: 10px; }
.offer-card-featured h3 { color: var(--white); }
.offer-desc { margin-bottom: 22px; }
.offer-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.offer-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  clip-path: polygon(3px 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%, 0 3px);
}
.offer-card-featured .offer-list li::before { background: var(--cyan); }
.offer-fineprint { font-size: 0.76rem; color: var(--gray-500); margin-top: 12px; }
.offer-card-featured .offer-fineprint { color: rgba(255, 255, 255, 0.4); }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.step { text-align: center; padding: 0 20px; position: relative; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 50px);
  right: calc(-50% + 50px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue) 0, var(--blue) 6px, transparent 6px, transparent 12px);
}
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(140deg, var(--blue), var(--navy-2));
  color: var(--white);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  box-shadow: 0 10px 24px -8px rgba(51, 85, 255, 0.5);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 10px; }
.step p { font-size: 0.92rem; }

/* ===== FAQ / assurance ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 28px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.faq-item:hover { border-color: rgba(77, 227, 255, 0.4); background: rgba(255, 255, 255, 0.06); }
.faq-item h3 { font-size: 1.02rem; margin-bottom: 8px; }
.faq-item p { font-size: 0.92rem; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--gray-50);
  border-left: 3px solid var(--blue);
  padding: 30px 28px;
}
.testimonial-card p { margin: 16px 0 20px; font-style: italic; color: var(--gray-700); font-size: 0.94rem; }
.testimonial-author { font-weight: 800; font-size: 0.85rem; color: var(--ink); }

/* ===== Zone ===== */
.zone-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.zone-address { font-weight: 800; color: var(--ink); font-size: 1.05rem; margin: 14px 0; }
.zone-inner p:not(.zone-address) { margin-bottom: 24px; }
.zone-map {
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  border: 3px solid var(--navy);
  border-radius: 16px;
}
.zone-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Centres (homepage) ===== */
.centres-grid { display: flex; flex-direction: column; gap: 36px; }
.centre-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.centre-map { aspect-ratio: 16 / 11; }
.centre-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  clip-path: polygon(
    var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)
  );
}

/* ===== Photo grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.photo-grid-2 { grid-template-columns: repeat(2, 1fr); }
.photo-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 15, 0) 45%, rgba(5, 7, 15, 0.8) 100%),
    linear-gradient(160deg, rgba(51, 85, 255, 0.28), rgba(5, 7, 15, 0.1) 60%);
  pointer-events: none;
}
.photo-card-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  position: relative;
  z-index: 1;
  padding: 22px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.75); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb-sep { margin: 0 8px; opacity: 0.5; }

/* ===== Compact page hero (service/zone pages) ===== */
.page-hero { padding: 0 0 0; }
.page-hero .hero-inner { padding: 34px 0 56px; }
.page-hero h1 { font-size: clamp(2.1rem, 3.6vw, 3rem); }

/* ===== Contact ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--ink); margin: 12px 0 16px; }
.contact-info > p { margin-bottom: 24px; }
.contact-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-points li { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); }
.contact-points svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.contact-phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); }
.contact-phone-link svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--gray-50);
  padding: 38px;
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--blue);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: 0.86rem; color: var(--ink); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 0;
  border: 1.5px solid var(--gray-300);
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-field textarea { resize: vertical; }
.form-disclaimer { font-size: 0.76rem; color: var(--gray-500); text-align: center; margin-top: 14px; }

.form-checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-checkbox-group .form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.form-checkbox-group .form-checkbox:hover { border-color: var(--blue-light); }
.form-checkbox-group .form-checkbox:has(input:checked) {
  border-color: var(--blue);
  background: rgba(51, 85, 255, 0.06);
  box-shadow: 0 6px 16px -8px rgba(51, 85, 255, 0.45);
}
.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.form-checkbox input[type="checkbox"]:checked { background: var(--blue); border-color: var(--blue); }
.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-checkbox span { font-size: 0.88rem; font-weight: 700; color: var(--ink); line-height: 1.25; }

/* ===== Multi-step form (trust wizard) ===== */
.form-intro { margin-bottom: 24px; }
.form-intro h2 { font-size: 1.3rem; color: var(--ink); margin-bottom: 8px; }
.form-intro p { font-size: 0.89rem; color: var(--gray-500); }

.form-steps-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.form-step-dot { flex: 1; height: 4px; background: var(--gray-300); transition: background-color 0.25s ease; }
.form-step-dot.active, .form-step-dot.done { background: var(--blue); }

.js-multistep-form {
  display: grid;
  grid-template-columns: 1fr;
}
.js-multistep-form > .form-intro { grid-row: 1; grid-column: 1; }
.js-multistep-form > .form-steps-progress { grid-row: 2; grid-column: 1; }
.js-multistep-form > .form-disclaimer { grid-row: 4; grid-column: 1; }
.js-multistep-form > .form-success { grid-row: 5; grid-column: 1; }
.form-step {
  grid-row: 3;
  grid-column: 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  align-self: start;
}
.form-step.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  animation: form-step-in 0.35s ease;
}
@keyframes form-step-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step-title { font-size: 1.02rem; color: var(--ink); font-weight: 800; margin-bottom: 18px; }
.form-step-actions { display: flex; gap: 12px; }
.form-step-actions .btn { flex: 1; }
.form-step-actions .btn-outline { flex: 0 0 auto; padding-left: 26px; padding-right: 26px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(51, 85, 255, 0.08);
  border-left: 3px solid var(--blue);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.form-success.visible { display: block; }

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  background: linear-gradient(110deg, var(--blue-dark) 0%, var(--navy) 60%, var(--navy) 100%);
  padding: 68px 0;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  background: linear-gradient(90deg, transparent, rgba(77, 227, 255, 0.18), transparent);
  animation: sweep 6s linear infinite;
}
@keyframes sweep {
  0% { left: -20%; }
  100% { left: 110%; }
}
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.4rem, 2.4vw, 1.9rem); max-width: 560px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .btn-primary { background: var(--cyan); color: var(--navy); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--white); }
.cta-band .btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ===== Footer ===== */
.footer { background: var(--navy); padding: 72px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .logo img { height: 46px; }
.footer-brand p { color: rgba(255, 255, 255, 0.5); font-size: 0.88rem; margin-top: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.footer-col a, .footer-col span { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom-inner a { color: rgba(255, 255, 255, 0.35); }
.footer-bottom-inner a:hover { color: var(--cyan); }

/* ===== Mobile call bar ===== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(100deg, var(--blue), var(--blue-dark));
  color: var(--white);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-weight: 700;
  box-shadow: 0 -8px 24px -8px rgba(5, 7, 15, 0.4);
}
.mobile-call-bar svg { width: 18px; height: 18px; }

/* ===== Scroll reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
.services-grid > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.services-grid > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.services-grid > [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.offers-grid > [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.steps > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.steps > [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.faq-grid > [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.faq-grid > [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.faq-grid > [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.testimonials-grid > [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid > [data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 32px; }
  .hero-shape { display: none; }
  .hero-form-card { max-width: 100%; padding: 26px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2), .service-card:nth-child(4) { transform: none; }
  .service-card:hover, .service-card:nth-child(2):hover, .service-card:nth-child(4):hover { transform: translateY(-4px); }
  .carousel-card { flex-basis: calc((100% - 22px) / 2); }
  .offers-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .step:not(:last-child)::after { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .zone-inner { grid-template-columns: 1fr; }
  .centre-block { grid-template-columns: 1fr; gap: 20px; }
  .contact-inner { grid-template-columns: 1fr; }
  .photo-grid, .photo-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .section { padding: 68px 0; }
  .hero { padding: 40px 0 0; }
  .hero-inner { padding-bottom: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-carousel { gap: 8px; }
  .carousel-card { flex-basis: 100%; }
  .carousel-arrow { width: 32px; height: 32px; }
  .carousel-arrow svg { width: 16px; height: 16px; }
  .photo-grid, .photo-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-checkbox-group { grid-template-columns: 1fr; }
  .form-step-actions { flex-direction: column; }
  .form-step-actions .btn-outline { flex: 1; width: 100%; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .mobile-call-bar { display: flex; }
  body:not(.no-call-bar) { padding-bottom: 66px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-checks { flex-direction: column; gap: 10px; }
}

[x-cloak] { display: none !important; }
