/* ============================================================
   EASYPRINT — SECTIONS HOMEPAGE
   Styles spécifiques à chaque section (layout, background, spacing)
   ============================================================ */

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

.sr-only--focusable:focus {
  position: fixed;
  top: var(--ep-space-4);
  left: var(--ep-space-4);
  width: auto;
  height: auto;
  padding: var(--ep-space-3) var(--ep-space-6);
  clip: auto;
  background: var(--ep-electric);
  color: var(--ep-cloud);
  border-radius: var(--ep-radius-sm);
  font-weight: 600;
  z-index: var(--ep-z-toast);
}

.section-header {
  text-align: center;
  margin-bottom: var(--ep-space-16);
}

.section-title {
  font-family: var(--ep-font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--ep-cloud);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--ep-space-4);
}

.section-title--dark { color: var(--ep-ink); }

.section-subtitle {
  font-family: var(--ep-font-body);
  font-size: var(--ep-text-lg);
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
}

/* ── [01] HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 115svh;
  min-height: 115vh;
  display: flex;
  align-items: flex-start;
  background: var(--ep-grad-hero);
  overflow: hidden;
  padding-top: var(--ep-nav-height);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Orbes de fond */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__orb:first-of-type {
  top: -15%;
  right: -10%;
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(circle, rgba(37,142,234,0.18) 0%, transparent 70%);
  animation: float 10s var(--ep-ease-in-out) infinite;
}

.hero__orb--secondary {
  bottom: -10%;
  left: -5%;
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  animation: float 14s var(--ep-ease-in-out) infinite reverse;
}

.hero__content {
  position: relative;
  z-index: var(--ep-z-card);
  padding-top: calc(150px - var(--ep-nav-height));
  padding-bottom: var(--ep-space-16);
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--ep-space-8);
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero__text-col {
  display: flex;
  flex-direction: column;
  gap: var(--ep-space-4);
  max-width: 560px;
}

.hero__title {
  font-family: var(--ep-font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--ep-cloud);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero__accent {
  background: var(--ep-grad-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* kept for backward compat */
.hero__title-gradient {
  background: var(--ep-grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Ligne de précision sous le H1 */
.hero__precision-line {
  width: 0;
  height: var(--ep-line-thickness);
  background: var(--ep-line-color);
  box-shadow: var(--ep-line-glow);
  margin-top: 0;
  margin-bottom: 0;
  transition: width 0.8s var(--ep-ease-out);
  flex-shrink: 0;
}

.hero__precision-line.is-drawn {
  width: min(280px, 60%);
}

.hero__subtitle {
  font-family: var(--ep-font-heading);
  font-size: clamp(var(--ep-text-base), 1.5vw, var(--ep-text-lg));
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
  margin: 0;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ep-space-4);
  margin: 0;
}

/* Logo visuel droite */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: scale(0.95) translateY(12px);
  animation: heroVisualIn 1s var(--ep-ease-out) 0.4s forwards;
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.hero__visual picture {
  display: block;
  width: 100%;
}

.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ep-radius-lg);
  box-shadow:
    0 24px 70px rgba(10, 22, 40, 0.5),
    0 0 100px rgba(37, 142, 234, 0.18);
  animation: heroLogoEntry 1s var(--ep-ease-out) 0.3s both;
}

@keyframes heroLogoEntry {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__scroll {
  position: absolute;
  bottom: var(--ep-space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--ep-z-card);
}

/* ── [02] STATS BAND ──────────────────────────────────────── */
.stats-band {
  position: relative;
  background: var(--ep-grad-electric);
  overflow: hidden;
  padding-block: var(--ep-space-12);
}

.stats-band__beam {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-200px);
  animation: beamSweep 6s var(--ep-ease-in-out) infinite;
  pointer-events: none;
}

.stats-band__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

/* ── [03] EXPERTISES ──────────────────────────────────────── */
.expertises {
  background: var(--ep-ink);
  padding-block: var(--ep-section-py);
  position: relative;
}

.expertises::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(37,142,234,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Grille 2×2 flip cards */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ep-space-4);
}

/* ── FLIP CARDS 3D ────────────────────────────────────────── */
.flip-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 340px;
  cursor: pointer;
  background: transparent;
  perspective: 1500px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ep-ease-out);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--ep-radius-lg);
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: var(--ep-shadow-md);
}

