/* =====================================================
   La Fabrique Administrative — style.css
   Structure :
   1.  Design Tokens (variables CSS)
   2.  Reset & Base
   3.  Utilitaires (container, boutons, labels, dividers)
   4.  Navbar
   5.  Hero
   6.  Trust Bar
   7.  Services
   8.  Why Us
   9.  Process
   10. Testimonials
   11. Pricing (Tarifs)
   12. CTA Band
   13. Local SEO
   14. Contact
   15. Footer
   16. Sticky CTA
   17. Animations & Reveal
   18. Responsive (Mobile-first breakpoints)
===================================================== */


/* ============================================================
   1. DESIGN TOKENS
   Modifiez ces variables pour changer toute la charte couleur
   sans toucher au reste du code.
============================================================ */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E44;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --cream:      #F7F4EF;
  --cream-dark: #EDE8DF;
  --text:       #1A1A2E;
  --text-muted: #5A6070;
  --white:      #FFFFFF;
  --radius:     4px;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}


/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 600;
}

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


/* ============================================================
   3. UTILITAIRES
============================================================ */

/* -- Container -- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Bouton doré principal -- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::after  { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

/* -- Bouton contour blanc (hero) -- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* -- Bouton navy (CTA band) -- */
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* -- Label de section ("— Notre approche") -- */
.label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label-tag::before { content: '—  '; }

/* -- Titre de section -- */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
}

/* -- Sous-titre de section -- */
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* -- Filet doré sous les titres -- */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}


/* ============================================================
   4. NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--gold); }

/* ── Logo image navbar ── */
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  /* Si votre logo est foncé, décommenter pour le rendre blanc sur fond navy : */
  /* filter: brightness(0) invert(1); */
}
.nav-logo-fallback {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}
.nav-logo-fallback span { color: var(--gold); }

/* ── Logo grand dans le Hero ── */
.hero-logo-wrap {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  height: clamp(80px, 14vw, 160px);
  width: auto;
  max-width: 420px;
  object-fit: contain;
  /* Si votre logo est foncé, décommenter pour le rendre blanc : */
  /* filter: brightness(0) invert(1); */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* Lien CTA dans la nav */
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Burger mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}


/* ============================================================
   5. HERO
============================================================ */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Grille de fond */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Halo doré */
.hero-bg-gradient {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.12) 0%, transparent 65%);
}

/* Filet vertical gauche */
.hero-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

/* Layout principal : texte à gauche, carte à droite */
#hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  max-width: 640px;
}

/* Eyebrow animée */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Logo grand dans le Hero ── */
.hero-logo-wrap {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  height: clamp(80px, 14vw, 160px);
  width: auto;
  max-width: 420px;
  object-fit: contain;
  /* Si votre logo est foncé, décommenter pour le rendre blanc : */
  /* filter: brightness(0) invert(1); */
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 28px;
  /* Pas d'opacity:0 — on laisse toujours le texte visible */
  animation: fadeUp 0.8s 0.4s both;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.8s both;
}

/* Stats chiffrées */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  animation: fadeUp 0.8s 1s both;
}
.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}
.hero-stat-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  height: 100%;
}

/* Carte flottante décorative — côté droit dans le flux */
.hero-visual {
  flex: 0 0 340px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 420px;
}
.hero-card {
  position: absolute;
  border-radius: 8px;
  padding: 28px;
  animation: float 6s ease-in-out infinite;
}
.hero-card-1 {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.25);
  backdrop-filter: blur(12px);
  top: 0; left: 0; right: 0; bottom: 40px;
}
.hero-card-2 {
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.4);
  bottom: 0; left: 20px; right: -20px; top: 60px;
  animation-delay: -2s;
  z-index: -1;
}
.hero-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-card-items { list-style: none; }
.hero-card-items li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-items li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ============================================================
   6. TRUST BAR
