/* depan.be — Design inspiré du joli */
@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;700;800;900&family=Orbitron:wght@700&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-dark: #e8f4f8;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f9fc;
  --primary: #1a7fa8;
  --primary-light: #2196b8;
  --primary-dark: #14607e;
  --primary-glow: #1a7fa866;
  --orange: #ff6b2b;
  --orange-glow: #ff6b2b44;
  --orange-light: #ff8f5e;
  --orange-dark: #e55a1b;
  --text: #0b3044;
  --text-dim: #3d6e84;
  --text-muted: #7ba4b8;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --water-1: rgba(100, 200, 235, 0.12);
  --water-2: rgba(60, 170, 220, 0.08);
  --water-3: rgba(140, 220, 245, 0.1);
}

html { scroll-behavior: smooth; }

/* Scrollbar thématique */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #b8dce8;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}
/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #b8dce8 var(--bg-dark);
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* Water shimmer background - global */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 300px at 20% 30%, var(--water-1), transparent),
    radial-gradient(ellipse 500px 250px at 75% 60%, var(--water-2), transparent),
    radial-gradient(ellipse 400px 200px at 50% 80%, var(--water-3), transparent);
  animation: waterShift 12s ease-in-out infinite alternate;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 350px 180px at 60% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(ellipse 300px 150px at 30% 70%, rgba(255,255,255,0.35), transparent),
    radial-gradient(ellipse 200px 100px at 80% 45%, rgba(140,220,245,0.15), transparent);
  animation: waterShimmer 8s ease-in-out infinite alternate;
}

/* Caustic light ripple overlay */
@keyframes waterShift {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    background-position: 100% 50%, 0% 0%, 80% 20%;
    opacity: 0.8;
  }
}
@keyframes waterShimmer {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translateX(30px) translateY(-20px) scale(1.05);
    opacity: 0.9;
  }
  66% {
    transform: translateX(-20px) translateY(15px) scale(0.98);
    opacity: 0.7;
  }
  100% {
    transform: translateX(15px) translateY(-10px) scale(1.03);
    opacity: 0.85;
  }
}

/* Ensure all content sits above the water bg */
body > * {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 120px 0; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 12px var(--orange-glow), 0 0 30px transparent; }
  50% { box-shadow: 0 0 18px var(--orange-glow), 0 0 40px var(--orange-glow); }
}
@keyframes pulse-glow-blue {
  0%, 100% { box-shadow: 0 0 12px rgba(24, 119, 242, 0.25), 0 0 30px transparent; }
  50% { box-shadow: 0 0 18px rgba(24, 119, 242, 0.35), 0 0 40px rgba(24, 119, 242, 0.15); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(26, 127, 168, 0.06);
}
.navbar.scrolled {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(26, 127, 168, 0.1);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(11, 48, 68, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}
.nav-logo .nav-logo-brand {
  display: inline-flex;
  gap: 0;
  letter-spacing: -0.06em;
  color: var(--text);
}
.nav-logo .nav-logo-brand span {
  color: var(--primary);
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-logo span { color: var(--primary); }
.nav-logo .sprl {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65em;
  color: var(--text-muted);
}
.nav-logo { white-space: nowrap; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links > li {
  display: flex;
  align-items: center;
}
.nav-links > li::after {
  content: '';
  width: 1px;
  height: 16px;
  background: rgba(11, 48, 68, 0.12);
  margin-left: 14px;
}
.nav-links > li:last-child::after,
.nav-links > li:nth-last-child(2)::after {
  display: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
  padding: 10px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--orange);
  background: rgba(255, 107, 43, 0.06);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: pulse-glow 3s infinite;
}
.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--orange-glow);
}
.nav-cta::after { display: none !important; }

.nav-links > li:nth-last-child(2) {
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(11, 48, 68, 0.12);
}
.nav-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  padding: 0 16px;
  background: #1877f2;
  color: var(--white) !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: pulse-glow-blue 3s infinite;
}
.nav-facebook-label { display: none; }
.nav-facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}
.nav-facebook::after { display: none !important; }

