/* ============================================================
   shared.css — Styles partagés pour toutes les pages internes
   Soumission Résidentielle
   ============================================================ */

/* ── 1. RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, textarea, select { font: inherit; border: none; outline: none; }

/* ── 2. DESIGN TOKENS (:root variables) ──────────────────────── */
:root {
  /* Couleurs */
  --sky:    #42c3f3;
  --blue:   #036aa3;
  --navy:   #012f68;
  --ink:    #0d0d12;
  --body:   #4a5568;
  --muted:  #9ca3af;
  --white:  #ffffff;
  --light:  #f8fbfd;
  --border: #e2e8f0;

  /* Border radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Easing personnalisé */
  --ease: cubic-bezier(.22, 1, .36, 1);

  /* Ombres */
  --sh-sm: 0 2px 8px rgba(1, 47, 104, .07);
  --sh-md: 0 8px 32px rgba(1, 47, 104, .1);
  --sh-lg: 0 24px 64px rgba(1, 47, 104, .13);
  --sh-glow: 0 0 40px rgba(66, 195, 243, .25);
}

/* ── 3. BASE ─────────────────────────────────────────────────── */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

a:hover { color: var(--blue); }

img { display: block; max-width: 100%; }

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

input, textarea {
  font: inherit;
  font-size: 13.5px;
}

/* ── 4. LAYOUT — Container & Section ────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

/* Variante fond clair */
.section--light {
  background: var(--light);
}

/* ── 5. NAVIGATION PAGES INTERNES (.pg-nav) ─────────────────── */
/*
   Nav fixe en haut, fond blanc, blur, z-index 200.
   Contraste avec .pg-hero (fond sombre) grâce à la couleur des liens.
*/
.pg-nav {
  position: fixed;
  inset: 0 0 auto;
  height: 68px;
  z-index: 200;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition: box-shadow .3s var(--ease);
}

/* Box-shadow ajoutée au scroll (via JS) */
.pg-nav.scrolled {
  box-shadow: 0 4px 20px rgba(1, 47, 104, .1);
}

.pg-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.pg-logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* Liens de navigation */
.pg-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.pg-nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
  transition: color .2s;
}

.pg-nav-links a:hover,
.pg-nav-links a.active { color: var(--blue); }

/* Bouton CTA dans la nav */
.pg-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), #023070);
  color: #fff;
  box-shadow: 0 4px 14px rgba(1, 47, 104, .28);
  transition: transform .15s var(--ease), box-shadow .15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.pg-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 47, 104, .35);
  color: #fff;
}

/* ── Hamburger (mobile) ── */
.pg-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: background .2s;
}

.pg-menu-btn:hover { background: var(--light); }

.pg-menu-btn svg { width: 22px; height: 22px; }

/* ── 6. BOUTONS ──────────────────────────────────────────────── */
/* Bouton principal : gradient navy → blue */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  box-shadow: 0 4px 18px rgba(3, 106, 163, .35);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(3, 106, 163, .5);
  color: #fff;
}

/* Bouton secondaire : contour sobre */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--border);
  color: var(--ink);
  background: transparent;
  transition: border-color .2s, background .2s, transform .15s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--blue);
  background: rgba(3, 106, 163, .05);
  transform: translateY(-2px);
  color: var(--ink);
}

/* ── 7. HERO DES PAGES INTERNES (.pg-hero) ──────────────────── */
/*
   Fond dégradé navy, texte blanc, padding-top 140px pour
   compenser la nav fixe de 68px.
*/
.pg-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #023580 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Décoration subtile en arrière-plan */
.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(66, 195, 243, .12) 0%, transparent 70%);
  pointer-events: none;
}

.pg-hero-inner {
  position: relative;
  z-index: 1;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.breadcrumb a:hover { color: var(--sky); }

.breadcrumb-sep {
  color: rgba(255, 255, 255, .35);
  font-size: 11px;
}

.breadcrumb-current {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

/* ── Eyebrow pill ── */
.pg-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(66, 195, 243, .15);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(66, 195, 243, .3);
}

/* ── Titre principal ── */
.pg-hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.03em;
  line-height: 1.1;
}

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

/* ── Sous-titre ── */
.pg-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Boutons CTA dans le hero ── */
.pg-hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── 8. COMPOSANTS GÉNÉRIQUES ────────────────────────────────── */

/* Carte blanche avec ombre */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 28px;
}

/* Icône ronde dégradé sky → blue */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg { width: 22px; height: 22px; }

/* Variante petite pour svc-card */
.icon-box--sm {
  width: 40px;
  height: 40px;
}

.icon-box--sm svg { width: 18px; height: 18px; }

/* Eyebrow pill (section) */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(66, 195, 243, .12);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* Titre de section */
.sec-title {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -.025em;
}

/* Sous-titre de section */
.sec-sub {
  font-size: 17px;
  color: var(--body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* En-tête centré de section */
.sh {
  text-align: center;
  margin-bottom: 56px;
}

/* ── 9. ANIMATION REVEAL (IntersectionObserver) ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Délais successifs pour groupes d'éléments */
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── 10. GRILLE ÉTAPES (.steps-grid) ─────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-item {
  position: relative;
  text-align: center;
}

/* Numéro de l'étape */
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(1, 47, 104, .28);
}

/* Ligne connectrice entre étapes (pseudo-élément) */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; /* centre vertical du .step-num */
  left: calc(50% + 30px); /* part du bord droit du cercle */
  right: calc(-50% + 30px); /* jusqu'au bord gauche du cercle suivant (via grid) */
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  z-index: 0;
}

