/* ============================================================
   Monnet Savoie — one-page vitrine
   Cohérence design : Monnet Conseil Équipement
   Palette de marque : rouge #ED0606 / #C51A1B, gris #1A1A1D
   ============================================================ */

:root {
  --red: #C51A1B;
  --red-bright: #ED0606;
  --red-dark: #901011;
  --ink: #1A1A1D;
  --slate: #4a4a4f;
  --muted: #6b6b70;
  --line: #e6e6e8;
  --bg: #ffffff;
  --bg-soft: #f6f6f7;
  --green: #4f9d2f;      /* accent "durable" comme la maquette */
  --shadow: 0 2px 10px rgba(20, 20, 25, .06);
  --shadow-lg: 0 10px 30px rgba(20, 20, 25, .10);
  --radius: 6px;
  --maxw: 1180px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Roboto Slab", "Segoe UI", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 12px rgba(20, 20, 25, .05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.brand img { height: 50px; width: auto; }
.brand .brand-sub {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .2px;
  padding-left: 2px;
  white-space: nowrap;
}

/* ---------- Menu principal ---------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 0;
  position: relative;
  transition: color .15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  transition: background .18s ease, transform .18s ease;
  white-space: nowrap;
}
.header-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--red); border-color: #e2c6c6; }
.btn-ghost:hover { border-color: var(--red); }
.btn-lg { padding: 16px 30px; font-size: 17px; }

/* ---------- Hero (pleine largeur, image collée au header et au bord droit) ---------- */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}
/* Image en plein bord à droite : du haut du hero jusqu'en bas, jusqu'au bord de page */
.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* Carrousel : 3 photos qui défilent en fondu */
.hero-carousel { position: absolute; inset: 0; }
.hero-carousel .hc-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
}
.hero-carousel .hc-slide:nth-child(1) { animation-delay: 0s; }
.hero-carousel .hc-slide:nth-child(2) { animation-delay: 6s; }
.hero-carousel .hc-slide:nth-child(3) { animation-delay: 12s; }
@keyframes heroFade {
  0%    { opacity: 0; }
  4%    { opacity: 1; }
  30%   { opacity: 1; }
  37%   { opacity: 0; }
  100%  { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel .hc-slide { animation: none; opacity: 1; }
  .hero-carousel .hc-slide:nth-child(n+2) { display: none; }
}
/* Dégradé blanc à gauche de l'image pour fondre le texte proprement */
.hero-media::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 22%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 24px 66px;
}
.hero-text { max-width: 48%; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 20px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero p.lead {
  font-size: 18px;
  color: var(--slate);
  margin: 0 0 28px;
  max-width: 34em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--slate);
  max-width: 32em;
}
.hero-note svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }

/* ---------- Section commun ---------- */
.section { padding: 68px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 700;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- Solutions (cartes) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #e0cccc; }
.card p { flex: 1; }
.card-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  margin-top: 16px;
  color: var(--red); font-weight: 700; font-size: 14px;
  transition: gap .2s ease, color .15s ease;
}
.card-link .arrow { font-size: 17px; line-height: 1; }
.card:hover .card-link { color: var(--red-dark); gap: 9px; }
.card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  color: var(--red);
}
.card .icon svg { width: 46px; height: 46px; }
.card .icon.icon-solid { color: inherit; }
.card .icon.icon-solid svg { width: 52px; height: 52px; }
/* Pictos images repris de la maquette */
.card .icon.icon-pic {
  width: 100%; height: 96px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.card .icon.icon-pic img {
  max-height: 100%; max-width: 120px; width: auto; height: auto;
  object-fit: contain; display: block;
}
.card h3 { font-size: 16px; margin: 0 0 10px; color: var(--ink); line-height: 1.3; min-height: 2.6em; }
.card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Nos services ---------- */
#services {
  background:
    radial-gradient(900px 300px at 15% 0%, #fbeceb 0%, transparent 55%),
    radial-gradient(900px 300px at 85% 100%, #eef3ea 0%, transparent 55%),
    var(--bg-soft);
}
.services-intro { max-width: 880px; margin: 0 auto 40px; text-align: center; }
.services-intro p { color: var(--slate); font-size: 16px; margin: 0 0 14px; }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
/* 3 par ligne ; la dernière ligne (2 cartes) se centre → pas de "trou" à droite */
.services-grid .service-card {
  flex: 0 1 calc((100% - 2 * 24px) / 3);
  max-width: calc((100% - 2 * 24px) / 3);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px 24px;
  text-decoration: none;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
/* Filet rouge en haut qui s'étend au survol */
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #ecd4d4;
}
.service-card:hover::before { transform: scaleX(1); }

.svc-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.svc-icon {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdecec, #f8dede);
  color: var(--red);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.svc-icon svg { width: 26px; height: 26px; }
.service-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  transform: scale(1.06);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 17.5px; margin: 0; color: var(--ink); line-height: 1.25;
  align-self: center;
}
.service-card p { font-size: 14px; color: var(--muted); margin: 0 0 18px; flex: 1; line-height: 1.6; }
.service-link {
  color: var(--red); font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s ease;
}
.service-link .arrow { font-size: 18px; line-height: 1; }
.service-card:hover .service-link { color: var(--red-dark); gap: 9px; }

/* ---------- Pourquoi (avantages) ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.why-item { text-align: center; padding: 0 6px; }
.why-item .icon {
  width: 58px; height: 58px; margin: 0 auto 16px;
  display: grid; place-items: center; color: var(--green);
}
.why-item .icon svg { width: 42px; height: 42px; }
.why-item .icon.icon-pic {
  width: 100%; height: 56px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.why-item .icon.icon-pic img {
  max-height: 100%; max-width: 60px; width: auto; height: auto;
  object-fit: contain; display: block;
}
.why-item h3 { font-size: 16px; margin: 0 0 8px; color: var(--ink); }
.why-item p { font-size: 14px; color: var(--muted); margin: 0; }
.why-foot {
  text-align: center;
  margin: 40px auto 0;
  max-width: 780px;
  color: var(--slate);
  font-size: 17px;
}
.why-foot strong { color: var(--ink); }

/* ---------- Zone d'intervention ---------- */
.zone-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}
.zone-map {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 10px;
}
.zone-map svg { width: 100%; height: auto; }
.zone-map img { width: 100%; height: auto; mix-blend-mode: multiply; }
.zone-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-content: center; }
.zone-col h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 18px;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.zone-col ul { list-style: none; margin: 0; padding: 0; }
.zone-col li {
  display: flex; align-items: center; gap: 9px;
  padding: 5px 0; color: var(--slate); font-size: 15px;
}
.zone-col li::before {
  content: "›";
  color: var(--red);
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
}
.agency-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 26px 22px;
  text-align: center;
  align-self: center;
}
.agency-card .pin { color: var(--green); }
.agency-card .pin svg { width: 34px; height: 34px; margin: 0 auto 8px; }
.agency-card h4 { font-family: var(--font-head); margin: 0 0 6px; font-size: 19px; color: var(--ink); }
.agency-card address { font-style: normal; color: var(--slate); font-size: 15px; line-height: 1.5; }
.agency-card .agency-illus { margin-top: 16px; }
.agency-card .agency-illus svg { width: 120px; height: auto; margin: 0 auto; }
.agency-card .agency-illus img { width: 180px; max-width: 100%; height: auto; margin: 0 auto; mix-blend-mode: multiply; }

/* ---------- Expertises du groupe ---------- */
.expertises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.exp-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-card .exp-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.exp-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(20,20,25,.86) 100%);
  z-index: 1;
}
/* Logo de la filiale en haut à gauche de chaque carte */
/* Logo de la filiale : centré horizontalement en haut, plus gros, sur badge blanc */
.exp-card .exp-logo {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  height: 54px; width: auto; max-width: 84%;
  z-index: 2;
  background: rgba(255,255,255,.95);
  padding: 9px 16px; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  object-fit: contain;
}
.exp-body { position: relative; z-index: 2; padding: 18px 18px 16px; width: 100%; }
.exp-body h3 {
  margin: 0 0 4px; font-size: 16.5px; font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.exp-body h3 .arrow { color: var(--red-bright); font-weight: 700; }
.exp-body p { margin: 0; font-size: 13px; color: rgba(255,255,255,.85); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-band img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(20,20,25,.92) 42%, rgba(20,20,25,.55) 100%);
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 54px 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
}
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.82); font-size: 17px; max-width: 40em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 24px; font-weight: 400; line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { margin: 0; color: var(--slate); font-size: 15px; line-height: 1.6; }