============================================================ */
.trust-bar {
  background: var(--navy-mid);
  padding: 24px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trust-icon { font-size: 1.1rem; }


/* ============================================================
   7. SERVICES
============================================================ */
#services {
  padding: 110px 0;
  background: var(--cream);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 40px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: var(--transition);
  cursor: default;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.service-card:hover::after { transform: scaleX(1); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-number { color: var(--gold-light); }

.service-icon { font-size: 1.8rem; margin-bottom: 20px; }

.service-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.service-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  background: var(--cream);
  color: var(--text-muted);
  border-radius: 20px;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }


/* ============================================================
   8. WHY US
============================================================ */
#why {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Overrides couleur sur fond sombre */
.why-content .label-tag   { color: var(--gold); }
.why-content .section-title { color: var(--white); }
.why-content .section-sub   { color: rgba(255, 255, 255, 0.55); max-width: 440px; }

.why-pillars {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-pillar { display: flex; gap: 20px; align-items: flex-start; }
.why-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.why-pillar-text h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.why-pillar-text p  { font-size: 0.87rem; color: rgba(255, 255, 255, 0.5); line-height: 1.7; }

/* Boîtes de chiffres à droite */
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 32px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-box:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.4);
}
.why-box:first-child { grid-column: 1 / -1; }
.why-box-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.why-box-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); margin-top: 6px; }


/* ============================================================
   9. PROCESS
============================================================ */
#process { padding: 110px 0; background: var(--cream-dark); }

.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-sub { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step { text-align: center; padding: 0 20px; position: relative; }

.step-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--navy);
}
.process-step h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; }
.process-step p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }


/* ============================================================
   10. TESTIMONIALS
============================================================ */
#testimonials { padding: 110px 0; background: var(--cream); }

.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-header .section-sub { margin: 0 auto; }

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

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.5;
  margin-bottom: 24px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name  { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-role  { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }


/* ============================================================
   11. PRICING (TARIFS)
============================================================ */
#tarifs {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.tarifs-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.tarifs-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }
.tarifs-header .section-title { color: var(--white); }
.tarifs-header .section-sub   { margin: 0 auto; color: rgba(255, 255, 255, 0.5); }

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}

.tarif-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 48px 36px;
  transition: var(--transition);
}
.tarif-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}
.tarif-card:not(.featured):hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.35);
}

.tarif-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-light);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 24px;
}
.featured .tarif-tag { background: rgba(0, 0, 0, 0.15); color: var(--navy); }

.tarif-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.featured .tarif-name { color: var(--navy); }

.tarif-desc { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); margin-bottom: 32px; }
.featured .tarif-desc { color: rgba(13, 27, 42, 0.65); }

.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.featured .tarif-price { color: var(--navy); }

.tarif-unit { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); margin-bottom: 36px; }
.featured .tarif-unit { color: rgba(13, 27, 42, 0.6); }

.tarif-features { list-style: none; margin-bottom: 40px; }
.tarif-features li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured .tarif-features li {
  color: rgba(13, 27, 42, 0.75);
  border-bottom-color: rgba(13, 27, 42, 0.1);
}
.tarif-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.featured .tarif-features li::before { color: var(--navy); }

.tarif-card .btn-primary { width: 100%; justify-content: center; }
.tarif-card.featured .btn-primary { background: var(--navy); color: var(--gold); }

.tarif-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 2;
}

