/* ═══════════════════════════════════════════════════════════════════
   ALTI CLIM — V5 Production · Inspired by OhPur clarity
   Ultra-clean, professional, zero-fioriture
   ═══════════════════════════════════════════════════════════════════ */

/* ── RESET ───────────────────────────────────────── */
body { margin: 0; padding: 0; }

/* ── VARIABLES ────────────────────────────────────── */
.v5 {
  --navy: #0D2E4E;
  --navy-soft: #1a3d5c;
  --blue: #238cf5;
  --blue-light: #e6f2fb;
  --blue-pale: #f0f7fd;
  --ink: #1e2d3d;
  --ink-soft: #3a4f63;
  --muted: #6b7f94;
  --line: #e2e8f0;
  --bg: #f8fafb;
  --bg-warm: #fafbfc;
  --paper: #ffffff;
  --green: #10b981;
  --gold: #f6a618;
  --red: #e62814;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-s: 0 1px 3px rgba(0,0,0,.04);
  --shadow-m: 0 4px 16px rgba(13,46,78,.07);
  --shadow-l: 0 16px 48px rgba(13,46,78,.10);
  --font: 'Trebuchet MS', Tahoma, system-ui, -apple-system, sans-serif;
}

/* ── BASE ─────────────────────────────────────────── */
.v5 { font-family: 'Trebuchet MS', Tahoma, sans-serif; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
.v5 *, .v5 *::before, .v5 *::after { box-sizing: border-box; }
.v5 h1,.v5 h2,.v5 h3,.v5 h4 { font-family: 'Trebuchet MS', Tahoma, sans-serif; color: var(--navy); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin: 0; }
.v5 p { margin: 0; }
.v5 a { color: var(--blue); text-decoration: none; }
.v5 img { max-width: 100%; display: block; }

/* Container */
.v5 .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ───────────────────────────────────────── */
.v5-topbar {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  padding: .5rem 0;
  text-align: center;
  font-weight: 500;
}
.v5-topbar strong { color: #fff; }
.v5-topbar a { color: var(--gold); font-weight: 700; }
.v5-topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.v5-topbar-item {
  display: flex; align-items: center; gap: .35rem;
}

/* ── NAV ──────────────────────────────────────────── */
.v5-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.v5-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 1.5rem;
}
.v5-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; flex-shrink: 0;
}
.v5-logo-mark, .v5-logo-img {
  width: 100px; height: 100px; border-radius: 18px;
  object-fit: contain; flex-shrink: 0;
  transition: width .35s ease, height .35s ease, border-radius .35s ease;
}
.v5-nav--compact .v5-logo-img {
  width: 46px; height: 46px; border-radius: 10px;
}
.v5-logo-mark { /* fallback text logo */
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-weight: 900; font-size: .95rem; color: #fff;
}
/* Nav compact mode */
.v5-nav--compact { padding: .35rem 0; box-shadow: 0 1px 12px rgba(13,46,78,.08); }
.v5-nav--compact .v5-logo-text { font-size: 1rem; }
.v5-nav--compact .v5-logo-sub { display: none; }

