/* ============================================================
   Helvipay — Refonte 2026
   Couche additive chargée après site.css.
   Objectif : mettre la machine réelle de MVET.CH au centre,
   look plus affirmé (gradients, glass, accent vif, preuve terrain).
   ============================================================ */

:root {
  --hv-navy: #001533;
  --hv-navy-2: #04244f;
  --hv-navy-3: #0a3a78;
  --hv-accent: #ff6a1a;
  --hv-accent-2: #ff8a3d;
  --hv-live: #1ed98a;
  --hv-live-deep: #0fae6a;
  --hv-ink: #0a1422;
  --hv-muted: #5a6578;
  --hv-bg: #f5f7fb;
  --hv-line: rgba(4, 36, 79, 0.10);
  --hv-radius: 20px;
  --hv-radius-lg: 30px;
  --hv-shadow-lg: 0 30px 80px rgba(4, 24, 51, 0.18);
  --hv-shadow-card: 0 14px 44px rgba(4, 24, 51, 0.10);
}

body { background: var(--hv-bg); }

/* ── Boutons : refresh ── */
.btn-primary,
.btn-header-cta {
  background: linear-gradient(135deg, var(--hv-accent) 0%, var(--hv-accent-2) 100%) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(255, 106, 26, 0.32) !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-primary:hover,
.btn-header-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 38px rgba(255, 106, 26, 0.4) !important;
}
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: transform .18s ease, background .18s ease;
}
.btn-ghost:hover { transform: translateY(-2px); }

/* Bouton clair sur fond foncé */
.btn-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--hv-navy);
  font-weight: 700; padding: 14px 24px; border-radius: 999px;
  text-decoration: none; border: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28); }

/* ── Pastille "en direct" ── */
.live-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  background: rgba(30, 217, 138, 0.12);
  border: 1px solid rgba(30, 217, 138, 0.4);
  color: #d8fff0; font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.live-pill--dark {
  background: rgba(15, 174, 106, 0.12);
  border-color: rgba(15, 174, 106, 0.32);
  color: var(--hv-live-deep);
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--hv-live); position: relative; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(30, 217, 138, 0.6);
  animation: hvPulse 2s infinite;
}
@keyframes hvPulse {
  0%   { box-shadow: 0 0 0 0 rgba(30, 217, 138, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(30, 217, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 217, 138, 0); }
}
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(255, 106, 26, 0.28), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(30, 217, 138, 0.18), transparent 55%),
    linear-gradient(160deg, var(--hv-navy) 0%, var(--hv-navy-2) 55%, var(--hv-navy-3) 130%);
  color: #fff;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 80px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(900px 600px at 50% 0%, #000 25%, transparent 75%);
          mask-image: radial-gradient(900px 600px at 50% 0%, #000 25%, transparent 75%);
  opacity: 0.5;
}
.hero .hero-bg { display: none; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  line-height: 1.05; letter-spacing: -0.025em;
  font-weight: 800; margin: 22px 0 0;
  color: #fff;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--hv-accent-2), #ffd0a8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  color: rgba(226, 235, 247, 0.86);
  font-size: 1.12rem; line-height: 1.65;
  margin-top: 20px; max-width: 33em;
}
.hero-lead a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Bandeau adresse sous le hero gauche */
.hero-address {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}
.hero-address svg { color: var(--hv-accent-2); flex-shrink: 0; }
.hero-address b { color: #fff; display: block; font-size: 0.95rem; }
.hero-address span { color: rgba(226, 235, 247, 0.7); font-size: 0.84rem; }

.payment-trust--hero { margin-top: 30px; }
.payment-trust--hero .payment-trust-label { color: rgba(226, 235, 247, 0.6); }
.payment-trust--hero .payment-logos--partners img { filter: brightness(0) invert(1); opacity: 0.85; }

/* ── Vidéo portrait façon "téléphone" ── */
.hero-video-shell {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.hero-video-badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: center;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff; font-weight: 600; font-size: 0.8rem;
}
.hero-video-frame {
  position: relative; margin: 0;
  width: min(330px, 78vw);
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(160deg, #0c1a30, #04101f);
  box-shadow: var(--hv-shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-video-frame::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 6px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.18); z-index: 3;
}
.hero-video-frame video {
  width: 100%; aspect-ratio: 9 / 16; height: auto;
  object-fit: cover; display: block;
  border-radius: 28px; background: #04101f;
}
.hero-video-frame figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 12px 14px; border-radius: 0 0 28px 28px;
  background: linear-gradient(to top, rgba(2, 10, 22, 0.92), rgba(2, 10, 22, 0));
  color: rgba(255,255,255,0.92); font-size: 0.8rem; font-weight: 500;
  text-align: center;
}

/* ════════════════════════════════════════════
   SECTION LABELS / TITRES (refresh global léger)
   ════════════════════════════════════════════ */
.section-label {
  color: var(--hv-accent);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 0.78rem;
}
.section-label--pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(255, 106, 26, 0.1);
  border: 1px solid rgba(255, 106, 26, 0.22);
}
.section-title { letter-spacing: -0.02em; }