/* Dropdown Services — smooth */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-wrap:hover .nav-dropdown-trigger {
  color: var(--orange);
  background: rgba(255, 107, 43, 0.06);
}
.nav-dropdown-wrap:hover .nav-dropdown-trigger::after {
  width: 100%;
}
.nav-chevron {
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.25s ease;
}
.nav-dropdown-wrap:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  padding: 6px 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid rgba(26, 127, 168, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(11, 48, 68, 0.12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li {
  border: none;
}
.nav-dropdown li::after {
  display: none !important;
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 6px;
  margin: 0 6px;
  transition: background 0.15s ease;
}
.nav-dropdown a:hover {
  background: rgba(26, 127, 168, 0.08);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.2s ease;
  border-radius: 2px;
  transform-origin: center;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-bg .orb-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -200px;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}
.hero-bg .orb-2 {
  width: 400px; height: 400px;
  background: var(--primary);
  bottom: -100px; left: -100px;
  opacity: 0.08;
  animation: float 10s ease-in-out infinite 2s;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 127, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 127, 168, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1,
.hero p {
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 127, 168, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(11, 48, 68, 0.06);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
  box-shadow: 0 0 8px #22c55e88;
}
.hero-badge .badge-logos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}
.hero-badge .badge-logo {
  height: 20px;
  width: auto;
  vertical-align: middle;
  object-fit: contain;
}
.hero-badge .badge-logo-ag { height: 18px; }
.hero-badge .badge-logo-europ { height: 22px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero-line {
  display: block;
  text-align: center;
  width: 100%;
}
.hero h1 .hero-question {
  white-space: nowrap;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  width: 100%;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px var(--orange-glow);
}
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid rgba(26, 127, 168, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: rgba(26, 127, 168, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 48, 68, 0.08);
}

.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877f2;
  color: var(--white) !important;
  padding: 18px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.4);
}

/* Marquee marques */
.marquee-brands {
  overflow: hidden;
  padding: 24px 0;
  background: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(26, 127, 168, 0.08);
  border-bottom: 1px solid rgba(26, 127, 168, 0.08);
}
.marquee-brands__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-brands__track:hover {
  animation-play-state: paused;
}
.marquee-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.marquee-brands__item:hover {
  opacity: 1;
}
.marquee-brands__item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.marquee-brands__item--light {
  padding: 8px 16px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(11, 48, 68, 0.06);
}
.marquee-brands__item--light img {
  height: 26px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid rgba(26, 127, 168, 0.08);
  border-bottom: 1px solid rgba(26, 127, 168, 0.08);
  background: rgba(255, 255, 255, 0.4);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  text-shadow: 0 2px 8px rgba(255, 107, 43, 0.15);
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 127, 168, 0.1);
  border-radius: var(--radius);
  padding: 44px 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: block;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(11, 48, 68, 0.04);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  background: var(--white);
  border-color: rgba(255, 107, 43, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11, 48, 68, 0.1);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.1), rgba(255, 107, 43, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 107, 43, 0.08);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.2), rgba(255, 107, 43, 0.1));
  transform: scale(1.1) rotate(-5deg);
  border-color: rgba(255, 107, 43, 0.2);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 16px;
  background: rgba(26, 127, 168, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(26, 127, 168, 0.12);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-header .assurance-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
}
.section-header .assurance-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.1);
}
.section-header .assurance-logo:hover { opacity: 1; }
.section-header p {
  color: var(--text-dim);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.avis-google-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dim);
  border: 1px solid rgba(26, 127, 168, 0.08);
}
.avis-google-badge .avis-google-logo {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  object-fit: contain;
}
.avis-google-badge--header {
  margin-top: 20px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.team-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.4s ease;
  cursor: default;
}
.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  box-shadow: 0 8px 24px rgba(26, 127, 168, 0.25);
  transition: all 0.4s ease;
}
.team-card:hover .team-avatar {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(26, 127, 168, 0.35);
}
.team-name { font-weight: 400; font-size: 1.4rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.9rem; color: var(--text-dim); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(26, 127, 168, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(11, 48, 68, 0.04);
}
.testimonial-card:hover {
  border-color: rgba(255, 107, 43, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 48, 68, 0.1);
  background: rgba(255, 255, 255, 0.85);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.95rem;
}
.testimonial-card blockquote,
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  opacity: 0.9;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.78rem; color: var(--text-muted); }