/* ═══ FULL-SCREEN LOADER ═══ */
.v5-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s ease;
}
.v5-loader-logo { text-align: center; }
.v5-loader-svg {
  width: 180px; height: 180px; border-radius: 50%;
  animation: loaderPulse .8s ease-out;
}
@keyframes loaderPulse {
  0%   { transform: scale(.5); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.v5-loader--shrink .v5-loader-svg {
  animation: loaderFlyToNav .4s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loaderFlyToNav {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(.25) translateY(-45vh) translateX(-35vw); opacity: 0; }
}
.v5-loader--gone {
  opacity: 0; pointer-events: none; visibility: hidden;
}
.v5-logo-text {
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-size: 1.2rem; font-weight: 800;
  color: var(--navy); line-height: 1.1;
}
.v5-logo-sub { font-size: .58rem; color: var(--muted); font-weight: 500; letter-spacing: .3px; }
.v5-nav-links {
  display: flex; align-items: center; gap: .15rem;
  flex: 1; justify-content: center;
}
.v5-nav-links a {
  font-size: .84rem; font-weight: 600; color: var(--ink-soft);
  padding: .4rem .7rem; border-radius: 8px;
  transition: color .15s, background .15s;
}
.v5-nav-links a:hover,
.v5-nav-links a.active { color: var(--navy); background: var(--bg); }
.v5-nav-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.v5-nav-tel {
  font-size: .82rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: .35rem;
}

/* ── BUTTONS ──────────────────────────────────────── */
.v5 .btn-devis {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .7rem 1.6rem; border-radius: 10px;
  background: var(--navy); color: #fff;
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-size: .88rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: all .2s;
  text-decoration: none; white-space: nowrap;
}
.v5 .btn-devis:hover {
  background: var(--navy-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,46,78,.18);
  color: #fff;
}
.v5 .btn-devis-lg {
  padding: .85rem 2.2rem; font-size: .95rem; border-radius: 12px;
}
.v5 .btn-devis-white {
  background: #fff; color: var(--navy);
}
.v5 .btn-devis-white:hover { background: rgba(255,255,255,.9); color: var(--navy); }
.v5 .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .65rem 1.4rem; border-radius: 10px;
  background: transparent; color: var(--navy);
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-size: .86rem; font-weight: 700;
  border: 2px solid var(--line); cursor: pointer;
  transition: all .2s; text-decoration: none; white-space: nowrap;
}
.v5 .btn-outline:hover { border-color: var(--navy); }

/* ── HERO ─────────────────────────────────────────── */
.v5-hero {
  padding: 4.5rem 0 5rem;
  background: var(--bg);
}
.v5-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.v5-hero-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--blue-light); color: var(--navy);
  padding: .3rem .85rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .3px;
  margin-bottom: 1.25rem;
}
.v5-hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.v5-hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.08;
}
.v5-hero h1 em { color: var(--blue); font-style: normal; }
.v5-hero-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.7; max-width: 460px;
  margin-bottom: 2rem;
}
.v5-hero-ctas { display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 2rem; }
.v5-hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.v5-hero-trust-item {
  display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--muted);
}
.v5-hero-trust-item svg { color: var(--green); flex-shrink: 0; }
.v5-hero-visual {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), var(--blue));
}
.v5-hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.v5-hero-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: #fff; border-radius: 14px; padding: .85rem 1.1rem;
  box-shadow: var(--shadow-l);
  display: flex; align-items: center; gap: .65rem;
}
.v5-hero-badge-num {
  font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.v5-hero-badge-txt { font-size: .72rem; color: var(--muted); font-weight: 600; line-height: 1.3; }

/* Hero Google badge — compact avatar group on visual */
.v5-hero-gbadge {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  background: #fff; border-radius: 14px; padding: .6rem .85rem;
  box-shadow: var(--shadow-l); display: flex; align-items: center; gap: .5rem;
  cursor: pointer; transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.v5-hero-gbadge:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(13,46,78,.15); }
.v5-hero-gbadge .v5-avatar-group { margin-right: .15rem; }
.v5-hero-gbadge .v5-avatar-group-item { width: 26px; height: 26px; margin-left: -6px; border-width: 1.5px; font-size: .55rem; }
.v5-hero-gbadge .v5-avatar-group-item:first-child { margin-left: 0; }
.v5-hero-gbadge-score { font-size: .95rem; font-weight: 800; color: var(--navy); line-height: 1; }
.v5-hero-gbadge-meta { font-size: .65rem; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* ── BRANDS ───────────────────────────────────────── */
.v5-brands {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.75rem 0; background: #fff;
}
.v5-brands-inner {
  display: flex; align-items: center; justify-content: space-around;
  gap: 2rem; flex-wrap: wrap;
}
.v5-brand {
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-weight: 800; font-size: .95rem;
  color: #bfc9d4; letter-spacing: .6px; text-transform: uppercase;
  transition: color .2s;
}
.v5-brand:hover { color: var(--navy); }
.v5-brands-label {
  text-align: center; font-size: .62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .6px; color: var(--muted); margin-bottom: .65rem;
}

/* ── QUALITY BLOCK ───────────────────────────────── */
.v5-quality-block {
  margin-top: 3rem; padding: 2.5rem; background: var(--bg); border-radius: 18px;
  border: 1px solid var(--line);
}
.v5-quality-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center;
}
@media (max-width: 768px) { .v5-quality-inner { grid-template-columns: 1fr; } }

/* ── FOOTER FOREST ───────────────────────────────── */
.v5-footer-forest {
  width: 100%; height: auto; display: block; opacity: .25;
  margin-bottom: -1px;
}

/* ── SECTIONS ─────────────────────────────────────── */
.v5-section { padding: 5.5rem 0; }
.v5-section--alt { background: var(--bg); }
.v5-section--navy { background: var(--navy); }

.v5-sh { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
.v5-eyebrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
  color: var(--blue); margin-bottom: .6rem;
  background: var(--blue-light); padding: .22rem .7rem; border-radius: 999px;
}
.v5-sh h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: .6rem;
}
.v5-sh p { font-size: .93rem; color: var(--muted); line-height: 1.7; }

