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

:root {
  --green: #73DC9A;
  --green-light: #9DE7B8;
  --blue: #73CADC;
  --dark: #27363D;
  --text: #27363D;
  --text-secondary: #537180;
  --card-bg: #F3F5F7;
  --white: #FFFFFF;
  --black: #000000;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, button, .btn {
  font-family: 'Host Grotesk', sans-serif;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 8px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .85; }

.btn-green      { background: var(--green); color: var(--dark); }
.btn-green-light{ background: var(--green-light); color: var(--dark); }
.btn-white      { background: var(--white); color: var(--dark); }
.btn-dark       { background: var(--dark); color: var(--white); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 88px;
  background: transparent; /* pas de fond sur le header */
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Frame blanc/blur : logo SVG + liens de nav */
.header-logo-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 8px 24px 8px 16px;
  flex: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  line-height: 24px;
}

/* Bouton légèrement détaché (gap 16px depuis le frame, géré par le flex du header) */
.btn-header {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--green);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
  padding: 0 64px; /* top/bottom: 0, left/right: 64px */
}

.hero-content {
  display: flex;
  flex-direction: row;
  gap: 80px;
  border-radius: 32px;
  padding: 64px;
  /* gradient #7ECCF0 → #95FFCA à 21% opacité */
  background: linear-gradient(135deg,
    rgba(126, 204, 240, 0.21) 0%,
    rgba(149, 255, 202, 0.21) 100%
  );
  align-items: center;
  min-height: 630px;
  overflow: hidden;
  position: relative;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  flex: 1;
  min-width: 0;
}

.hero-progress-bar {
  width: 191px;
  height: 10px;
  background: var(--green);
  border-radius: 20px;
  flex-shrink: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--dark);
}

.underline-green {
  position: relative;
  display: inline-block;
}

.underline-green::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 2px;
  height: 10px;
  background: var(--green);
  border-radius: 20px;
  z-index: -1;
}

.hero-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bouton 1 : vert semi-transparent + blur */
.btn-hero-primary {
  background: rgba(115, 220, 154, 0.70);
  color: var(--dark);
  border: 1px solid #73DC99;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Bouton 2 : blanc très transparent + blur */
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: var(--dark);
  border: 1px solid #73DC99;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Décor bleu en fond droit du hero */
.hero-decor {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  height: 130%;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.hero-text-container,
.card-section {
  position: relative;
  z-index: 1;
}

/* ── Cards (droite du hero) ── */
.card-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 430px;
  flex-shrink: 0;
}

.card {
  background: rgba(255, 255, 255, 1);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title h2{
  font-family: 'Host Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
  color: var(--dark);
}

/* Bullet = rectangle 10×6px radius 4 (pas un cercle) */
.card-bullet {
  display: inline-block;
  width: 10px;
  height: 6px;
  border-radius: 4px;
  background: var(--green);
  flex-shrink: 0;
}

.card-info > p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Tag : fond blanc 20%, border #CAEADB, radius 4, padding 4/16 */
.tag {
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid #CAEADB;
  border-radius: 4px;
  padding: 4px 16px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.40);
}

/* ══════════════════════════════════════
   CAROUSEL
══════════════════════════════════════ */
.carousel {
  padding: 32px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  width: 160px;
  height: 80px;
  background: var(--card-bg);
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter .2s;
}

.carousel-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* ══════════════════════════════════════
   POURQUOI TC SOLUTIONS
══════════════════════════════════════ */
.pourquoi-section {
  padding: 96px 64px;
  overflow: hidden;
}

.pourquoi-content {
  position: relative;
  display: flex;
  gap: 48px;
  align-items: stretch;
}

/* Décoration logo-montagne : grand fond derrière tout le bloc */
.pourquoi-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Photo gauche */
.pourquoi-image {
  width: 580px;
  height: 351px;
  background: var(--card-bg);
  border-radius: 32px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Texte droite */
.pourquoi-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.pourquoi-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pourquoi-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.33;
  flex: 1;
}

/* Bouton "Nous contacter" de la section Pourquoi : vert semi-transparent */
.btn-pourquoi {
  background: rgba(115, 220, 154, 0.70);
  color: var(--dark);
  border: 1px solid var(--green);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-shrink: 0;
}

.pourquoi-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pourquoi-row-2 {
  display: flex;
  gap: 24px;
}

/* Cartes info : fond #F3F5F7, radius 16, padding 16 */
.pourquoi-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 16px;
  flex: 1;
}

.pourquoi-card h3 {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.33;
}

.pourquoi-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   DEUX EXPERTISES
══════════════════════════════════════ */
.expertises-section {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Titre centré */
.expertises-info-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}

.expertises-info-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.33;
}

.expertises-info-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 675px;
}

