/* ==========================================================================
   GENTLEAN — Personal Shopper Automobile
   Stylesheet
   ========================================================================== */

/* ---------- 1. Variables (palette officielle du brandbook) -------------- */
:root {
  --bleu-royal:   #19142B;
  --bleu-velvet:  #2A3B6B;
  --bleu-peacock: #045B81;
  --bleu-azur:    #719BD2;
  --argent:       #E7E8EA;
  --blanc:        #FFFFFF;
  --noir-doux:    #0B0915;

  /* Typo */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset & base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--bleu-royal);
  background: var(--blanc);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }

::selection { background: var(--bleu-peacock); color: var(--blanc); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- 3. Typographie -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bleu-royal);
}

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bleu-peacock);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 3rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--bleu-peacock);
}
.center .eyebrow { padding-left: 0; }
.center .eyebrow::before {
  position: relative;
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}
.center .eyebrow::after {
  content: '';
  display: inline-block;
  margin-left: 1rem;
  width: 2rem;
  height: 1px;
  background: var(--bleu-peacock);
  vertical-align: middle;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 200;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--bleu-peacock);
}

.section-intro {
  font-size: 1.125rem;
  max-width: 640px;
  color: var(--bleu-velvet);
  opacity: .85;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--bleu-velvet);
  margin-bottom: 1.25rem;
}

.section-head { margin-bottom: 4rem; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- 4. Boutons ------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--bleu-royal);
  color: var(--blanc);
  border-color: var(--bleu-royal);
}
.btn-primary:hover {
  background: var(--bleu-peacock);
  border-color: var(--bleu-peacock);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(4, 91, 129, 0.25);
}

.btn-ghost {
  color: var(--blanc);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--blanc);
  color: var(--bleu-royal);
  border-color: var(--blanc);
}

.btn-block { display: block; width: 100%; }

/* ---------- 5. Header / Nav ------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(25, 20, 43, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { display: flex; align-items: center; gap: .85rem; color: var(--blanc); text-decoration: none; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-logo-principal {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.brand:hover .brand-logo-principal { opacity: 0.85; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.brand-tag {
  font-size: .55rem;
  letter-spacing: 0.25em;
  margin-top: .35rem;
  opacity: .7;
}

.nav-main ul {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-main a {
  color: var(--blanc);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: .25rem 0;
}
.nav-main a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--bleu-azur);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-main a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  border: 1px solid rgba(255,255,255,0.3);
  padding: .65rem 1.25rem !important;
  transition: all .35s var(--ease);
}
.nav-cta:hover {
  background: var(--blanc);
  color: var(--bleu-royal);
  border-color: var(--blanc);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.burger span {
  width: 100%;
  height: 1.5px;
  background: var(--blanc);
  transition: all .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 6. Hero --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanc);
  overflow: hidden;
  padding: 6rem var(--gutter) 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(4, 91, 129, 0.45) 0%, transparent 60%),
    linear-gradient(180deg, var(--bleu-royal) 0%, #0d0a1a 100%);
  z-index: 0;
}

/* Texture cuir bleu en overlay subtil */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/texture-cuir-bleu.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: overlay;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      180deg,
      transparent 0px,
      transparent 80px,
      rgba(113, 155, 210, 0.04) 80px,
      rgba(113, 155, 210, 0.04) 81px
    );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(25, 20, 43, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  animation: heroFadeIn 1.6s var(--ease) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Le logo principal SVG remplace le texte */
.hero-logo-main {
  width: min(560px, 85%);
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--blanc);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: .95;
}
.hero-tagline em {
  font-style: italic;
  color: var(--bleu-azur);
  font-weight: 400;
}