/* ── SERVICES GRID (3 cols, OhPur style) ─────────── */
.v5-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.v5-svc-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none; display: flex; flex-direction: column;
}
.v5-svc-card:hover { border-color: var(--blue); box-shadow: var(--shadow-m); }
.v5-svc-card-img {
  width: 100%; height: 200px; object-fit: cover; background: var(--bg);
}
.v5-svc-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.v5-svc-card-title {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  margin-bottom: .4rem;
}
.v5-svc-card-desc {
  font-size: .84rem; color: var(--muted); line-height: 1.6;
  margin-bottom: 1.25rem; flex: 1;
}
.v5-svc-card-cta {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .82rem; font-weight: 700; color: var(--navy);
}
.v5-svc-card:hover .v5-svc-card-cta { color: var(--blue); }

/* ── WHY US (4 cols, clean) ──────────────────────── */
.v5-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.v5-why-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.v5-why-card:hover { border-color: var(--blue); box-shadow: var(--shadow-m); }
.v5-why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-light); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem; font-size: 1.5rem;
}
.v5-why-title { font-size: .88rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.v5-why-desc { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ── STATS BAR ────────────────────────────────────── */
.v5-stats {
  background: var(--navy); padding: 3.5rem 0;
}
.v5-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.v5-stat-num {
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-size: 2.6rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.v5-stat-unit { font-size: 1.1rem; color: var(--gold); font-weight: 800; }
.v5-stat-label { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .35rem; font-weight: 500; }

/* ── PROCESS STEPS ────────────────────────────────── */
.v5-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative;
}
.v5-process-grid::before {
  content: ""; position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px; background: var(--line);
}
.v5-step { text-align: center; }
.v5-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-light); border: 2.5px solid var(--blue);
  color: var(--navy); font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; position: relative; z-index: 1;
  transition: all .2s;
}
.v5-step:hover .v5-step-num { background: var(--navy); border-color: var(--navy); color: #fff; }
.v5-step-title { font-weight: 800; font-size: .88rem; color: var(--navy); margin-bottom: .3rem; }
.v5-step-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.v5-testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.v5-testi-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem;
  transition: border-color .2s;
}
.v5-testi-card:hover { border-color: var(--blue); }
.v5-testi-stars { color: var(--gold); font-size: .95rem; letter-spacing: .15rem; margin-bottom: .85rem; }
.v5-testi-text { font-size: .86rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.v5-testi-author { display: flex; align-items: center; gap: .65rem; }
.v5-testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--navy); font-size: .85rem;
}
.v5-testi-name { font-weight: 700; font-size: .82rem; color: var(--navy); }
.v5-testi-loc { font-size: .7rem; color: var(--muted); }

/* ── REALISATIONS (dark section) ──────────────────── */
.v5-real {
  background: var(--navy); padding: 5.5rem 0; color: #fff;
}
.v5-real-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.v5-real-eyebrow { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.45); margin-bottom: .6rem; }
.v5-real h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin-bottom: 1rem; }
.v5-real p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; margin-bottom: 2rem; }
.v5-real-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .6rem;
}
.v5-real-stat-label { font-weight: 700; color: #fff; font-size: .86rem; }
.v5-real-stat-sub { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: .1rem; }
.v5-real-stat-val { font-weight: 800; font-size: 1.3rem; color: var(--gold); white-space: nowrap; }

/* ── FAQ ──────────────────────────────────────────── */
.v5-faq-list { max-width: 740px; margin: 0 auto; }
.v5-faq-item {
  border-bottom: 1px solid var(--line); padding: 0;
}
.v5-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer;
  font-weight: 700; font-size: .92rem; color: var(--navy);
  background: none; border: none; width: 100%; text-align: left;
  font-family: 'Trebuchet MS', Tahoma, sans-serif;
}
.v5-faq-q:hover { color: var(--blue); }
.v5-faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform .2s; color: var(--muted);
}
.v5-faq-item.open .v5-faq-chevron { transform: rotate(180deg); }
.v5-faq-a {
  overflow: hidden; max-height: 0; transition: max-height .3s ease;
}
.v5-faq-a-inner {
  padding: 0 0 1.25rem;
  font-size: .86rem; color: var(--muted); line-height: 1.7;
}
.v5-faq-item.open .v5-faq-a { max-height: 300px; }