/* ─ FACE AVANT ─────────────────────────────────────────────── */
.flip-card-front {
  background: var(--ep-ink);
  display: flex;
  flex-direction: column;
}

.flip-card-front-header {
  padding: var(--ep-space-3) var(--ep-space-4);
  background: var(--ep-ink);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
  z-index: 3;
}

.flip-card-number {
  font-family: var(--ep-font-mono);
  font-size: var(--ep-text-sm);
  color: var(--ep-azur);
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
}

.flip-card-title {
  font-family: var(--ep-font-display);
  font-size: clamp(var(--ep-text-lg), 2vw, var(--ep-text-2xl));
  color: var(--ep-cloud);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.flip-card-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ep-ink) 0%, var(--ep-ink-deep) 100%);
}

.flip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Legacy elements — hidden with new structure */
.flip-card-overlay,
.flip-card-front-content,
.flip-card-hint {
  display: none;
}

/* Badge HP PARTNER GOLD — carte 01 */
.flip-card[data-pillar="01"] .flip-card-image::after {
  content: "★ HP PARTNER GOLD";
  position: absolute;
  top: var(--ep-space-2);
  right: var(--ep-space-2);
  padding: 0.4rem 0.75rem;
  background: linear-gradient(135deg, #d4af37, #f4d77a);
  border-radius: var(--ep-radius-full);
  font-family: var(--ep-font-mono);
  font-size: 0.65rem;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  font-weight: 700;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

/* Badge UNIQUE À LA RÉUNION — carte 04 */
.flip-card[data-pillar="04"] .flip-card-image::after {
  content: "UNIQUE À LA RÉUNION";
  position: absolute;
  top: var(--ep-space-2);
  right: var(--ep-space-2);
  padding: 0.4rem 0.75rem;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid var(--ep-azur);
  border-radius: var(--ep-radius-full);
  font-family: var(--ep-font-mono);
  font-size: 0.65rem;
  color: var(--ep-azur);
  letter-spacing: 0.1em;
  font-weight: 600;
  z-index: 4;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ─ FACE ARRIÈRE ────────────────────────────────────────────── */
.flip-card-back {
  background: linear-gradient(135deg, var(--ep-ink) 0%, #0D2547 100%);
  border: 1px solid rgba(37, 142, 234, 0.30);
  transform: rotateY(180deg);
  display: flex;
  align-items: stretch;
}

.flip-card-back-content {
  padding: var(--ep-space-6) var(--ep-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--ep-space-3);
  width: 100%;
  justify-content: center;
}

.flip-card-back-number {
  font-family: var(--ep-font-mono);
  font-size: var(--ep-text-sm);
  color: var(--ep-azur);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.flip-card-back-title {
  font-family: var(--ep-font-display);
  font-size: var(--ep-text-xl);
  color: var(--ep-cloud);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.flip-card-back-desc {
  font-size: var(--ep-text-sm);
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
  margin: 0;
}

.flip-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--ep-space-2);
}

.flip-card-features li {
  font-size: var(--ep-text-sm);
  color: var(--ep-cloud);
  display: flex;
  align-items: flex-start;
  gap: var(--ep-space-2);
  line-height: var(--ep-lh-normal);
}

.flip-card-features li::before {
  content: "✓";
  color: var(--ep-azur);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.flip-card-cta {
  position: relative;
  z-index: 10;
  pointer-events: auto;
  margin-top: var(--ep-space-1);
  padding-block: 0.5rem;
  font-family: var(--ep-font-mono);
  font-size: var(--ep-text-sm);
  color: var(--ep-azur);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: var(--ep-space-2);
  transition: gap var(--ep-duration-normal) var(--ep-ease-out),
              color var(--ep-duration-normal) var(--ep-ease-out);
  align-self: flex-start;
}

.flip-card-cta:hover {
  gap: var(--ep-space-4);
  color: var(--ep-cloud);
}

.flip-card:focus-visible {
  outline: 2px solid var(--ep-azur);
  outline-offset: 4px;
  border-radius: var(--ep-radius-lg);
}

/* ─ REDUCED MOTION FALLBACK ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__visual {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .flip-card-inner {
    transition: none;
  }
  .flip-card:hover .flip-card-inner,
  .flip-card:focus-within .flip-card-inner,
  .flip-card.is-flipped .flip-card-inner {
    transform: none;
  }
  .flip-card-back {
    position: relative;
    transform: none;
    margin-top: var(--ep-space-2);
    border-radius: var(--ep-radius-lg);
  }
}

/* ── [05bis] VISION ──────────────────────────────────────── */
.vision {
  background: var(--ep-ink);
  padding-block: var(--ep-space-12);
}

.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ep-space-16);
  align-items: center;
}

.vision__eyebrow {
  font-family: var(--ep-font-mono);
  font-size: var(--ep-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ep-azur);
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--ep-space-4);
}

.vision__title {
  font-family: var(--ep-font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--ep-cloud);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--ep-space-6);
}

.vision__sub {
  font-size: var(--ep-text-lg);
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
  margin-bottom: var(--ep-space-10);
  max-width: 520px;
}

.vision__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--ep-radius-lg);
  box-shadow: var(--ep-shadow-lg), 0 4px 24px rgba(10,22,40,0.30);
}

