/* ============ SECTIONS ============ */
/* All section-specific styles: hero, services, agricole, testimonials, team, projects, zones, reviews, faq, cta-final */

/* ============ HERO ============ */
.hero {
  padding: 80px 32px 96px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-aurora-1 {
  position: absolute;
  top: -25%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(circle, rgba(91, 127, 255, .22) 0%, rgba(91, 127, 255, .08) 30%, transparent 65%);
  filter: blur(60px);
  animation: auroraDrift1 12s ease-in-out infinite alternate;
}
.hero-aurora-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(91, 127, 255, .14) 0%, rgba(91, 127, 255, .05) 30%, transparent 60%);
  filter: blur(80px);
  animation: auroraDrift2 14s ease-in-out infinite alternate;
}
.hero-aurora-3 {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 30%;
  height: 40%;
  background: radial-gradient(circle, rgba(91, 127, 255, .08) 0%, transparent 60%);
  filter: blur(40px);
}
@keyframes auroraDrift1 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-30px, 20px); }
}
@keyframes auroraDrift2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(20px, -15px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
}
.hero-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-glow);
}
.hero-status strong {
  color: var(--text);
  font-weight: 600;
}
.hero h1 {
  font-size: 88px;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -3.5px;
  margin-bottom: 28px;
  color: #fff;
}
.hero h1 .light {
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, #B0B5C0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(180deg, #7B9DFF 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-bar-item {
  padding-right: 24px;
}
.hero-bar-l {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-bar-v {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
}
.hero-bar-v .accent {
  color: var(--accent);
}

/* Hero visual — photo with badges */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(8, 9, 12, .3) 18%, transparent 35%, transparent 100%);
}
.hero-visual-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 9, 12, .5) 100%);
}
/* Hero Quote CTA — bandeau pleine largeur bas du Hero (style footer/branding) */
.hero-quote-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #050E22 0%, #0F1A3A 55%, #1E3A8A 130%);
  border-top: 1px solid rgba(91, 127, 255, .3);
  text-decoration: none;
  color: #FFFFFF;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, .35);
  transition: background .3s cubic-bezier(.16, 1, .3, 1);
  z-index: 4;
}
.hero-quote-cta:hover {
  background: linear-gradient(135deg, #0F1A3A 0%, #1E3A8A 60%, var(--accent) 130%);
}
.hero-quote-cta:hover .hero-quote-cta-arrow-circle {
  background: var(--accent);
  border-color: var(--accent);
}
.hero-quote-cta:hover .hero-quote-cta-arrow-circle svg {
  transform: translateX(3px);
}

/* Pulse blanc — attire l'œil */
.hero-quote-cta-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, .85);
}
.hero-quote-cta-pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  animation: hero-cta-pulse 2s ease-out infinite;
}
@keyframes hero-cta-pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(3); opacity: 0; }
}

.hero-quote-cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hero-quote-cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.hero-quote-cta-value {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -.3px;
}

/* Cercle accent avec flèche */
.hero-quote-cta-arrow-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(91, 127, 255, .2);
  border: 1px solid rgba(91, 127, 255, .4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background .25s ease, border-color .25s ease;
  flex-shrink: 0;
}
.hero-quote-cta-arrow-circle svg {
  width: 18px;
  height: 18px;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}

@media (max-width: 640px) {
  .hero-quote-cta {
    padding: 16px 18px;
    gap: 12px;
  }
  .hero-quote-cta-label { font-size: 9px; }
  .hero-quote-cta-value { font-size: 14px; }
  .hero-quote-cta-arrow-circle { width: 36px; height: 36px; }
}
.hero-rating-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(8, 9, 12, .78);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}
.hero-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35)) drop-shadow(0 0 8px rgba(251, 188, 5, .35));
}
.hero-rating-stars svg {
  width: 16px;
  height: 16px;
  display: block;
}
.hero-rating-num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
  letter-spacing: -.1px;
}
.hero-rating-num strong {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 13px;
}
.hero-rating-sep {
  color: rgba(255, 255, 255, .35);
  font-weight: 400;
}
.hero-rating-count {
  color: rgba(255, 255, 255, .82);
}
.hero-rating-google {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
}
.hero-rating-google svg {
  width: 14px;
  height: 14px;
  display: block;
}
.hero-cert-badge {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  background: rgba(91, 127, 255, .95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 10px 14px;
  color: #000;
  box-shadow: 0 8px 24px rgba(91, 127, 255, .3);
}
.hero-cert-badge-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 2px;
}
.hero-cert-badge-v {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.3px;
}

