/* ============================================
   Template Référence Générique — Fallback pro
   Design: Sobre, professionnel, neutre
   Couleurs: Ardoise (#1E293B) + Teal (#0D9488)
   Fonts: DM Sans (display) + Inter (body)
   Usage: Métiers non couverts par les templates spécialisés
   ============================================ */

:root {
  /* Couleurs principales */
  --c-primary: #1E293B;
  --c-primary-light: #334155;
  --c-primary-dark: #0F172A;
  --c-accent: #0D9488;
  --c-accent-light: #F0FDFA;
  --c-accent-dark: #0F766E;
  --c-accent-glow: rgba(13, 148, 136, 0.12);

  /* Neutres */
  --c-bg: #FAFAFA;
  --c-surface: #FFFFFF;
  --c-surface-warm: #F5F5F4;
  --c-text: #1A1A1A;
  --c-text-soft: #52525B;
  --c-text-muted: #A1A1AA;
  --c-text-on-dark: #E4E4E7;
  --c-border: #E4E4E7;
  --c-border-light: #F4F4F5;

  /* Fonts */
  --f-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --f-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --s-section: clamp(4rem, 8vw, 7rem);
  --s-gap: clamp(1.5rem, 3vw, 2.5rem);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Ombres */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 36px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-accent: 0 6px 24px rgba(13, 148, 136, 0.18);

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

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

/* ---- UTILITAIRES ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.section {
  padding: var(--s-section) 0;
}
.section--dark {
  background: var(--c-primary);
  color: var(--c-text-on-dark);
}
.section--warm {
  background: var(--c-surface-warm);
}
.section--cta {
  background: var(--c-primary);
  color: #fff;
}

/* ---- ANIMATIONS REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- EN-TÊTE DE SECTION ---- */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: var(--c-accent-light);
  padding: 0.35em 0.9em;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.section-tag--light {
  background: rgba(13, 148, 136, 0.12);
  color: var(--c-accent);
}
.section-header__desc {
  color: var(--c-text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ---- HEADINGS ---- */
.heading-lg {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 3.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}
.heading-lg strong {
  color: var(--c-accent);
}
.heading-md {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-text);
}
.heading--light {
  color: #fff;
}
.heading--light strong {
  color: var(--c-accent);
}
.text--light {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: var(--r-md);
  padding: 0.75em 1.5em;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn--accent {
  background: var(--c-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(13, 148, 136, 0.25);
}
.btn--ghost {
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  background: transparent;
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.section:not(.section--dark):not(.section--cta) .btn--ghost {
  border-color: var(--c-border);
  color: var(--c-text);
}
.section:not(.section--dark):not(.section--cta) .btn--ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-light);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav--scrolled {
  border-bottom-color: var(--c-border-light);
  background: rgba(250, 250, 250, 0.97);
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-primary);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--c-accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover {
  color: var(--c-accent);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__links a.is-active {
  color: var(--c-accent);
  font-weight: 600;
}
.nav__links a.is-active::after {
  width: 100%;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff !important;
  background: var(--c-accent);
  padding: 0.5em 1.1em;
  border-radius: var(--r-md);
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover {
  background: var(--c-accent-dark);
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 0 2rem;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-light);
}
.nav__mobile.is-open {
  display: flex;
}
.nav__mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text-soft);
}
.nav__mobile a.is-active {
  color: var(--c-accent);
  font-weight: 600;
}
.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--c-accent) !important;
  margin-top: 0.5rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  background-color: var(--c-primary);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.5) 0%,
    rgba(15, 23, 42, 0.7) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 6vh, 5rem);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(13, 148, 136, 0.1);
  padding: 0.35em 0.9em;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.15rem;
}
.hero__title strong {
  color: var(--c-accent);
}
.hero__desc {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 860px;
}
.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero__metrics {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__metric {
  display: flex;
  flex-direction: column;
}
.hero__metric strong {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-accent);
}
.hero__metric span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