/* ── CTA BAND ─────────────────────────────────────── */
.v5-cta-band { background: var(--navy); padding: 3.5rem 0; }
.v5-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.v5-cta-inner h3 { font-size: 1.25rem; color: #fff; margin-bottom: .25rem; }
.v5-cta-inner p { color: rgba(255,255,255,.55); font-size: .88rem; }
.v5-cta-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ── CONTACT DUAL ─────────────────────────────────── */
.v5-contact-dual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.v5-contact-box {
  border-radius: var(--r-lg); padding: 2.5rem 2rem;
}
.v5-contact-box--call {
  background: var(--navy); color: #fff;
}
.v5-contact-box--form {
  background: var(--bg); border: 1px solid var(--line);
}
.v5-contact-label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: .6rem;
}
.v5-contact-box--call .v5-contact-label { color: rgba(255,255,255,.5); }
.v5-contact-box--form .v5-contact-label { color: var(--blue); }
.v5-contact-tel {
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-size: 1.8rem; font-weight: 800;
  color: #fff; text-decoration: none; display: block; margin-bottom: .3rem;
}
.v5-contact-tel:hover { color: var(--gold); }
.v5-contact-hours { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.v5-contact-box--form h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.v5-contact-box--form p { font-size: .84rem; color: var(--muted); margin-bottom: 1.25rem; }

/* ── FOOTER ───────────────────────────────────────── */
.v5-footer { background: #071a2e; color: rgba(255,255,255,.6); padding: 4.5rem 0 2rem; }
.v5-footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.v5-footer-logo { display: flex; align-items: center; gap: .5rem; margin-bottom: .85rem; }
.v5-footer-logo-img { width: 36px; height: 36px; border-radius: 9px; object-fit: contain; }
.v5-footer-logo-mark {
  width: 36px; height: 36px; background: var(--blue); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .85rem; color: #fff;
}
.v5-footer-logo-name { font-size: 1.05rem; font-weight: 800; color: #fff; }
.v5-footer-desc { font-size: .79rem; color: rgba(255,255,255,.38); line-height: 1.65; max-width: 280px; margin-bottom: 1rem; }
.v5-footer-socials { display: flex; gap: .4rem; }
.v5-footer-social {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .15s;
}
.v5-footer-social:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.v5-footer h4 {
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  color: rgba(255,255,255,.3); margin-bottom: 1rem;
}
.v5-footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.v5-footer-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .14s; }
.v5-footer-links a:hover { color: var(--blue); }
.v5-footer-contact-item {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: .55rem;
}
.v5-footer-contact-item a { color: rgba(255,255,255,.55); }
.v5-footer-contact-item a:hover { color: var(--blue); }
.v5-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .65rem; font-size: .73rem; color: rgba(255,255,255,.22);
}
.v5-footer-bottom a { color: rgba(255,255,255,.3); }
.v5-footer-bottom a:hover { color: var(--blue); }
.v5-footer-bottom-links { display: flex; gap: 1rem; }

/* ── FLOATING CTA ─────────────────────────────────── */
.v5-float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  background: var(--navy); color: #fff; text-decoration: none;
  padding: 14px 26px; border-radius: 50px;
  font-family: 'Trebuchet MS', Tahoma, sans-serif; font-size: .9rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(13,46,78,.3);
  display: flex; align-items: center; gap: 8px;
  transition: all .25s;
}
.v5-float-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(13,46,78,.4);
  color: #fff;
}