/* ---------- Contact (Romain + formulaire) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.contact-person {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px 22px;
  text-align: center;
}
.contact-person img {
  width: 130px; height: 140px; object-fit: cover;
  border-radius: 10px; margin: 0 auto 16px;
}
.cp-info h3 { font-family: var(--font-head); font-size: 20px; margin: 0 0 4px; color: var(--ink); }
.cp-role { font-size: 13.5px; color: var(--muted); margin: 0 0 18px; }
.cp-line {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 9px 12px; border-radius: 6px; margin-bottom: 8px;
  background: var(--bg-soft); transition: background .15s ease, color .15s ease;
}
.cp-line svg { width: 17px; height: 17px; color: var(--red); flex: 0 0 auto; }
.cp-line:hover { background: var(--red); color: #fff; }
.cp-line:hover svg { color: #fff; }
.cp-addr {
  display: flex; align-items: flex-start; justify-content: center; gap: 8px;
  font-size: 13.5px; color: var(--slate); margin: 16px 0 0; line-height: 1.4;
}
.cp-addr svg { width: 16px; height: 16px; color: var(--red); flex: 0 0 auto; margin-top: 2px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
}
.cf-row { margin-bottom: 16px; }
.cf-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: block;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 13px;
  border: 1px solid #d5d5d9;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,26,27,.12);
}
.contact-form textarea { resize: vertical; }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-consent {
  display: flex; align-items: flex-start; gap: 9px;
  font-weight: 400; font-size: 13.5px; color: var(--slate);
  margin: 4px 0 20px;
}
.cf-consent input { width: auto; margin-top: 3px; flex: 0 0 auto; }
.cf-actions { text-align: right; }
.contact-form .btn { border: none; }

/* Bandeau de confirmation / erreur (retour PHP) */
.form-flash {
  max-width: 860px; margin: 0 auto 24px;
  padding: 14px 20px; border-radius: 8px; font-size: 15px;
}
.form-flash.ok { background: #e8f6e8; color: #256b26; border: 1px solid #b9e0ba; }
.form-flash.err { background: #fdecec; color: #a32020; border: 1px solid #f2c2c2; }

/* ---------- Footer ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.footer-inner .brand img { height: 40px; }
.footer-meta { display: flex; align-items: center; gap: 8px; color: var(--slate); font-size: 14.5px; }
.footer-meta svg { width: 18px; height: 18px; color: var(--red); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--red); }
.footer-legal {
  border-top: 1px solid var(--line);
  margin-top: 22px; padding-top: 16px;
  text-align: center; color: #9a9aa0; font-size: 13px;
}

/* ---------- Responsive ---------- */
/* Le menu (7 entrées) ne tient pas sous ~1150px : on le masque, logo + devis restent */
@media (max-width: 1150px) {
  .main-nav { display: none; }
}
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .why { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .expertises { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card { flex-basis: calc((100% - 24px) / 2); max-width: calc((100% - 24px) / 2); }
  .zone-grid { grid-template-columns: 1fr 1fr; }
  .zone-map { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  /* Hero empilé : image pleine largeur en haut, texte dessous */
  .hero-media {
    position: static;
    width: 100%;
    height: 300px;
  }
  .hero-media::before { display: none; }
  .hero-text { max-width: 100%; }
  .hero-inner { padding: 32px 24px 44px; }
}
@media (max-width: 820px) {
  .brand .brand-sub { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .cf-2 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: 1fr 1fr; }
  .expertises { grid-template-columns: 1fr; }
  .services-grid .service-card { flex-basis: 100%; max-width: 100%; }
  .zone-grid { grid-template-columns: 1fr; }
  .zone-cols { grid-template-columns: 1fr 1fr; }
  .header-cta span { display: none; }
  .header-cta { padding: 11px 13px; }
  .card h3 { min-height: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 420px) {
  .cards { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .zone-cols { grid-template-columns: 1fr; }
}
