/* ========================================
   V15 — CINEMATIC FADE: Immersive client showcase
   Cream glassmorphism -> Cinematic clients -> SVG wave -> Dark editorial
   ======================================== */

:root {
  --cream: #faf9f6;
  --navy: #0c1445;
  --navy-light: #131b5e;
  --azure: #3b6df5;
  --azure-soft: #6b8ff7;
  --amber: #e8a838;
  --amber-soft: #f0c060;
  --green: #22c55e;
  --text-dark: #1a1a2e;
  --bg-dark: #0a0a0f;
  --bg-surface: #12121a;
  --bg-elevated: #1a1a26;
  --text-light: #e8e8ed;
  --text-secondary-dark: #8888a0;
  --text-muted-dark: #55556a;
  --border-dark: rgba(255, 255, 255, 0.06);
  --border-hover-dark: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(255, 255, 255, 0.55);
  --glass-border-light: rgba(255, 255, 255, 0.7);
  --shadow-glass: 0 8px 32px rgba(12, 20, 69, 0.08);
  --shadow-glass-hover: 0 16px 48px rgba(12, 20, 69, 0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --azure-light: rgba(59,109,245,0.08);
  --azure-glow: rgba(59,109,245,0.35);
  --ink: #0c1445;
  --ink-light: #3a3f5c;
  --ink-muted: #6b7094;
  --shadow-card: 0 16px 48px rgba(12,20,69,0.12);
  --shadow-card-hover: 0 24px 64px rgba(12,20,69,0.18);
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox=%270 0 256 256%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cfilter id=%27noise%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.9%27 numOctaves=%274%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27100%25%27 height=%27100%25%27 filter=%27url%28%23noise%29%27/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

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

/* ========================================
   ABSTRACT FUTURISTIC SHAPES
   ======================================== */
.abstract-shape {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  will-change: transform;
  transition: opacity 0.6s ease;
}

.abstract-shape--left {
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 415px;
  height: 886px;
  opacity: 0.12;
}

.abstract-shape--right {
  right: -5%;
  top: 55%;
  transform: translateY(-45%);
  width: 510px;
  height: 1307px;
  opacity: 0.12;
}

.abstract-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .abstract-shape--left { opacity: 0.06; left: -10%; }
  .abstract-shape--right { opacity: 0.06; right: -10%; }
}

@media (max-width: 768px) {
  .abstract-shape { display: none; }
}

/* ========================================
   CURSOR GLOW
   ======================================== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(59, 109, 245, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.cursor-glow.active {
  opacity: 1;
}

/* ========================================
   BACKGROUND SHAPES
   ======================================== */
.bg-shapes-light {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.bg-shape--1 {
  width: 500px; height: 500px;
  background: var(--azure);
  top: -100px; left: -150px;
  animation: float-shape 25s ease-in-out infinite;
}
.bg-shape--2 {
  width: 400px; height: 400px;
  background: var(--amber);
  top: 40%; right: -100px;
  animation: float-shape 30s ease-in-out infinite reverse;
}
.bg-shape--3 {
  width: 300px; height: 300px;
  background: var(--azure-soft);
  bottom: 10%; left: 20%;
  animation: float-shape 22s ease-in-out infinite 5s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -20px) rotate(5deg); }
  50% { transform: translate(-20px, 30px) rotate(-3deg); }
  75% { transform: translate(15px, 15px) rotate(4deg); }
}

/* ========================================
   COTE D'AZUR SVG ELEMENTS
   ======================================== */
.azur-soleil {
  position: absolute;
  right: 8%;
  top: -30px;
  width: 120px;
  height: 60px;
  opacity: 0.05;
  color: var(--amber);
  pointer-events: none;
}

.azur-chaise {
  opacity: 0.04;
  color: var(--azure);
  pointer-events: none;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
/* Sans JS (ou avant son chargement) : tout est visible. La classe .js est posée inline dans <head>. */
.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

.js .scale-in {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   ANIMATED GRADIENT BORDER
   ======================================== */
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-border {
  0% { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 16px;
  transition: all 0.4s ease;
  max-width: 100vw;
}

.navbar__inner {
  max-width: 1200px;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(12, 20, 69, 0.06);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .navbar__inner {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(12, 20, 69, 0.1);
}

.navbar.dark .navbar__inner {
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.navbar.dark.scrolled .navbar__inner {
  background: rgba(10, 10, 15, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.navbar.dark .navbar__logo { color: var(--text-light); }
.navbar.dark .navbar__logo img { filter: brightness(1.3); }
.navbar.dark .navbar__links a { color: var(--text-secondary-dark); }
.navbar.dark .navbar__links a:hover { color: var(--text-light); }
.navbar.dark .navbar__toggle span { background: var(--text-light); }

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  transition: color 0.4s;
}

.navbar__logo img {
  height: 36px;
  width: auto;
  transition: filter 0.4s;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azure);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.navbar__links a:hover { color: var(--azure); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--navy), var(--azure));
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(59, 109, 245, 0.3);
}

.navbar.dark .navbar__cta {
  background: var(--azure);
  box-shadow: 0 4px 20px rgba(59, 109, 245, 0.25);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 109, 245, 0.45);
  color: #fff;
}
.navbar__cta::after { display: none !important; }
.navbar__cta svg { width: 16px; height: 16px; }

.navbar__toggle {
  display: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999;
  }
  .navbar.dark .navbar__links {
    background: rgba(10, 10, 15, 0.98);
  }
  .navbar.dark .navbar__links a { color: var(--text-light); }
  .navbar__links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .navbar__links a { font-size: 1.2rem; }
  .navbar__close {
    position: absolute;
    top: 28px; right: 28px;
    font-size: 2rem;
    background: none;
    cursor: pointer;
    color: var(--navy);
    line-height: 1;
  }
  .navbar.dark .navbar__close { color: var(--text-light); }
}

@media (min-width: 769px) {
  .navbar__close { display: none; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(175deg, #faf9f6 0%, #eef3fc 60%, #dce8fb 100%);
}

.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 109, 245, 0.08);
}
.hero__decor-circle--1 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  animation: pulse-ring 8s ease-in-out infinite;
}
.hero__decor-circle--2 {
  width: 400px; height: 400px;
  top: 0; right: 0;
  animation: pulse-ring 8s ease-in-out infinite 2s;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ========================================
   NICE AMBIANCE — GSAP DECORATIVE ELEMENTS
   ======================================== */

/* Watermark NICE */
.nice-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14vw;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(59, 109, 245, 0.06);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  opacity: 0;
  white-space: nowrap;
}

/* Deco layer wrapper */
.nice-deco-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Soleil radiant */
.nice-sun {
  position: absolute;
  top: 4%;
  right: 8%;
  width: 180px;
  height: 180px;
  opacity: 0;
  z-index: 0;
}

.nice-sun-core {
  fill: var(--amber);
  filter: drop-shadow(0 0 30px rgba(232, 168, 56, 0.4));
}

.nice-sun-rays {
  transform-origin: center;
}

.nice-sun-ray {
  stroke: var(--amber);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.5;
}

/* Particules dorees */
.nice-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.5px);
}

