/* ============================================================
   BARIAN SERVICES — Conciergerie premium · Côte Atlantique
   Design system
   ============================================================ */

:root {
  /* Palette atlantique */
  --blue:        #4889AB;   /* bleu principal */
  --blue-deep:   #2C6B8A;   /* bleu plus profond (hover) */
  --navy:        #102A38;   /* bleu nuit — sections sombres, titres */
  --navy-soft:   #1B3D4E;
  --blue-tint:   #EAF2F6;   /* fond bleu très clair */
  --blue-tint-2: #DCEAF0;

  --paper:       #FBFAF7;   /* blanc cassé chaud */
  --white:       #FFFFFF;
  --sand:        #F3EDE4;   /* beige sable léger */
  --sand-deep:   #E9DECE;

  --ink:         #15262F;   /* texte principal */
  --ink-2:       #3C4D56;   /* texte secondaire */
  --muted:       #7C8A92;   /* gris premium */
  --line:        #E7E4DD;   /* filets / bordures */
  --line-soft:   #F0EDE6;

  --gold:        #B7975B;   /* laiton discret — accents rares */

  /* Typo */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-serif:   "Newsreader", Georgia, "Times New Roman", serif;

  /* Rayons / ombres */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --shadow-sm: 0 2px 10px rgba(16,42,56,.05);
  --shadow-md: 0 18px 40px -18px rgba(16,42,56,.22);
  --shadow-lg: 0 40px 90px -30px rgba(16,42,56,.30);

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

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

::selection { background: var(--blue); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(48px, 5vw, 82px) 0; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.center-eb { justify-content: center; }
.eyebrow.center-eb::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--blue);
  display: inline-block;
}

.h-xxl { font-size: clamp(40px, 6.2vw, 76px); }
.h-xl  { font-size: clamp(32px, 4.6vw, 56px); }
.h-lg  { font-size: clamp(26px, 3vw, 38px); }

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.6;
}
.center .lead { margin-inline: auto; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s, box-shadow .35s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 14px 30px -12px rgba(72,137,171,.6); }
.btn-blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); background: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 18px 34px; font-size: 16.5px; }

.link-arrow {
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ---------- Header — barre flottante premium ---------- */
.section[id], #top, #tarifs, #apropos, [id^="estim"], #simulateur { scroll-margin-top: 112px; }
.site-header {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 100;
  padding: 0 20px;
  transition: top .4s var(--ease);
}
.nav-bar {
  max-width: 1300px; margin: 0 auto;
  min-height: 86px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  background: #FCFCFB;
  border: 1px solid rgba(16,42,56,.06);
  border-radius: 34px;
  padding: 13px 16px 13px 22px;
  box-shadow: 0 12px 38px -18px rgba(16,42,56,.22), 0 2px 8px -4px rgba(16,42,56,.07);
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.site-header.scrolled .nav-bar {
  box-shadow: 0 16px 46px -16px rgba(16,42,56,.30), 0 3px 10px -5px rgba(16,42,56,.10);
  border-color: rgba(16,42,56,.10);
}

/* logo */
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; flex: none; }
.nav-bar .brand { margin-left: 20px; }
.brand-logo { height: 60px; width: auto; display: block; }
@media (max-width: 720px) { .brand-logo { height: 46px; } }
.brand-mark {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  background: var(--navy);
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 21px;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 16px -8px rgba(16,42,56,.5);
}
.brand-mark::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(135deg, transparent 55%, rgba(72,137,171,.7) 130%);
}
.brand-id { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.brand-sub { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* menu central */
.nav-menu { justify-self: center; display: flex; align-items: center; gap: 2px; min-width: 0; }
.nav-menu a {
  position: relative; font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--ink-2);
  padding: 9px 13px; border-radius: 100px; white-space: nowrap;
  transition: color .25s var(--ease);
}
.nav-menu a::after {
  content: ""; position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px; background: var(--blue);
  transition: width .3s var(--ease);
}
.nav-menu a:hover { color: var(--navy); }
.nav-menu a:hover::after { width: 18px; }

/* bloc droit */
.nav-right { justify-self: end; display: flex; align-items: center; gap: 14px; flex: none; }

/* téléphone */
.nav-phone { flex: none; display: flex; align-items: center; gap: 11px; padding: 6px 8px; border-radius: 16px; cursor: pointer; transition: background .25s var(--ease); }
.nav-phone:hover { background: rgba(72,137,171,.07); }
.np-ico {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--blue-tint); color: var(--blue);
  display: grid; place-items: center;
  transition: background .25s var(--ease), color .25s var(--ease), transform .35s var(--ease);
}
.np-ico svg { width: 20px; height: 20px; }
.nav-phone:hover .np-ico { background: var(--blue); color: #fff; animation: phoneRing .6s var(--ease); }
@keyframes phoneRing {
  0%,100% { transform: rotate(-7deg) scale(1.06); }
  25% { transform: rotate(7deg) scale(1.06); }
  50% { transform: rotate(-5deg) scale(1.06); }
  75% { transform: rotate(5deg) scale(1.06); }
}
.np-txt { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.np-num { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--navy); letter-spacing: -.01em; white-space: nowrap; transition: color .25s var(--ease); }
.nav-phone:hover .np-num { color: var(--blue-deep); }
.np-sub { font-size: 11px; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* CTA principal */
.nav-estimate {
  flex: none;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px; color: #fff;
  background: var(--navy); padding: 15px 24px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 14px 30px -14px rgba(16,42,56,.55);
  transition: background .3s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.nav-estimate svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
/* Texte du bouton : complet sur desktop, court sur portable */
.ne-short { display: none; }
.nav-estimate:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 22px 42px -14px rgba(72,137,171,.6); }
.nav-estimate:hover svg { transform: translateX(4px); }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; position: relative; z-index: 101; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: transform .3s var(--ease), opacity .2s var(--ease); border-radius: 2px; transform-origin: center; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* téléphone dans le menu mobile */
.mobile-menu .mm-phone { display: flex; flex-direction: column; gap: 3px; color: var(--blue); }
.mobile-menu .mm-phone small { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0; text-transform: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(180deg, var(--paper) 0%, #FFFFFF 100%);
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  padding: 100px 24px 32px;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-menu.open { transform: translateY(0); }
/* liens de navigation : rangée épurée + chevron */
.mobile-menu > a:not(.btn):not(.mm-phone) {
  font-family: var(--font-display); font-weight: 700; font-size: 23px; color: var(--navy);
  padding: 17px 4px; border-bottom: 1px solid rgba(16,42,56,.08);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.mobile-menu > a:not(.btn):not(.mm-phone)::after {
  content: ""; width: 9px; height: 9px; border-right: 2px solid rgba(16,42,56,.22); border-top: 2px solid rgba(16,42,56,.22);
  transform: rotate(45deg); transition: border-color .2s var(--ease);
}
.mobile-menu > a:not(.btn):not(.mm-phone):active { padding-left: 10px; color: var(--blue); }
.mobile-menu > a:not(.btn):not(.mm-phone).active { color: var(--blue); }
.mobile-menu > a.active::after { border-color: var(--blue); }

/* téléphone : bloc mis en avant, poussé en bas */
.mobile-menu .mm-phone {
  margin-top: auto; margin-bottom: 16px;
  flex-direction: column; gap: 4px;
  background: var(--blue-tint); border: 1px solid rgba(72,137,171,.18);
  border-radius: 18px; padding: 18px 22px; border-bottom: 1px solid rgba(72,137,171,.18);
  font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--blue-deep);
}
.mobile-menu .mm-phone small { font-size: 13px; color: var(--muted); font-weight: 600; }

/* bouton CTA : navy premium + flèche */
.mobile-menu .btn {
  margin-top: 0; color: #fff; border-bottom: none;
  background: var(--navy); padding: 19px 28px; font-size: 17px; font-weight: 700;
  justify-content: center; gap: 12px; border-radius: 100px;
  box-shadow: 0 18px 40px -16px rgba(16,42,56,.5);
}
.mobile-menu .btn::after {
  content: ""; width: 18px; height: 18px; flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}
.mobile-menu .btn:hover { color: #fff; background: var(--blue-deep); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 80px; overflow: clip; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line);
  padding: 8px 8px 8px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 1px; }
.hero-badge .pill {
  background: var(--blue-tint); color: var(--blue-deep);
  font-weight: 700; font-size: 12.5px; padding: 5px 11px; border-radius: 100px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue); }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--muted); margin-top: 24px; font-weight: 600; }
.hero-note svg { width: 17px; height: 17px; color: var(--blue); flex: none; }

/* Hero visual — image + floating cards */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 16px 18px;
}
.float-card .fc-label { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.float-card .fc-value { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 26px; line-height: 1.1; margin-top: 3px; }
.float-card .fc-value small { font-size: 14px; color: var(--blue); font-weight: 700; }
.fc-tl { top: 26px; left: -34px; }
.fc-br { bottom: 38px; right: -30px; }
.fc-revenue { display: flex; align-items: center; gap: 13px; }
.fc-spark { width: 46px; height: 38px; flex: none; }

/* ---------- Logos / trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 26px 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ti-num { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--navy); letter-spacing: -.02em; }
.trust-item .ti-txt { font-size: 13.5px; color: var(--muted); font-weight: 600; line-height: 1.25; }
.trust-sep { width: 1px; height: 38px; background: var(--line); }
.trust-logo { font-family: var(--font-display); font-weight: 800; color: var(--ink-2); font-size: 20px; opacity: .8; letter-spacing: -.02em; }

/* ---------- Section heads ---------- */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { margin-bottom: 18px; }

/* ---------- Pain / value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-ico {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--blue-tint); color: var(--blue-deep);
  display: grid; place-items: center; margin-bottom: 22px;
}
.value-ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 21px; margin-bottom: 10px; }
.value-card p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- Stats band ---------- */
.stats { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(72,137,171,.32), transparent 62%);
}
.stats .wrap { position: relative; }
.stats h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 8px; }
.stat .s-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(44px, 5vw, 64px); letter-spacing: -.03em; line-height: 1; background: linear-gradient(120deg,#fff,#9FC7D8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .s-lbl { color: #B7CcD6; font-size: 15px; font-weight: 600; margin-top: 12px; }
.stat .s-sub { color: #7E97A4; font-size: 13px; margin-top: 4px; }

/* ---------- Services ---------- */
.services { background: var(--sand); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px 26px;
  border: 1px solid var(--line-soft);
  transition: transform .5s var(--ease), box-shadow .5s;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-num { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--blue); opacity: .55; }
.svc-card h3 { font-size: 18.5px; margin: 12px 0 8px; }
.svc-card p { font-size: 14.5px; color: var(--ink-2); }
.svc-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-tint); color: var(--blue-deep); display: grid; place-items: center; position: absolute; top: 26px; right: 24px; }
.svc-ico svg { width: 22px; height: 22px; }

/* ============================================================
   ESPACE PROPRIÉTAIRE — SaaS premium, halo + cartes flottantes
   ============================================================ */
.owner { background: var(--white); position: relative; overflow: clip; }
.owner-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.owner-blob {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%) rotate(-8deg);
  width: 720px; height: 720px; max-width: 70vw;
  filter: blur(14px);
  animation: blobDrift 16s ease-in-out infinite;
}
@keyframes blobDrift {
  0%,100% { transform: translateY(-50%) rotate(-8deg) scale(1); }
  50%     { transform: translateY(-52%) rotate(-3deg) scale(1.04); }
}
.owner-orb { position: absolute; border-radius: 50%; filter: blur(34px); }
.owner-orb.o1 { width: 200px; height: 200px; right: 34%; top: 10%;
  background: radial-gradient(circle, rgba(72,137,171,.16), transparent 70%); }
.owner-orb.o2 { width: 300px; height: 300px; right: 1%; bottom: 0%;
  background: radial-gradient(circle, rgba(243,237,228,.85), transparent 72%); }
.owner-orb.o3 { width: 150px; height: 150px; right: 46%; bottom: 14%;
  background: radial-gradient(circle, rgba(72,137,171,.12), transparent 70%); }
.owner .wrap { position: relative; z-index: 1; }
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.owner-actions { margin-top: 32px; }

/* feature list */
.owner-feats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-top: 26px; max-width: 460px; }
.owner-feats li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15.5px; color: var(--navy); }
.owner-feats .of-ico {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  background: var(--blue-tint); color: var(--blue);
  display: grid; place-items: center;
  border: 1px solid rgba(72,137,171,.16);
}
.owner-feats .of-ico svg { width: 19px; height: 19px; }