/* ============ LOGOS / TRUST BAR ============ */
.logos {
  padding: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
.logos-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.logos-item {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logos-item svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
}

/* ============ LIGHT THEME OVERRIDES (per component) ============ */
.section.light .section-tag { color: var(--accent-d); }
.section.light .filter {
  background: #FFFFFF;
  border-color: #E5E5E0;
  color: #525252;
}
.section.light .filter:hover:not(.active) {
  border-color: #0A0A0B;
  color: #0A0A0B;
}
.section.light .filter.active {
  background: #0A0A0B;
  color: #fff;
  border-color: #0A0A0B;
}

/* Light — Services */
.section.light .svc {
  background: #FFFFFF;
  border-color: #E5E5E0;
}
.section.light .svc:hover {
  background: #FAFAF7;
  border-color: #D4D4CE;
}
.section.light .svc.feat {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAFAF7 100%);
  border-color: rgba(91, 127, 255, .3);
}
.section.light .svc.feat::before {
  background: radial-gradient(circle, rgba(91, 127, 255, .10) 0%, transparent 70%);
}
.section.light .svc-ico-box {
  background: #FAFAF7;
  border-color: #E5E5E0;
  color: var(--accent);
}
.section.light .svc.feat .svc-ico-box {
  background: rgba(91, 127, 255, .08);
  border-color: rgba(91, 127, 255, .25);
}
.section.light .svc-name { color: #0A0A0B; }
.section.light .svc-desc { color: #525252; }
.section.light .svc-chip {
  background: #FAFAF7;
  border-color: #E5E5E0;
  color: #525252;
}
.section.light .svc.feat .svc-chip {
  background: rgba(91, 127, 255, .08);
  border-color: rgba(91, 127, 255, .25);
  color: var(--accent);
}
.section.light .svc-arrow {
  background: #FAFAF7;
  border-color: #E5E5E0;
  color: #525252;
}

/* Light — Testimonials */
.section.light .test-card {
  background: #FFFFFF;
  border-color: #E5E5E0;
}
.section.light .test-text { color: #0A0A0B; }
.section.light .test-name { color: #0A0A0B; }
.section.light .test-loc  { color: #525252; }
.section.light .test-source { color: #525252; }
.section.light .test-author { border-top-color: #E5E5E0; }
.section.light .test-avatar { border-color: #E5E5E0; }

/* Light — Zones */
.section.light .zones-table { border-top-color: #0A0A0B; }
.section.light .zones-row { border-bottom-color: #E5E5E0; }
.section.light .zones-name { color: #0A0A0B; }
.section.light .zones-cities { color: #525252; }
.section.light .zones-num { color: var(--accent-d); }
.section.light .zones-dist { color: #525252; }
.section.light .zones-map {
  background: #FFFFFF;
  border-color: #E5E5E0;
}

/* Light — Reviews aggregate */
.section.light .reviews-frame {
  background: #FFFFFF;
  border-color: #E5E5E0;
}
.section.light .reviews-link { color: var(--accent-d); }
.section.light .reviews-num {
  background: linear-gradient(180deg, #0A0A0B 0%, #525252 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section.light .reviews-info { color: #525252; }
.section.light .reviews-info strong { color: #0A0A0B; }

/* Light — FAQ */
.section.light .faq-item {
  background: #FFFFFF;
  border-color: #E5E5E0;
}
.section.light .faq-q { color: #0A0A0B; }
.section.light .faq-toggle {
  background: #FAFAF7;
  border-color: #E5E5E0;
  color: #525252;
}
.section.light .faq-item[open] .faq-toggle {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.section.light .faq-a { color: #525252; }

/* ============ SERVICES — Magazine HYPER PRO 2026 ============ */

.svc-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

/* Layout asymétrique — Bornes VÉ featured side-by-side, Dépannage wide */
.svc-tile-1 { grid-column: span 8; }
.svc-tile-2 { grid-column: span 4; }
.svc-tile-3 { grid-column: span 4; }
.svc-tile-4 { grid-column: span 4; }
.svc-tile-5 { grid-column: span 4; }
.svc-tile-6 { grid-column: span 12; }

/* Tile générique — magazine card with photo + content */
.svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #E5E5E0;
  border-radius: 18px;
  text-decoration: none;
  color: #0A0A0B;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  animation: tile-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--idx, 0) * 80ms);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

@keyframes tile-rise {
  to { opacity: 1; transform: translateY(0); }
}

.svc-tile:hover {
  border-color: rgba(91, 127, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

/* Photo zone — magazine-style */
.svc-tile-photo {
  position: relative;
  overflow: hidden;
  background: #F0F0EA;
}
.svc-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: saturate(0.95);
}
.svc-tile:hover .svc-tile-photo img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

/* Body — text content area */
.svc-tile-body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
  flex: 1;
}

/* Tile-1 Featured — side-by-side photo+body (large, 8 cols) */
.svc-tile-1 {
  flex-direction: row;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
  border-color: rgba(91, 127, 255, 0.2);
  min-height: 480px;
}
.svc-tile-1:hover {
  border-color: rgba(91, 127, 255, 0.5);
}
.svc-tile-1 .svc-tile-photo {
  width: 48%;
  flex-shrink: 0;
}
.svc-tile-1 .svc-tile-body {
  width: 52%;
  padding: 32px 32px 28px;
}

/* Tile-2 (tall, 4 cols) — photo top large + body bottom */
.svc-tile-2 {
  min-height: 480px;
}
.svc-tile-2 .svc-tile-photo {
  height: 60%;
  min-height: 280px;
}

/* Tile-3,4,5 (compact, 4 cols) — photo top + body bottom */
.svc-tile-3,
.svc-tile-4,
.svc-tile-5 {
  min-height: 380px;
}
.svc-tile-3 .svc-tile-photo,
.svc-tile-4 .svc-tile-photo,
.svc-tile-5 .svc-tile-photo {
  height: 160px;
  flex-shrink: 0;
}

/* Tile 6 Dépannage — distinct dark card (NO photo) */
.svc-tile-6 {
  background: #0A0A0B;
  border-color: #1F1F1F;
  color: #FFFFFF;
  min-height: 0;
}
.svc-tile-6 .svc-tile-body {
  padding: 32px;
}
.svc-tile-6:hover {
  border-color: rgba(91, 127, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}
.svc-tile-6 .svc-tile-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.svc-tile-6 .svc-tile-content > :not(.svc-tile-cta-phone) {
  grid-column: 1;
}
.svc-tile-6 .svc-tile-cta-phone {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  margin-top: 0;
}
.svc-tile-6 .svc-tile-num {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
}
.svc-tile-6 .svc-tile-name {
  color: #FFFFFF;
}
.svc-tile-6 .svc-tile-desc {
  color: rgba(255, 255, 255, 0.72);
}

/* Numéro éditorial */
.svc-tile-num {
  font-family: 'Inter', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
}

/* Badge featured — tiny accent pill */
.svc-tile-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(91, 127, 255, 0.1);
  border: 1px solid rgba(91, 127, 255, 0.3);
  color: var(--accent);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Content layout */
.svc-tile-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Tile name */
.svc-tile-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.7px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #0A0A0B;
}
.svc-tile-1 .svc-tile-name { font-size: 40px; line-height: 1; letter-spacing: -1.8px; margin-bottom: 12px; }
.svc-tile-6 .svc-tile-name { font-size: 30px; letter-spacing: -1.1px; margin-bottom: 6px; }
.svc-tile-2 .svc-tile-name { font-size: 28px; }

.svc-tile-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #525252;
  margin: 0 0 auto;
  letter-spacing: -.05px;
  max-width: 540px;
}
.svc-tile-1 .svc-tile-desc { font-size: 15px; max-width: 480px; }
.svc-tile-6 .svc-tile-desc { font-size: 14.5px; max-width: 580px; }

/* Specs — clean subtle pills */
.svc-tile-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}
.svc-tile-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(91, 127, 255, .06);
  border: 1px solid rgba(91, 127, 255, .15);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0;
}
.svc-tile-6 .svc-tile-spec {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
}
.svc-tile-spec-live {
  background: rgba(34, 197, 94, .12) !important;
  border-color: rgba(34, 197, 94, .35) !important;
  color: #22C55E !important;
}
.svc-tile-spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* CTA — text link with arrow */
.svc-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0A0A0B;
  margin-top: auto;
  letter-spacing: -.1px;
  align-self: flex-start;
  transition: color 0.15s ease;
}
.svc-tile:hover .svc-tile-cta {
  color: var(--accent);
}
.svc-tile-cta-phone {
  background: var(--accent);
  color: #FFFFFF !important;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -.2px;
  gap: 10px;
  margin: 0;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.svc-tile-cta-phone svg {
  width: 16px;
  height: 16px;
}
.svc-tile-6:hover .svc-tile-cta-phone {
  background: #4A6EE0;
  color: #FFFFFF !important;
}
.svc-tile-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-tile:hover .svc-tile-arrow {
  transform: translateX(4px);
}

/* Compatible brands — refined inline strip */
.svc-tile-brands {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 0;
  padding: 12px 16px;
  background: rgba(91, 127, 255, .04);
  border: 1px solid rgba(91, 127, 255, .15);
  border-radius: 12px;
  flex-wrap: wrap;
  align-self: flex-start;
  max-width: 100%;
}
.svc-tile-brands-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.svc-tile-brands ul {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.svc-tile-brands li {
  font-size: 12.5px;
  font-weight: 600;
  color: #0F172A;
  letter-spacing: -.1px;
  white-space: nowrap;
}

/* Tablet & Mobile */
@media (max-width: 1100px) {
  .svc-tile-1 .svc-tile-name { font-size: 36px; }
}
@media (max-width: 880px) {
  .svc-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }
  /* Featured stacks photo-top + body-bottom on tablet */
  .svc-tile-1 {
    grid-column: span 6;
    flex-direction: column;
    min-height: 0;
  }
  .svc-tile-1 .svc-tile-photo {
    width: 100%;
    height: 280px;
  }
  .svc-tile-1 .svc-tile-body {
    width: 100%;
    padding: 28px;
  }
  .svc-tile-2 { grid-column: span 6; min-height: 0; }
  .svc-tile-2 .svc-tile-photo { height: 240px; min-height: 0; }
  .svc-tile-3,
  .svc-tile-4,
  .svc-tile-5 {
    grid-column: span 3;
    min-height: 340px;
  }
  .svc-tile-3 .svc-tile-photo,
  .svc-tile-4 .svc-tile-photo,
  .svc-tile-5 .svc-tile-photo {
    height: 130px;
  }
  .svc-tile-6 { grid-column: span 6; }
  .svc-tile-6 .svc-tile-body { padding: 28px; }
  .svc-tile-6 .svc-tile-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .svc-tile-6 .svc-tile-cta-phone {
    grid-column: 1;
    grid-row: auto;
    align-self: flex-start;
  }
}
@media (max-width: 560px) {
  .svc-mosaic { grid-template-columns: 1fr; gap: 14px; }
  .svc-tile-1,
  .svc-tile-2,
  .svc-tile-3,
  .svc-tile-4,
  .svc-tile-5,
  .svc-tile-6 { grid-column: span 1; min-height: 0; }
  .svc-tile-1 .svc-tile-photo,
  .svc-tile-2 .svc-tile-photo { height: 220px; min-height: 0; }
  .svc-tile-3 .svc-tile-photo,
  .svc-tile-4 .svc-tile-photo,
  .svc-tile-5 .svc-tile-photo {
    height: 180px;
  }
  .svc-tile-body { padding: 22px 22px 22px; }
  .svc-tile-1 .svc-tile-body { padding: 26px 24px 24px; }
  .svc-tile-1 .svc-tile-name { font-size: 30px; letter-spacing: -1.3px; }
  .svc-tile-2 .svc-tile-name { font-size: 26px; }
  .svc-tile-6 .svc-tile-name { font-size: 26px; }
  .svc-tile-6 .svc-tile-body { padding: 24px; }
  .svc-tile-brands { padding: 10px 14px; gap: 10px; }
  .svc-tile-brands ul { gap: 10px; }
}

/* Respecter reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .svc-tile {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .svc-tile-arrow,
  .svc-tile-spec-dot {
    animation: none !important;
    transition: none !important;
  }
}

/* ============ AGRICOLE FEATURE ============ */
.feature {
  padding: 120px 32px;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse at center, rgba(91, 127, 255, .05) 0%, transparent 60%);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.feature-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.feature-h {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.feature-h .accent {
  color: var(--accent);
}
.feature-p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 480px;
}
.feature-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
}
.feature-grid-list li {
  list-style: none;
  background: var(--bg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.feature-grid-list li svg {
  color: var(--accent);
}
.feature-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.feature-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, transparent 25%, transparent 45%, rgba(8, 9, 12, .9) 100%);
}
.feature-photo-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(8, 9, 12, .7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .3px;
}
.feature-photo-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.feature-photo-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  max-width: 200px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.5;
  text-align: right;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}
.feature-photo-stats {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.feature-photo-stat {
  background: rgba(8, 9, 12, .75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
}
.feature-photo-stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.8px;
  line-height: 1;
  margin-bottom: 6px;
}
.feature-photo-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
  letter-spacing: .3px;
  line-height: 1.3;
}

/* ============ TESTIMONIALS ============ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.test-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.test-stars svg {
  width: 16px;
  height: 16px;
}
.test-text {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 32px;
  flex: 1;
  letter-spacing: -.2px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.test-author-info {
  flex: 1;
}
.test-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.test-loc {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.test-source {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.test-source svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.team-card {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform var(--t-slow), border-color var(--t-slow);
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.team-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.team-card:hover .team-img {
  transform: scale(1.04);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, transparent 40%, rgba(0, 0, 0, .88) 100%);
}
.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
}
.team-tag {
  display: inline-block;
  background: rgba(91, 127, 255, .18);
  border: 1px solid rgba(91, 127, 255, .4);
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
}
.team-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 4px;
  line-height: 1.1;
}
.team-role {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.4;
}

/* ============ PROJECTS ============ */
.projects-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter.active {
  background: var(--text);
  color: #000;
  border-color: var(--text);
}
.filter:hover:not(.active) {
  border-color: var(--border-strong);
  color: var(--text);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proj {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform var(--t-slow), border-color var(--t-slow);
}
.proj:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.proj.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.proj-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.proj:hover .proj-img {
  transform: scale(1.04);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, transparent 35%, rgba(0, 0, 0, .85) 100%);
}
.proj-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, .6);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.proj-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.4px;
  margin-bottom: 3px;
}
.proj-loc {
  font-size: 12px;
  color: var(--text-3);
}

/* ============ ZONES ============ */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.zones-table {
  border-top: 1px solid var(--border);
}
.zones-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left var(--t-fast);
}
.zones-row:hover {
  padding-left: 8px;
}
.zones-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  width: 30px;
}
.zones-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.5px;
  color: var(--text);
}
.zones-cities {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}
.zones-dist {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.zones-map {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.zones-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.92) contrast(1.02);
}
.zones-map-shield {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}
.zones-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.zones-map-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}
.zones-map-legend-l {
  font-weight: 700;
  color: #0A0A0B;
  display: flex;
  align-items: center;
  gap: 8px;
}
.zones-map-legend-l-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(91, 127, 255, .25);
}
.zones-map-legend-r {
  font-weight: 500;
  color: #525252;
  font-family: 'Inter', sans-serif;
}
.zones-map-overlay-tag {
  position: absolute;
  background: #0A0A0B;
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .3);
  white-space: nowrap;
}
.zones-map-overlay-tag::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #0A0A0B;
}
.zones-map-overlay-tag.hq {
  background: var(--accent-d);
}
.zones-map-overlay-tag.hq::after {
  background: var(--accent-d);
}
.zones-map-overlay-tag.hq strong {
  color: #fff;
}
.zones-map-overlay-tag small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  opacity: .7;
  letter-spacing: 1px;
  margin-top: 1px;
  text-transform: uppercase;
}

/* ============ AVIS GOOGLE — Épuré 2026 (Linear/Vercel) ============ */

/* Section head — title + inline summary */
.rev-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

/* Inline summary — no card, pure typography */
.rev-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: #6B7280;
  font-weight: 500;
  white-space: nowrap;
}
.rev-summary-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rev-summary-score strong {
  font-size: 17px;
  font-weight: 700;
  color: #0A0A0B;
  letter-spacing: -.3px;
}
.rev-summary-stars {
  display: inline-flex;
  gap: 1px;
}
.rev-summary-stars svg {
  width: 14px;
  height: 14px;
}
.rev-summary-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #D1D5DB;
}
.rev-summary-count {
  font-weight: 600;
  color: #0A0A0B;
}
.rev-summary-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rev-summary-verified svg {
  width: 13px;
  height: 13px;
}

/* Grid — 3 cols clean */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Card — pure, minimal */
.rev-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E0;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease;
}
.rev-card:hover {
  border-color: #C4C4BD;
}

.rev-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}
.rev-stars svg {
  width: 16px;
  height: 16px;
}

