/* ══════════════════════════════════════════════════════════
   TP BAT — Feuille de style principale
   ✏️ COULEURS PRINCIPALES — modifiez ces variables pour changer tout le site
   ══════════════════════════════════════════════════════════ */
:root {
  --blue-deep:   #0A1B3D;   /* Bleu nuit — fond navbar & sections sombres */
  --blue-mid:    #1A3A6B;   /* Bleu moyen — accents, hover */
  --blue-light:  #2A5CAA;   /* Bleu vif — boutons, highlights */
  --yellow:      #F5C800;   /* Jaune TP BAT — accent principal */
  --yellow-dark: #D4A800;   /* Jaune foncé — hover bouton jaune */
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --gray-light:  #E8ECF3;
  --gray:        #8A9AB5;
  --text:        #1A2035;
  --text-light:  #4A5568;

  /* ✏️ TYPOGRAPHIE — modifiez si vous voulez changer les polices */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius: 10px;
  --shadow: 0 8px 40px rgba(10, 27, 61, 0.12);
  --shadow-strong: 0 16px 60px rgba(10, 27, 61, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ══════════════════════════════════════════════════
   NAVBAR — Barre de navigation
   ══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--blue-deep);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.logo-tp {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--yellow);
  letter-spacing: -1px;
}

.logo-bat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: -1px;
}

.logo-tag {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 8px;
  display: none;
}
@media (min-width: 900px) { .logo-tag { display: inline; } }

/* Liens nav desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 18px;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav-item:hover { color: var(--white); }
.nav-item:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-item.active { color: var(--white); }
.nav-item.active::after { transform: translateX(-50%) scaleX(1); }

/* Bouton CTA nav */
.nav-item.cta-nav {
  background: var(--yellow);
  color: var(--blue-deep) !important;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 6px;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s;
}
.nav-item.cta-nav::after { display: none; }
.nav-item.cta-nav:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.nav-item.cta-nav.active { background: var(--yellow-dark); }

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,27,61,0.92) 0%, rgba(10,27,61,0.55) 60%, rgba(10,27,61,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: var(--yellow);
  color: var(--blue-deep);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(245,200,0,0.4);
  animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.badge-label { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* ══════════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blue-light);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42,92,170,0.4);
}
.btn-primary:hover { background: var(--blue-mid); box-shadow: 0 8px 30px rgba(42,92,170,0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-yellow {
  background: var(--yellow);
  color: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(245,200,0,0.35);
  font-weight: 800;
}
.btn-yellow:hover { background: var(--yellow-dark); box-shadow: 0 8px 30px rgba(245,200,0,0.45); }

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════ */
.stats {
  background: var(--blue-deep);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:nth-child(2n) { border-right: none; }
@media (min-width: 700px) {
  .stat-item { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-right: none; }
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ══════════════════════════════════════════════════
   SECTION LABELS & TITLES
   ══════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(42,92,170,0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.section-label.light { color: var(--yellow); background: rgba(245,200,0,0.15); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }

/* ══════════════════════════════════════════════════
   INTRO
   ══════════════════════════════════════════════════ */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 100px 24px;
  align-items: center;
}
@media (min-width: 900px) { .intro { grid-template-columns: 1fr 1fr; } }

.intro-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }
.intro-text .btn { margin-top: 16px; }

.intro-visual { position: relative; }
.intro-visual img {
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.intro-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  background: var(--yellow);
  border-radius: 16px;
  z-index: 0;
  opacity: 0.3;
}

/* ══════════════════════════════════════════════════
   SERVICES PREVIEW (accueil)
   ══════════════════════════════════════════════════ */
.services-preview {
  background: var(--blue-deep);
  padding: 100px 0;
}
.services-preview .section-title { margin-top: 8px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); border-color: rgba(245,200,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--blue-light);
  border-color: var(--blue-light);
}
.service-card.featured::before { transform: scaleX(1); }
.service-card.featured:hover { background: var(--blue-mid); }

.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.card-arrow { display: block; margin-top: 20px; color: var(--yellow); font-size: 1.1rem; font-weight: 700; transition: transform 0.2s; }
.service-card:hover .card-arrow { transform: translateX(6px); }

/* ══════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
  padding: 80px 24px;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.cta-inner .btn { margin-top: 8px; }

/* ══════════════════════════════════════════════════
   PAGE HEADER (sous-pages)
   ══════════════════════════════════════════════════ */
.page-header {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-top: 70px;
  overflow: hidden;
}
.page-header-short { min-height: 40vh; }

.page-header-bg {
  position: absolute;
  inset: 0;
}
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; }

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}
.page-header-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin: 8px 0 12px;
  letter-spacing: -1px;
}
.page-header-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 500px; }