/* Fond avec gradient (même que le hero) */
.expertises-info-content {
  background: linear-gradient(135deg,
    rgba(126, 204, 240, 0.21) 0%,
    rgba(149, 255, 202, 0.21) 100%
  );
  border-radius: 32px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Tabs : centré */
.expertises-tabs {
  display: flex;
  justify-content: center;
}

.tabs-inner {
  background: var(--dark);
  border-radius: 24px;
  padding: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.tab {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 4px 16px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: all .2s;
  line-height: 1.33;
  white-space: nowrap;
}

.tab.active {
  background: var(--white);
  color: var(--dark);
}

.tab-panel.hidden { display: none; }

/* Panel : blanc, border blanc 1px, blur */
.expertises-panel {
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.section-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.section-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.33;
  margin-bottom: 16px;
}

.section-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #52717F;
  line-height: 1.5;
}

/* Bouton panel */
.btn-panel {
  background: var(--green-light);
  color: var(--dark);
  border: 1px solid var(--green);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-shrink: 0;
}

.expertises-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Cards : #F3F5F7, border blanc 1px, blur */
.expertise-card {
  background: var(--card-bg);
  border: 1px solid var(--white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.expertise-card h4 {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.33;
}

.expertise-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   THOMAS
══════════════════════════════════════ */
.thomas-section {
  padding: 96px 64px;
}

.stats-content {
  display: flex;
  gap: 48px;
  align-items: stretch;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.33;
}

.stat-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}

.stat-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  position: relative;
}

.thomas-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.stat-image-row {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.placeholder-img {
  flex: 1;
  height: 200px;
  background: var(--card-bg);
  border-radius: 32px;
}

/* ══════════════════════════════════════
   AVIS (REASSURANCE)
══════════════════════════════════════ */
.reviews-section {
  padding: 96px 64px;
  background: linear-gradient(135deg,
    rgba(126,204,240,.21) 0%,
    rgba(150,255,202,.21) 100%
  );
}

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars svg { display: block; }

.review-card > p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
}

.review-avatar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-img {
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border-radius: 8px;
  flex-shrink: 0;
}

.avatar-content strong {
  display: block;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 24px;
}

.avatar-content span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.2;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-section {
  padding: 96px 64px;
}

.cta-content {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(126, 204, 240, 0.30) 0%,
      rgba(150, 255, 202, 0.30) 100%
    ),
    var(--black);
  border-radius: 32px;
  padding: 48px 48px 48px 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Illustration décor dark mode en fond gauche */
.cta-decor {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 0;
}

.cta-text, .cta-content > .btn {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.33;
  margin-bottom: 4px;
}

.cta-text p {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.33;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
  padding: 96px 64px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.faq-left-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.33;
}

.faq-left p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
}

/* Accordion */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  gap: 24px;
}
.accordion summary::-webkit-details-marker { display: none; }

.accordion summary > span:first-child {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.33;
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform .2s;
}

.accordion[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-answer {
  padding: 0 24px 24px 24px;
}

.accordion-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .header { padding: 24px 32px; }
  .hero-section { padding: 0 32px; }
  .hero-content { gap: 48px; padding: 48px; flex-direction: column; min-height: auto; }
  .card-section { width: 100%; }
  .pourquoi-section,
  .expertises-section,
  .thomas-section,
  .reviews-section,
  .cta-section,
  .faq-section { padding: 64px 32px; }
  .pourquoi-content { flex-direction: column; }
  .pourquoi-image { width: 100%; height: 240px; }
  .pourquoi-decor { width: 500px; left: 50%; transform: translate(-50%, -50%); }
  .stats-content { flex-direction: column; }
  .reviews-row { grid-template-columns: 1fr; }
  .expertises-cards-row { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 48px; }
  .cta-content { flex-direction: column; align-items: flex-start; padding: 48px 32px; }
}

@media (max-width: 768px) {
  .header { padding: 16px 20px; }
  .hero-section { padding: 0 16px; }
  .hero-content { padding: 32px 24px; gap: 32px; }
  .hero-text h1 { font-size: 36px; }
  .pourquoi-section,
  .expertises-section,
  .thomas-section,
  .reviews-section,
  .cta-section,
  .faq-section { padding: 48px 20px; }
  .pourquoi-heading h2,
  .expertises-info-text h2,
  .stat-text h2,
  .cta-text h2,
  .faq-left h2 { font-size: 32px; }
  .expertises-info-content { padding: 24px; }
  .expertises-panel { padding: 24px; }
  .section-content-header { flex-direction: column; }
  .pourquoi-row-2 { flex-direction: column; }
  .carousel { padding: 32px 20px; }
}

/* ══════════════════════════════════════
   MODALE CONTACT
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(39, 54, 61, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 32px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 32px 80px rgba(39, 54, 61, 0.18);
  transform: translateY(24px);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

/* Décor SVG fond */
.modal-decor {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 360px;
  height: auto;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

/* Bouton fermer */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s;
}
.modal-close:hover { background: #e5e8ea; }

/* En-tête */
.modal-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(115, 220, 154, 0.15);
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 4px 14px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  width: fit-content;
}

.modal-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.modal-header p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Infos */
.modal-infos {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
a.modal-info-item:hover { background: #e8eaec; }

.modal-info-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-info-value {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

/* CTA */
.modal-cta {
  position: relative;
  z-index: 1;
  justify-content: center;
  font-size: 16px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: 64px 88px 40px;
}

.footer-decor {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 600px;
  height: auto;
  pointer-events: none;
  opacity: 0.06;
  filter: brightness(10);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}

/* Colonne marque */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
}

.footer-zone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Host Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

/* Colonnes nav / contact */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-family: 'Host Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color .15s;
}

.footer-nav a:hover { color: var(--green); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color .15s;
}

a.footer-contact-row:hover { color: rgba(255,255,255,0.95); }

/* Séparateur */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 48px 0 28px;
  position: relative;
  z-index: 1;
}

/* Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  position: relative;
  z-index: 1;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