.rev-text {
  font-size: 16px;
  line-height: 1.65;
  color: #0F172A;
  margin: 0 0 32px;
  flex: 1;
  font-weight: 400;
  letter-spacing: -.1px;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F0F0EA;
  color: #525252;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-author-info {
  flex: 1;
  min-width: 0;
}
.rev-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #0A0A0B;
  letter-spacing: -.1px;
}
.rev-meta {
  font-size: 12.5px;
  color: #6B7280;
  margin-top: 2px;
}

/* CTA — text link, no card */
.rev-cta-row {
  display: flex;
  justify-content: center;
}
.rev-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: #0A0A0B;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.1px;
  border-bottom: 1px solid #0A0A0B;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.rev-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.rev-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}
.rev-cta:hover svg {
  transform: translateX(3px);
}

/* Tablet & Mobile */
@media (max-width: 900px) {
  .rev-head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .rev-summary {
    flex-wrap: wrap;
    gap: 12px;
  }
  .rev-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (max-width: 560px) {
  .rev-card {
    padding: 26px 24px;
  }
  .rev-text {
    font-size: 15px;
  }
}
/* ============ GOOGLE REVIEWS WIDGET (style officiel) ============ */
.gr-widget {
  max-width: 980px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Google Sans', sans-serif;
}

/* Header */
.gr-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #E8EAED;
  background: #FAFBFC;
}
.gr-business { display: flex; align-items: center; gap: 14px; min-width: 0; }
.gr-business-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #FFF;
  border: 1px solid #DADCE0;
  object-fit: contain;
  padding: 4px;
  flex-shrink: 0;
}
.gr-business-name {
  font-size: 16px;
  font-weight: 600;
  color: #202124;
  letter-spacing: -.2px;
}
.gr-business-meta {
  font-size: 13px;
  color: #5F6368;
  margin-top: 2px;
}
.gr-rating { display: flex; align-items: center; gap: 12px; }
.gr-rating-num {
  font-size: 36px;
  font-weight: 500;
  color: #202124;
  line-height: 1;
  letter-spacing: -1px;
}
.gr-rating-side { text-align: left; }
.gr-stars { display: flex; gap: 1px; }
.gr-stars svg { width: 16px; height: 16px; }
.gr-rating-meta {
  font-size: 12px;
  color: #5F6368;
  margin-top: 4px;
}
.gr-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #1A73E8;
  text-decoration: none;
  transition: all .15s;
}
.gr-google-badge:hover {
  background: #F8F9FA;
  border-color: #1A73E8;
  box-shadow: 0 1px 3px rgba(60,64,67,.15);
}
.gr-google-badge svg { width: 18px; height: 18px; }