/* CTA Final */
.cta-final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(26, 127, 168, 0.04), rgba(26, 127, 168, 0.06));
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(26, 127, 168, 0.08), transparent);
}
.cta-final-content { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-final p {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto 40px;
}
.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  padding: 20px 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 60px;
  box-shadow: 0 8px 30px var(--orange-glow);
  transition: all 0.3s ease;
}
.cta-phone-big:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 43, 0.4);
}
.cta-phone-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-phone-icon svg { width: 18px; height: 18px; color: white; }

/* Footer */
.footer {
  border-top: 1px solid rgba(26, 127, 168, 0.1);
  padding: 60px 0 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.6));
  backdrop-filter: blur(8px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.footer-brand .footer-logo span { color: var(--primary); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 400px;
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange); }
.footer-facebook-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877f2;
  color: white !important;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
}
.footer-facebook-cta:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.3);
}
.footer-facebook-cta svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(26, 127, 168, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-credit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 127, 168, 0.08);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-credit a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-credit a:hover {
  color: var(--orange-light);
}
.footer-credit .zypta-supernova {
  font-family: 'Ethnocentric', 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ff6b35, #c84bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page header (inner pages) */
.page-header {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(26, 127, 168, 0.06), transparent);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  position: relative;
}
.page-header p {
  color: var(--text-dim);
  font-size: 1.2rem;
  position: relative;
}

/* Content sections */
.content-section {
  padding: 80px 0;
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text);
}
.content-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}
.content-section p, .content-section li {
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.content-section strong {
  color: var(--text);
  font-weight: 700;
}
.content-section ul {
  margin: 1rem 0 1rem 1.5rem;
  list-style: disc;
}
.content-section li::marker {
  color: var(--orange);
}

/* Contact form */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 127, 168, 0.15);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 127, 168, 0.1);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.contact-success {
  background: rgba(39, 153, 197, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.map-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 127, 168, 0.08);
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 48, 68, 0.1);
}
.map-section--compact .map-wrapper {
  max-width: 700px;
  margin: 1rem auto 0;
}
.map-wrapper--compact iframe {
  height: 350px;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--orange));
  z-index: 10000;
  transition: width 0.1s;
}