.nice-particle.large {
  width: 6px;
  height: 6px;
  filter: blur(0px);
}

/* Skyline Nice */
.nice-skyline-layer {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 0;
  pointer-events: none;
}

.nice-skyline-path {
  fill: none;
  stroke: rgba(59, 109, 245, 0.12);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Palmiers */
.nice-palmier {
  position: absolute;
  bottom: 60px;
  z-index: 0;
  opacity: 0;
  transform-origin: bottom center;
}

.nice-palmier-left {
  left: 3%;
}

.nice-palmier-right {
  right: 3%;
}

.nice-palmier-trunk {
  stroke: rgba(12, 20, 69, 0.15);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}

.nice-palmier-frond {
  fill: none;
  stroke: rgba(34, 197, 94, 0.2);
  stroke-width: 2;
  stroke-linecap: round;
}

/* Chaises bleues */
.nice-chaises {
  position: absolute;
  bottom: 60px;
  right: 10%;
  z-index: 0;
  opacity: 0;
  transform: translateY(30px);
}

/* Vague mediterraneenne */
.nice-wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 0;
  overflow: hidden;
}

.nice-wave-layer svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
}

/* Responsive Nice elements */
@media (max-width: 1024px) {
  .nice-sun {
    width: 120px;
    height: 120px;
    top: 2%;
    right: 5%;
  }
  .nice-palmier-left { left: 1%; }
  .nice-palmier-right { right: 1%; }
  .nice-chaises {
    right: 5%;
    transform: scale(0.7) translateY(30px);
  }
  .nice-watermark {
    font-size: 18vw;
  }
}

@media (max-width: 640px) {
  .nice-watermark {
    font-size: 22vw;
  }
  .nice-palmier { display: none; }
  .nice-skyline-layer { height: 120px; }
  .nice-sun {
    width: 80px;
    height: 80px;
  }
  .nice-chaises { display: none; }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero__content { position: relative; }

.hero__micro {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  max-width: 480px;
  position: relative;
  padding-left: 20px;
}

.hero__micro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: linear-gradient(to bottom, var(--azure), var(--amber));
  border-radius: 2px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 14px;
  background: rgba(59, 109, 245, 0.06);
  border: 1px solid rgba(59, 109, 245, 0.12);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 28px;
}

.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero__title {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--navy), var(--azure));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(59, 109, 245, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(59, 109, 245, 0.45);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }

.btn-primary--dark {
  background: var(--azure);
  box-shadow: 0 6px 28px rgba(59, 109, 245, 0.3);
}
.btn-primary--dark::before {
  background: linear-gradient(135deg, var(--azure-soft), #8ba8ff);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(12, 20, 69, 0.12);
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all 0.3s;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

.btn-phone:hover {
  border-color: var(--azure);
  color: var(--azure);
  transform: translateY(-2px);
  background: rgba(59, 109, 245, 0.04);
}

.btn-phone--dark {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
}
.btn-phone--dark:hover {
  border-color: var(--azure);
  color: var(--azure-soft);
  background: rgba(59, 109, 245, 0.05);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(12, 20, 69, 0.15);
  position: relative;
  z-index: 2;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.hero__photo-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: linear-gradient(135deg, var(--azure), var(--amber), var(--azure-soft));
  z-index: 1;
  opacity: 0.5;
  filter: blur(1px);
  animation: border-glow 4s ease-in-out infinite;
}

@keyframes border-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.65; }
}

.hero__location {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    border: 1px solid rgba(212, 137, 63, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(13, 43, 78, 0.08), 0 1px 4px rgba(0,0,0,0.04);
    font-size: 0.82rem;
    font-weight: 600;
    color: #0D2B4E;
    z-index: 4;
}
.hero__location svg {
    color: var(--azure, #3b6df5);
}

.hero__glass-card {
    position: absolute;
    bottom: 24px;
    left: -32px;
    background: white;
    border: 1px solid rgba(212, 137, 63, 0.15);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(13, 43, 78, 0.08), 0 1px 4px rgba(0,0,0,0.04);
    animation: float-card 5s ease-in-out infinite;
    z-index: 3;
    min-width: 200px;
}

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

.hero__glass-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0D2B4E;
}

.hero__glass-card-role {
    font-size: 0.82rem;
    color: #5A6B7E;
    font-weight: 500;
}

.hero__glass-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #22C55E;
    font-weight: 600;
    margin-top: 4px;
}