/* Distribution barres */
.gr-distribution {
  padding: 18px 28px;
  border-bottom: 1px solid #E8EAED;
  background: #FFFFFF;
}
.gr-bar-row {
  display: grid;
  grid-template-columns: 14px 1fr 30px;
  align-items: center;
  gap: 12px;
  padding: 3px 0;
}
.gr-bar-label {
  font-size: 12px;
  color: #5F6368;
  text-align: right;
  font-weight: 500;
}
.gr-bar {
  height: 8px;
  background: #E8EAED;
  border-radius: 4px;
  overflow: hidden;
}
.gr-bar-fill {
  height: 100%;
  background: #FBBC05;
  border-radius: 4px;
}
.gr-bar-count {
  font-size: 12px;
  color: #5F6368;
  font-weight: 500;
}

/* Reviews list */
.gr-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gr-review {
  padding: 24px 28px;
  border-right: 1px solid #E8EAED;
}
.gr-review:last-child { border-right: none; }
.gr-review-head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.gr-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  font-family: 'Google Sans', 'Inter', sans-serif;
}
.gr-review-id { min-width: 0; }
.gr-author {
  font-size: 14px;
  font-weight: 500;
  color: #202124;
}
.gr-author-meta {
  font-size: 11px;
  color: #5F6368;
  margin-top: 1px;
}
.gr-review-date {
  font-size: 12px;
  color: #5F6368;
  white-space: nowrap;
}
.gr-review-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 10px;
}
.gr-review-stars svg { width: 14px; height: 14px; }
.gr-review-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #3C4043;
  margin-bottom: 12px;
}
.gr-review-foot {
  font-size: 11px;
  color: #5F6368;
  letter-spacing: .2px;
  padding-top: 10px;
  border-top: 1px solid #F1F3F4;
}