/* Responsive */
.nav-overlay { display: none; }
@media (max-width: 968px) {
  .hero { padding-top: 70px; }
  .hero-content { padding-top: 0; }
  .nav-overlay { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85vw;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-dark);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 28px 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    border-left: 1px solid rgba(26, 127, 168, 0.1);
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid rgba(26, 127, 168, 0.08);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links > li::after {
    display: none !important;
  }
  .nav-dropdown-wrap .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: rgba(26, 127, 168, 0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-dropdown-wrap.open .nav-dropdown {
    visibility: visible;
    max-height: 140px;
    padding: 4px 0;
  }
  .nav-dropdown-wrap.open .nav-chevron {
    transform: rotate(180deg);
  }
  .nav-dropdown li {
    border-bottom: 1px solid rgba(26, 127, 168, 0.06);
  }
  .nav-dropdown a {
    padding: 12px 12px 12px 32px;
    margin: 0;
    font-size: 1rem;
  }
  .nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    padding: 18px 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    border-radius: 0;
    transition: color 0.2s;
    background: none !important;
  }
  .nav-links a::after {
    display: none !important;
  }
  .nav-links a:hover,
  .nav-links a:active {
    color: var(--orange);
  }
  .nav-links .nav-facebook {
    padding: 18px 12px;
    font-size: 1.15rem;
    color: var(--text) !important;
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
  }
  .nav-links .nav-facebook:hover {
    color: var(--orange) !important;
    transform: none !important;
  }
  .nav-links .nav-cta {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 24px;
    justify-content: center;
    border-radius: 50px;
    width: 100%;
    background: var(--orange) !important;
    color: var(--white) !important;
    box-shadow: none !important;
    animation: none !important;
  }
  .nav-links .nav-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .burger {
    display: flex;
    position: relative;
    z-index: 1001;
    padding: 12px;
    margin: -12px;
    -webkit-tap-highlight-color: transparent;
  }
  .burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 48, 68, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s;
  }
  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-content,
  .hero h1,
  .hero p { text-align: center; }
  .hero h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); }
  .hero h1 .hero-question { white-space: normal; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; max-width: 100%; }
  .hero { padding-top: 65px; }
  .hero .container { padding: 0 20px; }
  .hero-content { padding-left: 0; padding-right: 0; }
  .hero-badge { font-size: 0.82rem; padding: 8px 20px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero h1 { font-size: clamp(2.5rem, 6.5vw, 3.5rem); }
  .hero h1 .hero-question { white-space: normal; }
  .hero p { font-size: 1.2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; text-align: center; }
  .stat-item .stat-number { font-size: 2.75rem; }
  .stat-item .stat-label { font-size: 0.85rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .section-pad { padding: 80px 0; }
  .section-header { text-align: center; }
  .section-header p { margin-left: auto; margin-right: auto; }
  .services-grid { justify-items: center; }
  .service-card { text-align: center; }
  .service-icon { margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .contact-grid { text-align: center; }
  .contact-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-grid .btn-primary,
  .contact-grid .btn-facebook {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .contact-form { width: 100%; max-width: 100%; }
  .page-header { text-align: center; }
  .cta-final-content { text-align: center; }
  .map-section { margin-top: 3rem; padding-top: 2rem; }
  .map-wrapper iframe,
  .map-wrapper--compact iframe { height: 280px; }
}

/* Page characters (service pages) */
.page-characters {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 127, 168, 0.08);
}
.page-char {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.page-char svg {
  width: 200px;
  height: auto;
  max-width: none;
}
.page-char-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

/* ========== ANIMATED SVG CHARACTERS ========== */
.team-character {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.team-character svg {
  filter: drop-shadow(0 4px 12px rgba(11, 48, 68, 0.08));
  transition: transform 0.4s ease;
}
.team-card:hover .team-character svg {
  transform: scale(1.05);
}

/* Body bobbing animation */
.char-body-bob {
  animation: bodyBob 3s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes bodyBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Blinking eyes */
.char-blink {
  animation: blink 4s ease-in-out infinite;
}
@keyframes blink {
  0%, 42%, 46%, 100% { opacity: 1; }
  44% { opacity: 0.05; }
}

/* Arm wave - left arm (Younes holding bolt) */
.char-arm-left {
  animation: armWaveLeft 4s ease-in-out infinite;
  transform-origin: 55px 130px;
}
@keyframes armWaveLeft {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(5deg); }
}

/* Arm wave - right arm (Etienne holding wrench) */
.char-arm-right {
  animation: armWaveRight 5s ease-in-out infinite;
  transform-origin: 145px 130px;
}
@keyframes armWaveRight {
  0%, 100% { transform: rotate(0deg); }
  30% { transform: rotate(10deg); }
  60% { transform: rotate(-5deg); }
}

/* ========== SELECTION COLOR ========== */
::selection {
  background: rgba(26, 127, 168, 0.2);
  color: var(--text);
}

/* ========== SECTION DIVIDERS ========== */
.section-pad + .section-pad {
  border-top: 1px solid rgba(26, 127, 168, 0.06);
}

/* ========== SMOOTH LINK UNDERLINES ========== */
.content-section a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(26, 127, 168, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s;
}
.content-section a:hover {
  text-decoration-color: var(--primary);
}

/* ========== WATER SPARKLE PARTICLES ========== */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes sparkleFloat {
  0% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-15px) translateX(8px); }
  50% { transform: translateY(-5px) translateX(-5px); }
  75% { transform: translateY(-20px) translateX(12px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Sparkle dots via box-shadow on a pseudo-element */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 25% 45%, rgba(200,235,250,0.7), transparent),
    radial-gradient(3px 3px at 40% 15%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 55% 60%, rgba(180,230,250,0.7), transparent),
    radial-gradient(2px 2px at 70% 30%, rgba(255,255,255,0.8), transparent),
    radial-gradient(3px 3px at 85% 55%, rgba(200,240,255,0.6), transparent),
    radial-gradient(2px 2px at 15% 75%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 60% 85%, rgba(180,230,250,0.6), transparent),
    radial-gradient(3px 3px at 90% 80%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 35% 90%, rgba(200,240,255,0.5), transparent),
    radial-gradient(2px 2px at 50% 35%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 78% 68%, rgba(180,230,250,0.5), transparent);
  background-size: 100% 100%;
  animation: sparkle 4s ease-in-out infinite, sparkleFloat 15s ease-in-out infinite;
}