/* ════════════════════════════════════════════
   PREUVE TERRAIN
   ════════════════════════════════════════════ */
.proof-section {
  position: relative;
  margin-top: -36px; padding-top: 76px; padding-bottom: 84px;
  background: var(--hv-bg);
  border-radius: 36px 36px 0 0;
}
.proof-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 40px; align-items: center; margin-top: 44px;
}
.proof-photo {
  position: relative; margin: 0;
  border-radius: var(--hv-radius-lg); overflow: hidden;
  box-shadow: var(--hv-shadow-lg);
}
.proof-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 24px 18px;
  background: linear-gradient(to top, rgba(0, 10, 26, 0.86), transparent);
  color: #fff; font-size: 0.9rem; font-weight: 500;
}
.proof-photo-tag {
  position: absolute; top: 18px; left: 18px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.92); color: var(--hv-navy);
  font-weight: 700; font-size: 0.78rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.proof-points { display: grid; gap: 16px; }
.proof-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border-radius: var(--hv-radius);
  background: #fff; border: 1px solid var(--hv-line);
  box-shadow: var(--hv-shadow-card);
}
.proof-point-ic {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--hv-navy-2), var(--hv-navy-3));
}
.proof-point--live .proof-point-ic {
  background: linear-gradient(135deg, var(--hv-live-deep), var(--hv-live));
}
.proof-point h3 { font-size: 1.02rem; margin: 0 0 4px; letter-spacing: -0.01em; }
.proof-point p { font-size: 0.92rem; color: var(--hv-muted); margin: 0; line-height: 1.5; }