.hero__glass-card-status .dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__micro { text-align: left; margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual {
    order: 1;
    margin-top: 0;
  }
  .hero__photo-wrapper { max-width: 340px; margin: 0 auto; }
  .hero__location {
    top: -10px;
    right: -5px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .hero__glass-card {
    left: auto;
    right: -12px;
    bottom: -20px;
  }
  @keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
}

@media (max-width: 520px) {
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-phone { justify-content: center; }
  .hero__glass-card {
    right: -4px;
    bottom: -16px;
    padding: 14px 18px;
  }
}



/* ========================================
   V17C — TIMELINE ZIGZAG CLIENT SHOWCASE
   ======================================== */
  /* ====== @PROPERTY FOR CONIC ROTATION ====== */
  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  /* ====== SECTION ====== */
  .clients-section {
    padding: 100px 0 120px;
    position: relative;
    background: var(--cream);
  }

  .clients-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(59,109,245,0.12) 50%, transparent 90%);
  }

  /* ====== GLOW CURSOR ====== */


  /* ====== HEADER ====== */
  .section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .section-header .eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--azure);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .section-header .eyebrow::before,
  .section-header .eyebrow::after {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--azure);
    opacity: 0.4;
  }

  .section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.5px;
  }

  .section-header h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--azure), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ====== TIMELINE CONTAINER ====== */
  .timeline-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    padding: 0 24px;
    z-index: 1;
  }

  /* ====== METRO LINE SVG ====== */
  .metro-line-svg {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 200px;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }

  .metro-line-svg svg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
  }

  .metro-path-bg {
    fill: none;
    stroke: #D4642A;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.12;
  }

  .metro-path-progress {
    fill: none;
    stroke: url(#tramGradient);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 1;
  }

  /* ====== TRAM (top-down view) ====== */
  .tram-vehicle {
    position: absolute;
    z-index: 7;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(212,100,42,0.4));
  }

  .tram-vehicle.is-visible {
    opacity: 1;
  }

  .tram-vehicle svg {
    display: block;
  }

  /* ====== SECTION GRID PATTERN BACKGROUND (filigrane) ====== */
  .clients-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(212,100,42,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212,100,42,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  /* ====== CLIENT ROW ====== */
  .client-row {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 110px;
    position: relative;
  }

  .client-row:last-child {
    margin-bottom: 0;
  }

  /* ====== TIMELINE DOT (now metro-style) ====== */
  .timeline-dot-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: relative;
  }

  .timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cream);
    border: 4px solid #D4642A;
    box-shadow: 0 0 0 2px rgba(212,100,42,0.15);
    transition: box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.5s ease;
    position: relative;
  }

  .timeline-dot.is-active {
    background: var(--cream);
    border-color: #D4642A;
    box-shadow: 0 0 0 3px rgba(212,100,42,0.25), 0 0 20px rgba(212,100,42,0.3), 0 0 40px rgba(212,100,42,0.1);
    transform: scale(1.4);
    animation: metroDotPulse 2s ease-in-out infinite;
  }

  @keyframes metroDotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(212,100,42,0.25), 0 0 20px rgba(212,100,42,0.3), 0 0 40px rgba(212,100,42,0.1); }
    50% { box-shadow: 0 0 0 5px rgba(212,100,42,0.15), 0 0 30px rgba(212,100,42,0.2), 0 0 50px rgba(212,100,42,0.05); }
  }

  /* ====== CONNECTION DOTS (dashed animated line) ====== */
  .connection-line {
    position: absolute;
    top: 50%;
    height: 2px;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
  }

  .connection-line svg {
    width: 100%;
    height: 2px;
    overflow: visible;
  }

  .connection-line svg line {
    stroke-dasharray: 6 4;
    stroke-dashoffset: 0;
    stroke-width: 1.5;
    stroke: #D4642A;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
  }

  .client-row.is-revealed .connection-line svg line {
    opacity: 0.3;
    animation: dashFlow 2s linear infinite;
  }

  @keyframes dashFlow {
    0%   { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -20; }
  }

  @keyframes dashFlowReverse {
    0%   { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 20; }
  }

  .client-row.left-image .connection-line svg line {
    animation-name: dashFlowReverse;
  }

  /* ====== CLIENT IMAGE ====== */
  .client-image-wrap {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }

  .client-row.left-image .client-image-wrap {
    transform: translateX(-60px);
    justify-self: end;
    padding-right: 24px;
  }

  .client-row.right-image .client-image-wrap {
    transform: translateX(60px);
    justify-self: start;
    padding-left: 24px;
  }

  .client-image-wrap.is-visible {
    opacity: 1;
    transform: translateX(0) !important;
  }

  /* ====== MORPHING BLOB BEHIND IMAGE ====== */
  .morph-blob {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: -1;
    opacity: 0.06;
  }

  .morph-blob svg {
    width: 100%;
    height: 100%;
  }

  .morph-blob.azure svg path {
    fill: var(--azure);
  }

  .morph-blob.amber svg path {
    fill: var(--amber);
  }

  .blob-path-1 {
    animation: blobMorph1 8s ease-in-out infinite;
  }
  .blob-path-2 {
    animation: blobMorph2 10s ease-in-out infinite;
  }
  .blob-path-3 {
    animation: blobMorph1 9s ease-in-out infinite reverse;
  }
  .blob-path-4 {
    animation: blobMorph2 8.5s ease-in-out infinite reverse;
  }
  .blob-path-5 {
    animation: blobMorph1 10.5s ease-in-out infinite;
  }

  @keyframes blobMorph1 {
    0%, 100% { d: path('M45,10 C65,5 90,15 95,40 C100,65 85,90 60,95 C35,100 10,85 5,60 C0,35 25,15 45,10 Z'); }
    33%      { d: path('M50,5  C75,10 95,25 90,50 C85,75 70,95 45,90 C20,85 5,70  10,45 C15,20 30,5  50,5 Z'); }
    66%      { d: path('M40,8  C60,0  92,20 97,45 C102,70 80,97 55,95 C30,93 3,78  8,53  C13,28 20,16 40,8 Z'); }
  }

  @keyframes blobMorph2 {
    0%, 100% { d: path('M50,8  C70,3  93,18 95,45 C97,72 78,95 52,97 C26,99 5,80  8,55  C11,30 30,13 50,8 Z'); }
    33%      { d: path('M42,5  C68,8  95,22 92,48 C89,74 72,98 48,95 C24,92 2,72  5,48  C8,24  16,2  42,5 Z'); }
    66%      { d: path('M48,12 C72,5  88,28 93,52 C98,76 75,92 50,90 C25,88 8,68  12,45 C16,22 24,19 48,12 Z'); }
  }

  /* ====== IMAGE BORDER GLOW (conic-gradient rotation) ====== */
  .image-glow-border {
    position: relative;
    border-radius: var(--radius);
    padding: 2px;
    background: conic-gradient(from var(--angle), var(--azure), transparent 25%, var(--amber) 50%, transparent 75%, var(--azure));
    animation: rotateBorderAngle 20s linear infinite;
    display: inline-block;
  }

  @keyframes rotateBorderAngle {
    0%   { --angle: 0deg; }
    100% { --angle: 360deg; }
  }

  .image-glow-border .client-image {
    display: block;
    border-radius: calc(var(--radius) - 2px);
  }

  /* ====== IMAGE UNBLUR REVEAL ====== */
  .client-image {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: var(--shadow-card);
    display: block;
    transition: box-shadow 0.4s ease, transform 0.4s ease, filter 1s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: blur(20px);
    transform: scale(1.1);
  }

  .client-image-wrap.is-visible .client-image {
    filter: blur(0px);
    transform: scale(1);
  }

  .client-row.left-image .client-image-wrap.is-visible .client-image {
    transform: scale(1) rotate(-1.5deg);
  }

  .client-row.right-image .client-image-wrap.is-visible .client-image {
    transform: scale(1) rotate(1.5deg);
  }

  .client-image-wrap.is-visible .client-image:hover {
    box-shadow: var(--shadow-card-hover);
    transform: rotate(0deg) scale(1.02) !important;
    filter: blur(0px);
  }

  /* ====== CLIENT CONTENT ====== */
  .client-content {
    opacity: 0;
    transition: opacity 0.7s ease 0.15s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  }

  .client-row.left-image .client-content {
    transform: translateX(60px);
    padding-left: 24px;
  }

  .client-row.right-image .client-content {
    transform: translateX(-60px);
    padding-right: 24px;
    text-align: right;
  }

  .client-content.is-visible {
    opacity: 1;
    transform: translateX(0) !important;
  }

  /* ====== LOGO GLASS PILL — BIGGER LOGOS ====== */
  .logo-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(12, 20, 69, 0.06);
    margin-bottom: 16px;
  }

  .client-row.right-image .logo-pill {
    margin-left: auto;
  }

  .client-logo {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 60px;
    min-width: 100px;
    object-fit: contain;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.06));
  }

  /* ====== TEXT SCRAMBLE TARGET ====== */
  .client-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .client-name .char {
    display: inline-block;
    transition: none;
  }

  .client-desc {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink-light);
    margin-bottom: 20px;
    max-width: 400px;
  }

  .client-row.right-image .client-desc {
    margin-left: auto;
  }

  .client-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .client-row.right-image .client-meta {
    justify-content: flex-end;
  }

  .tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--azure-light);
    color: var(--azure);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .client-loc {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--ink-muted);
    white-space: nowrap;
  }

  .client-loc svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* ====== ORDER CLASSES ====== */
  .client-row.left-image .client-image-wrap { order: 1; }
  .client-row.left-image .timeline-dot-wrap { order: 2; }
  .client-row.left-image .client-content { order: 3; }

  .client-row.right-image .client-content { order: 1; }
  .client-row.right-image .timeline-dot-wrap { order: 2; }
  .client-row.right-image .client-image-wrap { order: 3; }

  /* ====== SCROLL PROGRESS COUNTER ====== */
  .scroll-counter {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-muted);
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59,109,245,0.12);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 20px rgba(12,20,69,0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    overflow: hidden;
  }

  .scroll-counter.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .scroll-counter .current-num {
    display: inline-flex;
    flex-direction: column;
    height: 1.2em;
    overflow: hidden;
    position: relative;
    width: 1.6em;
    text-align: center;
  }

  .scroll-counter .current-num span {
    display: block;
    height: 1.2em;
    line-height: 1.2em;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--azure);
    font-weight: 800;
    font-size: 16px;
  }

  .scroll-counter .sep {
    color: var(--ink-muted);
    opacity: 0.4;
    margin: 0 2px;
  }

  .scroll-counter .total-num {
    color: var(--ink-muted);
    font-weight: 500;
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 768px) {
    .clients-section {
      padding: 72px 0 80px;
    }

    .section-header {
      margin-bottom: 56px;
    }

    .timeline-line,
    .timeline-line-progress,
    .timeline-particles,
    .connection-line,
    .metro-line-svg,
    .tram-vehicle {
      display: none;
    }

    .client-row {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 64px;
      align-items: center;
    }

    .client-row .client-image-wrap,
    .client-row .client-content,
    .client-row .timeline-dot-wrap {
      order: unset !important;
      padding: 0 !important;
      justify-self: unset !important;
      text-align: left !important;
    }

    .client-row .timeline-dot-wrap {
      order: -1 !important;
      margin-bottom: 20px;
    }

    .client-row .client-image-wrap {
      width: 100%;
      margin-bottom: 24px;
      transform: translateY(30px) !important;
    }

    .client-row .client-image-wrap.is-visible {
      transform: translateY(0) !important;
    }

    .client-row .client-content {
      width: 100%;
      transform: translateY(30px) !important;
    }

    .client-row .client-content.is-visible {
      transform: translateY(0) !important;
    }

    .client-image {
      max-width: 100%;
      transform: rotate(0deg) !important;
    }

    .client-image-wrap.is-visible .client-image {
      transform: scale(1) rotate(0deg) !important;
    }

    .client-row.left-image .client-image-wrap.is-visible .client-image,
    .client-row.right-image .client-image-wrap.is-visible .client-image {
      transform: scale(1) rotate(0deg) !important;
    }

    .client-row.right-image .logo-pill {
      margin-left: 0;
    }

    .client-row.right-image .client-desc {
      margin-left: 0;
    }

    .client-row.right-image .client-meta {
      justify-content: flex-start;
    }

    .client-name {
      font-size: 21px;
    }

    .client-desc {
      font-size: 15px;
      max-width: 100%;
    }

    .morph-blob {
      display: none;
    }

    .scroll-counter {
      bottom: 16px;
      right: 16px;
    }


    .client-logo {
      min-width: 80px;
      max-width: 100px;
    }
  }