/* ── [04] PROCESSUS ───────────────────────────────────────── */
.process {
  background: var(--ep-ink-deep);
  padding-block: var(--ep-section-py);
  position: relative;
  /* overflow: hidden supprimé — coupait le 5e step en absolute grid */
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ep-electric), transparent);
  opacity: 0.3;
}

.process__wrapper {
  position: relative;
}

.process__line {
  position: absolute;
  top: 50px;
  /* Aligné sur les centres des icônes (64px/2 = 32px depuis le bord de chaque colonne) */
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 1px;
  background: rgba(37, 142, 234, 0.12);
  pointer-events: none;
}

.process__line-fill {
  height: 100%;
  width: 0%;
  background: var(--ep-line-color);
  box-shadow: var(--ep-line-glow);
  transition: width 1.5s var(--ep-ease-out);
}

.process__line-fill.is-drawn { width: 100%; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--ep-space-4);
  position: relative;
  z-index: 1;
}

.process-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 142, 234, 0.10);
  border: 1px solid rgba(37, 142, 234, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ep-electric);
  margin-bottom: var(--ep-space-4);
  transition:
    background var(--ep-duration-slow) var(--ep-ease-out),
    border-color var(--ep-duration-slow) var(--ep-ease-out);
}

.process-step.is-visible .process-step__icon {
  background: rgba(37, 142, 234, 0.18);
  border-color: var(--ep-electric);
}

/* ── [05] POURQUOI EP ─────────────────────────────────────── */
.why-ep {
  background: var(--ep-ink);
  padding-block: var(--ep-section-py);
  position: relative;
  overflow: hidden;
}

.why-ep::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(37,142,234,0.2), transparent);
}

.why-ep__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ep-space-16);
  align-items: center;
}

.why-ep__content { }

.why-ep__title {
  text-align: left;
  margin-bottom: var(--ep-space-10);
}

.why-ep__title strong { color: var(--ep-electric); font-weight: 800; }

.why-ep__args {
  display: flex;
  flex-direction: column;
  gap: var(--ep-space-8);
}

.why-ep__arg {
  display: flex;
  gap: var(--ep-space-5);
  align-items: flex-start;
}

.why-ep__arg-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-ep__arg-title {
  font-family: var(--ep-font-heading);
  font-size: var(--ep-text-base);
  font-weight: 700;
  color: var(--ep-cloud);
  margin-bottom: var(--ep-space-2);
}

.why-ep__arg-desc {
  font-size: var(--ep-text-sm);
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
}