/* CTA */
.gr-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px;
  background: #FAFBFC;
  border-top: 1px solid #E8EAED;
  color: #1A73E8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s;
}
.gr-cta:hover { background: #F1F3F4; }
.gr-cta svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .gr-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gr-google-badge { justify-self: start; }
  .gr-reviews {
    grid-template-columns: 1fr;
  }
  .gr-review {
    border-right: none;
    border-bottom: 1px solid #E8EAED;
  }
  .gr-review:last-child { border-bottom: none; }
}

/* ============ REVIEWS AGGREGATE (legacy — gardé si réutilisé ailleurs) ============ */
.reviews-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.reviews-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.reviews-num {
  font-size: 120px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -5px;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #fff 0%, #9CA3AF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews-stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--accent);
}
.reviews-stars-row svg {
  width: 24px;
  height: 24px;
}
.reviews-info {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.reviews-info strong {
  color: var(--text);
}
.reviews-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
}
/* Semantic <details>/<summary> — remove default disclosure marker */
.faq-item > .faq-q {
  list-style: none;
}
.faq-item > .faq-q::-webkit-details-marker {
  display: none;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  letter-spacing: -.2px;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.faq-a {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 14px;
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 120px 32px;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse at top, rgba(91, 127, 255, .08) 0%, transparent 50%);
}
.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-final-h {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}
.cta-final-h .accent {
  color: var(--accent);
}
.cta-final-p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 480px;
}
.cta-final-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cta-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.cta-meta svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
}
.cta-final-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.cta-form-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cta-form-step-l {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.cta-form-step-r {
  font-size: 12px;
  color: var(--text-3);
}
.cta-form-progress {
  display: flex;
  gap: 4px;
  margin: 12px 0 28px;
}
.cta-form-progress div {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: var(--surface-3);
}
.cta-form-progress div.done {
  background: var(--accent);
}
.cta-form-q {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.6px;
  margin-bottom: 20px;
}
.cta-form-opts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.cta-form-opt {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--t-fast);
  width: 100%;
  text-align: left;
  color: var(--text);
}
.cta-form-opt:hover {
  border-color: var(--border-strong);
}
.cta-form-opt.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 600;
}
.cta-form-opt-spec {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}
.cta-form-opt.active .cta-form-opt-spec {
  color: rgba(0, 0, 0, .6);
}
.cta-form-next {
  background: var(--text);
  color: #000;
  padding: 14px 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  border: none;
  transition: opacity var(--t-fast);
}
.cta-form-next:hover { opacity: .92; }