/* ========================================
   SERVICES — Module 4d-v2 (masonry)
   ======================================== */

.services {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--cream);
}

/* ── Section header ── */
.services-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.services-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--azure);
  background: rgba(59, 109, 245, 0.08);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.services-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto;
}

.services-header h2 .highlight {
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Masonry Grid ── */
.masonry-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Card base ── */
.masonry-card,
.service-card {
  position: relative;
  border-radius: 24px;
  padding: 44px 40px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(50px);
}

.masonry-card.visible,
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Number watermark ── */
.card-watermark {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
}

/* ── Frosted icon circle ── */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

/* ── Card content ── */
.card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.card-features li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.card-features li .check svg {
  width: 11px;
  height: 11px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--azure);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.card-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--azure);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.card-cta:hover { color: var(--navy); }
.card-cta:hover::after { opacity: 0.7; }
.card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.card-cta:hover svg { transform: translateX(3px); }

.card-ecommerce .card-cta { color: var(--amber); }
.card-ecommerce .card-cta::after { background: var(--amber); }
.card-ecommerce .card-cta:hover { color: var(--navy); }

.card-maintenance .card-cta { color: var(--green); }
.card-maintenance .card-cta::after { background: var(--green); }
.card-maintenance .card-cta:hover { color: var(--navy); }

