/* ============================================================
   FUZE AGENCY — Stylesheet
   Palette : Crème #EDE8DC | Vert #1A3A28 | Or #C9A96E
   ============================================================ */

/* Police extraite du logo */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
  --cream:      #EDE8DC;
  --cream-dark: #E0D9C8;
  --green:      #1A3A28;
  --green-mid:  #2A5A40;
  --green-light:#3D7A58;
  --gold:       #C9A96E;
  --gold-light: #DFC08A;
  --white:      #FFFFFF;
  --text:       #1A3A28;
  --text-muted: #5A7A68;
  --border:     rgba(26,58,40,0.12);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --radius:    16px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(26,58,40,0.08);
  --shadow-lg: 0 16px 64px rgba(26,58,40,0.14);
  --max-w:     1200px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--ff-sans); background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.d-none-sm { display: inline; }

/* ─── BOUTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(26,58,40,0.3);
}
.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,58,40,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--ghost:hover {
  background: var(--green);
  color: var(--cream);
}
.btn--gold {
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 4px 24px rgba(201,169,110,0.4);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.5);
}
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }

/* ─── TAGS & TITRES DE SECTION ───────────────────────────── */
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag--light { color: var(--gold-light); }

.section-header { text-align: center; margin-bottom: 64px; }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(237,232,220,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo img { height: 34px; width: auto; }
.navbar__brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.01em;
  line-height: 1;
}

.navbar__approach {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar__approach:hover { color: var(--green); }
@media (max-width: 480px) { .navbar__approach { display: none; } }

.lang-switcher {
  position: relative;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}
.lang-toggle:hover { border-color: var(--green); color: var(--green); }
.lang-chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-width: 140px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s;
  text-align: left;
}
.lang-option:hover { background: var(--cream); color: var(--green); }
.lang-option--active { color: var(--green); font-weight: 700; background: var(--cream-dark); }
.lang-option span { font-size: 0.85rem; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__circle--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-light) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero__circle--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  opacity: 0.2;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}
.stat__num--gold { color: var(--gold) !important; }
.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── BANDE POSTULER ─────────────────────────────────────── */
.apply-band {
  background: var(--cream);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.apply-band__condition {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero__condition {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: -8px;
  margin-bottom: 24px;
}
.contact__condition {
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.contact__commission {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(201,169,110,0.08);
  border: 2px solid rgba(201,169,110,0.5);
  border-radius: var(--radius);
  padding: 18px 28px;
  margin-bottom: 32px;
}
.commission__number {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.commission__text {
  font-size: 0.95rem;
  color: rgba(237,232,220,0.8);
  line-height: 1.5;
}

/* ─── MANIFESTE ──────────────────────────────────────────── */
.manifesto {
  background: var(--green);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.12);
  pointer-events: none;
}
.manifesto::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.08);
  pointer-events: none;
}
.manifesto__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.manifesto__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}
.manifesto__title em {
  color: var(--gold);
  font-style: italic;
}
.manifesto__text {
  font-size: 1.05rem;
  color: rgba(237,232,220,0.75);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
.manifesto__pillars {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.manifesto__pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.manifesto__pillar-icon {
  color: var(--gold);
  font-size: 0.55rem;
}
@media (max-width: 600px) {
  .manifesto { padding: 60px 0; }
  .manifesto__pillars { gap: 20px; flex-direction: column; align-items: center; }
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--cream);
  border-top: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card--service {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s ease;
}
.card--service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,58,40,0.2);
}
.card--featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}
.card--featured .card__icon  { background: rgba(237,232,220,0.15); color: var(--gold); }
.card--featured h3            { color: var(--cream); }
.card--featured p             { color: rgba(237,232,220,0.8); }
.card--featured .card__list li             { color: rgba(237,232,220,0.9); border-color: rgba(237,232,220,0.15); }
.card--featured .card__list li::before    { color: var(--gold); }

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(26,58,40,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}
.card--service h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--green);
}
.card--service p  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.card__list       { display: flex; flex-direction: column; gap: 8px; }
.card__list li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0 0 16px;
  border-top: 1px solid var(--border);
  position: relative;
}
.card__list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* ─── COMMENT ÇA MARCHE ──────────────────────────────────── */
.how { padding: 120px 0; background: var(--cream-dark); }
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step__num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}
.step__content h3 { font-family: var(--ff-serif); font-size: 1.2rem; color: var(--green); margin-bottom: 8px; }
.step__content p  { font-size: 0.875rem; color: var(--text-muted); }
.step__arrow      { font-size: 1.5rem; color: var(--gold); margin-top: 32px; opacity: 0.6; flex-shrink: 0; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { padding: 120px 0; background: var(--cream); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--green-mid); }
.faq__icon { font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq__item.open .faq__a { max-height: 200px; padding-bottom: 20px; }
.faq__a p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ─── CONTACT CTA ────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}
.contact__circle--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.contact__circle--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
}
.contact__header { text-align: center; margin-bottom: 40px; }
.contact__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact__title em { color: var(--gold); font-style: italic; }
.contact__sub { color: rgba(237,232,220,0.75); margin-bottom: 20px; font-size: 1rem; }

/* ─── FORMULAIRE CONTACT ─────────────────────────────────── */
.telegram-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #229ED9;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  margin-bottom: 36px;
  box-shadow: 0 6px 24px rgba(34,158,217,0.35);
  transition: all 0.25s ease;
}
.telegram-cta:hover {
  background: #1a8bbf;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(34,158,217,0.45);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(237,232,220,0.75);
  letter-spacing: 0.03em;
}
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(237,232,220,0.08);
  border: 1px solid rgba(237,232,220,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
  font-family: var(--ff-sans);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(237,232,220,0.3); }