/* Carte référence client */
.showroom-card {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--hv-navy) 0%, var(--hv-navy-3) 140%);
  color: #fff; border-radius: var(--hv-radius-lg);
  padding: 36px; display: grid; grid-template-columns: auto 1fr;
  gap: 28px; align-items: center; box-shadow: var(--hv-shadow-lg);
}
.showroom-card-logo img {
  width: 88px; height: 88px; border-radius: 22px;
  background: #fff; padding: 8px; object-fit: contain;
}
.showroom-card-body h3 { color: #fff; font-size: 1.2rem; margin: 0 0 10px; }
.showroom-card-body p { color: rgba(226, 235, 247, 0.82); margin: 0 0 18px; line-height: 1.6; }
.showroom-card-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ════════════════════════════════════════════
   BLOC VISITE MVET.CH
   ════════════════════════════════════════════ */
.visit-section { padding: 84px 0; background: var(--hv-bg); }
.visit-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #fff; border-radius: var(--hv-radius-lg);
  overflow: hidden; box-shadow: var(--hv-shadow-lg);
  border: 1px solid var(--hv-line);
}
.visit-info { padding: 44px; }
.visit-info h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.02em; margin: 14px 0 10px; }
.visit-info > p { color: var(--hv-muted); line-height: 1.65; margin-bottom: 26px; }
.visit-meta { display: grid; gap: 18px; margin-bottom: 26px; }
.visit-row { display: flex; gap: 15px; align-items: flex-start; }
.visit-row-ic {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--hv-accent);
  background: rgba(255, 106, 26, 0.1);
}
.visit-row b { display: block; font-size: 0.98rem; color: var(--hv-ink); }
.visit-row span, .visit-row p { font-size: 0.92rem; color: var(--hv-muted); margin: 0; }
.visit-hours { display: grid; gap: 5px; margin-top: 6px; }
.visit-hours div {
  display: flex; justify-content: space-between; gap: 18px;
  font-size: 0.9rem; max-width: 280px;
}
.visit-hours span:first-child { color: var(--hv-ink); font-weight: 600; }
.visit-hours span:last-child { color: var(--hv-muted); }
.visit-hours .closed { color: #b03636; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

.visit-aside {
  position: relative;
  background:
    radial-gradient(600px 400px at 70% 10%, rgba(255, 106, 26, 0.22), transparent 60%),
    linear-gradient(160deg, var(--hv-navy), var(--hv-navy-3));
  color: #fff; padding: 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.visit-aside h3 { color: #fff; font-size: 1.15rem; margin: 6px 0 4px; }
.visit-checklist { display: grid; gap: 14px; }
.visit-check { display: flex; gap: 13px; align-items: flex-start; font-size: 0.95rem; color: rgba(226,235,247,0.9); line-height: 1.5; }
.visit-check svg { color: var(--hv-live); flex-shrink: 0; margin-top: 2px; }
.visit-aside .map-link {
  margin-top: 8px; display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px;
  font-size: 0.92rem;
}

/* ════════════════════════════════════════════
   BANDEAU CHIFFRES
   ════════════════════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, var(--hv-navy) 0%, var(--hv-navy-2) 100%);
  padding: 56px 0;
}
.stats-band .stat-value { color: #fff; }
.stats-band .stat-item--accent .stat-value {
  background: linear-gradient(120deg, var(--hv-accent-2), #ffd0a8);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stats-band .stat-label { color: rgba(226, 235, 247, 0.74); }
.stats-band .stat-item { border-color: rgba(255,255,255,0.12) !important; }

/* ── Cartes feature refresh ── */
.feature-card { border-radius: var(--hv-radius); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--hv-shadow-card); }
.feature-icon { background: linear-gradient(135deg, var(--hv-navy-2), var(--hv-navy-3)); color: #fff; }

/* Plan card accent */
.plan-card--featured { border-color: rgba(255,106,26,0.4); }
.plan-badge { background: linear-gradient(135deg, var(--hv-accent), var(--hv-accent-2)); }
.plan-feature--hl { color: var(--hv-live-deep); font-weight: 700; }

/* ════════════════════════════════════════════
   CONTACT — hub unifié
   ════════════════════════════════════════════ */
.contact-hub {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.contact-hero {
  background: linear-gradient(135deg, var(--hv-navy) 0%, #0a2548 55%, var(--hv-navy-3) 140%);
  color: #fff;
  border-radius: var(--hv-radius-lg);
  padding: 28px 30px 24px;
  box-shadow: var(--hv-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero__top {
  display: flex;
  align-items: center;
  gap: 22px;
}

.contact-hero__id .call-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hv-live);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-hero__id h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}

.contact-hero__id p {
  margin: 0;
  color: rgba(226, 235, 247, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 36em;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-chip--primary {
  background: #fff;
  color: var(--hv-navy);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.contact-chip--primary svg { color: var(--hv-accent); flex-shrink: 0; }

.contact-chip--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.contact-chip--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-chip--ghost svg { color: rgba(255, 255, 255, 0.9); flex-shrink: 0; }

.contact-chip--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.contact-hero__note {
  margin: 16px 0 0;
  font-size: 0.84rem;
  color: rgba(226, 235, 247, 0.68);
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-visit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  border-radius: var(--hv-radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 21, 51, 0.08);
  box-shadow: 0 8px 28px rgba(0, 21, 51, 0.06);
}

.contact-visit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(0, 21, 51, 0.06), rgba(0, 21, 51, 0.02));
  color: var(--hv-navy);
}

.contact-visit-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--hv-navy);
  letter-spacing: -0.01em;
}

.contact-visit-card p {
  margin: 0;
  color: var(--hv-muted, #5a6478);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-visit-card__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hv-accent);
  text-decoration: none;
}

.contact-visit-card__link:hover { text-decoration: underline; }

.contact-visit-card__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.contact-visit-card__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--hv-muted, #5a6478);
}

.contact-visit-card__hours strong {
  color: var(--hv-navy);
  font-weight: 800;
}

@media (max-width: 760px) {
  .contact-hero { padding: 22px 18px 20px; }
  .contact-hero__top { align-items: flex-start; }
  .contact-hero__actions { flex-direction: column; }
  .contact-chip { width: 100%; justify-content: center; }
  .contact-visit-grid { grid-template-columns: 1fr; }
}

/* Legacy call-card (hero) — conservé pour compatibilité */
.call-card {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 26px; align-items: center;
  background: linear-gradient(135deg, var(--hv-navy) 0%, var(--hv-navy-3) 140%);
  color: #fff; border-radius: var(--hv-radius-lg);
  padding: 30px 34px; margin-bottom: 30px;
  box-shadow: var(--hv-shadow-lg);
}
.call-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  background: #fff;
}
/* Monogramme de remplacement tant que la photo n'est pas fournie */
.call-avatar--initials {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--hv-accent), var(--hv-accent-2));
  color: #fff; font-weight: 800; font-size: 1.9rem; letter-spacing: 0.02em;
  border-color: rgba(255,255,255,0.7);
}
.call-id .call-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--hv-live); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.call-id h3 { color: #fff; font-size: 1.4rem; margin: 6px 0 2px; letter-spacing: -0.01em; }
.call-id p { color: rgba(226, 235, 247, 0.78); font-size: 0.95rem; margin: 0; }
.call-action { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.call-phone-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--hv-navy);
  font-weight: 800; font-size: 1.18rem; letter-spacing: -0.01em;
  padding: 16px 26px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.call-phone-btn svg { color: var(--hv-accent); }
.call-phone-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34); }
.call-note { color: rgba(226, 235, 247, 0.7); font-size: 0.82rem; }