/* ============================================
   SERVICES GRID (Accueil)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-gap);
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}
.service-card__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--c-primary);
}
.service-card__desc {
  color: var(--c-text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-accent);
  transition: gap 0.3s var(--ease);
}
.service-card__link:hover {
  gap: 0.6rem;
}

/* ============================================
   IMAGE BREAK — Section immersive
   ============================================ */
.section--img-break {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920&q=80') center/cover no-repeat;
}
.section--img-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 100%);
}
.section--img-break__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: #fff;
}

/* ============================================
   POURQUOI NOUS (section dark)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.why-content {}
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  padding: 1.25rem;
  transition: background 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
}
.why-card i {
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-card h3 {
  font-family: var(--f-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ============================================
   AVIS / REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-gap);
}
.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.review-card__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.85rem;
}
.review-card__text {
  font-size: 0.93rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-card__author strong {
  font-size: 0.9rem;
  color: var(--c-text);
}
.review-card__author span {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.cta-block__content {}
.cta-block__content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0.75rem 0 2rem;
}
.cta-block__actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (pages intérieures)
   ============================================ */
.page-hero {
  background: var(--c-primary);
  color: #fff;
  padding: calc(64px + clamp(3rem, 5vw, 4.5rem)) 0 clamp(3rem, 5vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.page-hero__breadcrumb {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.85rem;
  position: relative;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.page-hero__breadcrumb a:hover {
  color: var(--c-accent);
}
.page-hero__breadcrumb span {
  margin: 0 0.4rem;
}
.page-hero__title {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  position: relative;
}
.page-hero__title strong {
  color: var(--c-accent);
}
.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 780px;
  margin: 0.75rem auto 0;
  position: relative;
}

/* ============================================
   SERVICES DÉTAILLÉS (page services)
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 3vw, 3rem) 0;
  border-bottom: 1px solid var(--c-border);
}
.service-detail:last-child {
  border-bottom: none;
}
.service-detail--reverse {
  direction: rtl;
}
.service-detail--reverse > * {
  direction: ltr;
}
.service-detail__content {}
.service-detail__number {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-accent);
  background: var(--c-accent-light);
  padding: 0.25em 0.75em;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.service-detail__title {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}
.service-detail__desc {
  color: var(--c-text-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--c-text-soft);
}
.service-detail__list li i {
  color: var(--c-accent);
  flex-shrink: 0;
}
.service-detail__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-surface-warm);
}
.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PROCESSUS / ÉTAPES (page services)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-gap);
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.process-step__title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}
.process-step__desc {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.65;
}

/* ============================================
   CONTACT (page contact)
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.contact-info__value {
  font-weight: 500;
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-info__value a {
  color: var(--c-accent);
  transition: color 0.2s;
}
.contact-info__value a:hover {
  color: var(--c-accent-dark);
}

/* Placeholder carte */
.map-placeholder {
  margin-top: 1.5rem;
  background: var(--c-surface-warm);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

/* ---- FORMULAIRE ---- */
.form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.form__title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group {
  margin-bottom: 1.15rem;
}
.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.35rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.7em 0.95em;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.93rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-glow);
}
.form__textarea {
  resize: vertical;
  min-height: 110px;
}
.form__select {
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-primary-dark);
  color: var(--c-text-on-dark);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.25rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__brand {}
.footer__logo {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--c-accent);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__contact a:hover {
  color: var(--c-accent);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a {
  color: var(--c-accent);
  transition: color 0.2s;
}
.footer__bottom a:hover {
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Grilles */
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .form__row { grid-template-columns: 1fr; }

  /* Hero */
  .hero { min-height: 100vh; }
  .hero__metrics { flex-direction: column; gap: 1rem; }
  .section--img-break { min-height: 40vh; }
  .section--img-break__content { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-block__actions { flex-direction: column; align-items: center; }
  .cta-block__actions .btn { width: 100%; justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