.card-ia .card-cta { color: #8b5cf6; }
.card-ia .card-cta::after { background: #8b5cf6; }
.card-ia .card-cta:hover { color: var(--navy); }

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  padding: 4px 12px;
  border-radius: 100px;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(232, 168, 56, 0); }
}

/* ═══ Card 1: HERO — spans 2 columns ═══ */
.card-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 56px 52px;
  background: #fff;
  border: 1px solid rgba(59, 109, 245, 0.08);
  box-shadow: 0 4px 24px rgba(12, 20, 69, 0.04);
}

.card-hero:hover {
  box-shadow: 0 16px 48px rgba(59, 109, 245, 0.1);
}

.card-hero .card-watermark {
  opacity: 0.06;
  color: var(--azure);
  font-size: 10rem;
  top: -15px;
  right: 30px;
}

.card-hero .card-icon {
  background: linear-gradient(135deg, rgba(59, 109, 245, 0.1), rgba(107, 143, 247, 0.06));
  border: 1px solid rgba(59, 109, 245, 0.12);
}

.card-hero .card-icon svg {
  color: var(--azure);
}

.card-hero:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(59, 109, 245, 0.15);
}

.card-hero .card-title {
  font-size: 1.75rem;
  color: var(--navy);
}

.card-hero .card-desc {
  color: rgba(12, 20, 69, 0.6);
}

.card-hero .card-features li {
  color: var(--navy);
}

.card-hero .card-features li .check {
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
}

.card-hero:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(59, 109, 245, 0.3);
}

.hero-icon-side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-icon-large {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 109, 245, 0.08) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-icon-circle {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(59, 109, 245, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hero:hover .hero-icon-circle {
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(59, 109, 245, 0.12);
}

.hero-icon-circle svg {
  width: 56px;
  height: 56px;
  color: var(--azure);
}

/* ═══ Card 2: E-commerce — amber ═══ */
.card-ecommerce {
  background: linear-gradient(145deg, #fef7ee 0%, #fbf8f4 100%);
  border: 1px solid rgba(232, 168, 56, 0.1);
}

.card-ecommerce .card-watermark { color: var(--amber); }
.card-ecommerce .card-icon {
  background: rgba(232, 168, 56, 0.08);
  border: 1px solid rgba(232, 168, 56, 0.12);
}
.card-ecommerce .card-icon svg { color: var(--amber); }
.card-ecommerce:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(232, 168, 56, 0.2);
}
.card-ecommerce .card-title { color: var(--navy); }
.card-ecommerce .card-desc { color: rgba(12, 20, 69, 0.6); }
.card-ecommerce .card-features li { color: var(--navy); }
.card-ecommerce .card-features li .check {
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
}
.card-ecommerce:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(232, 168, 56, 0.18);
}

/* ═══ Card 3: Maintenance — green ═══ */
.card-maintenance {
  background: linear-gradient(145deg, #f0faf4 0%, #f7fbf8 100%);
  border: 1px solid rgba(34, 197, 94, 0.08);
}

.card-maintenance .card-watermark { color: var(--green); }
.card-maintenance .card-icon {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.1);
}
.card-maintenance .card-icon svg { color: var(--green); }
.card-maintenance:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
}
.card-maintenance .card-title { color: var(--navy); }
.card-maintenance .card-desc { color: rgba(12, 20, 69, 0.6); }
.card-maintenance .card-features li { color: var(--navy); }
.card-maintenance .card-features li .check {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}
.card-maintenance:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.15);
}

/* ═══ Card 4: Google Ads — azure ═══ */
.card-ads {
  background: linear-gradient(145deg, #f0f4fe 0%, #f7f8fc 100%);
  border: 1px solid rgba(59, 109, 245, 0.08);
}

.card-ads .card-watermark { color: var(--azure); }
.card-ads .card-icon {
  background: rgba(59, 109, 245, 0.08);
  border: 1px solid rgba(59, 109, 245, 0.1);
}
.card-ads .card-icon svg { color: var(--azure); }
.card-ads:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(59, 109, 245, 0.2);
}
.card-ads .card-title { color: var(--navy); }
.card-ads .card-desc { color: rgba(12, 20, 69, 0.6); }
.card-ads .card-features li { color: var(--navy); }
.card-ads .card-features li .check {
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
}
.card-ads:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(59, 109, 245, 0.15);
}

/* ═══ Card 5: IA — purple ═══ */
.card-ia {
  background: linear-gradient(135deg, #fffcf5 0%, #f8f9fe 60%, #fefaf2 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.card-ia:hover {
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.12);
}

.card-ia .card-watermark { color: #8b5cf6; opacity: 0.07; }
.card-ia .card-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(139, 92, 246, 0.12);
}
.card-ia .card-icon svg { color: #8b5cf6; }
.card-ia .card-title { color: var(--navy); }
.card-ia .card-desc { color: rgba(12, 20, 69, 0.6); }
.card-ia .card-features li { color: var(--navy); }
.card-ia .card-features li .check {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* ── Banner CTA ── */
.services-banner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.banner-card {
  background: linear-gradient(135deg, var(--navy) 0%, #162060 50%, #1a2870 100%);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.banner-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 109, 245, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.banner-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.banner-text {
  position: relative;
  z-index: 1;
}

.banner-text h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.banner-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.banner-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.banner-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.25);
}

.banner-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 168, 56, 0.35);
}