.hero-baseline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  margin: 0 auto 3rem;
  max-width: 540px;
  color: var(--bleu-azur);
  opacity: .85;
}
.hero-baseline em {
  color: var(--blanc);
  font-style: italic;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 3;
}
.scroll-indicator span {
  width: 2px;
  height: 8px;
  background: var(--blanc);
  border-radius: 1px;
  animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- 7. Section générique ------------------------------------- */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

/* ---------- 8. À propos ---------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.about-text p { margin-bottom: 1.25rem; color: var(--bleu-velvet); }

.signature {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 59, 107, 0.15);
  display: flex;
  flex-direction: column;
}
.signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--bleu-royal);
}
.signature-role {
  font-size: .75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleu-peacock);
  margin-top: .25rem;
}

.about-visual { position: relative; }

.about-img-frame {
  aspect-ratio: 4 / 5;
  background: var(--bleu-royal);
  position: relative;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 1;
  pointer-events: none;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: .85rem;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 30% 20%, rgba(4, 91, 129, 0.4) 0%, transparent 60%),
    var(--bleu-royal);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat {
  text-align: center;
  padding: 1.25rem .5rem;
  border: 1px solid rgba(42, 59, 107, 0.12);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--bleu-peacock);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: .7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: .5rem;
  color: var(--bleu-velvet);
}

/* ---------- 9. Valeurs (4 piliers) ----------------------------------- */
.values {
  background: linear-gradient(180deg, var(--argent) 0%, #f5f6f8 100%);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--blanc);
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(42, 59, 107, 0.08);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bleu-peacock), var(--bleu-azur));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(25, 20, 43, 0.08);
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}
.value-card h3 {
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--bleu-peacock);
  font-weight: 500;
}
.value-card p {
  font-size: .95rem;
  color: var(--bleu-velvet);
  line-height: 1.6;
}

/* ---------- 10. Services --------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(42, 59, 107, 0.1);
  border-left: 1px solid rgba(42, 59, 107, 0.1);
}
.service-card {
  padding: 3rem 2.25rem;
  border-right: 1px solid rgba(42, 59, 107, 0.1);
  border-bottom: 1px solid rgba(42, 59, 107, 0.1);
  position: relative;
  transition: background .4s var(--ease);
}
.service-card:hover { background: var(--argent); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--bleu-peacock);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--bleu-royal);
}
.service-card p {
  color: var(--bleu-velvet);
  font-size: .95rem;
}

.services-cta {
  margin-top: 4rem;
  text-align: center;
}
.services-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--bleu-velvet);
  margin-bottom: 1.5rem;
}

/* ---------- 11. Galerie ---------------------------------------------- */
.gallery {
  background: var(--bleu-royal);
  color: var(--blanc);
}
.gallery .section-title,
.gallery .eyebrow,
.gallery .section-intro { color: var(--blanc); }
.gallery .eyebrow { color: var(--bleu-azur); }
.gallery .eyebrow::before, .gallery .eyebrow::after { background: var(--bleu-azur); }
.gallery .section-intro { opacity: .8; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
}
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bleu-velvet);
  cursor: pointer;
}
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: .8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 30% 30%, rgba(4, 91, 129, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, var(--bleu-velvet) 0%, var(--bleu-royal) 100%);
  transition: transform .8s var(--ease);
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(25, 20, 43, 0.95));
  z-index: 2;
}
.gallery-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleu-azur);
  margin-bottom: .25rem;
}
.gallery-meta {
  display: block;
  font-size: .8rem;
  opacity: .8;
}

.gallery-note {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--bleu-azur);
  opacity: .8;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- 12. Témoignages (style désactivé - remplacé par section 26) */
/* Voir section "Témoignages Google enrichis" plus bas */

/* ---------- 13. Journal / Blog --------------------------------------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.journal-card {
  background: var(--blanc);
  border: 1px solid rgba(42, 59, 107, 0.1);
  transition: all .4s var(--ease);
  cursor: pointer;
}
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(25, 20, 43, 0.1);
}
.journal-img {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 40% 40%, rgba(4, 91, 129, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, var(--bleu-velvet) 0%, var(--bleu-royal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: .8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.journal-body { padding: 1.75rem; }
.journal-date {
  font-size: .7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleu-peacock);
  display: block;
  margin-bottom: .75rem;
}
.journal-card h3 {
  font-size: 1.2rem;
  margin-bottom: .75rem;
  font-weight: 400;
  line-height: 1.35;
}
.journal-card p {
  font-size: .9rem;
  color: var(--bleu-velvet);
}

/* ---------- 14. Contact ---------------------------------------------- */
.contact {
  background: linear-gradient(180deg, var(--argent) 0%, #f5f6f8 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(42, 59, 107, 0.1);
}
.contact-label {
  font-size: .7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bleu-peacock);
  margin-bottom: .35rem;
}
.contact-list a, .contact-list span:not(.contact-label) {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bleu-royal);
  line-height: 1.4;
}
.contact-list a:hover { color: var(--bleu-peacock); }