/* phone */
.owner-visual { position: relative; display: grid; place-items: center; padding: 30px 0; }
.owner-phone {
  position: relative; z-index: 2; width: min(360px, 80%);
  animation: ownerFloat 7s var(--ease) infinite;
}
.owner-phone picture {
  display: block;
  transform: perspective(1700px) rotateX(5deg) rotateZ(-5deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 48px 58px rgba(16,42,56,.32));
}
.owner-phone img { width: 100%; height: auto; display: block; image-rendering: -webkit-optimize-contrast; }

/* HD mockup : image déjà inclinée + ombrée — on ne re-transforme pas */
.owner-phone-hd { width: min(420px, 88%); }
.owner-phone-hd picture, .owner-phone-hd img { transform: none !important; filter: none !important; }
@keyframes ownerFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* floating glass cards */
.ocard {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(20px) saturate(1.5); -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 16px; padding: 12px 16px 12px 13px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 22px 44px -24px rgba(16,42,56,.45), 0 6px 16px -12px rgba(16,42,56,.3);
  animation: ocardFloat 6.5s var(--ease) infinite;
}
.ocard .oc-ico { width: 38px; height: 38px; flex: none; border-radius: 11px;
  background: linear-gradient(150deg, #fff, var(--blue-tint)); border: 1px solid rgba(72,137,171,.18);
  color: var(--blue-deep); display: grid; place-items: center; box-shadow: 0 6px 14px -8px rgba(72,137,171,.55); }
.ocard .oc-ico svg { width: 19px; height: 19px; }
.ocard .oc-lbl { font-size: 11.5px; color: var(--muted); font-weight: 700; letter-spacing: .02em; }
.ocard .oc-val { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--navy); line-height: 1.1; margin-top: 1px; }
.ocard.oc1 { top: 9%; left: 2%; animation-delay: 0s; }
.ocard.oc2 { top: 45%; right: 0%; animation-delay: 1.1s; }
.ocard.oc3 { bottom: 9%; left: 6%; animation-delay: .6s; }
@keyframes ocardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .owner-phone, .ocard { animation: none !important; } }