/* Visuel precision map */
.why-ep__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.precision-map {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.precision-map__svg {
  width: 100%;
  height: auto;
  border-radius: var(--ep-radius-lg);
  background: rgba(5, 13, 26, 0.8);
  border: 1px solid rgba(37, 142, 234, 0.15);
  backdrop-filter: blur(8px);
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.radar-dot { animation: radarBlink 3s var(--ep-ease-in-out) infinite; }
.radar-dot--2 { animation-delay: 1s; }
.radar-dot--3 { animation-delay: 2s; }

.precision-map__badge {
  position: absolute;
  bottom: var(--ep-space-4);
  right: var(--ep-space-4);
  display: flex;
  align-items: center;
  gap: var(--ep-space-2);
  padding: var(--ep-space-2) var(--ep-space-4);
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-full);
  font-size: var(--ep-text-xs);
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}

.precision-map__badge strong { color: var(--ep-cloud); }

.precision-map__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ep-electric);
  box-shadow: var(--ep-glow-azur);
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ── [06] TÉMOIGNAGES ─────────────────────────────────────── */
.testimonials {
  background: var(--ep-pearl);
  padding-block: var(--ep-section-py);
}

.testimonials .section-header { }

.eyebrow--dark { color: var(--ep-electric); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ep-space-6);
}

/* ── [09bis] BROCHURE ────────────────────────────────────── */
.brochure-section {
  background: var(--ep-pearl);
  padding-block: var(--ep-section-py);
}

.brochure__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--ep-space-16);
  align-items: center;
}

.brochure__content .eyebrow {
  color: var(--ep-electric);
}

.brochure__title {
  font-family: var(--ep-font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ep-ink);
  line-height: var(--ep-lh-tight);
  letter-spacing: -0.02em;
  margin-block: var(--ep-space-4) var(--ep-space-6);
}

.brochure__desc {
  font-size: var(--ep-text-base);
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
  max-width: 480px;
  margin-bottom: var(--ep-space-8);
}

.brochure__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--ep-space-2);
}

.brochure__legal {
  font-size: var(--ep-text-xs);
  color: var(--ep-steel);
  margin-top: var(--ep-space-3);
  opacity: 0.7;
}

.brochure__mockup {
  display: flex;
  justify-content: center;
}

.brochure__mockup-inner {
  position: relative;
  transform: rotate(-3deg);
  max-width: 240px;
  border-radius: var(--ep-radius-md);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(10,22,40,0.25),
    0 4px 16px rgba(10,22,40,0.15);
  transition: transform 0.4s var(--ep-ease-out), box-shadow 0.4s var(--ep-ease-out);
}

.brochure__mockup-inner:hover {
  transform: rotate(-1deg) scale(1.03);
  box-shadow:
    0 32px 80px rgba(10,22,40,0.30),
    0 8px 24px rgba(10,22,40,0.18);
}

.brochure__mockup-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── [07] COMPARATIF ──────────────────────────────────────── */
.diff-section {
  background: var(--ep-ink-deep);
  padding-block: var(--ep-section-py);
  position: relative;
}

.diff-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--ep-radius-md);
  border: 1px solid var(--ep-border);
}

/* ── [08] DEVIS ───────────────────────────────────────────── */
.devis-section {
  background: var(--ep-ink);
  padding-block: var(--ep-section-py);
  position: relative;
  overflow: hidden;
}

/* Pattern de points subtil */
.devis-section__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37,142,234,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.devis-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--ep-border);
  border-radius: var(--ep-radius-lg);
  padding: var(--ep-space-12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
}

.devis-form__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ep-space-8);
  margin-bottom: var(--ep-space-8);
}

.devis-form__separator {
  height: 1px;
  background: var(--ep-border);
  margin-bottom: var(--ep-space-8);
}

.devis-form__contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ep-space-6);
  margin-bottom: var(--ep-space-8);
}

.devis-form__submit {
  width: 100%;
  justify-content: center;
}

.devis-form__legal {
  text-align: center;
  font-size: var(--ep-text-xs);
  color: var(--ep-steel);
  margin-top: var(--ep-space-4);
}