.contact-form {
  background: var(--blanc);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(42, 59, 107, 0.1);
}
.form-row { margin-bottom: 1.25rem; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row label {
  display: flex;
  flex-direction: column;
}
.form-row label span {
  font-size: .7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleu-peacock);
  margin-bottom: .5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(42, 59, 107, 0.2);
  background: var(--blanc);
  color: var(--bleu-royal);
  transition: border-color .3s var(--ease);
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--bleu-peacock);
}
.form-row textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: .75rem;
  color: var(--bleu-velvet);
  opacity: .75;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

/* ---------- 15. Footer ----------------------------------------------- */
.site-footer {
  background: var(--bleu-royal);
  color: var(--blanc);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-brand p { opacity: .75; font-size: .9rem; }
.footer-logo { width: 60px; margin-bottom: 1.25rem; }
.footer-name {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  opacity: 1 !important;
  margin-bottom: .25rem;
}
.footer-tag {
  font-size: .65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-baseline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem !important;
  line-height: 1.6;
  color: var(--bleu-azur) !important;
  opacity: 1 !important;
}

.footer-col h4 {
  color: var(--blanc);
  font-size: .75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a, .footer-col li {
  color: rgba(255,255,255,0.7);
  font-size: .9rem;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--bleu-azur); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--bleu-azur); }

/* ---------- 16. Animations apparition au scroll ---------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 17. Bandes citations poétiques --------------------------- */
.quote-band {
  background: var(--argent);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/texture-argent.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.quote-band p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 300;
  color: var(--bleu-royal);
  line-height: 1.4;
  letter-spacing: 0.01em;
  max-width: 900px;
  margin: 0 auto;
}
.quote-band p em {
  color: var(--bleu-peacock);
  font-style: italic;
}

.quote-band-dark {
  background: var(--bleu-royal);
  position: relative;
}
.quote-band-dark::before {
  background-image: url('img/texture-cuir-bleu.jpg');
  opacity: 0.25;
  mix-blend-mode: soft-light;
}
.quote-band-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(25, 20, 43, 0.4) 100%);
}
.quote-band-dark p {
  color: var(--blanc);
  z-index: 2;
}
.quote-band-dark p em {
  color: var(--bleu-azur);
}

/* ---------- 18. Section "Les 3 piliers" ------------------------------ */
.pillars {
  background: linear-gradient(180deg, #fafbfc 0%, var(--argent) 100%);
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(4, 91, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.pillar {
  background: var(--blanc);
  padding: 3rem 2.25rem;
  position: relative;
  border-top: 3px solid var(--bleu-peacock);
  transition: all .5s var(--ease);
  box-shadow: 0 4px 20px rgba(25, 20, 43, 0.04);
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(25, 20, 43, 0.12);
  border-top-color: var(--bleu-azur);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bleu-peacock);
  display: block;
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: .9;
}

.pillar h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: var(--bleu-royal);
  font-weight: 400;
  line-height: 1.3;
  min-height: 2.6em;
}

.pillar p {
  font-size: .95rem;
  color: var(--bleu-velvet);
  line-height: 1.7;
}

/* ---------- 19. Footer social amélioré ------------------------------- */
.footer-social a {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.footer-social a span {
  font-size: .75rem;
  opacity: .55;
  letter-spacing: .05em;
}

/* ---------- 20. Teaser Entreprises ----------------------------------- */
.enterprise-teaser {
  background: linear-gradient(135deg, var(--bleu-royal) 0%, var(--bleu-velvet) 100%);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.enterprise-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/texture-cuir-bleu.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.enterprise-teaser .eyebrow {
  color: var(--bleu-azur);
}
.enterprise-teaser .eyebrow::before,
.enterprise-teaser .eyebrow::after {
  background: var(--bleu-azur);
}
.enterprise-teaser .section-title {
  color: var(--blanc);
}
.enterprise-teaser .section-title em {
  color: var(--bleu-azur);
}
.enterprise-teaser .lede {
  color: rgba(255, 255, 255, 0.85);
}
.enterprise-teaser p {
  color: rgba(255, 255, 255, 0.8);
}
.enterprise-teaser strong {
  color: var(--blanc);
}

.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.enterprise-text .btn {
  margin-top: 1.5rem;
  background: var(--blanc);
  color: var(--bleu-royal);
  border-color: var(--blanc);
}
.enterprise-text .btn:hover {
  background: var(--bleu-azur);
  border-color: var(--bleu-azur);
  color: var(--bleu-royal);
}

.enterprise-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enterprise-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem 2rem;
  transition: all .4s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.enterprise-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(113, 155, 210, 0.4);
  transform: translateX(8px);
}

.enterprise-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--bleu-azur);
  display: inline-block;
  margin-right: .75rem;
  vertical-align: baseline;
}