.step-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

/* ── 11. LISTE INFO (.info-list) ─────────────────────────────── */
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Icône checkmark vert */
.info-ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-ic svg { width: 13px; height: 13px; }

.info-text {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
}

.info-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* ── 12. FAQ ACCORDION ───────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s;
}

.faq-q:hover { color: var(--blue); }

/* Icône +/× */
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .35s var(--ease), background .2s, border-color .2s, box-shadow .2s;
}

/* État ouvert */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(3, 106, 163, .3);
}

/* Contenu de réponse — max-height pour transition smooth */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}

.faq-item.open .faq-a { max-height: 360px; }

.faq-a p {
  padding-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body);
}

/* ── 13. FORM CARD (section formulaire standalone) ───────────── */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(66, 195, 243, .1);
  position: relative;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

/* Bordure animée subtile */
.form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(66, 195, 243, .15), transparent, rgba(3, 106, 163, .1), transparent);
  background-size: 300% 300%;
  animation: gradShift 6s ease infinite;
  pointer-events: none;
}

@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Champs du formulaire */
.finput {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}

.finput:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3, 106, 163, .1);
}

.finput::placeholder { color: var(--muted); }

.finput.err {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, .12);
}

.flabel {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.fgroup {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Bouton de soumission principal du formulaire */
.fbtn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--navy), #023070);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
  transition: transform .15s var(--ease), box-shadow .15s;
  cursor: pointer;
}

.fbtn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 47, 104, .35);
}

.fdiscl {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── 14. FOOTER (.pg-footer) ──────────────────────────────────── */
.pg-footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 32px;
}

/* Grille 4 colonnes → mobile réduit */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo footer (blanc) */
.footer-logo,
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(10);
  margin-bottom: 16px;
}

/* Description sous le logo */
.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

/* Badge RBQ */
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  background: rgba(66, 195, 243, .1);
  border: 1px solid rgba(66, 195, 243, .2);
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
}

.footer-badge svg { width: 14px; height: 14px; }

/* Titre de colonne */
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

/* Liens de colonne */
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  line-height: 2.2;
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--white); }

/* Barre de bas de page */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

.footer-bottom a:hover { color: rgba(255, 255, 255, .8); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ── 15. MOBILE STICKY CTA ───────────────────────────────────── */
/*
   Affiché uniquement sous 768px — bandeau collant en bas d'écran.
*/
.mobile-cta {
  display: none; /* caché par défaut, activé en media query */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--navy);
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(1, 47, 104, .18);
}

.mobile-cta a {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s;
}

.mobile-cta a:hover { opacity: .9; }

.mobile-cta svg { width: 18px; height: 18px; }

/* ── 16. CARTE DE SERVICE (.svc-card) ────────────────────────── */
/* Grille auto-fill de cards de services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .2s, transform .2s var(--ease), box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.svc-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(66, 195, 243, .15);
}

/* Icône de la card service */
.svc-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--sky), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform .2s var(--ease);
}

.svc-card:hover .svc-card-icon { transform: scale(1.1) rotate(-4deg); }

.svc-card-icon svg { width: 18px; height: 18px; }

.svc-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

.svc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── 17. RESPONSIVE ──────────────────────────────────────────── */

/* ---- Tablette (≤ 768px) ---- */
@media (max-width: 768px) {

  /* Navigation mobile */
  .pg-nav-links {
    display: none; /* caché — menu burger */
    position: absolute;
    top: 68px; /* hauteur de la nav */
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(1, 47, 104, .08);
    z-index: 199;
  }

  /* Quand le menu est ouvert (classe .open sur .pg-nav) */
  .pg-nav.open .pg-nav-links {
    display: flex;
  }

  .pg-nav-links a {
    font-size: 15px;
    padding: 10px 4px;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .pg-nav-links a:last-child { border-bottom: none; }

  /* Hamburger visible */
  .pg-menu-btn { display: flex; }

  /* CTA nav : garder mais plus petit */
  .pg-nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Hero */
  .pg-hero { padding: 120px 0 56px; }
  .pg-hero-title { font-size: clamp(24px, 7vw, 36px); }
  .pg-hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .pg-hero-cta-wrap .btn-primary,
  .pg-hero-cta-wrap .btn-secondary { justify-content: center; }

  /* Steps : 1 colonne */
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-item::after { display: none; } /* pas de connecteur en vertical */

  /* Footer : 2 colonnes */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Services grid */
  .svc-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

  /* Formulaire row → 1 colonne */
  .frow { grid-template-columns: 1fr; }

  /* Mobile CTA sticky : visible */
  .mobile-cta { display: flex; }

  /* Ajouter un padding-bottom au body pour ne pas cacher le contenu sous le CTA sticky */
  body { padding-bottom: 60px; }
}

/* ---- Mobile (≤ 480px) ---- */
@media (max-width: 480px) {

  .pg-hero { padding: 110px 0 48px; }
  .pg-hero-title { font-size: clamp(22px, 8vw, 30px); }

  .sec-title { font-size: clamp(22px, 7vw, 30px); }

  /* Footer : 1 colonne */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Cards */
  .card { padding: 20px; }
  .form-card { padding: 24px 20px; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