/* ── REASSURANCE BAR ──────────────────────────────── */
.v5-rbar {
  background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.v5-rbar-inner {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.v5-rbar-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; color: var(--navy);
}

/* ── BLOG GRID ────────────────────────────────────── */
.v5-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.v5-blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color .2s; text-decoration: none;
}
.v5-blog-card:hover { border-color: var(--blue); }
.v5-blog-card-img {
  height: 180px; overflow: hidden; background: var(--bg);
}
.v5-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.v5-blog-card-body { padding: 1.25rem; }
.v5-blog-card-tag {
  display: inline-block; font-size: .62rem; font-weight: 800; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light); padding: .15rem .5rem;
  border-radius: 4px; margin-bottom: .5rem;
}
.v5-blog-card-title { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; line-height: 1.35; }
.v5-blog-card-excerpt { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ── MOBILE RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
  .v5-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .v5-hero-visual { max-height: 380px; }
  .v5-why-grid { grid-template-columns: repeat(2, 1fr); }
  .v5-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .v5-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .v5-nav-links { display: none; }
  .v5-real-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .v5-services-grid { grid-template-columns: 1fr; }
  .v5-testi-grid { grid-template-columns: 1fr; }
  .v5-blog-grid { grid-template-columns: 1fr; }
  .v5-process-grid { grid-template-columns: repeat(2, 1fr); }
  .v5-process-grid::before { display: none; }
  .v5-contact-dual { grid-template-columns: 1fr; }
  .v5-topbar-inner { gap: .5rem; font-size: .7rem; }
  .v5-hero { padding: 3rem 0 3.5rem; }
  .v5-hero h1 { font-size: 2rem; }
  .v5-section { padding: 4rem 0; }
  .v5-cta-inner { flex-direction: column; text-align: center; }
  .v5-cta-actions { justify-content: center; }
}
@media (max-width: 500px) {
  .v5-why-grid { grid-template-columns: 1fr; }
  .v5-stats-grid { grid-template-columns: 1fr 1fr; }
  .v5-footer-grid { grid-template-columns: 1fr; }
  .v5-float-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: .82rem; }
}

/* ── HAMBURGER (mobile nav) ───────────────────────── */
.v5-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: .5rem;
  color: var(--navy);
}
@media (max-width: 1100px) {
  .v5-hamburger { display: flex; }
}
.v5-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.5);
}
.v5-mobile-menu.open { display: block; }
.v5-mobile-panel {
  position: absolute; top: 0; right: 0;
  width: 280px; height: 100%; background: #fff;
  padding: 2rem 1.5rem; overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,.1);
}
.v5-mobile-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer; color: var(--navy);
}
.v5-mobile-links { display: flex; flex-direction: column; gap: .25rem; margin-top: 2rem; }
.v5-mobile-links a {
  font-size: .92rem; font-weight: 600; color: var(--ink-soft);
  padding: .6rem .75rem; border-radius: 8px;
}
.v5-mobile-links a:hover { background: var(--bg); color: var(--navy); }
.v5-mobile-cta { margin-top: 1.5rem; }

