:root {
  --blue-deep: #0c1e3c;
  --blue-mid: #1e4976;
  --blue-accent: #2563eb;
  --blue-accent-bright: #3b82f6;
  --blue-light: #bfdbfe;
  --blue-xlight: #eff6ff;
  --cream: #f8fafc;
  --warm-white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-mid: #cbd5e1;
  --gold: #f59e0b;
  --gold-light: #fef3c7;
  --shadow-brand: 0 10px 40px rgba(37, 99, 235, 0.18);
  --shadow-brand-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  background: var(--blue-deep);
  color: #a8c4e8;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.topbar span {
  color: #fff;
  font-weight: 500;
}

nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nav__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo {
  display: block;
  width: auto;
  max-height: 38px;
  max-width: min(160px, 38vw);
  object-fit: contain;
}

.nav__logo--desbiens {
  max-width: min(140px, 34vw);
}

.nav__logo-sep {
  width: 1px;
  height: 28px;
  background: var(--border-mid);
  flex-shrink: 0;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 9999px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.lang-switch__btn {
  min-width: 42px;
  padding: 7px 12px;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: var(--text-secondary);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch__btn.is-active {
  background: var(--warm-white);
  color: var(--blue-deep);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.logo span {
  color: var(--blue-accent);
  font-weight: 500;
}

/* Boutons modernes : pilule, dégradé, ombre, léger lift au survol */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue-accent-bright) 0%, var(--blue-accent) 55%, #1d4ed8 100%);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 9999px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  filter: brightness(1.05);
}

.nav-cta:active {
  transform: translateY(0);
}

/* ── Parcours Acheter / Vendre ── */
body[data-intent="sell"] .intent-buy-only {
  display: none !important;
}

body[data-intent="buy"] .intent-sell-only {
  display: none !important;
}

#sell-lead-form[hidden],
#buy-lead-form[hidden] {
  display: none !important;
}

.intent-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 460px;
}

.intent-toggle__btn {
  flex: 1;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 9999px;
  border: 2px solid var(--border-mid);
  background: var(--warm-white);
  color: var(--text-secondary);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.intent-toggle__btn:hover:not(.is-active) {
  border-color: var(--blue-light);
  color: var(--blue-mid);
}

.intent-toggle__btn.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-accent-bright) 0%, var(--blue-accent) 55%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.intent-toggle__btn.is-active[data-intent-select="sell"] {
  background: linear-gradient(135deg, #1e4976 0%, var(--blue-deep) 100%);
  box-shadow: 0 6px 20px rgba(12, 30, 60, 0.35);
}

.intent-hero-card {
  margin-bottom: 28px;
}

body[data-page-lock] .intent-hero-card {
  margin-bottom: 20px;
}

.intent-hero-card__lead {
  display: none;
}

.intent-toggle__label {
  display: block;
  line-height: 1.25;
}

.intent-toggle__hint {
  display: none;
}

.hero-main {
  min-width: 0;
}

.hero-right .form-card {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 88vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}

.hero-left {
  padding: 80px 60px 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-light);
  color: #92400e;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--blue-accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1;
}

.stat-num sup {
  font-size: 18px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.hero-right {
  padding: 80px 0 80px 0;
}

.form-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-brand-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-accent-bright), var(--blue-accent), #60a5fa);
}

.form-header {
  margin-bottom: 24px;
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.3;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  background: #fff;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-select-wrapper {
  position: relative;
}

.form-select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 12px;
  pointer-events: none;
}

.form-select {
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: #fff;
}

.btn-primary {
  width: 100%;
  padding: 16px 22px;
  margin-top: 10px;
  border: none;
  border-radius: 9999px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-accent-bright) 0%, var(--blue-accent) 50%, #1d4ed8 100%);
  box-shadow: var(--shadow-brand);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.4);
  filter: brightness(1.04);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary:disabled {
  cursor: default;
  opacity: 0.95;
}

.btn-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn-primary:hover:not(:disabled) .btn-arrow {
  transform: translateX(4px);
}

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.form-trust svg {
  flex-shrink: 0;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--blue-accent);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ── Bio Jennie-Lee — split pleine largeur ── */
.bio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 720px);
  background: var(--cream);
}

.bio-split__text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 72px clamp(24px, 5vw, 64px);
  background: var(--cream);
}

.bio-split__inner {
  width: 100%;
  max-width: 480px;
}

.bio-split__photo {
  min-height: 420px;
  overflow: hidden;
}

.bio-split__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.bio-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-accent);
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.bio-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
}

.bio-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
}

.bio-highlights li {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-mid);
  background: var(--blue-xlight);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 9999px;
}

.bio-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-accent-bright) 0%, var(--blue-accent) 55%, #1d4ed8 100%);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bio-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.4);
  filter: brightness(1.04);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}

.how-left .section-title {
  margin-bottom: 12px;
}