.banner-cta a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.banner-cta a:hover svg {
  transform: translateX(3px);
}

/* ── Services responsive ── */
@media (max-width: 900px) {
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .card-hero {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }

  .hero-icon-side {
    order: -1;
    justify-content: center;
  }

  .hero-icon-large {
    width: 120px;
    height: 120px;
  }

  .hero-icon-circle {
    width: 90px;
    height: 90px;
  }

  .hero-icon-circle svg {
    width: 42px;
    height: 42px;
  }

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

  .card-watermark {
    font-size: 5rem;
  }

  .card-hero .card-watermark {
    font-size: 6rem;
  }

  .banner-card {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }
}

@media (max-width: 480px) {
  .services-header {
    padding: 0 20px 40px;
  }

  .masonry-grid {
    padding: 0 16px;
    gap: 16px;
  }

  .masonry-card {
    padding: 28px 22px;
  }

  .card-ia {
    padding: 28px 22px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-hero .card-title {
    font-size: 1.35rem;
  }

  .card-watermark {
    font-size: 4rem;
    right: 10px;
  }

  .card-hero .card-watermark {
    font-size: 5rem;
  }

  .hero-icon-large {
    width: 100px;
    height: 100px;
  }

  .hero-icon-circle {
    width: 76px;
    height: 76px;
  }

  .hero-icon-circle svg {
    width: 36px;
    height: 36px;
  }

  .banner-card {
    padding: 36px 24px;
  }

  .banner-cta a {
    padding: 14px 24px;
    font-size: 0.875rem;
  }
}

/* ========================================
   WAVE SEPARATOR (Cream to Dark) — SVG ONLY
   ======================================== */
.wave-transition {
  position: relative;
  z-index: 1;
  height: 60px;
  background: var(--cream);
  overflow: visible;
}

.wave-transition svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  display: block;
}

/* ========================================
   WHY ME — dark mode
   ======================================== */
.why-me {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  z-index: 1;
}

.why-me::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59, 109, 245, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-me .container {
  position: relative;
  z-index: 1;
}

.why-me__header {
  text-align: center;
  margin-bottom: 56px;
}

.why-me__header .section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(232, 168, 56, 0.08);
  border: 1px solid rgba(232, 168, 56, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.why-me__header .section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.why-me__story {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.why-me__photo-wrapper {
  position: relative;
}

.why-me__photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: contrast(1.05) brightness(0.9);
}

.why-me__photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(to top, rgba(10, 10, 15, 0.5) 0%, transparent 50%),
              linear-gradient(135deg, rgba(59, 109, 245, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.why-me__intro {
  font-size: 1.05rem;
  color: var(--text-secondary-dark);
  line-height: 1.85;
  font-weight: 300;
  font-style: italic;
}

.why-me__intro + .why-me__intro {
  margin-top: 16px;
}

.why-me__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-me__card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: all 0.4s ease;
  text-align: center;
}

.why-me__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-me__card-icon { font-size: 1.5rem; margin-bottom: 14px; }

.why-me__card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.why-me__card-text {
  font-size: 0.85rem;
  color: var(--text-secondary-dark);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 960px) {
  .why-me__story { grid-template-columns: 1fr; }
  .why-me__photo-wrapper { max-width: 500px; margin: 0 auto; }
  .why-me__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-me__grid { grid-template-columns: 1fr; }
}

/* ========================================
   METHOD — dark
   ======================================== */
.method {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
  z-index: 1;
}

.method__header {
  text-align: center;
  margin-bottom: 72px;
}

.method__header .section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 109, 245, 0.08);
  border: 1px solid rgba(59, 109, 245, 0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azure-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.method__header .section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.method__header .section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber), var(--amber-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.method__header .section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary-dark);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}

.method__steps-h {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.method__steps-h::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 1px;
  background: linear-gradient(90deg, var(--border-dark), var(--azure), var(--border-dark));
  z-index: 0;
}

.method__step-h {
  text-align: center;
  position: relative;
  z-index: 1;
}

.method__step-h-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.method__step-h-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.method__step-h-desc {
  font-size: 0.88rem;
  color: var(--text-secondary-dark);
  line-height: 1.65;
  font-weight: 300;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .method__steps-h {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .method__steps-h::before { display: none; }
}

/* ========================================
   TESTIMONIALS — dark with Google header
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials .section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 109, 245, 0.08);
  border: 1px solid rgba(59, 109, 245, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azure);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.testimonials .section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.testimonials__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.google-g {
  font-size: 1.3rem;
  font-weight: 800;
}
.google-g .g-blue { color: #4285F4; }
.google-g .g-red { color: #EA4335; }
.google-g .g-yellow { color: #FBBC05; }
.google-g .g-green { color: #34A853; }

.testimonials__google-rating {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonials__google-stars {
  display: flex;
  gap: 2px;
}

.testimonials__google-stars svg {
  width: 16px;
  height: 16px;
  color: #FBBC05;
  fill: #FBBC05;
}

.testimonials__google-count {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.testimonials__carousel-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* pas de scroll-behavior:smooth ici : avec le snap, Chrome déclenche un scroll au chargement et cesse de mesurer le LCP */
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}
.testimonials__carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(59, 109, 245, 0.12);
  border-radius: var(--radius);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(59, 109, 245, 0.07);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 109, 245, 0.25);
  box-shadow: 0 12px 40px rgba(59, 109, 245, 0.12);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #FBBC05;
}