@media (max-width: 1080px) {
  .owner-grid { grid-template-columns: 1fr; gap: 40px; }
  .owner-visual { order: 2; }
  .owner-blob { right: 50%; transform: translate(50%, -50%) rotate(-8deg); max-width: 90vw; }
}
@media (max-width: 720px) {
  .owner-feats { grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .owner-feats li { font-size: 14px; gap: 9px; }
  .owner-feats .of-ico { width: 32px; height: 32px; border-radius: 9px; }
  .owner-feats .of-ico svg { width: 16px; height: 16px; }
  .owner-phone { width: min(280px, 74%); }
  .ocard { padding: 10px 13px 10px 11px; }
  .ocard .oc-val { font-size: 17px; }
  .ocard.oc1 { left: -2%; top: 6%; }
  .ocard.oc2 { right: -3%; }
  .ocard.oc3 { left: -2%; bottom: 6%; }
}

/* ---------- Simulator ---------- */
.sim { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.sim-bg { position: absolute; inset: 0; z-index: 0; }
.sim-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.sim-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(80% 70% at 80% 6%, rgba(72,137,171,.26), transparent 60%),
    linear-gradient(180deg, rgba(11,28,38,.88) 0%, rgba(11,28,38,.94) 100%);
}
.sim .wrap { position: relative; z-index: 1; }
.sim-eb { color: #7FB4CC; }
.sim-eb::before, .sim-eb::after { background: rgba(127,180,204,.6); }
.sim-title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(34px, 5vw, 60px); line-height: 1.06; letter-spacing: -.01em; color: #fff; }

.sim-card {
  background: rgba(17,40,54,.66);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 40px;
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,.6);
}
.sim-field { margin-bottom: 26px; }
.sim-lbl { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; color: #C6D6DE; }
.sim-lbl .lbl-note { text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 12.5px; color: #7E97A4; }
.sim-lbl .val { color: #6FB0CE; text-transform: none; letter-spacing: 0; font-family: var(--font-display); font-weight: 700; font-size: 14px; }

/* tiles (type + sectors) */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.tile {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 11px;
  padding: 18px 8px 14px; border-radius: var(--r-md);
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.12);
  color: #C6D6DE; cursor: pointer; transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); text-align: center;
}
.tile-ico svg { width: 33px; height: 33px; }
.tile-lbl { font-size: 13px; font-weight: 600; line-height: 1.2; }
.tile:hover { border-color: rgba(72,137,171,.6); color: #fff; background: rgba(72,137,171,.1); }
.tile.active { border-color: var(--blue); background: rgba(72,137,171,.16); color: #fff; box-shadow: 0 12px 28px -16px rgba(72,137,171,.95); }
.tile.active .tile-lbl { color: #BFE0EE; }
.tile-check { position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; opacity: 0; transform: scale(.55); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.tile-check svg { width: 11px; height: 11px; color: #fff; }
.tile.active .tile-check { opacity: 1; transform: scale(1); }
.tile-zone { gap: 8px; padding: 16px 8px; }
.tile-pin svg { width: 22px; height: 22px; }

/* range slider */
.sim-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: linear-gradient(90deg, var(--blue) var(--p, 27%), rgba(255,255,255,.16) var(--p, 27%)); outline: none; }
.sim-range::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; cursor: pointer; border: 5px solid var(--blue); box-shadow: 0 4px 12px rgba(0,0,0,.3); transition: transform .2s; }
.sim-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.sim-range::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; cursor: pointer; border: 5px solid var(--blue); }

/* standing radios */
.radio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.radio-pill { display: inline-flex; align-items: center; gap: 9px; padding: 14px 14px; border-radius: var(--r-md); background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.12); color: #C6D6DE; font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.rp-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.4); flex: none; position: relative; transition: border-color .25s var(--ease); }
.radio-pill:hover { border-color: rgba(72,137,171,.6); color: #fff; }
.radio-pill.active { border-color: var(--blue); background: rgba(72,137,171,.14); color: #fff; }
.radio-pill.active .rp-dot { border-color: var(--blue); }
.radio-pill.active .rp-dot::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--blue); }

/* result */
.sim-result { display: flex; flex-direction: column; align-items: flex-start; }
.sr-label { font-size: 12px; color: #9FB8C4; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.sr-amount-row { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; }
.sr-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(52px, 6.4vw, 82px); letter-spacing: -.03em; line-height: 1; background: linear-gradient(118deg, var(--blue) 0%, #6FB0CE 42%, #EAF4F8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.sr-permonth { font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 2vw, 26px); color: var(--blue); }
.sr-underline { display: block; width: 84px; height: 4px; border-radius: 4px; background: var(--blue); margin-top: 14px; }
.sr-period { color: #9FB8C4; font-size: 15px; margin-top: 12px; }
.sr-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; margin: 24px 0; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.sr-stat { text-align: center; }
.ss-ico { display: block; }
.ss-ico svg { width: 26px; height: 26px; color: #6FB0CE; margin-bottom: 9px; }
.ss-num { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.ss-lbl { font-size: 12px; color: #8FA7B3; margin-top: 4px; line-height: 1.3; }
.sr-info { display: flex; gap: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 18px; }
.sr-info-ico { flex: none; }
.sr-info-ico svg { width: 20px; height: 20px; color: #6FB0CE; }
.sr-info p { font-size: 13.5px; line-height: 1.55; color: #AFC2CC; }
.sim-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-body); font-weight: 700; font-size: 16.5px; color: #fff; background: linear-gradient(120deg, var(--blue), var(--blue-deep)); padding: 20px 28px; border-radius: 16px; box-shadow: 0 18px 40px -16px rgba(72,137,171,.9), inset 0 1px 0 rgba(255,255,255,.18); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.sim-btn svg { width: 20px; height: 20px; transition: transform .35s var(--ease); }
.sim-btn:hover { transform: translateY(-2px); box-shadow: 0 28px 56px -18px rgba(72,137,171,1); }
.sim-btn:hover svg { transform: translateX(4px); }
.sim-submention { width: 100%; text-align: center; font-size: 13px; color: #8FA7B3; margin-top: 14px; font-weight: 500; }

/* ---------- Steps ---------- */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
  background: rgba(72,137,171,.10); border: 1px solid rgba(72,137,171,.18);
  padding: 9px 18px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow-pill svg { width: 16px; height: 16px; }
.blue-accent { color: var(--blue); }
.head-rule { display: block; width: 64px; height: 3px; border-radius: 3px; background: var(--blue); margin: 22px auto 0; }

#methode .sec-head { max-width: 860px; margin-bottom: 40px; }

/* numbered rail */
.steps-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 26px; }
.st-cell { position: relative; display: grid; place-items: center; }
.st-cell:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: calc(100% + 20px); height: 2px; transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(72,137,171,.55), rgba(72,137,171,.28));
  z-index: 0;
}
.st-node {
  position: relative; z-index: 1;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #fff;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  box-shadow: 0 0 0 7px rgba(72,137,171,.10), 0 12px 22px -10px rgba(72,137,171,.7);
}

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: 34px 26px 30px; text-align: center;
  position: relative;
  box-shadow: 0 10px 30px -22px rgba(16,42,56,.4);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: rgba(72,137,171,.28); box-shadow: 0 26px 50px -26px rgba(16,42,56,.4); }
.st-icon {
  width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; color: var(--blue);
  background: radial-gradient(120% 120% at 50% 25%, rgba(72,137,171,.16), rgba(72,137,171,.07));
}
.st-icon svg { width: 38px; height: 38px; }
.step h3 { font-size: 18.5px; line-height: 1.25; margin-bottom: 12px; }
.step p { font-size: 14.5px; color: var(--ink-2); }

/* cta + perks */
.steps-cta { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.steps-btn { padding: 20px 44px; border-radius: 999px; font-size: 17px; gap: 12px; }
.steps-btn svg { width: 20px; height: 20px; }
.steps-perks { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 0; list-style: none; padding: 0; margin: 0; }
.steps-perks li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); padding: 0 22px; }
.steps-perks li + li { border-left: 1px solid var(--line); }
.sp-check { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(72,137,171,.12); color: var(--blue); }
.sp-check svg { width: 13px; height: 13px; }

/* in-card number badge — shown only when the standalone rail is hidden */
.step::before {
  content: attr(data-step); position: absolute; top: -19px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%; display: none; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  box-shadow: 0 0 0 5px #fff, 0 8px 16px -8px rgba(72,137,171,.7);
}

/* ---------- Transparency / zero fees ---------- */
.transp { background: var(--sand); }
.transp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fee-list { display: grid; gap: 12px; }
.fee-item { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line-soft); border-radius: 14px; padding: 16px 20px; }
.fee-check { width: 30px; height: 30px; border-radius: 50%; background: #E6F4EC; color: #2E9C6A; display: grid; place-items: center; flex: none; }
.fee-check svg { width: 17px; height: 17px; }
.fee-item .fi-t { font-weight: 700; color: var(--navy); font-size: 15.5px; }
.fee-item .fi-free { margin-left: auto; font-family: var(--font-display); font-weight: 800; color: #2E9C6A; font-size: 16px; }
.commission-card { background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-lg); }
.commission-card .cc-eb { color: #8FC0D4; font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.commission-card .cc-num { font-family: var(--font-display); font-weight: 800; font-size: 88px; line-height: 1; letter-spacing: -.04em; margin: 14px 0; }
.commission-card .cc-num small { font-size: 26px; color: var(--blue); }
.commission-card p { color: #B7CcD6; font-size: 15.5px; }
.commission-card .cc-note { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; }

/* ---------- Portfolio ---------- */
.portfolio { background: var(--white); }
#methode { position: relative; }
#methode::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: -1px; height: 56px;
  background: var(--paper); z-index: 0;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.pf-head { max-width: 760px; }
.pf-title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -.01em; color: var(--navy); }
.pf-title .blue-accent { color: var(--blue); }
.pf-head .head-rule-left { margin: 24px 0 22px; }
.pf-head .lead { margin-top: 0; }

.pf-grid { display: grid; grid-template-columns: 1.02fr 2.06fr; gap: 12px; align-items: stretch; }
.pf-right { display: grid; grid-template-rows: auto auto; gap: 12px; min-width: 0; }
.pf-row { display: grid; gap: 12px; min-width: 0; }
.pf-row-top { grid-template-columns: 1fr 1fr; }
.pf-row-bot { grid-template-columns: repeat(3, 1fr); }

.pf-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 22px 48px -28px rgba(16,42,56,.32), 0 2px 8px -4px rgba(16,42,56,.10);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
  isolation: isolate;
}
.pf-card .ph { width: 100%; height: 100%; transition: transform .9s var(--ease); }
.pf-card:hover { transform: translateY(-6px); box-shadow: 0 38px 70px -30px rgba(16,42,56,.42); }
.pf-card:hover .ph { transform: scale(1.045); }

.pf-hero { align-self: stretch; }
.pf-hero .ph { position: absolute; inset: 0; }
.pf-row-top .pf-card { aspect-ratio: 16 / 10.4; }
.pf-row-bot .pf-card { aspect-ratio: 1 / 1.02; }

.pf-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  background: linear-gradient(to top, rgba(13,33,45,.82) 0%, rgba(13,33,45,.34) 32%, rgba(13,33,45,0) 62%);
}
.pf-overlay .pf-name { font-family: var(--font-serif); font-weight: 500; color: #fff; font-size: 23px; line-height: 1.15; letter-spacing: -.005em; }
.pf-overlay .pf-loc { display: inline-flex; align-items: center; gap: 6px; margin-top: 7px; color: rgba(255,255,255,.86); font-size: 14px; font-weight: 500; }
.pf-overlay .pf-loc svg { width: 15px; height: 15px; color: #9FC6D8; flex: none; }
.pf-hero .pf-overlay { padding: 34px; }
.pf-hero .pf-name { font-size: 34px; }
.pf-hero .pf-loc { font-size: 15.5px; margin-top: 9px; }

.pf-badge {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: rgba(13,33,45,.42); border: 1px solid rgba(255,255,255,.24);
  padding: 8px 15px; border-radius: 999px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.pf-badge svg { width: 14px; height: 14px; color: #BFE0EE; }

.pf-cta { margin-top: 28px; display: flex; justify-content: flex-end; }
.pf-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--blue);
  background: #fff; border: 1.5px solid rgba(72,137,171,.42);
  padding: 18px 30px; border-radius: 999px;
  box-shadow: 0 12px 30px -20px rgba(72,137,171,.6);
  transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pf-btn svg { width: 20px; height: 20px; transition: transform .4s var(--ease); }
.pf-btn:hover { border-color: var(--blue); background: rgba(72,137,171,.05); transform: translateY(-2px); box-shadow: 0 18px 36px -18px rgba(72,137,171,.55); }
.pf-btn:hover svg { transform: translateX(4px); }

/* ---------- Testimonials ---------- */
/* ---------- Google reviews ---------- */
.reviews { background: linear-gradient(180deg, var(--white) 0%, var(--blue-tint) 100%); }

/* summary header */
.rv-summary {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 26px;
  margin-top: 40px;
}
.rv-glogo { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: #fff; box-shadow: 0 10px 26px -14px rgba(16,42,56,.4); }
.rv-score { display: flex; align-items: center; gap: 14px; }
.rv-rate { font-family: var(--font-display); font-weight: 800; font-size: 46px; line-height: 1; color: var(--navy); letter-spacing: -.02em; }
.rv-stars { color: #FBBC05; font-size: 22px; letter-spacing: 2px; }
.rv-count { display: block; font-size: 14.5px; color: var(--ink-2); }
.rv-count strong { color: var(--navy); font-weight: 700; }
.rv-summary .rv-score { flex-direction: column; align-items: flex-start; gap: 3px; }
.rv-verified { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--blue); background: rgba(72,137,171,.1); border: 1px solid rgba(72,137,171,.2); padding: 9px 16px; border-radius: 999px; }
.rv-verified svg { width: 16px; height: 16px; }

/* slider */
.rv-slider { position: relative; margin-top: 44px; }
.rv-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 4px 18px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rv-track::-webkit-scrollbar { display: none; }
.rv-loading { color: var(--muted); font-size: 15px; padding: 60px 0; width: 100%; text-align: center; }

.rv-card {
  scroll-snap-align: start; flex: 0 0 clamp(290px, 33%, 380px); min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; display: flex; flex-direction: column;
  box-shadow: 0 18px 42px -28px rgba(16,42,56,.28);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.rv-card:hover { transform: translateY(-5px); border-color: rgba(72,137,171,.28); box-shadow: 0 30px 56px -28px rgba(16,42,56,.34); }
.rv-card-top { display: flex; align-items: center; gap: 13px; }
.rv-ava { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff; }
.rv-id { min-width: 0; flex: 1; }
.rv-name { font-weight: 700; color: var(--navy); font-size: 15.5px; line-height: 1.2; }
.rv-date { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.rv-gmark { flex: none; opacity: .9; }
.rv-cstars { color: #FBBC05; font-size: 16px; letter-spacing: 1.5px; margin: 18px 0 12px; }
.rv-text { font-size: 15px; line-height: 1.62; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }

/* arrows */
.rv-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--navy); border: 1px solid var(--line);
  box-shadow: 0 14px 34px -16px rgba(16,42,56,.4); cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.rv-arrow svg { width: 22px; height: 22px; }
.rv-arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-50%) scale(1.06); }
.rv-arrow:disabled { opacity: .35; cursor: default; pointer-events: none; }
.rv-prev { left: -16px; }
.rv-next { right: -16px; }

/* dots */
.rv-dots { display: flex; justify-content: center; gap: 8px; margin-top: 6px; }
.rv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-tint-2); border: none; cursor: pointer; transition: width .3s var(--ease), background .3s var(--ease); padding: 0; }
.rv-dot.active { width: 26px; border-radius: 999px; background: var(--blue); }

/* cta */
.rv-cta { display: flex; justify-content: center; margin-top: 40px; }
.rv-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--navy);
  background: #fff; border: 1.5px solid var(--line);
  padding: 17px 30px; border-radius: 999px;
  box-shadow: 0 12px 30px -20px rgba(16,42,56,.5);
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.rv-btn:hover { border-color: rgba(72,137,171,.5); transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(16,42,56,.45); }
.rv-btn-arrow { width: 19px; height: 19px; color: var(--blue); transition: transform .35s var(--ease); }
.rv-btn:hover .rv-btn-arrow { transform: translateX(4px); }

/* ---------- Zone ---------- */
.zone { background: var(--sand); }
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.zone-map { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1/1; position: relative; }
.zone-pins { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.zone-pin { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); padding: 10px 16px; border-radius: 100px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.zone-pin svg { width: 15px; height: 15px; color: var(--blue); }

/* ---------- FAQ — premium deux colonnes ---------- */
.faq { background: #fff; position: relative; padding-bottom: 0; }
.faq-layout {
  display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
  gap: 72px; align-items: start;
}
.faq-head { margin-bottom: 30px; }
.faq-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.12; letter-spacing: -.02em;
  color: var(--navy); margin: 16px 0 16px; text-wrap: balance;
}
.faq-intro { font-size: 17px; line-height: 1.65; color: var(--ink-2); max-width: 52ch; }

.faq-wrap { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 0 24px; overflow: hidden;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.faq-item:hover { border-color: #D5E3EB; box-shadow: 0 10px 30px -20px rgba(16,42,56,.35); }
.faq-item.open {
  border-color: rgba(72,137,171,.45);
  box-shadow: 0 18px 44px -26px rgba(72,137,171,.6);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 17.5px; line-height: 1.35;
  color: var(--navy); transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue-deep); }
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--navy);
  transition: transform .45s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-q:hover .faq-icon { border-color: var(--blue); color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(135deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 0 24px; color: var(--ink-2); font-size: 16px; line-height: 1.68; max-width: 60ch; }

/* colonne image sticky */
.faq-aside { position: sticky; top: 116px; }
.faq-media { position: relative; }
.faq-media image-slot {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 5;
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 80px -42px rgba(16,42,56,.5), 0 8px 24px -16px rgba(16,42,56,.25);
}
.faq-media-badge {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  display: flex; align-items: center; gap: 13px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 18px 40px -22px rgba(16,42,56,.5);
  text-decoration: none; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.faq-media-badge:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.98);
  box-shadow: 0 26px 52px -22px rgba(16,42,56,.6);
}
.fmb-arrow { margin-left: auto; flex: none; color: var(--blue); display: grid; place-items: center; transition: transform .35s var(--ease); }
.fmb-arrow svg { width: 19px; height: 19px; }
.faq-media-badge:hover .fmb-arrow { transform: translateX(4px); }
.fmb-ico {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  background: var(--blue); color: #fff; display: grid; place-items: center;
}
.fmb-ico svg { width: 20px; height: 20px; }
.fmb-txt { display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; color: var(--ink-2); line-height: 1.3; }
.fmb-txt strong { font-family: var(--font-display); font-size: 15px; color: var(--navy); }

/* transition courbe vers la section suivante (navy) — reprend le dégradé du CTA */
.faq-curve {
  margin-top: 90px; height: 70px; width: 100%;
  background:
    radial-gradient(120% 150% at 20% 130%, rgba(72,137,171,.32), transparent 55%),
    var(--navy);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

@media (max-width: 1000px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-aside { position: static; max-width: 460px; }
  .faq-media image-slot { aspect-ratio: 16 / 11; }
  .faq-curve { height: 50px; margin-top: 70px; }
}

/* ---------- Final CTA ---------- */
/* Ligne de séparation entièrement courbée (dôme plein largeur) plutôt que coins arrondis */
.cta-final { background: radial-gradient(circle at 20% 100%, rgba(72,137,171,.32), transparent 55%), var(--navy); color: #fff; position: relative; border-radius: 50% 50% 0 0 / 110px 110px 0 0; }
.cta-final::before { content: none; }
/* un peu d'air entre l'image FAQ et la section sombre */
.faq { padding-bottom: 46px; }
.cta-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cta-final h2 { color: #fff; font-size: clamp(34px,4.4vw,54px); margin-bottom: 18px; }
.cta-final .lead { color: #B7CcD6; margin-bottom: 30px; }
.cta-bullets { display: grid; gap: 13px; margin-bottom: 8px; }
.cta-bullets li { display: flex; align-items: center; gap: 12px; color: #E7EFF3; font-weight: 600; font-size: 15.5px; list-style: none; }
.cta-bullets svg { width: 20px; height: 20px; color: var(--blue); flex: none; }

.lead-form { background: #fff; border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-lg); }
.cta-final .lead-form { position: relative; z-index: 2; box-shadow: 0 30px 60px -20px rgba(0,0,0,.45), 0 10px 25px -10px rgba(0,0,0,.30); }
.lead-form h3 { font-size: 23px; margin-bottom: 6px; }
.lead-form .lf-sub { color: var(--ink-2); font-size: 14.5px; margin-bottom: 24px; }
.lf-field { margin-bottom: 16px; }
.lf-field label { display: block; font-weight: 700; font-size: 13.5px; color: var(--navy); margin-bottom: 7px; }
.lf-field input, .lf-field select {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
}
.lf-field input:focus, .lf-field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(72,137,171,.12); background:#fff; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .btn { width: 100%; margin-top: 8px; }
.lf-trust { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.lf-error { text-align: center; font-size: 13.5px; color: #C0392B; margin-top: 14px; font-weight: 600; line-height: 1.5; }

/* ---------- Footer ---------- */
.footer { background: #0B2029; color: #B7CcD6; padding: 76px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.15fr; gap: 56px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-name { color: #fff; }
.footer .brand-mark { background: var(--blue); }
.footer-about { margin-top: 20px; font-size: 14.5px; max-width: 42ch; line-height: 1.65; }
.footer h5 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 18px; letter-spacing: .02em; }
.footer-col a { display: block; font-size: 14.5px; color: #9FB8C4; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact div { display: flex; align-items: center; gap: 10px; font-size: 14.5px; padding: 6px 0; }
.footer-contact svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; color: #7E97A4; flex-wrap: wrap; gap: 14px; }
.footer-bottom a { color: #7E97A4; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: #C7DAE3; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; color: inherit; }

/* ============================================================
   HOW IT WORKS — MacBook flottant + cartes + 4 étapes
   ============================================================ */
.how { background: var(--sand); position: relative; }
.how-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.how-blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--blue-tint), transparent 70%);
  filter: blur(8px);
}
.how-blob.b1 { width: 760px; height: 760px; top: -240px; left: -260px; opacity: .9; }
.how-blob.b2 { width: 620px; height: 620px; bottom: -260px; right: -220px;
  background: radial-gradient(circle at 50% 50%, var(--sand), transparent 72%); opacity: .8; }
.how-wave {
  position: absolute; inset: 0; pointer-events: none;
  color: var(--blue-tint); opacity: .55;
}
.how .wrap { position: relative; z-index: 1; }
.how-grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: 56px; align-items: start; }

/* ---- Left : MacBook (image fournie) + cartes premium ---- */
.mb-stage { position: relative; padding: 56px 0 40px; }

/* Le MacBook reste épinglé pendant que la colonne de droite (plus longue) défile.
   Uniquement en mise en page deux colonnes (desktop). */
@media (min-width: 1081px) {
  .how-grid { align-items: stretch; }
  .mb-stage {
    position: sticky;
    top: 124px;
    align-self: start;
    padding-top: 0;
  }
}
.mb-photo {
  position: relative; z-index: 2; width: 104%; margin: 24px 0 0 -6%;
  animation: mbFloat 8s var(--ease) infinite;
  filter: drop-shadow(0 44px 52px rgba(16,42,56,.24));
}
.mb-photo img { width: 100%; height: auto; display: block; }
@keyframes mbFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-13px) rotate(-.25deg); }
}
/* soft contact shadow under the laptop */
.mb-shadow {
  position: absolute; z-index: 1; left: 48%; bottom: 18px; transform: translateX(-50%);
  width: 70%; height: 50px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(16,42,56,.26), transparent 70%);
  filter: blur(11px);
  animation: shadowPulse 8s var(--ease) infinite;
}
@keyframes shadowPulse {
  0%,100% { opacity: .85; width: 70%; }
  50%     { opacity: .6; width: 63%; }
}

/* premium glass cards — icône + titre sur une ligne, texte dessous */
.fcard {
  position: absolute; z-index: 5; width: 172px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(22px) saturate(1.5); -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px; padding: 13px 15px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 20px 40px -22px rgba(16,42,56,.38), 0 5px 16px -12px rgba(16,42,56,.28);
  animation: cardFloat 7s var(--ease) infinite;
}
.fcard .fc-head { display: flex; align-items: center; gap: 10px; }
.fcard .fc-ico {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(150deg, #fff, var(--blue-tint));
  border: 1px solid rgba(72,137,171,.18);
  color: var(--blue-deep); display: grid; place-items: center;
  box-shadow: 0 5px 12px -7px rgba(72,137,171,.55);
}
.fcard .fc-ico svg { width: 16px; height: 16px; }
.fcard .fc-t { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--navy); line-height: 1.15; letter-spacing: -.01em; }
.fcard .fc-d { font-size: 11.5px; color: var(--ink-2); margin-top: 9px; line-height: 1.4; }
.fcard.f1 { top: 9%; left: -6%; animation-delay: 0s; }
.fcard.f2 { bottom: 13%; left: -7%; animation-delay: 1.4s; }
/* f3 passe en partie DERRIÈRE le MacBook (z-index sous l'image) */
.fcard.f3 { top: 41%; right: 0%; z-index: 1; animation-delay: .7s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .mb-photo, .mb-shadow, .fcard { animation: none !important; }
}

/* ---- Right : steps ---- */
.how-copy .eyebrow { margin-bottom: 20px; }
.how-copy h2 { margin-bottom: 18px; }
.how-copy .lead { margin-bottom: 12px; }
.how-steps { margin-top: 30px; position: relative; }
.how-step { display: grid; grid-template-columns: auto auto 1fr; gap: 20px; align-items: start; position: relative; padding-bottom: 30px; }
.how-step:last-child { padding-bottom: 0; }
.hs-rail { display: flex; flex-direction: column; align-items: center; align-self: stretch; }
.hs-no {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  display: grid; place-items: center; box-shadow: 0 6px 14px -6px rgba(16,42,56,.6);
}
.hs-line { width: 2px; flex: 1; background: linear-gradient(var(--blue-tint-2), transparent); margin-top: 6px; min-height: 24px; }
.how-step:last-child .hs-line { display: none; }
.hs-ico {
  width: 54px; height: 54px; border-radius: 15px; flex: none;
  background: var(--blue-tint); color: var(--blue-deep);
  display: grid; place-items: center;
}
.hs-ico svg { width: 26px; height: 26px; }
.hs-body { padding-top: 2px; }
.hs-body h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 7px; letter-spacing: -.01em; }
.hs-body p { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; max-width: 46ch; }

@media (max-width: 1340px) and (min-width: 1081px) {
  .fcard.f1 { left: -3%; }
  .fcard.f2 { left: -4%; }
}
@media (max-width: 1080px) {
  .how-grid { grid-template-columns: 1fr; gap: 90px; }
  .mb-stage { max-width: 600px; width: auto !important; margin: 0 auto; }
  .mb-photo { width: 100%; margin: 20px 0 0; }
  .fcard.f1 { left: -2%; }
  .fcard.f2 { left: -3%; }
}
@media (max-width: 720px) {
  .fcard { width: 148px; padding: 11px 12px; }
  .fcard .fc-t { font-size: 12.5px; }
  .fcard .fc-d { display: none; }
  .fcard.f1 { left: -1%; top: -2%; }
  .fcard.f2 { left: -2%; bottom: 18%; }
  .fcard.f3 { right: -1%; }
  .how-step { grid-template-columns: auto 1fr; gap: 16px; }
  .hs-ico { display: none; }
}

/* ============================================================
   SERVICES — composition radiale premium
   ============================================================ */
.services { background: var(--paper); }
.svc-stage {
  position: relative; width: 100%; max-width: 1180px; margin: 8px auto 0;
  aspect-ratio: 1180 / 720;
}
.svc-links { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.svc-links path { fill: none; stroke: var(--blue); stroke-width: 1.5; opacity: .42; stroke-linecap: round; stroke-dasharray: 5 8; animation: svcDash 2.6s linear infinite; }
.svc-links circle { fill: var(--blue-deep); filter: drop-shadow(0 0 5px rgba(72,137,171,.55)); }
.svc-links .ring { fill: none; stroke: var(--blue); stroke-width: 1.3; opacity: .26; stroke-dasharray: 2 10; animation: svcRingDash 70s linear infinite; }
@keyframes svcDash { to { stroke-dashoffset: -26; } }
@keyframes svcRingDash { to { stroke-dashoffset: -240; } }

.svc-photo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 31%; aspect-ratio: 1; z-index: 3;
  animation: svcFloat 9s var(--ease) infinite;
}
.svc-photo::before {
  content: ''; position: absolute; inset: -16%; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle at 50% 44%, rgba(72,137,171,.30), transparent 66%);
}
.svc-photo img {
  width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 50%;
  box-shadow: 0 0 0 9px #fff, 0 0 0 10px rgba(72,137,171,.22), 0 38px 60px -26px rgba(16,42,56,.40);
}
@keyframes svcFloat { 0%,100% { transform: translate(-50%,-50%); } 50% { transform: translate(-50%, calc(-50% - 10px)); } }

.svc-pod {
  position: absolute; z-index: 2; width: 30%; display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 17px; border-radius: 18px;
  background: #fff; border: 1px solid var(--line-soft);
  box-shadow: 0 18px 40px -26px rgba(16,42,56,.36), 0 2px 8px -5px rgba(16,42,56,.10);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.svc-pod:hover { transform: translateY(-4px); box-shadow: 0 28px 56px -26px rgba(16,42,56,.46); border-color: rgba(72,137,171,.34); }
.svc-pod .sp-ico {
  width: 58px; height: 58px; flex: none; border-radius: 50%;
  background: linear-gradient(150deg, #fff, var(--blue-tint));
  border: 1px solid rgba(72,137,171,.22);
  color: var(--blue-deep); display: grid; place-items: center;
  box-shadow: 0 12px 24px -14px rgba(72,137,171,.55), 0 0 0 5px rgba(72,137,171,.05);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.svc-pod:hover .sp-ico { transform: scale(1.06); box-shadow: 0 16px 28px -14px rgba(72,137,171,.6), 0 0 0 6px rgba(72,137,171,.08); }
.svc-pod .sp-ico svg { width: 26px; height: 26px; }

/* Colonne gauche : icône côté centre, texte aligné vers l'extérieur — composition symétrique (desktop) */
@media (min-width: 1081px) {
  .svc-pod.p1, .svc-pod.p2, .svc-pod.p3, .svc-pod.p4 { flex-direction: row-reverse; text-align: right; }
  .svc-pod.p1 ul, .svc-pod.p2 ul, .svc-pod.p3 ul, .svc-pod.p4 ul { justify-items: end; }
}
.svc-pod .sp-txt { min-width: 0; }
.svc-pod h4 { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--navy); margin-bottom: 5px; letter-spacing: -.01em; }
.svc-pod ul { list-style: none; display: grid; gap: 3px; }
.svc-pod li, .svc-pod p { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; margin: 0; text-wrap: pretty; }

/* ---- CTA “Découvrez tous nos services” ---- */
.svc-cta {
  position: relative; display: flex; justify-content: center;
  margin-top: -40px; padding-top: 8px; z-index: 4;
}
/* flèches qui pointent vers le bouton depuis les 2 zones libres du diagramme */
.svc-arrow {
  position: absolute; bottom: 100%; width: 132px; height: 96px;
  color: var(--blue); pointer-events: none; z-index: 3;
  opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.svc-arrow svg { width: 100%; height: 100%; display: block; overflow: visible; }
.svc-arrow .a-line {
  fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 240; stroke-dashoffset: 240;
  transition: stroke-dashoffset 1s var(--ease);
}
.svc-arrow .a-head { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transition: opacity .4s var(--ease) .55s; }
.svc-arrow-l { right: calc(50% + 96px); transform: translateY(14px) translateX(18px); }
.svc-arrow-r { left: calc(50% + 96px);  transform: translateY(14px) translateX(-18px); }
.svc-cta.arrows-in .svc-arrow { opacity: .85; transform: translateY(0) translateX(0); }
.svc-cta.arrows-in .svc-arrow .a-line { stroke-dashoffset: 0; }
.svc-cta.arrows-in .svc-arrow .a-head { opacity: .85; }
.svc-cta.arrows-in .svc-arrow { animation: arrowBob 2.8s var(--ease) infinite; }
.svc-arrow-r.svc-arrow { animation-delay: .25s; }
@keyframes arrowBob { 0%,100% { translate: 0 0; } 50% { translate: 0 6px; } }
@media (prefers-reduced-motion: reduce) {
  .svc-arrow { animation: none !important; transition: opacity .3s linear; }
  .svc-arrow .a-line { transition: none; }
}
.svc-cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 21px 44px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.01em;
  color: #fff; text-decoration: none; white-space: nowrap;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  box-shadow: 0 18px 38px -16px rgba(16,42,56,.5), 0 1px 0 rgba(255,255,255,.14) inset;
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc-cta-btn span { position: relative; z-index: 1; }
.svc-cta-btn svg { position: relative; z-index: 1; width: 24px; height: 24px; transition: transform .4s var(--ease); }
.svc-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -16px rgba(16,42,56,.58); }
.svc-cta-btn:hover svg { transform: translateX(5px); }
.svc-cta-btn::before {
  content: ''; position: absolute; top: 0; left: -65%; width: 42%; height: 100%; z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.30), transparent);
  transform: skewX(-18deg); transition: left .65s var(--ease);
}
.svc-cta-btn:hover::before { left: 135%; }
@media (prefers-reduced-motion: reduce) { .svc-cta-btn::before { display: none; } }

/* positions (espace de coordonnées 1180×720) */
.svc-pod.p1 { left: 0;   top: 5.5%;  }
.svc-pod.p2 { left: 0;   top: 27%;   }
.svc-pod.p3 { left: 0;   top: 48.5%; }
.svc-pod.p4 { left: 0;   top: 70%;   }
.svc-pod.p5 { right: 0;  top: 5.5%;  }
.svc-pod.p6 { right: 0;  top: 27%;   }
.svc-pod.p7 { right: 0;  top: 48.5%; }
.svc-pod.p8 { right: 0;  top: 70%;   }

/* ---- pricing band ---- */
/* ---- pricing band (refonte premium) ---- */
.pricing { position: relative; margin-top: 40px; padding-top: 74px; text-align: center; }
.pricing-bg { position: absolute; inset: -40px 0 0; z-index: 0; pointer-events: none; overflow: hidden; }
.pricing-blob { position: absolute; inset: 0; width: 100%; height: 100%; }
.pricing-blob .pb-ring { fill: none; stroke: var(--blue); stroke-width: 1.2; opacity: .12; }
.pricing > * { position: relative; z-index: 1; }
.pricing .eyebrow { margin-bottom: 22px; }
.pricing-title { font-size: clamp(30px, 4vw, 50px); line-height: 1.04; margin-bottom: 18px; }
.pricing-title .accent { color: var(--blue); }
.pricing .price-rule { width: 54px; height: 3px; background: var(--blue); border-radius: 3px; margin: 0 auto 44px; }

.price-capsule {
  max-width: 760px; margin: 0 auto; background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 28px; padding: 40px 56px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap;
}
.price-num { display: inline-flex; align-items: flex-start; gap: 8px; }
.price-num .pn-big {
  font-family: var(--font-display); font-weight: 800; font-size: 150px; line-height: .82; letter-spacing: -.04em;
  background: linear-gradient(160deg, #6FA8C4 0%, var(--blue) 42%, var(--blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-num .pn-side { display: flex; flex-direction: column; align-items: flex-start; padding-top: 30px; gap: 6px; }
.price-num .pn-pct { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--blue); line-height: 1; }
.price-num .pn-ttc { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: .04em; }
.price-div { width: 1px; align-self: stretch; min-height: 130px; background: var(--line); }
.price-desc { color: var(--ink); font-size: 19px; line-height: 1.5; max-width: 18ch; text-align: left; font-weight: 500; }

.pricing-reassure { margin: 34px auto 0; max-width: 60ch; font-size: 16px; line-height: 1.6; }
.pricing-reassure .pr-muted { color: var(--muted); }
.pricing-reassure strong { display: block; margin-top: 4px; color: var(--navy); font-weight: 700; }
.pricing-reassure strong { color: var(--navy); }

.price-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; max-width: 940px; margin-inline: auto; }
.price-perk {
  display: flex; align-items: center; gap: 14px; text-align: left;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 18px 20px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.price-perk:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-perk .pp-ico { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; }
.price-perk .pp-ico svg { width: 21px; height: 21px; }
.price-perk span { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.price-perk em { font-style: normal; color: var(--blue); }

.pricing-cta { margin-top: 40px; }

@media (prefers-reduced-motion: reduce) {
  .svc-photo, .svc-links path, .svc-links .ring { animation: none !important; }
}

@media (max-width: 980px) {
  .price-perks { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
  .price-capsule { gap: 30px; padding: 34px 40px; }
  .price-num .pn-big { font-size: 120px; }
  .price-div { display: none; }
  .price-desc { text-align: center; max-width: 28ch; }
}
@media (max-width: 480px) {
  .price-perks { grid-template-columns: 1fr; }
  .price-num .pn-big { font-size: 100px; }
}

@media (prefers-reduced-motion: reduce) { .svc-photo { animation: none; } }

@media (max-width: 1080px) {
  .svc-stage { aspect-ratio: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 720px; }
  .svc-cta { margin-top: 26px; padding-top: 0; }
  .svc-arrow { display: none; }
  .svc-links, .svc-ring { display: none !important; }
  .svc-photo { position: static !important; transform: none !important; margin: 0 auto 16px; grid-column: 1 / -1; animation: none; }
  .svc-pod { position: static !important; width: 100%; padding: 14px 12px; flex-direction: column; gap: 10px; text-align: left; align-items: flex-start; }
  .svc-pod .sp-ico { width: 44px; height: 44px; }
  .svc-pod .sp-ico svg { width: 22px; height: 22px; }
  .svc-pod h4 { font-size: 15.5px; margin-bottom: 5px; }
  .svc-pod li, .svc-pod p { font-size: 13px; }
  .svc-pod:hover { background: transparent; box-shadow: none; transform: none; }
}

@media (max-width: 520px) {
  .svc-stage { grid-template-columns: 1fr; max-width: 420px; }
  .svc-pod { flex-direction: row; align-items: flex-start; }
  .svc-photo { grid-column: auto; }
}
@media (max-width: 720px) {
  .price-perks { gap: 10px 0; }
  .price-perk { width: 50%; padding: 10px 14px; justify-content: center; }
  .price-perk + .price-perk::before { display: none; }
  .price-num .pn-big { font-size: 76px; }
}

/* ---------- Image placeholders ---------- */
.ph {
  position: relative;
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(72,137,171,.10) 0 2px, transparent 2px 13px),
    linear-gradient(150deg, var(--blue-tint), var(--sand));
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-label);
  font-family: "Manrope", monospace;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--blue-deep);
  background: rgba(255,255,255,.7);
  padding: 7px 13px; border-radius: 100px;
  text-transform: lowercase;
  max-width: 80%; text-align: center;
}
.ph.dark { background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 13px), linear-gradient(150deg,#1B3D4E,#0E2530); }
.ph.dark::after { color: #CDE2EB; background: rgba(255,255,255,.1); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header, .mobile-menu, #tweaks-root { display: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .app-grid, .transp-grid, .zone-grid, .cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .stats-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .sim-card { grid-template-columns: 1fr; gap: 32px; }
  .sim-result { border-left: none; border-top: 1px solid rgba(255,255,255,.12); padding-left: 0; padding-top: 32px; }
  .steps-rail { display: none; }
  .pf-grid { grid-template-columns: 1fr; gap: 12px; }
  .pf-right { gap: 12px; }
  .pf-row { gap: 12px; }
  .pf-hero { min-height: 0; aspect-ratio: 16 / 11; }
  .step { padding-top: 38px; margin-top: 8px; }
  .step::before { display: grid; }
}

@media (max-width: 1080px) {
  .nav-bar { grid-template-columns: 1fr auto; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .np-sub { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { padding: 130px 0 60px; }
  .site-header { top: 8px; padding: 0 10px; }
  .nav-bar { min-height: 64px; border-radius: 24px; padding: 8px 8px 8px 12px; gap: 6px; }
  .nav-bar .brand { margin-left: 0; flex: none; }
  .brand-logo { height: 38px; width: auto; flex: none; object-fit: contain; }
  /* Bouton : texte court "Estimation offerte" + flèche masquée pour gagner de la place */
  .ne-full { display: none; }
  .ne-short { display: inline; }
  .nav-estimate svg { display: none; }
  /* Téléphone : retirer "9h–19h" pour gagner de la place */
  .np-hours { display: none; }
  .brand-name { font-size: 16px; }
  .brand-sub { display: none; }
  /* Téléphone : numéro + "Appel gratuit" visibles à droite de l'icône */
  .np-txt { display: flex; min-width: 0; }
  .np-num { font-size: 13px; }
  .np-sub { display: block; font-size: 8.5px; letter-spacing: 0; }
  .nav-phone { padding: 2px 4px; gap: 7px; }
  .np-ico { width: 32px; height: 32px; }
  .np-ico svg { width: 15px; height: 15px; }
  .nav-right { gap: 5px; }

  /* Bouton Estimer : compact, à GAUCHE du téléphone */
  .nav-estimate {
    display: inline-flex; order: -1;
    padding: 9px 14px; font-size: 12.5px; gap: 5px;
    border-radius: 100px; white-space: nowrap;
  }
  .nav-estimate .ne-extra { display: none; }
  .nav-estimate svg { width: 13px; height: 13px; }
  .float-card { display: none; }
  .value-grid, .svc-grid, .stats-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rv-card { flex-basis: 84%; }
  .rv-prev { left: -8px; }
  .rv-next { right: -8px; }
  .rv-arrow { width: 44px; height: 44px; }
  .trust-row { justify-content: center; }
  .trust-sep { display: none; }
  .pf-row-top, .pf-row-bot { grid-template-columns: 1fr 1fr; }
  .pf-row-top .pf-card, .pf-row-bot .pf-card { aspect-ratio: 1 / 1; }
  .pf-hero { aspect-ratio: 4 / 3; }
  .pf-hero .pf-name { font-size: 27px; }
  .pf-cta { justify-content: center; }
  .steps-perks li { padding: 0 16px; }
  .steps-perks li + li { border-left: none; }
  .steps-btn { width: 100%; justify-content: center; padding: 18px 28px; }
  .lf-row { grid-template-columns: 1fr; }
  .sim-card, .commission-card, .lead-form { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .tile-grid, .tile-grid-sectors { grid-template-columns: repeat(2, 1fr); }
  .radio-row { grid-template-columns: 1fr; }
  .sr-stats { gap: 8px; }
  .ss-lbl { font-size: 11px; }
  .commission-card .cc-num { font-size: 66px; }
}

/* ============================================================
   SECTEURS D'INTERVENTION — arches premium + marquees de villes
   ============================================================ */
.sectors {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 0%, var(--blue-tint) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 30%, var(--paper) 58%, var(--sand) 100%);
}
.sectors::before, .sectors::after {
  content: ""; position: absolute; left: 0; right: 0; height: 46px; pointer-events: none; z-index: 1;
}
.sectors::before { top: -1px; background: #FFFFFF; border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.sectors::after { bottom: -1px; background: var(--paper); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.sectors-head { max-width: 820px; margin-bottom: 52px; }

/* séparateur décoratif entre sections */
.sec-divider {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  max-width: 560px; margin: 4px auto; padding: 0 24px;
}
.sec-divider .sd-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 35%, var(--line) 65%, transparent);
}
.sec-divider .sd-mark {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue); background: var(--blue-tint);
  box-shadow: 0 4px 14px -8px rgba(72,137,171,.6);
}
.sec-divider .sd-mark svg { width: 20px; height: 20px; }

/* eyebrow avec pin dans une pastille */
.eyebrow-pin {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--navy);
  margin-bottom: 22px;
}
.eyebrow-pin .ep-ico {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  background: var(--blue-tint); color: var(--blue);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px -7px rgba(72,137,171,.6);
}
.eyebrow-pin .ep-ico svg { width: 16px; height: 16px; }

.sectors-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.06; letter-spacing: -.01em;
  color: var(--navy); margin-bottom: 18px;
}
.sectors-title .accent-it { color: var(--blue); font-style: italic; }

/* ---- Grille d'arches ---- */
.arch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.arch {
  display: flex; flex-direction: column;
  background: #fff; overflow: hidden;
  border-top-left-radius: 50% 26%;
  border-top-right-radius: 50% 26%;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  box-shadow: 0 26px 52px -32px rgba(16,42,56,.30), 0 3px 10px -6px rgba(16,42,56,.10);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.arch:hover { transform: translateY(-9px); box-shadow: 0 46px 80px -34px rgba(16,42,56,.40), 0 8px 18px -10px rgba(16,42,56,.18); }
.arch-photo { position: relative; aspect-ratio: 1 / 1.2; overflow: hidden; }
.arch-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block; transition: transform 1s var(--ease); }
.arch:hover .arch-photo img { transform: scale(1.055); }
.arch-band {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 20px 16px 24px; text-align: center;
  font-family: var(--font-serif); font-weight: 500; font-size: clamp(19px, 1.5vw, 23px);
  color: var(--navy); letter-spacing: -.005em;
}
.arch-band .arch-pin { display: inline-flex; flex: none; }
.arch-band .arch-pin svg { width: 18px; height: 18px; color: var(--blue); }

/* ---- Marquees de villes ---- */
.cities { margin-top: 50px; display: flex; flex-direction: column; gap: 16px; }
.cities-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.cities-track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.cities-track--r { animation: cityScrollR 52s linear infinite; }
.cities-track--l { animation: cityScrollL 52s linear infinite; }
.cities-row:hover .cities-track { animation-play-state: paused; }
@keyframes cityScrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes cityScrollL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .cities-track--r, .cities-track--l { animation: none; }
  .cities-row { -webkit-mask-image: none; mask-image: none; overflow-x: auto; scrollbar-width: none; }
}

.cap {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 11px 20px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--navy);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  box-shadow: 0 2px 9px -5px rgba(16,42,56,.14);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cap svg { width: 15px; height: 15px; flex: none; color: var(--blue); transition: color .3s var(--ease); }
.cap:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(72,137,171,.7); }
.cap:hover svg { color: #fff; }

@media (max-width: 920px) {
  .arch-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 660px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .arch-grid { grid-template-columns: 1fr; gap: 22px; max-width: 340px; }
  .arch-photo { aspect-ratio: 1 / 1.08; }
  .cities { margin-top: 38px; }
  .cap { padding: 10px 17px; font-size: 14px; }
}

@media (max-width: 560px) {
  .footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-about { max-width: none; }
  .footer-contact div { word-break: break-word; overflow-wrap: anywhere; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
}

@media (max-width: 460px) {
  .brand-id { display: none; }
  .nav-right { gap: 5px; }
  .nav-bar { padding: 8px 8px 8px 10px; gap: 5px; }
  .brand-logo { height: 36px; }
  .nav-estimate { padding: 8px 12px; font-size: 11.5px; }
  .nav-estimate .ne-extra { display: none; }
  .nav-estimate svg { width: 12px; height: 12px; }
  .np-ico { width: 32px; height: 32px; }
  .np-num { font-size: 12.5px; }
  .np-sub { font-size: 8px; }
}

@media (max-width: 360px) {
  .brand-logo { height: 32px; }
  .np-ico { width: 30px; height: 30px; }
  .nav-estimate { padding: 7px 10px; font-size: 11px; gap: 4px; }
  .nav-estimate svg { display: none; }
  .np-num { font-size: 12px; }
  .np-sub { font-size: 7.5px; }
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.nav-menu a.active { color: var(--blue); }
.nav-menu a.active::after { width: 18px; }
/* lien de la page courante en bleu dans le menu mobile */
.mobile-menu a.active { color: var(--blue); }

.contact-hero {
  padding: 152px 0 8px;
  background:
    radial-gradient(125% 80% at 50% 0%, var(--blue-tint) 0%, transparent 56%),
    var(--paper);
  text-align: center;
}
.contact-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.contact-hero .eyebrow::after { content: ""; display: inline-block; width: 26px; height: 1.5px; background: var(--blue); margin-left: 12px; }
.contact-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -.025em;
  color: var(--navy); margin-bottom: 18px; text-wrap: balance;
}
.contact-hero h1 .accent { color: var(--blue); }
.contact-hero .lead { max-width: 56ch; margin: 0 auto; }

.contact-main { padding: 56px 0 96px; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 40px; align-items: start; }

/* formulaire (réutilise .lead-form) */
.contact-form { padding: 40px; }
.contact-form .lf-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper);
  resize: vertical; min-height: 124px; line-height: 1.55;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form .lf-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(72,137,171,.12); background: #fff; }
.contact-form .lf-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 4px; }
.contact-form .lf-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.contact-form .lf-consent label { font-size: 12.5px; color: var(--muted); line-height: 1.5; font-weight: 500; }

/* état de confirmation */
.lf-success { display: none; text-align: center; padding: 22px 8px 6px; }
.contact-form.sent .lf-body { display: none; }
.contact-form.sent .lf-success { display: block; animation: fadeUp .5s var(--ease); }
.lf-success .lf-check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.lf-success .lf-check svg { width: 32px; height: 32px; }
.lf-success h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.lf-success p { color: var(--ink-2); font-size: 15.5px; max-width: 38ch; margin: 0 auto; line-height: 1.6; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* colonne de droite */
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.contact-card > h4 {
  font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--navy);
  letter-spacing: .01em; margin-bottom: 16px; display: flex; align-items: center; gap: 9px;
}
.contact-card > h4 svg { width: 18px; height: 18px; color: var(--blue); }

/* moyens de contact */
.cm-list { display: flex; flex-direction: column; gap: 10px; }
.cm-item {
  display: flex; align-items: center; gap: 14px; padding: 13px 14px;
  border-radius: var(--r-md); border: 1px solid var(--line); background: #fff;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.cm-item:hover { border-color: #D5E3EB; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cm-ico { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease); }
.cm-ico svg { width: 21px; height: 21px; }
.cm-item:hover .cm-ico { background: var(--blue); color: #fff; }
.cm-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cm-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); font-weight: 700; }
.cm-value { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: -.01em; word-break: break-word; }
.cm-arrow { margin-left: auto; flex: none; color: #B9C4CB; transition: color .3s var(--ease), transform .3s var(--ease); }
.cm-arrow svg { width: 18px; height: 18px; display: block; }
.cm-item:hover .cm-arrow { color: var(--blue); transform: translateX(3px); }

/* horaires */
.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--ink-2); font-size: 14.5px; }
.hours-time { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 14.5px; }
.hours-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--blue-deep); background: var(--blue-tint); padding: 8px 13px; border-radius: 999px; }
.hours-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2FAE6A; box-shadow: 0 0 0 4px rgba(47,174,106,.18); }

/* réassurance — carte navy */
.contact-reassure { background: var(--navy); color: #fff; border: none; position: relative; overflow: hidden; }
.contact-reassure::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 0%, rgba(72,137,171,.35), transparent 55%); pointer-events: none; }
.contact-reassure > * { position: relative; z-index: 1; }
.contact-reassure h4 { color: #fff; }
.contact-reassure h4 svg { color: #8FC0D4; }
.reassure-list { display: flex; flex-direction: column; gap: 13px; }
.reassure-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: #D6E4EB; font-weight: 600; list-style: none; }
.reassure-list svg { width: 19px; height: 19px; color: #6FB1CE; flex: none; }

@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .contact-aside { max-width: 560px; }
}
@media (max-width: 720px) {
  .contact-hero { padding-top: 124px; }
  .contact-form { padding: 26px; }
}

/* ============================================================
   PAGE ESTIMER MES REVENUS — assistant multi-étapes (clair)
   ============================================================ */
.est-main { padding: 36px 0 92px; background: var(--paper); }
.est-shell { max-width: 720px; margin: 0 auto; padding: 0 20px; }

/* progression */
.est-progress { margin-bottom: 22px; }
.est-progress-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 11px; gap: 16px; }
.est-step-count { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .04em; color: var(--blue-deep); text-transform: uppercase; }
.est-step-name { font-size: 13px; color: var(--muted); font-weight: 600; text-align: right; }
.est-bar { height: 6px; border-radius: 100px; background: #E7E2D8; overflow: hidden; }
.est-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--blue-deep)); width: 14.28%; transition: width .55s var(--ease); }