.enterprise-card h3 {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--blanc);
  font-weight: 500;
  margin-bottom: .5rem;
  letter-spacing: 0.03em;
}

.enterprise-card p {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* ---------- 21. Page Entreprises ------------------------------------- */
/* Hero alternatif pour entreprises (texte au lieu du logo principal) */
.hero-enterprise .hero-content {
  max-width: 920px;
}
.hero-pretitle {
  display: block;
  font-size: .8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bleu-azur);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 200;
  color: var(--blanc);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--bleu-azur);
}

/* Section intro entreprises */
.enterprise-intro {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--blanc);
}
.enterprise-intro .section-head {
  margin-bottom: 0;
}

/* Targets (Pour qui ?) */
.enterprise-targets {
  background: linear-gradient(180deg, var(--blanc) 0%, var(--argent) 100%);
}
.targets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.target-card {
  background: var(--blanc);
  padding: 2.25rem;
  border-left: 3px solid var(--bleu-peacock);
  transition: all .4s var(--ease);
  box-shadow: 0 4px 20px rgba(25, 20, 43, 0.04);
}
.target-card:hover {
  transform: translateX(8px);
  border-left-color: var(--bleu-azur);
  box-shadow: 0 8px 30px rgba(25, 20, 43, 0.08);
}
.target-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--bleu-royal);
  margin-bottom: .75rem;
  letter-spacing: 0.02em;
}
.target-card p {
  font-size: .95rem;
  color: var(--bleu-velvet);
  line-height: 1.6;
}

/* Agent dédié */
.enterprise-agent {
  background: var(--argent);
}
.enterprise-agent-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.agent-text p {
  margin-bottom: 1.25rem;
  color: var(--bleu-velvet);
}
.agent-card {
  background: var(--bleu-royal);
  color: var(--blanc);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.agent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/texture-cuir-bleu.jpg');
  background-size: cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.agent-card > * { position: relative; z-index: 1; }
.agent-card .eyebrow {
  color: var(--bleu-azur);
  margin-bottom: 1rem;
  padding-left: 0;
}
.agent-card .eyebrow::before {
  display: none;
}
.agent-card h3 {
  color: var(--blanc);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.agent-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ---------- 22. Nouvelles sections Entreprises ----------------------- */

/* Bande chiffres-clés */
.enterprise-stats {
  background: var(--bleu-royal);
  color: var(--blanc);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.enterprise-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/texture-cuir-bleu.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--bleu-azur);
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  display: block;
  font-size: .75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.stat-separator {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Grille 4 piliers (au lieu de 3) */
.pillars-4 {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
}

/* Section Méthodologie - Timeline verticale */
.method {
  background: var(--blanc);
}
.method-timeline {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.method-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 50px;
  bottom: 50px;
  width: 2px;
  background: linear-gradient(180deg, var(--bleu-peacock) 0%, var(--bleu-azur) 100%);
  opacity: 0.3;
}
.method-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.method-step:last-child { margin-bottom: 0; }
.method-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--blanc);
  border: 2px solid var(--bleu-peacock);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bleu-peacock);
  position: relative;
  z-index: 1;
  transition: all .4s var(--ease);
}
.method-step:hover .method-num {
  background: var(--bleu-peacock);
  color: var(--blanc);
  transform: scale(1.08);
}
.method-content {
  flex: 1;
  padding-top: 0.75rem;
}
.method-content h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bleu-royal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.method-content p {
  color: var(--bleu-velvet);
  line-height: 1.7;
  font-size: 1rem;
}