.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-card__avatar--jf { background: linear-gradient(135deg, #3b6df5, #6b8ff7); }
.testimonial-card__avatar--vb { background: linear-gradient(135deg, #22c55e, #4ade80); }
.testimonial-card__avatar--gc { background: linear-gradient(135deg, #e8a838, #f0c060); }
.testimonial-card__avatar--ma { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.testimonial-card__avatar--zf { background: linear-gradient(135deg, #ec4899, #f472b6); }

.testimonial-card__name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonials__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.testimonials__nav-btn:hover {
  background: var(--azure);
  border-color: var(--azure);
  color: #fff;
}
.testimonials__nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 300px; }
}

/* ========================================
   CONTACT — dark
   ======================================== */
.contact {
  padding: 120px 0 140px;
  position: relative;
  background: var(--bg-dark);
  z-index: 1;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59, 109, 245, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact .section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 109, 245, 0.08);
  border: 1px solid rgba(59, 109, 245, 0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azure-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.contact .section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.contact .section__subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary-dark);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact__form-wrapper {
  padding: 44px;
  background: var(--bg-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-xs);
  font-size: 0.95rem;
  transition: all 0.3s;
  color: var(--text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 4px rgba(59, 109, 245, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width=%2712%27 height=%278%27 viewBox=%270 0 12 8%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 1.5L6 6.5L11 1.5%27 stroke=%27%238888a0%27 stroke-width=%271.5%27 stroke-linecap=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255, 255, 255, 0.04);
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-surface);
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
  background: var(--azure);
  box-shadow: 0 8px 32px rgba(59, 109, 245, 0.3);
}

.contact__info { padding-top: 20px; }

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.contact__method:hover {
  transform: translateX(4px);
  border-color: var(--border-hover-dark);
  background: rgba(255, 255, 255, 0.05);
}

.contact__method-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--azure), var(--azure-soft));
  border-radius: 12px;
  flex-shrink: 0;
}

.contact__method-icon svg { width: 22px; height: 22px; color: #fff; }

.contact__method-label {
  font-size: 0.78rem;
  color: var(--text-muted-dark);
  margin-bottom: 2px;
}

.contact__method-value {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1rem;
}

.contact__promise {
  padding: 20px 24px;
  background: rgba(59, 109, 245, 0.04);
  border: 1px solid rgba(59, 109, 245, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary-dark);
  font-weight: 300;
}

.contact__promise svg {
  width: 20px; height: 20px;
  color: var(--azure);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact .container { grid-template-columns: 1fr; }
  .contact__form-wrapper { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-surface);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azure), var(--amber), var(--azure-soft), transparent);
  opacity: 0.4;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__left {
  font-size: 0.85rem;
  color: var(--text-secondary-dark);
}

.footer__left a {
  color: var(--azure-soft);
  transition: color 0.3s;
}
.footer__left a:hover { color: var(--azure); }

.footer__siret {
  font-size: 0.78rem;
  color: var(--text-secondary-dark);
  margin-top: 6px;
}

.footer__right {
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  font-style: italic;
}

.footer__chaise {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.15;
}

@media (max-width: 600px) {
  .footer .container { flex-direction: column; text-align: center; }
}

/* ========================================
   BLOG — public listing, category/tag, article
   ======================================== */

.blog-index,
.blog-article {
  padding: 160px 0 120px;
  background: var(--cream);
}

.blog-index__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.blog-index__header .section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--azure-light);
  border: 1px solid rgba(59, 109, 245, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azure);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.blog-index__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.blog-index__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.blog-breadcrumbs a {
  color: var(--ink-muted);
  transition: color 0.25s;
}
.blog-breadcrumbs a:hover { color: var(--azure); }
.blog-breadcrumbs span[aria-current] {
  color: var(--navy);
  font-weight: 600;
}

/* ── Layout: main + sidebar ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.blog-layout__sidebar {
  position: sticky;
  top: 120px;
}

/* ── Card grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy), var(--azure));
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image img { transform: scale(1.06); }

.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.blog-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 26px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 4px;
}
.blog-card__dot { opacity: 0.5; }

.blog-empty {
  padding: 64px 24px;
  text-align: center;
  color: var(--ink-muted);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ── Pagination ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.blog-pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: all 0.25s;
}

.blog-pagination__item:hover:not(.blog-pagination__item--disabled):not(.blog-pagination__item--active) {
  background: var(--azure-light);
  color: var(--azure);
}

.blog-pagination__item--active {
  background: var(--azure);
  color: #fff;
  box-shadow: 0 6px 20px rgba(59, 109, 245, 0.35);
}

.blog-pagination__item--disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ── Sidebar ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-sidebar__section {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.blog-sidebar__heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.blog-sidebar-categories {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-sidebar-categories__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-light);
  transition: all 0.25s;
}

.blog-sidebar-categories__link:hover {
  background: var(--azure-light);
  color: var(--azure);
}

.blog-sidebar-categories__link--active {
  background: var(--azure);
  color: #fff;
  font-weight: 600;
}

.blog-sidebar-categories__count {
  font-size: 0.78rem;
  opacity: 0.7;
}

.blog-sidebar-cta {
  text-align: left;
}

.blog-sidebar-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.blog-sidebar-cta__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.blog-sidebar-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--azure);
  transition: gap 0.25s;
}
.blog-sidebar-cta__link:hover { gap: 10px; }

/* ── Single article ── */
.blog-article__header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.blog-article__category {
  display: inline-flex;
  padding: 6px 16px;
  background: var(--azure-light);
  border: 1px solid rgba(59, 109, 245, 0.15);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--azure);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.blog-article__category:hover { background: rgba(59, 109, 245, 0.16); }

.blog-article__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.blog-article__excerpt {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.blog-article__author { font-weight: 600; color: var(--navy); }
.blog-article__separator { opacity: 0.5; }

.blog-article__image {
  max-width: 900px;
  margin: 0 auto 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.blog-article__image img { width: 100%; height: auto; display: block; }

.blog-article__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-article__sidebar {
  position: sticky;
  top: 120px;
}

/* Rich-text content rendered from CKEditor */
.blog-article__content {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.blog-article__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 44px 0 18px;
}

.blog-article__content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 36px 0 14px;
}

.blog-article__content p { margin-bottom: 20px; }

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 20px 24px;
}
.blog-article__content li { margin-bottom: 8px; }

.blog-article__content a {
  color: var(--azure);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article__content blockquote {
  border-left: 3px solid var(--azure);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink-light);
}

.blog-article__content img,
.blog-article__content figure {
  margin: 32px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-article__content figure img { margin: 0; }

.blog-article__content figcaption {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 8px;
}

.blog-article__content code {
  background: var(--azure-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-article__content pre {
  background: var(--navy);
  color: var(--text-light);
  padding: 20px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 24px 0;
}
.blog-article__content pre code { background: none; padding: 0; }

/* ── Tags ── */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 44px 0;
  padding-top: 32px;
  border-top: 1px solid rgba(12, 20, 69, 0.08);
}

.blog-tags__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.blog-tags__pill {
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--azure-light);
  color: var(--azure);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s;
}
.blog-tags__pill:hover { background: var(--azure); color: #fff; }

/* ── Prev / next ── */
.blog-prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.blog-prev-next__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.blog-prev-next__item:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.blog-prev-next__item--next { text-align: right; align-items: flex-end; }

.blog-prev-next__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--azure);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-prev-next__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── CTA block ── */
.blog-cta {
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  text-align: center;
}

.blog-cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.blog-cta__text {
  font-family: var(--font-body);
  color: var(--text-secondary-dark);
  margin-bottom: 24px;
}

/* ── Related articles ── */
.blog-related {
  max-width: 1200px;
  margin: 72px auto 0;
  padding-top: 56px;
  border-top: 1px solid rgba(12, 20, 69, 0.08);
}

.blog-related__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .blog-layout,
  .blog-article__layout {
    grid-template-columns: 1fr;
  }
  .blog-layout__sidebar,
  .blog-article__sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 767px) {
  .blog-index,
  .blog-article {
    padding: 130px 0 80px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-prev-next {
    grid-template-columns: 1fr;
  }
  .blog-prev-next__item--next {
    text-align: left;
    align-items: flex-start;
  }
}

/* Blog Table of Contents */
.blog-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  background: #fff;
  border: 1px solid rgba(59,109,245,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  order: 2;
}
.blog-article__layout { display: flex; gap: 40px; }
.blog-article__main { flex: 1; min-width: 0; order: 1; }
.blog-toc { width: 260px; flex-shrink: 0; }
.blog-toc__title {
  font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy, #0c1445);
  margin-bottom: 12px;
}
.blog-toc__list { list-style: none; padding: 0; margin: 0; }
.blog-toc__item { margin-bottom: 6px; }
.blog-toc__item a {
  font-size: 0.82rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
  display: block;
}
.blog-toc__item a:hover { color: var(--azure, #3b6df5); }
.blog-toc__item--h3 { padding-left: 14px; }
@media (max-width: 960px) {
  .blog-toc { display: none; }
  .blog-article__layout { flex-direction: column; }
}

/* ---- Accessibilité : contrastes + liens distinguables ---- */
.footer__left > a, .footer__links a { text-decoration: underline; text-underline-offset: 3px; }
.footer__tribute { font-size: 0.78rem; color: var(--text-secondary-dark); font-style: italic; max-width: 300px; }
.services-header .label { color: #2a54d4; }
.navbar__close-item { list-style: none; display: contents; }

/* LCP : le watermark décoratif est peint dès le premier rendu (fondu CSS), pas après le chargement de GSAP */
@keyframes nice-wm-in { from { opacity: 0.01; } to { opacity: 1; } }
.nice-watermark { opacity: 1; animation: nice-wm-in 1.5s ease-in-out both; }

/* Menu mobile : backdrop-filter sur .navbar__inner en fait le conteneur du menu position:fixed → on le retire quand le menu est ouvert */
@media (max-width: 768px) {
  .navbar.menu-open .navbar__inner,
  .navbar__inner:has(.navbar__links.open) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .navbar__links { height: 100vh; height: 100dvh; }
}


/* ========================================
   PAGES OFFRE (Ads) — /creation-site-internet-nice, /refonte-site-internet-nice, /maintenance-site-web-nice
   ======================================== */
.hero--offer { min-height: auto; }
.offer-hero__note { margin-top: 18px; font-size: 0.9rem; color: var(--text-muted, #55556a); }
.offer-included, .offer-cases, .offer-faq { padding: 96px 0; position: relative; }
.offer-cases { background: var(--bg-surface-light, #f6f7fb); }
.offer-included .section__title, .offer-cases .section__title, .offer-faq .section__title { margin-bottom: 40px; max-width: 760px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card { background: #fff; border: 1px solid rgba(12, 20, 69, 0.08); border-radius: var(--radius, 16px); padding: 28px; box-shadow: 0 8px 30px rgba(12, 20, 69, 0.05); }
.offer-card__check { width: 36px; height: 36px; border-radius: 10px; background: rgba(59, 109, 245, 0.1); color: var(--azure); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.offer-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.offer-card__desc { color: var(--text-muted, #55556a); line-height: 1.6; font-size: 0.97rem; }
.offer-case { background: #fff; border-radius: var(--radius, 16px); overflow: hidden; border: 1px solid rgba(12, 20, 69, 0.08); }
.offer-case__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.offer-case__body { padding: 20px 24px 24px; }
.offer-case__title { font-family: var(--font-display); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.offer-case__desc { color: var(--text-muted, #55556a); font-size: 0.95rem; line-height: 1.55; }
.offer-cases__more { margin-top: 28px; }
.offer-cases__more a { color: var(--azure); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.offer-faq__list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }
.offer-faq__item { background: #fff; border: 1px solid rgba(12, 20, 69, 0.08); border-radius: 14px; padding: 4px 22px; }
.offer-faq__q { cursor: pointer; font-family: var(--font-display); font-weight: 700; color: var(--navy); padding: 16px 0; list-style: none; position: relative; padding-right: 32px; }
.offer-faq__q::-webkit-details-marker { display: none; }
.offer-faq__q::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--azure); font-size: 1.4rem; font-weight: 400; }
.offer-faq__item[open] .offer-faq__q::after { content: "\2212"; }
.offer-faq__a { color: var(--text-muted, #55556a); line-height: 1.65; padding: 0 0 18px; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .offer-grid { grid-template-columns: 1fr; } .offer-included, .offer-cases, .offer-faq { padding: 64px 0; } }