.how-left .lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child {
  border-bottom: none;
}

.step-num-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--blue-mid);
  background: var(--warm-white);
}

.step-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  font-weight: 300;
}

.how-right {
  background: linear-gradient(160deg, var(--blue-deep) 0%, #152a52 100%);
  border-radius: 20px;
  padding: 48px 40px;
  color: #fff;
  box-shadow: var(--shadow-brand-lg);
}

.how-right-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 28px;
  color: #e8eef8;
}

.how-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.how-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  color: #93c5fd;
}

.how-feature-text {
  font-size: 14px;
  color: #a8bdd4;
  line-height: 1.55;
  font-weight: 300;
}

.how-feature-text strong {
  color: #e8eef8;
  font-weight: 500;
}

.testimonials-bg {
  background: var(--blue-xlight);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Témoignages style « colonnes animées » (équivalent React / motion) ── */
.ts-marquee-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.ts-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  animation: fadeUp 0.75s ease 0.05s both;
}

.ts-pill {
  display: inline-block;
  border: 1px solid var(--border-mid);
  padding: 5px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--warm-white);
}

.ts-intro-title {
  margin-top: 22px;
  text-align: center;
}

.ts-intro-lead {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
  opacity: 0.88;
}

.ts-intro-lead strong {
  color: var(--blue-deep);
  font-weight: 600;
}

.ts-columns-viewport {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.ts-column {
  flex: 1 1 0;
  min-width: 0;
  max-width: 20rem;
  overflow: hidden;
}

.ts-column--md {
  display: none;
}

.ts-column--lg {
  display: none;
}

@media (min-width: 768px) {
  .ts-column--md {
    display: block;
  }
}

@media (min-width: 1024px) {
  .ts-column--lg {
    display: block;
  }
}

@keyframes ts-col-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.ts-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  width: 100%;
  will-change: transform;
  animation: ts-col-scroll linear infinite;
}

.ts-track--d15 {
  animation-duration: 15s;
}

.ts-track--d17 {
  animation-duration: 17s;
}

.ts-track--d19 {
  animation-duration: 19s;
}

@media (prefers-reduced-motion: reduce) {
  .ts-track {
    animation: none !important;
    transform: none !important;
  }
}

.ts-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 22px;
  width: 100%;
  max-width: 20rem;
  box-shadow: 0 12px 40px -12px rgba(37, 99, 235, 0.18);
}

.ts-card .testi-stars {
  margin-bottom: 14px;
}

.ts-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-primary);
  font-weight: 400;
  font-style: italic;
}

.ts-card-person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 20px;
}

.ts-person-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}

.ts-person-role {
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-muted);
  margin-top: 0;
}

.testi-stars {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
}

.star {
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-xlight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.why-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.why-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.cta-section {
  background: linear-gradient(180deg, var(--blue-deep) 0%, #0a1628 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.cta-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-accent-bright);
  margin-bottom: 20px;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  color: #93c5fd;
}

.cta-sub {
  font-size: 16px;
  color: #a8bdd4;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 36px;
}

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 40px;
  border-radius: 9999px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--blue-accent-bright) 0%, var(--blue-accent) 55%, #1d4ed8 100%);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-cta-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.55);
  filter: brightness(1.05);
}

.btn-cta-big:active {
  transform: translateY(-1px);
}

.cta-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 14px;
}

.trust-bar {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--blue-accent);
  flex-shrink: 0;
}

footer {
  background: var(--blue-deep);
  color: #64748b;
  text-align: center;
  padding: 24px 40px;
  font-size: 13px;
}

footer a {
  color: #93c5fd;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left > * {
  animation: fadeUp 0.65s ease both;
}

.hero-left > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-left > *:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-left > *:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-left > *:nth-child(4) {
  animation-delay: 0.38s;
}

.form-card {
  animation: fadeUp 0.65s ease 0.2s both;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 440px;
}

.rating-num {
  font-size: 36px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: var(--blue-deep);
}

.rating-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.rating-caption {
  font-size: 13px;
  color: var(--text-secondary);
}

.how-quote-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.how-quote-footer div {
  font-size: 13px;
  color: #64748b;
  font-style: italic;
  line-height: 1.6;
}