/* carte */
.est-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 44px 44px 36px;
  box-shadow: 0 34px 80px -46px rgba(16,42,56,.42), 0 4px 14px -8px rgba(16,42,56,.07);
}

/* étape */
.est-step { display: none; }
.est-step.active { display: block; animation: estIn .45s var(--ease); }
@keyframes estIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.est-q { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.7vw, 28px); line-height: 1.16; letter-spacing: -.02em; color: var(--navy); margin-bottom: 8px; text-wrap: balance; }
.est-help { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-bottom: 26px; max-width: 52ch; }

/* options (grille de cartes) */
.est-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.est-grid.g4 { grid-template-columns: repeat(4, 1fr); }
.est-grid.g1 { grid-template-columns: 1fr; }
.est-opt {
  position: relative; display: flex; align-items: center; gap: 15px; text-align: left;
  padding: 17px 18px; border-radius: var(--r-md); border: 1.5px solid var(--line); background: #fff;
  cursor: pointer; font-family: var(--font-body);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.est-opt:hover { border-color: #C5DCE7; background: var(--blue-tint); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.est-opt.selected { border-color: var(--blue); background: var(--blue-tint); box-shadow: 0 16px 32px -20px rgba(72,137,171,.85); }
.est-opt-ico { width: 48px; height: 48px; flex: none; border-radius: 13px; background: var(--blue-tint); color: var(--blue-deep); display: grid; place-items: center; transition: background .25s var(--ease), color .25s var(--ease); }
.est-opt.selected .est-opt-ico { background: var(--blue); color: #fff; }
.est-opt-ico svg { width: 25px; height: 25px; }
.est-opt-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.est-opt-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: -.01em; }
.est-opt-desc { font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.est-opt-check { margin-left: auto; width: 23px; height: 23px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: background .25s var(--ease), border-color .25s var(--ease); }
.est-opt.selected .est-opt-check { background: var(--blue); border-color: var(--blue); }
.est-opt-check svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity .2s var(--ease); }
.est-opt.selected .est-opt-check svg { opacity: 1; }

/* variante tuiles verticales (type) */
.est-grid.g4 .est-opt { flex-direction: column; text-align: center; gap: 12px; padding: 24px 10px 20px; }
.est-grid.g4 .est-opt-check { position: absolute; top: 10px; right: 10px; margin: 0; }

/* chips équipements */
.est-chips { display: flex; flex-wrap: wrap; gap: 11px; }
.est-chip {
  display: inline-flex; align-items: center; gap: 0; padding: 12px 19px; border-radius: 100px;
  border: 1.5px solid var(--line); background: #fff; color: var(--navy); cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; white-space: nowrap;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.est-chip:hover { border-color: #C5DCE7; background: var(--blue-tint); transform: translateY(-2px); }
.est-chip.selected { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 14px 28px -16px rgba(72,137,171,.8); }
.est-chip svg { width: 0; height: 16px; opacity: 0; transition: width .22s var(--ease), opacity .22s var(--ease), margin .22s var(--ease); }
.est-chip.selected svg { width: 16px; opacity: 1; margin-right: 8px; }

/* compteurs (caractéristiques) */
.est-fields { display: flex; flex-direction: column; gap: 13px; }
.est-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 15px 20px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff;
}
.est-row-label { display: flex; flex-direction: column; gap: 2px; }
.est-row-name { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--navy); }
.est-row-hint { font-size: 12.5px; color: var(--muted); }
.stepper { display: flex; align-items: center; gap: 6px; flex: none; }
.stepper button {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  color: var(--navy); cursor: pointer; display: grid; place-items: center;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.stepper button svg { width: 16px; height: 16px; }
.stepper button:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; border-color: var(--line); color: var(--navy); background: #fff; }
.stepper .sv { min-width: 42px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--navy); }
.est-row .est-num-input {
  width: 96px; text-align: right; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--navy);
  padding: 9px 12px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--paper);
}
.est-row .est-num-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(72,137,171,.12); background: #fff; }