/* ----- Multi-step screens (steps 2-4 rendered dynamically) ----- */
.cta-form-screen { animation: fadeIn .3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tighter spacing between repeated questions on the same screen */
.cta-form-screen .cta-form-q + .cta-form-opts { margin-bottom: 16px; }
.cta-form-screen .cta-form-opts + .cta-form-q { margin-top: 4px; }

/* ----- Text input / textarea ----- */
.cta-form-input {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  resize: vertical;
  transition: border-color var(--t-fast), outline-color var(--t-fast);
}
.cta-form-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.cta-form-input::placeholder { color: var(--text-3); }

/* Spec line inside option buttons (in case used outside default styling) */
.cta-form-opt-spec {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 2px;
}
.cta-form-opt.active .cta-form-opt-spec { color: rgba(0, 0, 0, .6); }

/* ----- Labeled field (step 4 contact info) ----- */
.cta-form-field {
  display: block;
  margin-bottom: 14px;
}
.cta-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .2px;
}
.cta-form-field .cta-form-input { margin-top: 6px; }
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .cta-form-row { grid-template-columns: 1fr; }
}

/* ----- Note (depannage urgent) + consent line ----- */
.cta-form-note {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.cta-form-note a {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.cta-form-consent {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ----- Error banner ----- */
.cta-form-error {
  margin-bottom: 12px;
  padding: 10px 14px;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .35);
  border-radius: 8px;
  color: #FCA5A5;
  font-size: 13px;
  font-weight: 500;
}
.cta-form-error[hidden] { display: none; }

/* ----- Nav row (Back + Next/Submit) ----- */
.cta-form-nav {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.cta-form-back {
  background: var(--surface-2);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.cta-form-back:hover {
  border-color: var(--border-strong);
  background: var(--surface-3);
}
.cta-form-back[hidden] { display: none; }
.cta-form-nav .cta-form-next { flex: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .hero-grid,
  .feature-grid,
  .zones-grid,
  .cta-final-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid,
  .test-grid,
  .projects-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .feature-h,
  .cta-final-h {
    font-size: 42px;
    letter-spacing: -1.5px;
  }
  .svc.feat,
  .svc.wide {
    grid-column: span 2;
    grid-row: auto;
  }
  .reviews-num {
    font-size: 80px;
    letter-spacing: -3px;
  }
  .hero {
    padding: 64px 24px 80px;
  }
  .feature,
  .cta-final {
    padding: 80px 24px;
  }
  .logos {
    padding: 24px;
  }
  .logos-inner {
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .test-grid,
  .projects-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .svc.feat,
  .svc.wide {
    grid-column: auto;
  }
  .cta-final-meta {
    gap: 16px;
  }
  /* Logos / Certifications — mobile restructure */
  .logos {
    padding: 32px 20px;
  }
  .logos-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .logos-label {
    text-align: center;
    font-size: 10.5px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .logos-item {
    padding: 12px 14px;
    background: rgba(91, 127, 255, .05);
    border: 1px solid rgba(91, 127, 255, .18);
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -.1px;
    gap: 12px;
  }
  .logos-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
}