/* ══════════════════════════════════════════════════
   SERVICES DETAIL (page services)
   ══════════════════════════════════════════════════ */
.services-detail { padding: 80px 24px; }

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-row:last-child { border-bottom: none; }
@media (min-width: 900px) { .service-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .service-row.reverse .service-row-img { order: 2; } }
@media (min-width: 900px) { .service-row.reverse .service-row-text { order: 1; } }

.service-row-img img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.svc-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: var(--gray-light);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}
.service-row-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 16px;
}
.service-row-text p { color: var(--text-light); margin-bottom: 20px; }

.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.svc-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   ÉQUIPE
   ══════════════════════════════════════════════════ */
.team-intro { padding: 60px 24px 20px; text-align: center; }
.team-intro-text {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.team-section { padding: 60px 24px; }
.team-section-alt { background: var(--off-white); padding: 60px 24px; }

.team-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.title-bar {
  display: inline-block;
  width: 4px; height: 32px;
  background: var(--yellow);
  border-radius: 2px;
}

/* Cards direction */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid var(--yellow);
}
@media (min-width: 500px) { .featured-card { grid-template-columns: 160px 1fr; } }
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }

.team-photo { overflow: hidden; }
.team-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 500px) { .team-photo img { height: 100%; min-height: 220px; } }

.team-info { padding: 24px 24px 24px 0; }
@media (max-width: 499px) { .team-info { padding: 0 24px 24px; } }

.team-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  background: rgba(42,92,170,0.1);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.team-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 10px;
}
.team-info p { font-size: 0.92rem; color: var(--text-light); }
.team-contact { margin-top: 16px; }
.team-contact a { color: var(--blue-light); font-size: 0.9rem; font-weight: 500; }
.team-contact a:hover { color: var(--blue-mid); text-decoration: underline; }

/* Cards petites */
.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) { .team-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.team-card-small {
  background: var(--white);
  border-radius: 12px;
  padding: 0 0 20px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s;
}
.team-card-small:hover { transform: translateY(-4px); }

.team-photo-sm { overflow: hidden; margin-bottom: 16px; }
.team-photo-sm img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
}

.team-card-small .team-role { margin-bottom: 8px; }
.team-card-small h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); margin-bottom: 4px; }
.team-card-small p { font-size: 0.85rem; color: var(--text-light); padding: 0 12px; }

/* Valeurs */
.values-band {
  background: var(--blue-deep);
  padding: 80px 24px;
}
.values-band .section-title { text-align: center; margin-bottom: 48px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.value-item:hover { background: rgba(255,255,255,0.1); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.value-item h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--yellow); margin-bottom: 10px; }
.value-item p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* Recrutement */
.recruit-band {
  background: var(--off-white);
  padding: 80px 24px;
}

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.contact-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
}

.contact-bloc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 80px 24px;
}
@media (min-width: 900px) { .contact-bloc { grid-template-columns: 1fr 1.4fr; } }

.contact-infos h2,
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.info-item p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }
.info-item a { color: var(--blue-light); }
.info-item a:hover { text-decoration: underline; }

.map-embed { margin-top: 16px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }

/* Formulaire */
.form-intro { color: var(--text-light); margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(42,92,170,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: 0.78rem; color: var(--gray); text-align: center; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 60px 24px;
  background: rgba(42,92,170,0.05);
  border-radius: 16px;
  border: 2px solid rgba(42,92,170,0.15);
}
.success-icon { font-size: 3rem; }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; color: var(--text); }
.form-success p { color: var(--text-light); }

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--blue-deep);
  padding: 60px 0 30px;
  border-top: 3px solid var(--yellow);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo-tp { font-size: 1.8rem; }
.footer-brand .logo-bat { font-size: 1.8rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.7; }

.footer-links h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-legal { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-legal p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════
   RESPONSIVE MOBILE NAVBAR
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--blue-deep);
    border-top: 2px solid var(--yellow);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-item {
    padding: 14px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .nav-item::after { display: none; }
  .nav-item:hover { background: rgba(255,255,255,0.08); }
  .nav-item.active { background: rgba(245,200,0,0.15); }
  .nav-item.cta-nav { margin-left: 0; margin-top: 8px; text-align: center; }

  .hero-badge { width: 80px; height: 80px; bottom: 24px; right: 24px; }
  .badge-num { font-size: 1.2rem; }
}

/* Burger animation */
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════
   ANIMATIONS D'ENTRÉE
   ══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow   { animation-delay: 0.1s; }
.hero-title     { animation-delay: 0.25s; }
.hero-sub       { animation-delay: 0.4s; }
.hero-btns      { animation-delay: 0.55s; }