/* étape finale — coordonnées */
.est-final-lead { display: flex; align-items: center; gap: 12px; background: var(--blue-tint); border-radius: var(--r-md); padding: 15px 18px; margin-bottom: 24px; }
.est-final-lead .efl-ico { width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; }
.est-final-lead .efl-ico svg { width: 21px; height: 21px; }
.est-final-lead p { font-size: 13.5px; color: var(--ink-2); line-height: 1.45; }
.est-final-lead strong { color: var(--navy); }

/* récapitulatif */
.est-recap { border: 1px dashed var(--line); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 22px; }
.est-recap-h { font-size: 11.5px; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.est-recap-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.est-recap-item { display: inline-flex; align-items: center; gap: 7px; background: var(--sand); border-radius: 100px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--navy); }
.est-recap-item svg { width: 13px; height: 13px; color: var(--blue); flex: none; }

.est-consent { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 2px; }
.est-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.est-consent label { font-size: 12.5px; color: var(--muted); line-height: 1.5; font-weight: 500; }

/* navigation */
.est-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 30px; }
.est-back {
  display: inline-flex; align-items: center; gap: 8px; background: none; border: none;
  color: var(--muted); font-family: var(--font-body); font-weight: 700; font-size: 15px; cursor: pointer;
  padding: 12px 6px; transition: color .2s var(--ease); border-radius: 10px;
}
.est-back svg { width: 17px; height: 17px; }
.est-back:hover { color: var(--navy); }
.est-back[hidden] { visibility: hidden; }
.est-next {
  display: inline-flex; align-items: center; gap: 10px; margin-left: auto;
  background: var(--blue); color: #fff; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 16px; padding: 16px 30px; border-radius: 100px;
  cursor: pointer; box-shadow: 0 16px 32px -16px rgba(72,137,171,.75);
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease), opacity .3s var(--ease);
}
.est-next svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.est-next:hover { background: var(--blue-deep); transform: translateY(-2px); }
.est-next:hover svg { transform: translateX(4px); }
.est-next:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.est-trust { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 18px; }
.est-error { text-align: center; font-size: 13.5px; color: #C0392B; font-weight: 600; margin-top: 14px; line-height: 1.5; }

/* succès */
.est-success { display: none; text-align: center; padding: 14px 8px 8px; }
.est-card.sent .est-flow, .est-card.sent .est-nav, .est-card.sent + .est-foot { display: none; }
.est-card.sent .est-success { display: block; animation: estIn .5s var(--ease); }
.est-success .es-check { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; }
.est-success .es-check svg { width: 34px; height: 34px; }
.est-success h3 { font-family: var(--font-display); font-weight: 800; font-size: 25px; color: var(--navy); margin-bottom: 10px; letter-spacing: -.02em; }
.est-success p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; max-width: 42ch; margin: 0 auto 22px; }
.est-success .es-home { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--blue-deep); font-size: 15px; }
.est-success .es-home svg { width: 17px; height: 17px; }