/* Section Courtage / Intermédiation */
.brokerage {
  background: linear-gradient(135deg, var(--argent) 0%, #f0f1f4 100%);
  position: relative;
  overflow: hidden;
}
.brokerage::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 40%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(4, 91, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.brokerage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.brokerage-text p {
  margin-bottom: 1.25rem;
  color: var(--bleu-velvet);
  line-height: 1.75;
}
.brokerage-card {
  background: var(--blanc);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 20px 50px rgba(25, 20, 43, 0.08);
  border-top: 3px solid var(--bleu-peacock);
}
.brokerage-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bleu-royal);
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
}
.brokerage-benefits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.brokerage-benefits li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-icon {
  flex-shrink: 0;
  color: var(--bleu-peacock);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
}
.brokerage-benefits strong {
  display: block;
  color: var(--bleu-royal);
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.brokerage-benefits p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--bleu-velvet);
  line-height: 1.5;
}

/* Section Fiscalité - Grille de cartes */
.fiscal {
  background: var(--blanc);
}
.fiscal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.fiscal-card {
  padding: 2rem;
  background: var(--argent);
  border-left: 3px solid var(--bleu-peacock);
  transition: all .4s var(--ease);
}
.fiscal-card:hover {
  background: var(--blanc);
  border-left-color: var(--bleu-azur);
  box-shadow: 0 12px 30px rgba(25, 20, 43, 0.08);
  transform: translateY(-4px);
}
.fiscal-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bleu-royal);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.fiscal-card p {
  font-size: 0.95rem;
  color: var(--bleu-velvet);
  line-height: 1.65;
}
.fiscal-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: var(--bleu-velvet);
  opacity: 0.75;
  line-height: 1.7;
  padding: 1.5rem;
  background: var(--argent);
  border-radius: 2px;
}

/* Section Pourquoi Gentlean - Comparatif */
.why-gentlean {
  background: linear-gradient(180deg, var(--argent) 0%, var(--blanc) 100%);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.comparison-col {
  background: var(--blanc);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 8px 24px rgba(25, 20, 43, 0.06);
}
.col-without {
  border-top: 3px solid #c5c8d0;
  opacity: 0.85;
}
.col-with {
  border-top: 3px solid var(--bleu-peacock);
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 0 20px 50px rgba(25, 20, 43, 0.12);
}
.col-header {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(42, 59, 107, 0.1);
}
.col-header-without {
  color: #6b7080;
}
.col-header-with {
  color: var(--bleu-peacock);
}
.comparison-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.comparison-col li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--bleu-velvet);
  line-height: 1.5;
  font-size: 0.95rem;
}
.col-without li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #b0b3c0;
  font-weight: 600;
}
.col-with li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bleu-peacock);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ---------- 23. Section L'équipe ------------------------------------- */
.team {
  background: var(--blanc);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--blanc);
  border: 1px solid rgba(42, 59, 107, 0.1);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(25, 20, 43, 0.1);
  border-color: rgba(4, 91, 129, 0.2);
}

.team-img-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bleu-royal);
  position: relative;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(4, 91, 129, 0.25) 0%, transparent 70%),
    var(--bleu-royal);
}

.team-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.team-placeholder-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 200;
  color: rgba(113, 155, 210, 0.5);
  line-height: 1;
}

.team-info {
  padding: 1.75rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-info h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bleu-royal);
  margin-bottom: .35rem;
  letter-spacing: 0.02em;
}

.team-role {
  display: block;
  font-size: .7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bleu-peacock);
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-info p {
  color: var(--bleu-velvet);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
}

.team-card-soon .team-role {
  color: var(--bleu-azur);
}

.team-card-future {
  background: var(--argent);
}

.team-card-future .team-info {
  text-align: left;
}

/* ---------- 24. Boutons flottants réseaux sociaux -------------------- */
.floating-social {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* Animation d'apparition après chargement */
  opacity: 0;
  transform: translateY(20px);
  animation: floatingFadeIn 0.8s var(--ease) 1.5s forwards;
}