@media (max-width: 760px) {
  .call-card { grid-template-columns: auto 1fr; row-gap: 18px; padding: 26px 24px; }
  .call-action { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }
  .call-phone-btn { font-size: 1.05rem; }
}

/* ── Photo fondateur à côté du bouton d'appel (hero) ── */
.hero-actions { align-items: center; }
.hero-call-group { display: inline-flex; align-items: center; }
.hero-call-face {
  width: 66px; height: 66px; border-radius: 50%;
  object-fit: cover; object-position: 50% 50%; flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  margin-right: -20px; position: relative; z-index: 2;
}
.hero-call-group .btn-primary { padding-left: 36px; }
.hero-founder-note {
  margin-top: 16px; max-width: 34em;
  color: rgba(226, 235, 247, 0.82); font-size: 0.9rem; line-height: 1.45;
}
.hero-founder-note b { color: #fff; }
.hero-founder-note a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-founder-note a:hover { color: #fff; }

.call-email-link {
  color: rgba(226, 235, 247, 0.92);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(226, 235, 247, 0.35);
}
.call-email-link:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.7); }

/* ── Avatar photo + repli monogramme (carte appel) ── */
.call-avatar-wrap { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.call-avatar-wrap .call-avatar { position: absolute; inset: 0; width: 88px; height: 88px; margin: 0; }
.call-avatar--photo { z-index: 2; object-position: 50% 50%; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
  .showroom-card { grid-template-columns: 1fr; text-align: left; }
  .visit-card { grid-template-columns: 1fr; }
}

/* ── Hero mobile : titre → vidéo → photo+appel en premier ──
   site.css applique .hero-content{display:contents} sous 960px,
   donc on ordonne directement les enfants du hero-grid. */
@media (max-width: 960px) {
  .hero { padding: calc(var(--header-h) + 26px) 0 40px; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }

  .hero h1        { order: 1; font-size: clamp(1.95rem, 8vw, 2.6rem); margin: 0 0 2px; }
  .hero-visual    { order: 2; margin: 6px 0; }
  .hero-actions   { order: 3; margin: 2px 0 0; }
  .hero-founder-note { order: 4; margin-top: 10px; }
  .hero-lead      { order: 5; margin: 4px 0 0; font-size: 1.02rem; }
  .hero-address   { order: 6; margin-top: 6px; }

  .hero-video-shell { order: 0; max-width: 100%; margin: 0; }
  .hero-video-frame { width: min(300px, 74vw); margin-inline: auto; }
}

@media (max-width: 560px) {
  .visit-info, .visit-aside { padding: 30px 24px; }
  .showroom-card { padding: 28px 24px; }
  .hero-call-group { width: 100%; }
  .hero-call-group .btn-primary { flex: 1; justify-content: center; }
  .hero-actions .btn-ghost { width: 100%; justify-content: center; text-align: center; }
}