.form__group select option { background: var(--green); color: var(--cream); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  background: rgba(237,232,220,0.12);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.2);
}
.form__group textarea { resize: vertical; min-height: 90px; }
.contact__form .btn { align-self: center; margin-top: 8px; }

/* ─── SUCCÈS ─────────────────────────────────────────────── */
.contact__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.success__icon {
  width: 64px; height: 64px;
  background: var(--gold);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 20px;
}
.contact__success h3 {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.contact__success p { color: rgba(237,232,220,0.7); margin-bottom: 28px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: #0F2419; color: var(--cream); padding: 80px 0 0; }
.footer__inner {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.footer__brand    { max-width: 260px; }
.footer__logo     { height: 32px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__brand p  { font-size: 0.875rem; color: rgba(237,232,220,0.55); margin-bottom: 24px; }
.footer__social   { display: flex; gap: 16px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(237,232,220,0.06);
  border: 1px solid rgba(237,232,220,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(237,232,220,0.6);
  transition: all 0.2s;
}
.footer__social a:hover { background: rgba(237,232,220,0.1); color: var(--gold); border-color: var(--gold); }
.footer__col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,232,220,0.4);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a   { font-size: 0.875rem; color: rgba(237,232,220,0.65); transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(237,232,220,0.08); padding: 24px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom p    { font-size: 0.8rem; color: rgba(237,232,220,0.35); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 0.8rem; color: rgba(237,232,220,0.35); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Cercles hero : flottement lent */
.hero__circle--1 { animation: float1 8s ease-in-out infinite; }
.hero__circle--2 { animation: float2 10s ease-in-out infinite; }
@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, 20px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -15px); }
}

/* Bouton gold : lueur pulsée */
.btn--gold { animation: glow 3s ease-in-out infinite; }
@keyframes glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,169,110,0.4); }
  50%       { box-shadow: 0 6px 36px rgba(201,169,110,0.7); }
}

/* Numéros des étapes : légère rotation au hover */
.step:hover .step__num { transform: scale(1.1); transition: transform 0.3s ease; color: var(--gold); opacity: 1; }
.step__num { transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease; }

/* Icônes des cartes : lift au hover */
.card--service:hover .card__icon { transform: translateY(-4px); transition: transform 0.3s ease; }
.card__icon { transition: transform 0.3s ease; }

/* Section tags : slide depuis la gauche */
.section-tag {
  opacity: 0;
  transform: translateX(-12px);
  animation: tagReveal 0.6s ease forwards;
  animation-delay: 0.2s;
}
@keyframes tagReveal {
  to { opacity: 1; transform: translateX(0); }
}

/* ─── ANIMATIONS MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {

  /* Cartes : slide-up + scale plus prononcé */
  .fade-in { transform: translateY(40px) scale(0.97); }
  .fade-in.visible { transform: translateY(0) scale(1); }

  /* Bouton gold : shimmer animé */
  .btn--gold {
    position: relative;
    overflow: hidden;
  }
  .btn--gold::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
  }
  @keyframes shimmer {
    0%   { left: -100%; }
    60%, 100% { left: 160%; }
  }

  /* Condition text : légère pulsation */
  .apply-band__condition,
  .contact__condition {
    animation: pulse-text 3s ease-in-out infinite;
  }
  @keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.65; }
  }

  /* Stats : pop-in au chargement */
  .hero__stats .stat {
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  .hero__stats .stat:nth-child(1) { animation-delay: 0.6s; }
  .hero__stats .stat:nth-child(3) { animation-delay: 0.8s; }
  .hero__stats .stat:nth-child(5) { animation-delay: 1.0s; }
  .hero__stats .stat:nth-child(7) { animation-delay: 1.2s; }
  @keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Étapes : slide depuis la gauche */
  .step { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .step.visible { opacity: 1; transform: translateX(0); }

  /* FAQ items : slide depuis la droite */
  .faq__item { opacity: 0; transform: translateX(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .faq__item.visible { opacity: 1; transform: translateX(0); }

  /* Numéros d'étapes : glow doré */
  .step__num {
    animation: goldGlow 3s ease-in-out infinite;
  }
  @keyframes goldGlow {
    0%, 100% { text-shadow: none; }
    50%       { text-shadow: 0 0 16px rgba(201,169,110,0.6); }
  }

  /* Titre hero : légère animation de soulignement */
  .hero__title em {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientSlide 3s linear infinite;
  }
  @keyframes gradientSlide {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 24px 32px; }
  .hero__title  { font-size: 2rem; margin-bottom: 16px; }
  .hero__sub    { margin-bottom: 24px; font-size: 0.95rem; }
  .hero__actions { margin-bottom: 32px; }
  .hero__stats  {
    gap: 0;
    padding: 16px 8px;
    flex-wrap: wrap;
    row-gap: 16px;
  }
  .hero__stats .stat { width: calc(50% - 1px); flex-shrink: 0; }
  .hero__scroll { display: none; }
  .stat__divider { display: none; }
  .stat__num   { font-size: 1.3rem; }
  .stat__label { font-size: 0.68rem; }
  .d-none-sm { display: none; }

  .services__grid { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }
  .how__steps { flex-direction: column; align-items: center; }
  .step       { max-width: 100%; }
  .step__arrow { transform: rotate(90deg); margin: 0; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { max-width: 100%; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
}