@keyframes floatingFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bleu-royal);
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 4px 12px rgba(25, 20, 43, 0.25),
    0 2px 4px rgba(25, 20, 43, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.floating-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease);
}

.floating-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 8px 20px rgba(25, 20, 43, 0.35),
    0 4px 8px rgba(25, 20, 43, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.floating-btn:hover::before {
  opacity: 1;
}

.floating-btn:hover svg {
  transform: scale(1.1);
}

/* Couleurs spécifiques au survol — gardent l'identité de marque */
.floating-btn-ig:hover {
  background: linear-gradient(135deg, var(--bleu-peacock) 0%, var(--bleu-velvet) 100%);
}

.floating-btn-li:hover {
  background: var(--bleu-peacock);
}

.floating-social.hide {
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
}

.team-img-thibault {
  background:
    linear-gradient(135deg, rgba(4, 91, 129, 0.3) 0%, transparent 50%),
    var(--bleu-velvet) !important;
}

.team-initials {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.team-img-thibault::after {
  content: '';
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

/* Sur mobile, plus discret */
@media (max-width: 720px) {
  .floating-social {
    right: 1rem;
    bottom: 1rem;
    gap: 0.5rem;
  }
  .floating-btn {
    width: 42px;
    height: 42px;
  }
  .floating-btn svg {
    width: 19px;
    height: 19px;
  }
}

/* ---------- 26. Témoignages Google enrichis -------------------------- */
.testimonials-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: var(--blanc);
  border: 1px solid rgba(42, 59, 107, 0.08);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(25, 20, 43, 0.04);
}
.google-stars {
  display: inline-flex;
  gap: 2px;
}
.google-stars .star {
  color: #FBBC04;
  font-size: 1.05rem;
  line-height: 1;
}
.google-text {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--bleu-velvet);
  font-weight: 500;
}

/* Grille 4 colonnes pour les témoignages (au lieu de 3) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: var(--blanc);
  padding: 2.25rem 2rem;
  margin: 0;
  position: relative;
  border-top: 3px solid var(--bleu-peacock);
  box-shadow: 0 4px 20px rgba(25, 20, 43, 0.05);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(25, 20, 43, 0.1);
}

.testimonial-stars {
  color: #FBBC04;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  color: var(--bleu-velvet);
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(42, 59, 107, 0.08);
}
.t-name {
  font-weight: 500;
  color: var(--bleu-royal);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.t-role {
  font-size: 0.8rem;
  color: var(--bleu-peacock);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CTA "Lire tous nos avis Google" */
.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bleu-peacock);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bleu-peacock);
  transition: all 0.3s var(--ease);
}
.btn-link:hover {
  color: var(--bleu-azur);
  border-bottom-color: var(--bleu-azur);
  gap: 0.75rem;
}
.btn-link svg {
  transition: transform 0.3s var(--ease);
}
.btn-link:hover svg {
  transform: translate(2px, -2px);
}

/* ---------- 27. Responsive ------------------------------------------- */
@media (max-width: 980px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid, .services-grid, .testimonials-grid, .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pillar h3 { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
  .enterprise-grid,
  .enterprise-agent-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .targets-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .pillars-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .fiscal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .col-with {
    transform: none;
  }
  .brokerage-grid {
    grid-template-columns: 1fr;
  }
  .method-timeline::before {
    left: 25px;
  }
  .method-num {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}

@media (max-width: 720px) {
  .nav-main { display: none; }
  .nav-main.open {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bleu-royal);
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .nav-main.open ul {
    flex-direction: column;
    gap: 2rem;
    font-size: 1.2rem;
  }
  .burger { display: flex; z-index: 101; }
  .brand-text .brand-tag { display: none; }

  .values-grid, .services-grid, .testimonials-grid, .journal-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row.two { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Quote bands sur mobile : padding réduit */
  .quote-band { padding: 2.5rem 0; }

  /* Page Entreprises mobile */
  .pillars-4 {
    grid-template-columns: 1fr !important;
  }
  .fiscal-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .stat-separator { display: none; }
  .stat-item {
    width: 100%;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:last-child { border-bottom: none; }
  .method-step {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-logo-main { width: 95%; }
  .hero-baseline { font-size: 1rem; }
  .about-stats { grid-template-columns: 1fr; }
}