.devis-success {
  text-align: center;
  padding-block: var(--ep-space-12);
}

.devis-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(37, 142, 234, 0.12);
  border: 1px solid rgba(37, 142, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--ep-space-6);
  color: var(--ep-electric);
}

.devis-success__title {
  font-family: var(--ep-font-display);
  font-size: var(--ep-text-2xl);
  font-weight: 800;
  color: var(--ep-cloud);
  margin-bottom: var(--ep-space-3);
}

.devis-success__text {
  color: var(--ep-steel);
  font-size: var(--ep-text-base);
  line-height: var(--ep-lh-relaxed);
}

/* ── [09] PARTENAIRES ─────────────────────────────────────── */
.partners {
  background: var(--ep-cloud);
  padding-block: var(--ep-space-12);
}

.partners .container { margin-bottom: var(--ep-space-8); }

.partners__label {
  text-align: center;
  font-family: var(--ep-font-mono);
  font-size: var(--ep-text-sm);
  font-weight: 500;
  color: var(--ep-steel);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── [10] FAQ ─────────────────────────────────────────────── */
.faq-section {
  background: var(--ep-ink);
  padding-block: var(--ep-section-py);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

/* ── [11] CTA FINAL ───────────────────────────────────────── */
.cta-final {
  background: var(--ep-grad-hero);
  padding-block: var(--ep-section-py);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__orb {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,142,234,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}

.cta-final__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-family: var(--ep-font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--ep-cloud);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--ep-space-6);
}

.cta-final__subtitle {
  font-size: clamp(var(--ep-text-base), 2vw, var(--ep-text-lg));
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
  margin-bottom: var(--ep-space-12);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--ep-space-12);
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ep-space-4);
  justify-content: center;
  align-items: center;
}

/* ── [12] FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--ep-ink-deep);
  padding-top: var(--ep-space-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--ep-space-12);
  padding-bottom: var(--ep-space-12);
}

.footer__logo {
  margin-bottom: var(--ep-space-4);
  display: inline-flex;
}

.footer__tagline {
  font-size: var(--ep-text-sm);
  color: var(--ep-steel);
  margin-bottom: var(--ep-space-6);
}

.footer__address {
  font-style: normal;
  font-size: var(--ep-text-sm);
  color: var(--ep-steel);
  line-height: var(--ep-lh-relaxed);
}

.footer__contact-link {
  color: var(--ep-electric);
  transition: color var(--ep-duration-normal) var(--ep-ease-out);
}

.footer__contact-link:hover { color: var(--ep-azur); }

.footer__col-title {
  font-family: var(--ep-font-mono);
  font-size: var(--ep-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ep-cloud);
  margin-bottom: var(--ep-space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--ep-space-3);
}

.footer__link {
  font-size: var(--ep-text-sm);
  color: var(--ep-steel);
  transition: color var(--ep-duration-normal) var(--ep-ease-out);
  position: relative;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ep-electric);
  transition: width var(--ep-duration-normal) var(--ep-ease-out);
}

.footer__link:hover { color: var(--ep-cloud); }
.footer__link:hover::after { width: 100%; }

.footer__socials {
  display: flex;
  gap: var(--ep-space-3);
  margin-bottom: var(--ep-space-6);
}

.footer__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ep-radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ep-border);
  color: var(--ep-steel);
  transition:
    color var(--ep-duration-normal) var(--ep-ease-out),
    background var(--ep-duration-normal) var(--ep-ease-out),
    border-color var(--ep-duration-normal) var(--ep-ease-out);
}

.footer__social:hover {
  color: var(--ep-azur);
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

.footer__separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,212,255,0.25), transparent);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--ep-space-6);
  gap: var(--ep-space-6);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--ep-text-xs);
  color: var(--ep-steel);
}

.footer__legal-links {
  display: flex;
  gap: var(--ep-space-6);
}

.footer__legal-link {
  font-size: var(--ep-text-xs);
  color: var(--ep-steel);
  transition: color var(--ep-duration-normal) var(--ep-ease-out);
}

.footer__legal-link:hover { color: var(--ep-electric); }