/* ── GOOGLE REVIEWS — Avatar group condensé (hero) ── */
.v5-greviews {
  display: flex; align-items: center; gap: .85rem;
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  cursor: pointer; transition: opacity .15s;
}
.v5-greviews:hover { opacity: .85; }
.v5-avatar-group {
  display: flex; flex-shrink: 0;
}
.v5-avatar-group-item {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff; background: var(--blue-light); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; margin-left: -8px;
  overflow: hidden; position: relative;
}
.v5-avatar-group-item:first-child { margin-left: 0; }
.v5-avatar-group-item img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.v5-avatar-group-more {
  background: var(--navy); color: #fff; font-size: .6rem; font-weight: 800;
}
.v5-greviews-info { display: flex; flex-direction: column; gap: .1rem; }
.v5-greviews-row { display: flex; align-items: center; gap: .45rem; }
.v5-greviews-glogo { flex-shrink: 0; }
.v5-greviews-score { font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.v5-greviews-stars { color: #FBBC05; font-size: .72rem; letter-spacing: 1px; }
.v5-greviews-meta { font-size: .72rem; color: var(--muted); font-weight: 500; }
.v5-greviews-meta b { color: var(--ink-soft); }
.v5-greviews-arrow {
  margin-left: auto; flex-shrink: 0; color: var(--muted);
  transition: transform .15s;
}
.v5-greviews:hover .v5-greviews-arrow { transform: translateX(3px); color: var(--blue); }

/* ── TESTIMONIALS — Google branded header ─────────── */
.v5-testi-google-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem; gap: 1.5rem; flex-wrap: wrap;
}
.v5-testi-google-left {
  display: flex; align-items: center; gap: .85rem;
}
.v5-testi-google-score-block { display: flex; flex-direction: column; align-items: flex-start; }
.v5-testi-google-num { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.v5-testi-google-stars { color: #FBBC05; font-size: .85rem; letter-spacing: 1.5px; margin-top: .15rem; }
.v5-testi-google-label {
  padding-left: .85rem; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .1rem;
}
.v5-testi-google-label span:first-child { font-weight: 700; font-size: .85rem; color: var(--navy); }
.v5-testi-google-label span:last-child { font-size: .75rem; color: var(--muted); }
.v5-testi-all-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--navy);
  padding: .5rem 1rem; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; transition: all .15s; font-family: 'Trebuchet MS', Tahoma, sans-serif;
}
.v5-testi-all-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ── REVIEWS OFFCANVAS ────────────────────────────── */
.v5-offcanvas-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.45); opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.v5-offcanvas-overlay.open { opacity: 1; visibility: visible; }
.v5-offcanvas {
  position: fixed; top: 0; right: 0; z-index: 501;
  width: 440px; max-width: 92vw; height: 100vh;
  background: #fff; box-shadow: -8px 0 40px rgba(0,0,0,.12);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.v5-offcanvas-overlay.open .v5-offcanvas { transform: translateX(0); }
.v5-oc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.v5-oc-header-left { display: flex; align-items: center; gap: .75rem; }
.v5-oc-score { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.v5-oc-score-sub { display: flex; flex-direction: column; gap: .05rem; }
.v5-oc-stars { color: #FBBC05; font-size: .75rem; letter-spacing: 1px; }
.v5-oc-count { font-size: .7rem; color: var(--muted); }
.v5-oc-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: background .15s;
}
.v5-oc-close:hover { background: var(--line); }
.v5-oc-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.v5-oc-review { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.v5-oc-review:last-child { border-bottom: none; }
.v5-oc-review-top { display: flex; align-items: center; gap: .65rem; margin-bottom: .65rem; }
.v5-oc-review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--navy); font-size: .82rem; flex-shrink: 0;
  overflow: hidden;
}
.v5-oc-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.v5-oc-review-meta { flex: 1; }
.v5-oc-review-name { font-weight: 700; font-size: .84rem; color: var(--navy); }
.v5-oc-review-date { font-size: .7rem; color: var(--muted); }
.v5-oc-review-stars { color: #FBBC05; font-size: .75rem; letter-spacing: 1px; margin-left: auto; flex-shrink: 0; }
.v5-oc-review-text { font-size: .84rem; color: var(--ink-soft); line-height: 1.65; }
.v5-oc-review-project {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .5rem; font-size: .7rem; font-weight: 600;
  color: var(--blue); background: var(--blue-light); padding: .15rem .55rem; border-radius: 999px;
}
.v5-oc-footer {
  padding: 1rem 1.5rem; border-top: 1px solid var(--line); flex-shrink: 0; text-align: center;
}
.v5-oc-footer a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--navy);
}
.v5-oc-footer a:hover { color: var(--blue); }

/* Offcanvas responsive */
@media (max-width: 500px) {
  .v5-offcanvas { width: 100%; max-width: 100%; }
  .v5-greviews { gap: .6rem; }
  .v5-testi-google-bar { flex-direction: column; align-items: flex-start; }
}

/* ── CONTACT SIMPLE ──────────────────────────────── */
.v5-contact-simple {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: start;
  max-width: 800px; margin: 0 auto;
}
.v5-contact-form-box {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem;
}
.v5-contact-selects {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 768px) {
  .v5-contact-simple { grid-template-columns: 1fr; }
  .v5-contact-selects { grid-template-columns: 1fr; }
}

/* ── REFERENCES AUTO-SCROLL SLIDER ───────────────── */
.v5-refs {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.5rem 0 1.25rem; background: #fff; overflow: hidden;
}
.v5-refs-track {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v5-refs-slide {
  display: flex; align-items: center; gap: 3.5rem;
  width: max-content;
  animation: refScroll 40s linear infinite;
}
.v5-refs-slide img {
  height: 38px; width: auto; opacity: .35;
  transition: opacity .3s; flex-shrink: 0;
  filter: grayscale(100%);
}
.v5-refs-slide img:hover { opacity: .85; filter: grayscale(0%); }
@keyframes refScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Pause on hover */
.v5-refs-track:hover .v5-refs-slide { animation-play-state: paused; }
@media (max-width: 768px) {
  .v5-refs-slide { gap: 2.5rem; }
  .v5-refs-slide img { height: 30px; }
}