.hero-surface {
  background: var(--cream);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0;
    min-height: 0;
  }

  .hero-surface {
    background: var(--cream);
  }

  .hero-left {
    padding: 20px 20px 28px;
  }

  /* Bloc choix Acheter / Vendre — hero mobile */
  .intent-hero-card {
    margin-bottom: 24px;
    padding: 22px 18px 18px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 16px 48px -20px rgba(15, 23, 42, 0.12);
  }

  .intent-hero-card .hero-badge {
    margin-bottom: 14px;
  }

  .intent-hero-card__lead {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-deep);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    line-height: 1.35;
  }

  .intent-toggle {
    flex-direction: row;
    gap: 10px;
    max-width: none;
    margin-bottom: 0;
  }

  .intent-toggle__btn {
    flex: 1;
    width: auto;
    min-height: 76px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    border-radius: 14px;
  }

  .intent-toggle__hint {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
    opacity: 0.9;
  }

  .intent-toggle__btn:not(.is-active) .intent-toggle__hint {
    color: var(--text-muted);
  }

  .intent-toggle__btn.is-active .intent-toggle__hint {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-main {
    padding-top: 4px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 16px;
    max-width: none;
    margin-bottom: 24px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 12px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    border-top: none;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    text-align: center;
    padding: 4px 2px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.35;
    margin-top: 6px;
  }

  .hero-right {
    padding: 0 20px 48px;
  }

  .hero-right .form-card {
    border-radius: 20px;
  }

  nav {
    padding: 14px 20px;
  }

  .nav__brand {
    gap: 10px;
  }

  .nav__logo {
    max-height: 32px;
  }

  .nav__logo-sep {
    height: 24px;
  }

  .nav__actions {
    gap: 8px;
  }

  .lang-switch__btn {
    min-width: 38px;
    padding: 6px 10px;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 13px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ts-columns-viewport {
    max-height: 560px;
    gap: 16px;
  }

  .ts-card {
    padding: 22px 18px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  nav {
    padding: 16px 24px;
  }

  .section {
    padding: 60px 24px;
  }

  .bio-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bio-split__text {
    justify-content: center;
    padding: 56px 24px 40px;
  }

  .bio-split__inner {
    max-width: none;
  }

  .bio-split__photo {
    min-height: 420px;
    max-height: 520px;
  }

  .bio-title {
    font-size: 28px;
  }

  .bio-highlights {
    margin-bottom: 24px;
  }

  .trust-bar {
    padding: 20px 24px;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .hero-left {
    padding: 16px 16px 24px;
  }

  .intent-hero-card {
    padding: 20px 16px 16px;
    border-radius: 18px;
  }

  .intent-toggle {
    flex-direction: column;
    gap: 10px;
  }

  .intent-toggle__btn {
    width: 100%;
    min-height: 64px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
  }

  .intent-toggle__btn::after {
    content: "→";
    font-size: 18px;
    opacity: 0.5;
    flex-shrink: 0;
    margin-left: 12px;
  }

  .intent-toggle__btn.is-active::after {
    opacity: 1;
  }

  .intent-toggle__hint {
    margin-top: 2px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-stats {
    gap: 6px;
    padding: 14px 10px;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-right {
    padding: 0 16px 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 28px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-field-error {
  margin: 6px 0 0;
  font-size: 12px;
  color: #b91c1c;
  min-height: 1em;
}

.form-lang {
  border: 0;
  margin: 0;
  padding: 0;
}

.form-lang__options {
  display: flex;
  gap: 10px;
}

.form-lang__option {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.form-lang__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-lang__option span {
  display: block;
  text-align: center;
  padding: 12px 14px;
  border: 2px solid var(--border-mid);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--warm-white);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.form-lang__option input:checked + span {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-accent-bright) 0%, var(--blue-accent) 55%, #1d4ed8 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.form-lang__option input:focus-visible + span {
  outline: 2px solid var(--blue-accent);
  outline-offset: 2px;
}

.form-banner-error {
  margin: 0 0 16px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 10px;
}

.form-banner-error[hidden] {
  display: none !important;
}

.form-input.is-invalid,
.form-select.is-invalid {
  border-color: #b91c1c !important;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.form-lang.is-invalid .form-lang__option span {
  border-color: #b91c1c;
}

.form-card--invalid {
  animation: formShake 0.45s ease;
}

@keyframes formShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-4px);
  }
  40%,
  80% {
    transform: translateX(4px);
  }
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.thanks-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 64px;
}

.thanks-page__card {
  width: 100%;
  max-width: 520px;
  padding: 48px 36px 40px;
  text-align: center;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-brand-lg);
}

.thanks-page__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.thanks-page__title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--blue-deep);
  margin: 0 0 16px;
  line-height: 1.15;
}

.thanks-page__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 20px;
}

.thanks-page__phone {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 0 28px;
}

.thanks-page__phone a {
  color: var(--blue-accent);
  font-weight: 600;
  text-decoration: none;
}

.thanks-page__back {
  width: 100%;
  justify-content: center;
}

.thanks-page footer {
  padding: 24px 20px 32px;
  text-align: center;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.45);
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal__box {
  width: 100%;
  max-width: 380px;
  padding: 32px 28px;
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 24px 64px -24px rgba(15, 23, 42, 0.25);
}

.lead-modal__title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--blue-deep);
  margin: 0 0 12px;
}

.lead-modal__sub {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 24px;
}

.lead-modal__close {
  width: 100%;
  justify-content: center;
}