/* ── Prix bridé (index.php) — déverrouillé dans catalogue.php ── */
.tarif-price-teaser {
  margin-bottom: 32px;
}
.tarif-price-lock {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.tarif-price-dots {
  font-size: 1.8rem;
  letter-spacing: 6px;
  color: rgba(201, 169, 110, 0.35);
  filter: blur(3px);
  user-select: none;
  line-height: 1;
}
.tarif-price-lock-icon { font-size: 1rem; opacity: 0.6; }

.tarif-feature-more {
  font-style: italic;
  color: rgba(255, 255, 255, 0.25) !important;
  border-bottom: none !important;
  font-size: 0.8rem !important;
}
.tarif-feature-more::before { content: '' !important; display: none; }


/* ============================================================
   12. CTA BAND
============================================================ */
#cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #B8893A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: 'LFA';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 2; }
#cta-band h2   { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--navy); margin-bottom: 20px; }
#cta-band p {
  font-size: 1.1rem;
  color: rgba(13, 27, 42, 0.7);
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-band-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================================
   13. LOCAL SEO
============================================================ */
#local { padding: 80px 0; background: var(--cream-dark); }

.local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.local-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.zone-chip {
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.zone-chip:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Carte contact sombre */
.local-contact-card {
  background: var(--navy);
  padding: 48px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.local-contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.local-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.local-contact-item:last-child { margin-bottom: 0; }

.local-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.local-contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.local-contact-value { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }


/* ============================================================
   14. CONTACT
============================================================ */
#contact { padding: 110px 0; background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Bloc texte gauche */
.contact-info h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }
.contact-info p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }

.contact-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }
.contact-feature  { display: flex; gap: 14px; align-items: flex-start; }
.contact-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-feature-text strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 3px; }
.contact-feature-text span   { font-size: 0.82rem; color: var(--text-muted); }

/* Formulaire */
.contact-form-wrapper {
  background: var(--white);
  padding: 56px 48px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

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

.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  margin-top: 2px;
}
.form-check label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

.form-submit { width: 100%; justify-content: center; }


/* ============================================================
   15. FOOTER
============================================================ */
footer {
  background: #080F1A;
  color: rgba(255, 255, 255, 0.5);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 28px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }


/* ============================================================
   16. STICKY CTA
============================================================ */
/* ── Sticky CTA (droite) ── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: opacity var(--transition);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.35);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 169, 110, 0.5);
}
.sticky-tel {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.sticky-client {
  background: rgba(13, 27, 42, 0.85);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(201,169,110,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  font-size: 0.75rem;
  padding: 10px 16px;
}

/* Barre de progression de lecture */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}


/* ============================================================
   17. ANIMATIONS & REVEAL
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Classe appliquée par JS au scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ── Sécurité : si animations désactivées, tout visible ── */
@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero-desc,
  .hero-actions,
  .hero-stats,
  .hero-eyebrow,
  .hero-logo-wrap {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   18. RESPONSIVE — Mobile-first breakpoints
============================================================ */

/* -- Tablettes & petits écrans (≤ 1100px) : carte masquée, texte pleine largeur -- */
@media (max-width: 1100px) {
  .hero-visual          { display: none; }
  #hero .container      { display: block; }
  .hero-content         { max-width: 100%; }
}

/* -- Tablettes & petits écrans (≤ 900px) -- */
@media (max-width: 900px) {
  /* Nav : on passe en burger */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13, 27, 42, 0.97);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
  }
  .nav-links.open { display: flex; }
  .nav-toggle     { display: flex; }
  #navbar         { background: rgba(13, 27, 42, 0.97); }

  /* Sections : on empile */
  .services-grid        { grid-template-columns: 1fr; }
  .services-header      { flex-direction: column; align-items: flex-start; }
  .why-inner            { grid-template-columns: 1fr; gap: 48px; }
  .why-visual           { grid-template-columns: 1fr 1fr; }
  .process-steps        { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before{ display: none; }
  .tarifs-grid          { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .local-inner          { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid         { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .contact-form-wrapper { padding: 36px 28px; }
  .hero-stats           { grid-template-columns: 1fr 1fr; }
  .form-row             { grid-template-columns: 1fr; }
}

/* -- Mobile (≤ 600px) -- */
@media (max-width: 600px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .sticky-cta   { bottom: 16px; right: 16px; gap: 8px; }
  .sticky-cta-btn { padding: 11px 16px; font-size: 0.75rem; }
  .sticky-client  { display: none; } /* masqué sur mobile, accès via menu */
  .hero-stats   { grid-template-columns: 1fr; }
  .why-visual   { grid-template-columns: 1fr; }
  .why-box:first-child { grid-column: 1; }
  .process-steps { grid-template-columns: 1fr; }
  .tarif-card   { padding: 36px 28px; }
}