/* bandeau réassurance sous la carte */
.est-foot { max-width: 720px; margin: 26px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.est-foot-item { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.est-foot-item svg { width: 18px; height: 18px; color: var(--blue); flex: none; }

@media (max-width: 620px) {
  .est-card { padding: 28px 22px 26px; }
  .est-grid, .est-grid.g4 { grid-template-columns: 1fr 1fr; }
  .est-grid.g1 { grid-template-columns: 1fr; }
  .est-next { padding: 15px 22px; font-size: 15px; }

  /* Caractéristiques : grille 2 colonnes de cartes verticales */
  .est-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .est-row { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 12px; min-width: 0; }
  .est-row-label { width: 100%; }
  .est-row-name { font-size: 14.5px; }
  .est-row-hint { font-size: 12px; }
  .stepper { width: 100%; justify-content: space-between; gap: 4px; }
  .stepper button { width: 34px; height: 34px; }
  .stepper button svg { width: 14px; height: 14px; }
  .stepper .sv { min-width: 28px; font-size: 17px; }
  .est-row .est-num-input { width: 100%; text-align: center; }
}

@media (max-width: 520px) {
  .est-main { padding: 24px 0 64px; }
  .est-card { padding: 24px 18px 22px; }
  .est-q { font-size: 22px; }
  .est-help { font-size: 14px; margin-bottom: 22px; }
  .est-progress-top { gap: 10px; }
  .est-step-count, .est-step-name { font-size: 12px; }

  /* Options génériques (secteur, standing, dispo) en 1 col pour éviter débordement */
  .est-grid { grid-template-columns: 1fr; gap: 10px; }
  /* G4 (Type de logement) reste en 2 cols car labels courts */
  .est-grid.g4 { grid-template-columns: 1fr 1fr; }

  .est-opt { padding: 14px 14px; gap: 12px; min-width: 0; }
  .est-opt-txt { min-width: 0; }
  .est-opt-ico { width: 42px; height: 42px; }
  .est-opt-ico svg { width: 22px; height: 22px; }
  .est-opt-name { font-size: 15px; }
  .est-opt-desc { font-size: 12px; }
  .est-grid.g4 .est-opt { padding: 18px 8px 16px; }
  .est-chip { padding: 10px 16px; font-size: 13.5px; }
  .est-final-lead { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 16px; }
  .est-nav { gap: 8px; margin-top: 24px; }
  .est-next { padding: 14px 18px; font-size: 14.5px; gap: 8px; }
  .est-back { font-size: 14px; padding: 10px 4px; }
  .est-foot { gap: 8px 18px; margin-top: 20px; }
  .est-foot-item { font-size: 12.5px; }
}

@media (max-width: 380px) {
  .est-q { font-size: 20px; }
  .est-opt { padding: 12px 12px; }
  .est-opt-ico { width: 38px; height: 38px; }
  .est-opt-name { font-size: 14px; }
  .est-back { font-size: 0; padding: 10px; }
  .est-back svg { margin: 0; }
  .est-next { padding: 13px 16px; font-size: 14px; }
  .est-grid.g4 .est-opt-check { top: 6px; right: 6px; width: 18px; height: 18px; }
}

/* ============================================================
   ACCUEIL — overrides responsive
   ============================================================ */

/* Tablette : adoucir les paddings de section */
@media (max-width: 1080px) {
  .section { padding: 76px 0; }
}

/* Tablette portrait & smartphone large */
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .hero h1 br { display: none; }

  /* CTA final : ligne de séparation courbée (dôme) */
  .cta-final { border-radius: 50% 50% 0 0 / 60px 60px 0 0; }
  .cta-grid { gap: 32px; }

  /* Reviews : padding mobile raisonnable */
  .reviews { padding: 48px 0 40px !important; }
  .rv-summary { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

  /* Simulateur */
  .sr-amount { font-size: clamp(40px, 11vw, 60px); }
  .sr-permonth { font-size: 17px; }
  .sim-card { padding: 26px 22px !important; }
  .sr-stats { padding: 18px 0; margin: 20px 0; gap: 6px; }

  /* Portfolio : 3 colonnes bot trop serrées sous 720 */
  .pf-row-bot { grid-template-columns: 1fr 1fr; }
  .pf-row-bot .pf-card:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

  /* Owner : désactiver la rotation 3D du téléphone qui sort de l'écran */
  .owner-phone picture { transform: none !important; }
  .owner-phone { width: min(280px, 72%); }
  .owner-visual { padding: 16px 0; }

  /* MacBook : retirer la marge négative qui déborde */
  .mb-photo { width: 100% !important; margin: 16px 0 0 !important; }
  .mb-stage { padding: 40px 0 30px; }

  /* Arches secteurs : 2 cols compactes, photos visibles */
  .arch-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; max-width: none !important; }
  .arch-photo { aspect-ratio: 3 / 4; }
  .arch-band { padding: 10px 14px; font-size: 14px; }
}

/* Smartphone moyen */
@media (max-width: 520px) {
  .section { padding: 48px 0; }
  .cta-final { border-radius: 50% 50% 0 0 / 44px 44px 0 0; }

  /* Owner : cards flottantes — masquées (trop d'overlap avec téléphone) */
  .ocard { display: none; }

  /* fcards (MacBook) : visibles sur portable, compactes, en badges autour de l'image */
  .fcard {
    display: block !important; width: 124px; padding: 9px 11px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
    box-shadow: 0 16px 30px -16px rgba(16,42,56,.4);
  }
  .fcard .fc-t { font-size: 11.5px; }
  .fcard .fc-d { display: none; }
  .fcard .fc-ico { width: 26px; height: 26px; }
  .fcard .fc-ico svg { width: 14px; height: 14px; }
  .fcard.f1 { top: -3%; left: -7%; }
  .fcard.f2 { bottom: 4%; left: -7%; }
  .fcard.f3 { top: 40%; right: -7%; z-index: 5; }
  .mb-shadow { display: none; }

  /* Tiles (types de logement) */
  .tile-grid, .tile-grid-sectors { gap: 8px; }

  /* Portfolio */
  .pf-grid { gap: 8px; }

  /* Arches : reste 2 cols mais ajusté */
  .arch-grid { gap: 12px !important; }
  .arch-photo { aspect-ratio: 4 / 5; }
  .arch-band { padding: 9px 12px; font-size: 13px; gap: 6px; }
  .arch-band .arch-pin svg { width: 14px; height: 14px; }
}

/* iPhone SE / Android compact */
@media (max-width: 380px) {
  .section { padding: 42px 0; }
  .cta-final { border-radius: 50% 50% 0 0 / 34px 34px 0 0; }
  .sr-amount { font-size: 38px; }
  .pf-row-bot { grid-template-columns: 1fr; }
  .pf-row-bot .pf-card { aspect-ratio: 16 / 10; }
  .pf-row-bot .pf-card:nth-child(3) { aspect-ratio: 16 / 10; }

  /* Arches en 1 col sur très petits écrans */
  .arch-grid { grid-template-columns: 1fr !important; max-width: 320px !important; margin-inline: auto !important; }
  .arch-photo { aspect-ratio: 4 / 3; }
}

/* ============================================================
   ACCUEIL — fixes complémentaires (réorganisation mobile)
   ============================================================ */

/* === Tablette + mobile : réordonnancement MacBook & téléphone === */
@media (max-width: 1080px) {

  /* MacBook : titre → sous-titre → photo → étapes */
  .how-grid { display: flex; flex-direction: column; gap: 16px; }
  .how-copy { display: contents; }
  .how-copy > .eyebrow { order: 1; }
  .how-copy > h2 { order: 2; }
  .how-copy > .lead { order: 3; }
  .mb-stage { order: 4; max-width: 520px; margin: 8px auto 0; padding: 12px 0 18px !important; }
  .mb-photo { animation: none !important; filter: drop-shadow(0 24px 32px rgba(16,42,56,.18)); }
  .mb-shadow { display: none; }
  .how-steps { order: 5; margin-top: 24px; }

  /* Owner : titre → sous-titre → téléphone → features + actions */
  .owner-grid { display: flex; flex-direction: column; gap: 18px; }
  .owner-copy { display: contents; }
  .owner-copy > .eyebrow { order: 1; }
  .owner-copy > h2 { order: 2; }
  .owner-copy > .lead { order: 3; }
  .owner-visual { order: 4 !important; max-width: 440px; margin: 0 auto; padding: 4px 0 !important; }
  .owner-phone { animation: none !important; }
  .owner-copy > .owner-feats { order: 5; margin: 8px 0 0; max-width: none; }
  .owner-copy > .owner-actions { order: 6; }
}

/* === Mobile : tarification (24% TTC + 4 perks) === */
@media (max-width: 720px) {
  /* % au-dessus, TTC en dessous — à droite de 24, aligné en haut */
  .price-num { gap: 8px; align-items: flex-start; }
  .price-num .pn-side {
    flex-direction: column; align-items: flex-start; gap: 2px;
    padding-top: 12px;
  }
  .price-num .pn-pct { font-size: 32px; line-height: 1; }
  .price-num .pn-ttc { font-size: 14px; letter-spacing: .06em; }

  /* Perks : 2 cols toujours (même sous 480) */
  .price-perks { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; max-width: 520px; }
  .price-perk { width: auto !important; padding: 14px 14px !important; justify-content: flex-start !important; }
  .price-perk span { font-size: 13.5px; line-height: 1.35; }
  .price-perk span br { display: none; }
  .price-perk .pp-ico { width: 38px; height: 38px; }
  .price-perk .pp-ico svg { width: 18px; height: 18px; }

  /* === Trust strip : Airbnb+Booking sur ligne 1, 3 stats sur ligne 2 === */
  .trust-row {
    display: flex; flex-wrap: wrap;
    gap: 16px 24px; padding: 22px 0;
    justify-content: center; align-items: center;
  }
  .trust-sep { display: none !important; }
  /* 4e child = séparateur entre Booking et 1er stat : forcé en flex-break 100% */
  .trust-row > *:nth-child(4) {
    display: block !important;
    flex-basis: 100% !important;
    width: 100% !important;
    height: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  .trust-logo { font-size: 24px; }
  /* Stats : 3 cols compactes, label sous le chiffre */
  .trust-item {
    flex: 1 1 0; min-width: 0;
    flex-direction: column; align-items: center; text-align: center; gap: 4px;
  }
  .trust-item .ti-num { font-size: 26px; }
  .trust-item .ti-txt { font-size: 12px; line-height: 1.3; color: var(--muted); font-weight: 600; }
  .trust-item .ti-txt br { display: none; }

  /* === Sections d'arrière-plan : plus d'air autour des transitions === */
  .sectors { padding-bottom: 24px !important; }
  .sectors::after { height: 60px; }
  .sectors-head { margin-bottom: 36px; }
  .cities { margin-top: 32px; margin-bottom: 16px; }
  /* Section qui suit (.services) : un peu plus d'espace en haut */
  .services { padding-top: 80px !important; }
}

/* === Mobile : MacBook compact + sans float === */
@media (max-width: 720px) {
  .mb-stage { max-width: 380px; padding: 0 0 12px !important; }
  .mb-photo { width: 100% !important; margin: 0 !important; }
}

@media (max-width: 520px) {
  .mb-stage { max-width: 320px; }

  /* TTC encore plus compact */
  .price-num .pn-pct { font-size: 28px; }
  .price-num .pn-ttc { font-size: 13px; }

  /* Perks : labels lisibles */
  .price-perk { padding: 12px 12px !important; gap: 10px !important; }
  .price-perk span { font-size: 12.5px; }
  .price-perk .pp-ico { width: 34px; height: 34px; }
  .price-perk .pp-ico svg { width: 16px; height: 16px; }

  /* Trust strip : encore plus compact */
  .trust-logo { font-size: 21px; }
  .trust-item .ti-num { font-size: 22px; }
  .trust-item .ti-txt { font-size: 11.5px; }
  .trust-row { gap: 14px 18px; padding: 20px 0; }
}

@media (max-width: 380px) {
  .mb-stage { max-width: 280px; }
  /* Stats : si vraiment serré, on accepte 2 par ligne */
  .trust-row > *:nth-child(8) {
    display: block !important;
    flex-basis: 100% !important;
    height: 0 !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
  }
  .trust-item .ti-num { font-size: 24px; }
}

/* ============================================================
   ACCUEIL — ajustements finaux (services radial, sectors, typo)
   ============================================================ */

/* === Services : photo en cercle plus grande sur tablette/mobile === */
@media (max-width: 1080px) {
  .svc-photo { width: min(640px, 96%) !important; max-width: none !important; }
  .svc-photo picture { display: block !important; width: 100% !important; height: 100% !important; }
  .svc-photo img { width: 100% !important; height: 100% !important; object-fit: cover; }
}
@media (max-width: 720px) {
  .services .wrap { padding-left: 16px; padding-right: 16px; }
  .svc-stage { max-width: 640px !important; }
  .svc-photo { width: 100% !important; max-width: 640px !important; }
}
@media (max-width: 520px) {
  .services .wrap { padding-left: 14px; padding-right: 14px; }
  .svc-stage { max-width: 560px !important; }
  .svc-photo { width: 100% !important; max-width: 560px !important; }
}

/* === MacBook : taille raisonnable, ne plus déborder === */
@media (max-width: 1080px) {
  .mb-stage { max-width: 460px !important; }
}
@media (max-width: 720px) {
  .mb-stage { max-width: 380px !important; }
}
@media (max-width: 520px) {
  .mb-stage { max-width: 320px !important; }
}
@media (max-width: 380px) {
  .mb-stage { max-width: 280px !important; }
}

/* === Section Secteurs : plus de respiration interne, moins externe === */
@media (max-width: 720px) {
  /* Augmente l'arrière-plan visible AU SEIN de la section sectors */
  .sectors { padding: 70px 0 80px !important; }
  .sectors::before { height: 70px; }
  .sectors::after { height: 80px; }
  .sectors-head { margin-bottom: 40px; }
  .cities { margin-top: 38px; margin-bottom: 50px; }

  /* Réduit la marge avec sections voisines */
  .how { padding-bottom: 30px !important; }
  .services { padding-top: 30px !important; }
}

/* === Harmonisation typographique mobile === */
@media (max-width: 720px) {
  /* Tous les H2 de section à taille cohérente */
  .h-xl { font-size: 28px !important; line-height: 1.15; letter-spacing: -.02em; }
  .h-lg { font-size: 24px !important; line-height: 1.18; }
  .h-xxl { font-size: 34px !important; line-height: 1.1; letter-spacing: -.02em; }
  .pricing-title { font-size: 28px !important; line-height: 1.15; }
  .sectors-title { font-size: 30px !important; line-height: 1.12; }
  .hero h1 { font-size: 34px !important; line-height: 1.1; }

  /* Eyebrows uniformes */
  .eyebrow { font-size: 12px; }
  .eyebrow-pin { font-size: 12px; }

  /* Lead paragraphs cohérents */
  .lead { font-size: 16px !important; line-height: 1.55; }
}

@media (max-width: 520px) {
  .h-xl { font-size: 26px !important; }
  .h-lg { font-size: 22px !important; }
  .h-xxl { font-size: 32px !important; }
  .pricing-title { font-size: 26px !important; }
  .sectors-title { font-size: 28px !important; }
  .hero h1 { font-size: 32px !important; }
  .lead { font-size: 15.5px !important; }
}

@media (max-width: 380px) {
  .h-xl { font-size: 24px !important; }
  .h-lg { font-size: 20px !important; }
  .h-xxl { font-size: 28px !important; }
  .pricing-title { font-size: 24px !important; }
  .sectors-title { font-size: 25px !important; }
  .hero h1 { font-size: 28px !important; }
}

/* ============================================================
   ACCUEIL — corrections finales (5 points)
   ============================================================ */

/* 1) Reviews summary : centrer "4,9" et les étoiles correctement */
@media (max-width: 720px) {
  .rv-summary { gap: 16px; padding: 0 20px; }
  .rv-summary .rv-score {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 10px;
  }
  .rv-rate { font-size: 42px; }
  .rv-stars { font-size: 20px; letter-spacing: 4px; }
  .rv-count { text-align: center; }
}

/* 2) Formulaire CTA final : Prénom/Nom en 2 cols + marges symétriques */
@media (max-width: 720px) {
  .cta-final > .wrap,
  .cta-final .cta-grid { padding-left: 24px !important; padding-right: 24px !important; box-sizing: border-box !important; }
  .cta-final .lead-form { padding: 24px 22px !important; max-width: 100% !important; box-sizing: border-box; margin-left: 0; margin-right: 0; }
  .cta-final .lf-row { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .cta-final .lf-field { margin-bottom: 12px; }
  .cta-final .lf-field input,
  .cta-final .lf-field select { width: 100%; box-sizing: border-box; }
}

@media (max-width: 380px) {
  /* Sous 380 on garde 1 col pour les champs longs */
  .cta-final .lf-row { grid-template-columns: 1fr !important; }
}

/* 3) Pod Maintenance — supprimer toute ligne parasite dans la section services */
@media (max-width: 1080px) {
  .svc-stage::before, .svc-stage::after { display: none !important; content: none !important; }
  .svc-pod::before, .svc-pod::after { display: none !important; content: none !important; }
  .svc-pod ul, .svc-pod li { border: none !important; box-shadow: none !important; text-decoration: none !important; }
  .svc-pod h4 { border: none !important; }
}

/* 4) Section Secteurs : respirer le titre, rapprocher la précédente */
@media (max-width: 720px) {
  .sectors { padding: 84px 0 36px !important; }
  /* Courbes plus subtiles pour ne pas créer trop de blanc */
  .sectors::before { height: 30px; border-radius: 0 0 30% 30% / 0 0 100% 100%; }
  .sectors::after { height: 38px; border-radius: 30% 30% 0 0 / 100% 100% 0 0; }
  .sectors-head { margin-bottom: 32px; padding-top: 0; }
  .cities { margin-top: 32px !important; margin-bottom: 30px !important; }
  .how { padding-bottom: 30px !important; }
  .services { padding-top: 20px !important; }

  /* === Steps (méthode) : cartes plus compactes sur portable === */
  .steps-grid { gap: 12px !important; }
  .step { padding: 22px 14px 20px !important; }
  .step h3 br { display: none; }
  .step .st-icon { width: 56px !important; height: 56px !important; margin: 0 auto 14px !important; }
  .step .st-icon svg { width: 26px !important; height: 26px !important; }
  .step h3 { font-size: 16px !important; line-height: 1.2; margin-bottom: 7px !important; }
  .step p { font-size: 13px !important; line-height: 1.4; }
  .step::before { width: 32px; height: 32px; top: -16px; font-size: 13px; }
  /* Réduire l'espace blanc entre MacBook et étape 1 (la courbe précédente .how::after n'existe pas, mais limit) */
}

/* 5) MacBook : photo raisonnable, marges réduites */
@media (max-width: 1080px) {
  .mb-stage { padding: 0 !important; margin: 0 auto !important; }
  .mb-photo { width: 100% !important; margin: 0 !important; padding: 0 !important; }
  .mb-photo img { width: 100% !important; height: auto !important; padding: 0 !important; margin: 0 !important; }
  .how-grid { gap: 24px !important; }
}
@media (max-width: 720px) {
  .how-grid { gap: 18px !important; }
}

/* ============================================================
   ACCUEIL mobile — 4 corrections ponctuelles
   ============================================================ */
@media (max-width: 720px) {
  /* 1) Supprimer la ligne au-dessus de la section tarification */
  .pricing { border-top: none !important; padding-top: 8px !important; }

  /* 2) Espace entre le texte gris et le texte en gras (réassurance) */
  .pricing-reassure strong { margin-top: 14px !important; }

  /* 3) Réduire l'espace AU-DESSUS du bouton "Prendre rendez-vous" */
  .owner-actions { margin-top: 14px !important; }

  /* 4) Réduire l'espace SOUS le bouton "Découvrir tous nos logements" */
  .portfolio { padding-bottom: 24px !important; }
  .reviews { padding-top: 28px !important; }
}

/* ============================================================
   HERO — Scroll Expand (immersif)
   Section plein écran : un panorama s'efface pendant qu'une
   photo centrale s'ouvre au scroll et que le texte s'écarte.
   ============================================================ */
.scroll-hero {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

/* Arrière-plan panorama */
.sh-bg {
  position: absolute; inset: 0; z-index: 0;
  will-change: opacity;
  transition: opacity .12s linear;
}
.sh-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.sh-bg-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(125% 90% at 50% 38%, transparent 28%, rgba(16,42,56,.55) 100%),
    linear-gradient(180deg, rgba(16,42,56,.42) 0%, rgba(16,42,56,.18) 42%, rgba(16,42,56,.55) 100%);
}

/* Scène centrée */
.sh-stage {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  display: grid; place-items: center;
}

/* Image centrale qui s'ouvre */
.sh-media {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34vw; height: 66vh;     /* taille initiale — pilotée ensuite par le JS */
  border-radius: 22px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 40px 90px -24px rgba(0,0,0,.6);
  will-change: width, height, border-radius;
}
/* L'image reste à TAILLE D'ÉCRAN fixe et centrée : le cadre l'ouvre
   comme une fenêtre (le cadrage ne change jamais → superposition parfaite). */
.sh-media img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 100dvh;
  max-width: none;
  object-fit: cover; object-position: center;
  display: block;
}
.sh-media-scrim {
  position: absolute; inset: 0;
  background: rgba(16,42,56,.55);
  transition: opacity .18s linear;
  pointer-events: none;
}

/* Bloc de texte (devant l'image) */
.sh-titles {
  position: relative; z-index: 3;
  text-align: center;
  pointer-events: none;
  padding: 0 22px;
  width: 100%;
  max-width: 1100px;
  will-change: opacity;
}
/* Halo sombre centré derrière le texte → lisibilité sur n'importe quelle photo */
.sh-titles::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 130%; height: 165%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(58% 52% at 50% 50%,
    rgba(8,20,28,.66) 0%,
    rgba(8,20,28,.45) 42%,
    rgba(8,20,28,0) 75%);
  filter: blur(6px);
}
.sh-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.3vw, 14px);
  color: #F2F8FB;
  margin-bottom: clamp(16px, 2.2vw, 26px);
  text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 4px 26px rgba(0,0,0,.6);
  will-change: transform;
}
.sh-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,.5), 0 10px 60px rgba(0,0,0,.6);
}
.sh-line { display: block; will-change: transform; }
.sh-line.sh-right { font-style: italic; color: #E6F0F5; }
.sh-hint {
  margin-top: clamp(24px, 3.4vw, 40px);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  color: #E6F0F5;
  text-shadow: 0 1px 2px rgba(0,0,0,.55), 0 3px 18px rgba(0,0,0,.55);
  display: flex; gap: 9px;
  align-items: center; justify-content: center;
  will-change: transform, opacity;
}
.sh-hint-arrow { display: inline-block; animation: shBounce 1.7s var(--ease) infinite; }
@keyframes shBounce {
  0%, 100% { transform: translateY(0); opacity: .85; }
  50%      { transform: translateY(7px); opacity: 1; }
}
.scroll-hero.sh-done .sh-hint { opacity: 0 !important; }

/* Verrou du défilement tant que l'image n'est pas ouverte */
body.sh-lock { overflow: hidden; }

/* Le header n'apparaît qu'une fois la 2ᵉ image entièrement déployée
   (il est masqué pendant toute l'animation d'ouverture). */
.site-header {
  transition: top .4s var(--ease), transform .55s var(--ease), opacity .4s var(--ease);
}
body.sh-lock .site-header {
  opacity: 0;
  transform: translateY(-135%);
  pointer-events: none;
}

/* Accessibilité : pas d'animation → état déployé d'emblée */
@media (prefers-reduced-motion: reduce) {
  .sh-hint-arrow { animation: none; }
}
