:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f3;
  --bg-cream: #f8f3ec;
  --text: #17283a;
  --text-soft: #425263;
  --muted: #6b7480;
  --primary: #c99a55;
  --primary-dark: #a77b3d;
  --navy: #0f2743;
  --navy-deep: #091b31;
  --navy-soft: #19385a;
  --white: #ffffff;
  --border: rgba(23, 40, 58, 0.1);
  --border-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 22px 45px rgba(9, 27, 49, 0.08);
  --shadow-medium: 0 28px 65px rgba(9, 27, 49, 0.16);
  --shadow-strong: 0 34px 90px rgba(5, 16, 29, 0.25);
  --container: 1240px;
  --radius: 24px;
  --radius-small: 18px;
  --success-bg: #edf9f0;
  --success-border: #b9e3c2;
  --success-text: #206b35;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-main { min-height: 60vh; }

/* Header */
.site-header {
  background: rgba(10, 27, 47, 0.95);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 68px;
}

.site-logo {
  color: var(--white);
  text-decoration: none;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Menu principal (wp_nav_menu output) --- */
.main-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-menu > .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 10px 16px;
  border-radius: 12px;
  transition: 0.18s ease;
  white-space: nowrap;
}

.main-menu > .menu-item > a:hover,
.main-menu > .menu-item-has-children.is-open > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Chevron on parent items */
.main-menu > .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
  margin-left: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-menu > .menu-item-has-children.is-open > a::after {
  transform: rotate(-135deg) translateY(-2px);
  opacity: 0.9;
}

/* --- Dropdown (.sub-menu from wp_nav_menu) --- */
.main-menu > .menu-item-has-children {
  position: relative;
}

.main-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 8px;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
  background: rgba(12, 30, 52, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  min-width: 260px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Sub-menu links */
.main-menu .sub-menu .menu-item a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.91rem;
  transition: 0.18s ease;
  line-height: 1.35;
}

.main-menu .sub-menu .menu-item a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

/* Gold left accent on hover */
.main-menu .sub-menu .menu-item a:hover::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--primary);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Separator between sub-menu items */
.main-menu .sub-menu .menu-item + .menu-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Fallback .main-nav a */
.main-nav a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.main-nav a:hover { color: #ffffff; }

/* Typography */
.hero-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-lined {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
}

.section-heading h2,
.section h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--navy-deep);
}

.section-heading p,
.section > .container > p,
.section .container > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

/* Layout */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card,
.post-card {
  background: var(--white);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: var(--radius-small);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.22s ease;
  cursor: pointer;
  border: none;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(201, 154, 85, 0.24);
}

.btn-primary:hover {
  background: #d7ab69;
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, #dfb775 0%, #c99954 100%);
  color: #14283b;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.btn-primary-dark:hover { background: #173556; }

.btn-secondary-dark {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(23, 40, 58, 0.14);
}

.btn-secondary-dark:hover { background: #f1eadf; }

.btn-secondary-strong { min-width: 220px; }

/* Hero */
.hero,
.tool-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-home-premium {
  min-height: 760px;
  padding: 84px 0 140px;
  background: linear-gradient(135deg, #19385a 0%, #0a1f36 100%);
}

.hero-media,
.hero-overlay,
.hero-pattern {
  position: absolute;
  inset: 0;
}

.hero-media { z-index: 0; }

.hero-media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 213, 155, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(7, 18, 30, 0.22) 0%, rgba(7, 18, 30, 0.60) 100%);
}

.hero-pattern {
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 25, 43, 0) 70%, rgba(8, 25, 43, 0.42) 100%);
}

.hero-home-shell {
  position: relative;
  z-index: 3;
}

.hero-home-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 420px);
  gap: 36px;
  align-items: start;
}

.hero-home-copy {
  max-width: 760px;
  margin-top: -6px;
}

.hero h1,
.tool-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero-text {
  max-width: 700px;
  margin: 0;
  opacity: 0.96;
}

.hero-text-large { font-size: 1.16rem; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions-home-3 { max-width: 760px; }

.hero-actions-home-3 .btn { min-width: 190px; }

/* Hero dashboard */
.hero-dashboard-card {
  background: linear-gradient(180deg, rgba(10, 34, 60, 0.97) 0%, rgba(7, 24, 43, 0.98) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
  padding: 18px 22px 22px;
  backdrop-filter: blur(10px);
}

.hero-dashboard-map {
  position: relative;
  min-height: 148px;
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 74, 118, 0.95) 0%, rgba(10, 31, 54, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dashboard-map-img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  display: block;
}

.hero-dashboard-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.dashboard-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.dashboard-zone {
  font-size: 1.2rem;
  line-height: 1.05;
}

.hero-dashboard-stats {
  display: grid;
  gap: 0;
}

.dashboard-stat-item {
  padding: 12px 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-stat-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dashboard-stat-item span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 4px;
}

.dashboard-stat-item strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.18;
}

.dashboard-stat-zones strong {
  font-size: 0.94rem;
  line-height: 1.38;
}

/* Services */
.section-services-home {
  position: relative;
  z-index: 6;
  padding-top: 88px;
  background: var(--bg);
}

.service-grid {
  display: grid;
  gap: 24px;
}

.service-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 22px;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.card-theme-blue,
.card-theme-dark,
.card-theme-sand {
  background: #0f2743;
}

.service-feature-media {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.service-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-feature-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 20, 35, 0.88), rgba(6, 20, 35, 0.10));
}

.service-feature-content {
  position: relative;
  z-index: 2;
  padding: 208px 28px 28px;
}

.service-feature-content h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-feature-content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0c27a;
  text-decoration: none;
  font-weight: 700;
}

.service-link::after { content: "→"; }

/* Market intro */
.section-market-intro {
  background: linear-gradient(180deg, #f8f3ec 0%, #f3ede5 100%);
}

.market-intro-box {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-soft);
}

.market-intro-copy p:last-child {
  margin: 0;
  color: var(--text-soft);
}

.market-intro-points {
  display: grid;
  gap: 14px;
}

.market-point-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ec 100%);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 18px;
  padding: 20px 22px;
}

.market-point-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.05rem;
}

.market-point-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Quartiers */
.section-quartiers-premium {
  background: var(--bg-cream);
}

.quartiers-grid-premium {
  margin-top: 28px;
}

.district-card-premium {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.district-card-media-wrap,
.district-card-overlay {
  position: absolute;
  inset: 0;
}

.district-card-media-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #35597b 0%, #11263f 100%);
}

.district-card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.district-card-overlay {
  background: linear-gradient(to top, rgba(6, 20, 35, 0.84), rgba(6, 20, 35, 0.08));
}

.district-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px;
}

.district-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.district-card-content h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.district-card-content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
}

.card-inline-link {
  text-decoration: none;
  font-weight: 700;
}

.card-inline-link-light {
  color: #f0c27a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-inline-link-light::after { content: "→"; }

/* Guides */
.section-guides-premium {
  background: #efe5d7;
}

.guides-grid-premium {
  margin-top: 28px;
}

.guide-card-premium {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.guide-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(201, 154, 85, 0.12);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 16px;
}

.guide-card-premium h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.guide-card-premium p {
  margin: 0 0 22px;
  color: var(--text-soft);
}

.guide-card-premium .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Lead banner */
.section-lead-banner {
  position: relative;
  background: #091b31;
  color: var(--white);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.section-lead-banner-media {
  position: absolute;
  inset: 0;
}

.lead-banner-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lead-banner-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 43, 0.86) 0%, rgba(8, 25, 43, 0.36) 100%);
}

.lead-banner-box {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 0;
}

.lead-banner-emblem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  margin: 0 auto 22px;
  background: rgba(223, 183, 117, 0.12);
  border: 1px solid rgba(223, 183, 117, 0.3);
}

.lead-banner-emblem span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, #dfb775 0%, #c99954 100%);
}

.lead-banner-box h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.lead-banner-box p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
  margin: 0 auto 26px;
}

/* Tools preview */
.section-tools-preview {
  background: linear-gradient(180deg, #f8f3ec 0%, #f3ede4 100%);
}

.tools-preview-shell {
  position: relative;
}

.tools-preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.tools-preview-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tools-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.tool-mini-card {
  background: #ffffff;
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
}

.tool-mini-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.22;
}

/* ── Icônes SVG inline colorées ── */
.tool-mini-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  border: 1px solid transparent;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-mini-icon-colored {
  /* couleurs via style inline — background et border-color */
}

.tool-mini-card-link:hover .tool-mini-icon-svg {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.tool-mini-icon-hero {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 0;
}

/* ── Grille 1 + 3 + 3 ── */
.tools-mini-grid-1-3-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

/* Carte héro : pleine largeur */
.tool-mini-card-hero {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-color: rgba(201, 154, 85, 0.22) !important;
  background: linear-gradient(135deg, #fffdf8 0%, #faf4e8 100%) !important;
}

.tool-mini-card-hero:hover {
  border-color: rgba(201, 154, 85, 0.4) !important;
}

.tool-mini-hero-text {
  flex: 1;
}

.tool-mini-hero-text h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.tool-mini-hero-text p {
  margin: 0;
  font-size: 0.88rem;
  color: #5c6e7e;
  line-height: 1.55;
}

.tool-mini-hero-arrow {
  font-size: 1.4rem;
  color: #c99a55;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tool-mini-card-hero:hover .tool-mini-hero-arrow {
  transform: translateX(4px);
}


.tools-preview-visual {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, #cfb082 0%, #9b6e33 100%);
}

.tools-preview-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  z-index: 1;
}

.tools-preview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 154, 85, 0.14), rgba(9, 27, 49, 0.06));
  z-index: 2;
  pointer-events: none;
}

/* Lead form */
.section-lead-form {
  background: #f2e9de;
}

.section-lead-form-premium {
  padding-top: 68px;
}

.lead-box {
  background: var(--white);
  padding: 56px 42px;
  border-radius: 28px;
  box-shadow: var(--shadow-medium);
  max-width: 1020px;
  margin: 0 auto;
}

.lead-box-premium {
  border: 1px solid rgba(23, 40, 58, 0.08);
}

.lead-box-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.lead-box h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.lead-box > p,
.lead-box-header p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-error,
.lead-success {
  border-radius: 14px;
  padding: 15px 18px;
  margin-bottom: 26px;
}

.lead-error {
  background: #fff3cd;
  color: #7a5c00;
  border: 1px solid #f0d98c;
}

.lead-success {
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid var(--success-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.lead-success::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--success-text);
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-step {
  display: none;
  text-align: left;
}

.lead-step.is-active {
  display: block;
}

.lead-step .grid-2,
.lead-step .grid-3 {
  margin-bottom: 16px;
}

.lead-form select,
.lead-form input,
.lead-form textarea,
.estimation-tool-form .form-field input,
.estimation-tool-form .form-field select,
.prix-m2-tool-form .form-field input,
.prix-m2-tool-form .form-field select,
.simulator-form select,
.simulator-form input,
.budget-tool-form select,
.budget-tool-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 40, 58, 0.12);
  background: #fff;
  font-size: 15px;
  line-height: 1.2;
  color: var(--text);
  font-family: inherit;
}

.lead-form textarea {
  min-height: 144px;
  padding: 16px;
  resize: vertical;
}

.lead-summary {
  background: linear-gradient(180deg, #faf7f2 0%, #f5efe7 100%);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.lead-summary p {
  margin: 0 0 10px;
  color: var(--text);
}

.lead-summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lead-summary li {
  margin-bottom: 10px;
  color: var(--muted);
}

.lead-summary li:last-child {
  margin-bottom: 0;
}

.lead-summary li span { color: var(--text); }

.lead-step-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.lead-step-actions-between {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.site-footer {
  padding: 42px 0;
  background: var(--navy-deep);
  color: var(--white);
  margin-top: 0;
}

/* Existing tool pages compatibility */
.simulator-shell,
.budget-tool-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.simulator-box,
.budget-tool-box {
  background: var(--white);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.simulator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.simulator-results-grid,
.budget-summary-grid,
.budget-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.simulator-insights {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 18px;
}

.budget-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.budget-zones-grid,
.prix-m2-tool-form .prix-m2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.form-field small,
.estimation-tool-form .form-field small,
.prix-m2-tool-form .form-field small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.result-card,
.insight-card,
.zone-card,
.prix-m2-table-card,
.simulator-summary-text,
.budget-summary-text {
  background: #ffffff;
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 18px;
  padding: 22px;
}

.result-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.result-value {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--navy);
}

.result-value-text {
  font-size: 1.35rem;
  line-height: 1.3;
}

.result-detail {
  color: var(--muted);
  font-size: 0.86rem;
}

.zone-card .zone-tag,
.zone-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 154, 85, 0.12);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.prix-m2-table {
  width: 100%;
  border-collapse: collapse;
}

.prix-m2-table th,
.prix-m2-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(23, 40, 58, 0.08);
  text-align: left;
}

.prix-m2-table th { font-weight: 700; }

.is-hidden { display: none !important; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 1280px) {
  .hero-home-premium {
    min-height: auto;
    padding: 78px 0 110px;
  }

  .hero-home-main {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 28px;
  }

  .hero h1,
  .tool-hero h1 {
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  }
}

@media (max-width: 1180px) {
  .hero-home-main,
  .market-intro-box,
  .tools-preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-dashboard-card {
    max-width: 480px;
  }

  .service-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tools-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-preview-visual {
    width: 100%;
    height: auto;
    min-height: unset;
  }

  .tools-preview-visual-image {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: unset;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .grid-3,
  .grid-2,
  .service-grid-3,
  .tools-mini-grid,
  .section-heading-split,
  .simulator-grid,
  .simulator-results-grid,
  .simulator-insights,
  .budget-tool-grid,
  .budget-summary-grid,
  .budget-zones-grid,
  .budget-bottom-grid,
  .prix-m2-tool-form .prix-m2-grid {
    grid-template-columns: 1fr;
  }

  .hero-home-premium {
    min-height: auto;
    padding: 82px 0 96px;
  }

  .hero h1,
  .tool-hero h1 {
    font-size: 2.9rem;
  }

  .hero-dashboard-card,
  .market-intro-box,
  .lead-box,
  .simulator-box,
  .budget-tool-box,
  .guide-card-premium,
  .tool-mini-card {
    padding: 24px;
  }

  .lead-step-actions-between {
    flex-direction: column;
  }

  .lead-step-actions-between .btn,
  .hero-actions .btn,
  .section-cta-row .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-actions {
    width: 100%;
  }

  .district-card-premium,
  .service-feature-card {
    min-height: 340px;
  }

  .service-feature-content {
    padding: 220px 24px 24px;
  }

  .lead-success {
    justify-content: flex-start;
    text-align: left;
  }
}


/* =========================================================
   NAV TOGGLE — MENU MOBILE
   ========================================================= */

.nav-toggle {
  display: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 27, 47, 0.98);
    backdrop-filter: blur(16px);
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-menu {
    flex-direction: column;
    gap: 0;
  }

  .main-menu > .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-menu > .menu-item > a {
    width: 100%;
    padding: 14px 4px;
    border-radius: 0;
    font-size: 1.02rem;
  }

  /* Chevron bigger on mobile */
  .main-menu > .menu-item-has-children > a::after {
    width: 9px;
    height: 9px;
  }

  /* Sub-menu mobile: inline accordion, no absolute */
  .main-menu .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    transition: none;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 12px;
    padding: 6px 0 10px;
    min-width: 0;
    box-shadow: none;
    margin-bottom: 6px;
  }

  .menu-item-has-children.is-open > .sub-menu {
    display: block;
    transform: none;
  }

  .main-menu .sub-menu .menu-item a {
    padding: 11px 16px;
    font-size: 0.95rem;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }
}

/* =========================================================
   TOOL HERO — NAVY STYLE (TOUTES LES PAGES OUTILS)
   ========================================================= */

.tool-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #19385a 0%, #0a1f36 100%);
  color: #ffffff;
  padding: 88px 0 88px;
}

.tool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 213, 155, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(7, 18, 30, 0.14) 0%, rgba(7, 18, 30, 0.28) 100%);
  pointer-events: none;
}

.tool-hero > .container {
  position: relative;
  z-index: 1;
}

.tool-hero .hero-kicker,
.tool-hero .section-kicker {
  color: rgba(255,255,255,0.72);
  opacity: 1;
}

.tool-hero h1 {
  color: #ffffff;
  max-width: 820px;
}

.tool-hero .hero-text,
.tool-hero p {
  color: rgba(255,255,255,0.86);
  max-width: 760px;
}

/* =========================================================
   OUTILS — ESPACEMENT & RESPIRATION
   ========================================================= */

.simulator-shell,
.budget-tool-shell,
.prix-m2-tool-shell,
.estimation-tool-shell {
  margin-top: 28px;
}

.simulator-box,
.budget-tool-box,
.prix-m2-tool-box,
.estimation-tool-box {
  padding: 40px;
  border-radius: 28px;
}

.simulator-form,
.budget-tool-form,
.prix-m2-tool-form,
.estimation-tool-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.simulator-grid,
.budget-tool-grid,
.prix-m2-tool-form .prix-m2-grid,
.estimation-tool-form .grid-2,
.estimation-tool-form .grid-3 {
  gap: 24px;
}

.form-field {
  gap: 10px;
}

.form-field label {
  margin-bottom: 2px;
}

.lead-form select,
.lead-form input,
.lead-form textarea,
.estimation-tool-form .form-field input,
.estimation-tool-form .form-field select,
.prix-m2-tool-form .form-field input,
.prix-m2-tool-form .form-field select,
.simulator-form select,
.simulator-form input,
.budget-tool-form select,
.budget-tool-form input {
  min-height: 60px;
}

.simulator-form .btn,
.budget-tool-form .btn,
.prix-m2-tool-form .btn,
.estimation-tool-form .btn {
  margin-top: 4px;
}

.simulator-results-grid,
.budget-summary-grid,
.budget-bottom-grid,
.simulator-insights,
.budget-zones-grid {
  gap: 22px;
  margin-top: 26px;
}

.result-card,
.insight-card,
.zone-card,
.prix-m2-table-card,
.simulator-summary-text,
.budget-summary-text {
  padding: 26px;
}

.result-card + .result-card,
.insight-card + .insight-card,
.zone-card + .zone-card {
  margin-top: 0;
}

.prix-m2-table th,
.prix-m2-table td {
  padding: 16px 14px;
}

.section-heading {
  margin-bottom: 42px;
}

/* Boutons d'action outils */
.tool-actions,
.simulator-actions,
.budget-tool-actions,
.prix-m2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

/* Bouton réinitialiser — gold visible */
.btn-reset-gold {
  background: linear-gradient(180deg, #dfb775 0%, #c99954 100%);
  color: #14283b;
  border: none;
  box-shadow: 0 10px 22px rgba(201, 154, 85, 0.18);
}

.btn-reset-gold:hover {
  background: linear-gradient(180deg, #e7c283 0%, #d3a763 100%);
  transform: translateY(-1px);
}


.tool-form-divider {
  height: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(23, 40, 58, 0.08);
}

.tool-reset-footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding-top: 8px;
}

.tool-reset-footer .btn {
  min-width: 230px;
}

/* Mobile outils */
@media (max-width: 900px) {
  .simulator-box,
  .budget-tool-box,
  .prix-m2-tool-box,
  .estimation-tool-box {
    padding: 26px;
  }

  .simulator-grid,
  .budget-tool-grid,
  .prix-m2-tool-form .prix-m2-grid,
  .estimation-tool-form .grid-2,
  .estimation-tool-form .grid-3,
  .simulator-results-grid,
  .budget-summary-grid,
  .budget-bottom-grid,
  .simulator-insights,
  .budget-zones-grid {
    gap: 18px;
  }

  .tool-hero {
    padding: 74px 0 64px;
  }
}

/* =========================================================
   TABS SIMULATEUR — PREMIUM
   ========================================================= */

.simulator-topbar {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.simulator-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f3ede4;
  border: 1px solid rgba(23, 40, 58, 0.08);
  margin: 0 auto;
}

.simulator-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy-deep);
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: none;
}

.simulator-tab:hover {
  background: rgba(201, 154, 85, 0.08);
}

.simulator-tab.is-active {
  background: linear-gradient(180deg, #dfb775 0%, #c99954 100%);
  color: #14283b;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(201, 154, 85, 0.22);
}

/* Tabs in .simulator-box context */
.simulator-box .tabs,
.simulator-box .tab-group,
.simulator-box .duration-tabs,
.simulator-box .simulator-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #f3ede4;
  border: 1px solid rgba(23, 40, 58, 0.08);
}

.simulator-box button,
.simulator-box .tab-btn,
.simulator-box .simulator-tab,
.simulator-box .duration-tab {
  appearance: none;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy-deep);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: none;
}

.simulator-box button:hover,
.simulator-box .tab-btn:hover,
.simulator-box .simulator-tab:hover,
.simulator-box .duration-tab:hover {
  background: rgba(201, 154, 85, 0.08);
}

.simulator-box button.is-active,
.simulator-box button[aria-selected="true"],
.simulator-box button.active,
.simulator-box .tab-btn.is-active,
.simulator-box .tab-btn.active,
.simulator-box .simulator-tab.is-active,
.simulator-box .simulator-tab.active,
.simulator-box .duration-tab.is-active,
.simulator-box .duration-tab.active {
  background: linear-gradient(180deg, #dfb775 0%, #c99954 100%);
  color: #14283b;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(201, 154, 85, 0.22);
}

.simulator-box {
  margin-top: 34px;
  padding: 36px 40px 40px;
  border-radius: 28px;
  border: 1px solid rgba(23, 40, 58, 0.08);
  box-shadow: var(--shadow-soft);
}

.simulator-grid {
  gap: 22px;
}

.simulator-form select,
.simulator-form input {
  min-height: 58px;
}

.result-card,
.insight-card,
.simulator-summary-text {
  padding: 24px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .simulator-box {
    padding: 24px;
  }

  .simulator-topbar {
    justify-content: flex-start;
  }

  .simulator-tabs,
  .simulator-box .tabs,
  .simulator-box .tab-group,
  .simulator-box .duration-tabs,
  .simulator-box .simulator-tabs {
    flex-wrap: wrap;
  }
}

/* =========================================================
   HERO SIMULATEUR SPÉCIFIQUE
   ========================================================= */

.hero.hero-simulator {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #19385a 0%, #0a1f36 100%);
  color: #ffffff;
  padding: 88px 0 110px;
}

.hero.hero-simulator::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 213, 155, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(7, 18, 30, 0.14) 0%, rgba(7, 18, 30, 0.28) 100%);
  pointer-events: none;
}

.hero.hero-simulator > .container {
  position: relative;
  z-index: 1;
}

.hero.hero-simulator .hero-kicker {
  color: rgba(255,255,255,0.72);
  opacity: 1;
}

.hero.hero-simulator h1 {
  color: #ffffff;
  max-width: 820px;
}

.hero.hero-simulator .hero-text {
  color: rgba(255,255,255,0.86);
  max-width: 760px;
}

.hero.hero-simulator .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero.hero-simulator .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .hero.hero-simulator {
    padding: 74px 0 84px;
  }
}

/* =========================================================
   CTA SIMULATEUR
   ========================================================= */

.simulator-reading .lead-step-actions {
  justify-content: center;
  margin-top: 30px;
}

.simulator-reading .lead-step-actions .btn,
.simulator-reading [data-open-sim-lead] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  min-width: 460px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #dfb775 0%, #c99954 100%);
  color: #14283b !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(201, 154, 85, 0.22);
  transition: 0.22s ease;
}

.simulator-reading .lead-step-actions .btn:hover,
.simulator-reading [data-open-sim-lead]:hover {
  background: linear-gradient(180deg, #e7c283 0%, #d3a763 100%);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .simulator-reading .lead-step-actions .btn,
  .simulator-reading [data-open-sim-lead] {
    min-width: 100%;
    width: 100%;
  }
}

/* =========================================================
   SIMULATOR SUMMARY TEXT
   ========================================================= */

.simulator-summary-text {
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #eef4fb 0%, #e6eef8 100%);
  border: 1px solid rgba(20, 40, 59, 0.10);
  box-shadow: 0 10px 24px rgba(23, 40, 58, 0.05);
}

.simulator-summary-text p {
  margin: 0;
  color: #14283b;
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 500;
}

/* =========================================================
   SCORE DE COHÉRENCE
   ========================================================= */

.coherence-score-card {
  margin-top: 26px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef4fb 0%, #e4edf8 100%);
  border: 1px solid rgba(47, 95, 143, 0.14);
  box-shadow: 0 12px 28px rgba(23, 40, 58, 0.06);
}

.coherence-score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.coherence-score-kicker {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20, 40, 59, 0.64);
}

.coherence-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.coherence-score-text {
  margin: 0;
  color: #14283b;
  font-size: 1rem;
  line-height: 1.75;
}

.coherence-score-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.coherence-score-signal {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 40, 59, 0.06);
}

.coherence-score-signal .signal-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(20, 40, 59, 0.62);
}

.coherence-score-signal strong {
  font-size: 1rem;
  color: #14283b;
}

/* États cohérence */
.coherence-score-card.is-waiting .coherence-score-badge {
  background: rgba(20, 40, 59, 0.08);
  color: #14283b;
}

.coherence-score-card.is-fragile {
  background: linear-gradient(180deg, #fbefec 0%, #f7e3de 100%);
  border-color: rgba(164, 68, 43, 0.14);
}

.coherence-score-card.is-fragile .coherence-score-badge {
  background: #c76d58;
  color: #fff;
}

.coherence-score-card.is-watch {
  background: linear-gradient(180deg, #fbf4e6 0%, #f6ebd8 100%);
  border-color: rgba(184, 136, 53, 0.16);
}

.coherence-score-card.is-watch .coherence-score-badge {
  background: #d3a24d;
  color: #14283b;
}

.coherence-score-card.is-coherent {
  background: linear-gradient(180deg, #e8f1fb 0%, #dde9f7 100%);
  border-color: rgba(47, 95, 143, 0.16);
}

.coherence-score-card.is-coherent .coherence-score-badge {
  background: #2f5f8f;
  color: #fff;
}

.coherence-score-card.is-strong {
  background: linear-gradient(180deg, #edf7f1 0%, #e2f0e8 100%);
  border-color: rgba(54, 115, 78, 0.14);
}

.coherence-score-card.is-strong .coherence-score-badge {
  background: #3e7f58;
  color: #fff;
}

@media (max-width: 900px) {
  .coherence-score-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .coherence-score-signals {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TOOL LEAD — Sections lead unifiées sur toutes les pages outils
   Formulaire masqué par défaut, révélé au clic
   ========================================================= */

.section-tool-lead {
  background: linear-gradient(180deg, #faf6ef 0%, #f4ead8 100%);
  border-top: 1px solid rgba(201, 154, 85, 0.14);
}

.tool-lead-shell {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tool-lead-intro {
  text-align: center;
}

.tool-lead-intro .section-kicker {
  color: #a77b3d;
}

.tool-lead-intro h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
  color: #091b31;
}

.tool-lead-intro > p {
  max-width: 640px;
  margin: 0 auto 32px;
  color: #425263;
  font-size: 1.04rem;
  line-height: 1.7;
}

/* Rangée de CTAs */
.tool-lead-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tool-lead-btn-open {
  min-width: 220px;
}

.tool-lead-btn-prefill {
  min-width: 220px;
  border-color: rgba(201, 154, 85, 0.28) !important;
  color: #7a5b2d !important;
}

.tool-lead-btn-prefill:hover {
  background: rgba(201, 154, 85, 0.1) !important;
}

/* Lead box masquée */
.tool-lead-box {
  background: #fff;
  border: 1px solid rgba(201, 154, 85, 0.18);
  border-radius: 28px;
  padding: 48px 42px;
  box-shadow: 0 22px 50px rgba(9, 27, 49, 0.07);
}

.tool-lead-box--hidden {
  display: none;
}

.tool-lead-box.is-revealing {
  display: block;
  animation: toolLeadReveal 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes toolLeadReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Séparateur visuel entre intro et form quand ouvert */
.tool-lead-shell.is-open .tool-lead-intro {
  padding-bottom: 0;
}

.tool-lead-shell.is-open .tool-lead-cta-row {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ── Cohérence visuelle dorée sur les pages outils ─────── */

/* Hero des pages outils */
.tool-hero {
  background: linear-gradient(160deg, #0d2240 0%, #17355e 60%, #1c3d6a 100%);
  padding: 72px 0 80px;
}

.budget-tool-hero,
.estimation-tool-hero,
.prix-m2-tool-hero,
.hero-simulator {
  position: relative;
  overflow: hidden;
}

.budget-tool-hero::after,
.estimation-tool-hero::after,
.prix-m2-tool-hero::after,
.hero-simulator::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201, 154, 85, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Kicker doré sur les pages outils */
.tool-hero .hero-kicker,
.hero-simulator .hero-kicker,
.simulator-shell .section-kicker,
.budget-tool-shell .section-kicker {
  color: #c99a55;
  font-weight: 700;
}

/* Section alt des outils — teinte chaude */
.section-budget-tool-page,
.section-alt {
  background: linear-gradient(180deg, #f9f5ee 0%, #f4ede0 100%);
}

/* Focus doré cohérent sur les champs des outils */
.lead-form select:focus,
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(201, 154, 85, 0.65);
  box-shadow: 0 0 0 4px rgba(201, 154, 85, 0.1);
}

/* Budget zones head */
.budget-zones-head {
  margin-bottom: 22px;
}

.budget-zones-head h4 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #091b31;
}

.budget-zones-head > p {
  margin: 0;
  color: #425263;
  font-size: 1rem;
}

/* Lead box dans le tool-lead — h2 cohérent */
.tool-lead-box h2 {
  margin-top: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

@media (max-width: 900px) {
  .tool-lead-box {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .tool-lead-cta-row {
    flex-direction: column;
  }

  .tool-lead-btn-open,
  .tool-lead-btn-prefill {
    width: 100%;
    min-width: 0;
  }
}

/* ── Fix espacement CTA rows sous résultats outils ── */
.budget-cta-row {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.budget-cta-row .btn {
  min-width: 320px;
  min-height: 62px;
  font-size: 1.02rem;
}

/* =========================================================
   SEO CONTENT BLOCKS — sous les outils
   ========================================================= */

.section-seo-content {
  background: linear-gradient(180deg, #f9f5ee 0%, #f3ead9 100%);
  border-top: 1px solid rgba(201, 154, 85, 0.1);
  padding: 72px 0;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.seo-content-block h2 {
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #091b31;
  margin: 0 0 16px;
}

.seo-content-block p {
  color: #425263;
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 860px) {
  .seo-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================================================
   TAUX DE CHANGE EUR/MAD — affichage inline discret
   ========================================================= */

.currency-rate-inline {
  display: block;
  margin-top: 6px;
  font-size: 0.79rem;
  font-style: italic;
  color: #8a97a4;
  line-height: 1.4;
}

.currency-rate-inline:empty::before {
  content: "\00a0";
}

/* =========================================================
   TOOL MINI GRID — 3 colonnes + nouveaux icônes
   ========================================================= */

.tools-mini-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

.tool-mini-card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border: 1px solid rgba(23, 40, 58, 0.07);
  border-radius: 18px;
  padding: 20px 16px;
}

.tool-mini-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(9, 27, 49, 0.08);
  border-color: rgba(201, 154, 85, 0.24);
}

/* Icône frais d'acquisition : € dans un cadre */
/* Emblem SVG */
.lead-banner-emblem span { display: none; }
.lead-banner-emblem svg  { display: block; }

@media (max-width: 860px) {
  .tools-mini-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .tools-mini-grid-3col {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   PAGE OUTILS — Grille centralisée
   ========================================================= */

.outils-hero {
  background: linear-gradient(135deg, #0d2240 0%, #18355e 60%, #1c3d6a 100%);
  padding: 88px 0 108px;
  position: relative;
  overflow: hidden;
}

.outils-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(201, 154, 85, 0.12), transparent 28%);
  pointer-events: none;
}

.outils-hero > .container { position: relative; z-index: 1; }

.outils-hero .hero-kicker {
  display: block;
  color: rgba(201, 154, 85, 0.9);
  opacity: 1;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

.outils-hero h1 {
  color: #ffffff;
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.outils-hero .hero-text {
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 0;
}

.section-outils-page {
  background: linear-gradient(180deg, #f9f5ee 0%, #f3ead9 100%);
}

.outils-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.outil-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf6ef 100%);
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 26px;
  box-shadow: 0 12px 32px rgba(9, 27, 49, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.outil-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(9, 27, 49, 0.09);
  border-color: rgba(201, 154, 85, 0.26);
}

.outil-card-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.outil-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.outil-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
}

.outil-kicker {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a77b3d;
}

.outil-title {
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #091b31;
  margin: 0 0 12px;
}

.outil-desc {
  font-size: 0.97rem;
  color: #425263;
  line-height: 1.72;
  margin: 0 0 24px;
  flex: 1;
}

.outil-cta {
  align-self: flex-start;
  min-height: 52px;
  padding: 12px 24px;
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .outils-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .outils-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTER V2 — Design complet
   ========================================================= */

.site-footer-v2 {
  background: #061424;
  color: rgba(255, 255, 255, 0.78);
  padding: 0;
}

.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

/* Brand */
.footer-brand {}

.footer-logo {
  display: inline-block;
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-logo:hover { color: #c99a55; }

.footer-tagline {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 0;
  max-width: 300px;
}

/* Nav groups */
.footer-nav-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c99a55;
  margin: 0 0 16px;
}

.footer-nav-title-spaced {
  margin-top: 32px;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.93rem;
  line-height: 1.4;
  transition: color 0.18s ease;
}

.footer-nav-list a:hover {
  color: #c99a55;
}

/* Contact */
.footer-contact-text {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0 0 20px;
}

.footer-cta {
  min-height: 50px;
  padding: 12px 22px;
  font-size: 0.92rem;
  width: 100%;
  justify-content: center;
}

/* Bottom */
.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  line-height: 1.6;
}

.footer-seo-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 640px) {
  .footer-top { padding: 48px 0 36px; }
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-cta { width: auto; }
}

/* ── Market point cards avec icônes ── */
.market-point-card-icon {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.market-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(201, 154, 85, 0.1);
  border: 1px solid rgba(201, 154, 85, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
}

.market-point-card-icon strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
}

.market-point-card-icon span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Service kicker */
.service-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(201, 154, 85, 0.85);
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .tools-mini-grid-1-3-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tool-mini-card-hero {
    grid-column: 1 / -1;
  }
  .tool-mini-hero-text p { display: none; }
}

@media (max-width: 480px) {
  .tools-mini-grid-1-3-3 {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   TOOL CARDS RICH — Icônes colorées + grille 1+3+3
   ========================================================= */

.tools-mini-grid-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

/* Carte héro (1ère) : pleine largeur */
.tool-card-hero {
  grid-column: 1 / -1;
  flex-direction: row !important;
  align-items: center;
  gap: 20px;
  padding: 22px 24px !important;
}

.tool-card-hero .tool-icon-rich {
  width: 62px !important;
  height: 62px !important;
  border-radius: 18px !important;
  flex-shrink: 0;
  margin-bottom: 0 !important;
}

.tool-card-hero h3 {
  font-size: 1.12rem !important;
  margin-bottom: 6px;
}

.tool-card-desc {
  margin: 0;
  font-size: 0.88rem;
  color: #5c7080;
  line-height: 1.6;
}

/* Icône colorée */
.tool-icon-rich {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-mini-card-rich {
  display: flex;
  flex-direction: column;
  padding: 20px 18px !important;
  background: #ffffff !important;
  border: 1px solid rgba(23, 40, 58, 0.08) !important;
  border-radius: 18px !important;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 4px 16px rgba(9, 27, 49, 0.04);
}

.tool-mini-card-rich:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 27, 49, 0.08);
  border-color: rgba(201, 154, 85, 0.2) !important;
}

.tool-mini-card-rich:hover .tool-icon-rich {
  transform: scale(1.06);
}

.tool-mini-card-rich h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  color: #0f2743;
  font-weight: 700;
}

@media (max-width: 860px) {
  .tools-mini-grid-hero {
    grid-template-columns: repeat(2, 1fr);
  }
  .tool-card-hero {
    grid-column: 1 / -1;
    flex-direction: column !important;
    align-items: flex-start;
  }
  .tool-card-hero .tool-icon-rich {
    margin-bottom: 12px !important;
  }
}

@media (max-width: 480px) {
  .tools-mini-grid-hero {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PAGES CONTACT / PARTENAIRES / À PROPOS
   ========================================================= */

/* Heroes */
.contact-hero,
.partenaires-hero,
.apropos-hero {
  background: linear-gradient(135deg, #0d2240 0%, #18355e 60%, #1c3d6a 100%);
  padding: 88px 0 108px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before,
.partenaires-hero::before,
.apropos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(201, 154, 85, 0.12), transparent 28%);
  pointer-events: none;
}

.contact-hero > .container,
.partenaires-hero > .container,
.apropos-hero > .container { position: relative; z-index: 1; }

.contact-hero .hero-kicker,
.partenaires-hero .hero-kicker,
.apropos-hero .hero-kicker {
  display: block;
  color: rgba(201, 154, 85, 0.9);
  opacity: 1;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

.contact-hero h1,
.partenaires-hero h1,
.apropos-hero h1 {
  color: #ffffff;
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 800px;
}

.contact-hero .hero-text,
.partenaires-hero .hero-text,
.apropos-hero .hero-text {
  color: rgba(255, 255, 255, 0.84);
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.72;
  margin: 0;
}

/* ── CONTACT ── */
.section-contact-page {
  background: linear-gradient(180deg, #f9f5ee 0%, #f3ead9 100%);
}

.contact-shell {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-intro-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 8px 22px rgba(9, 27, 49, 0.04);
}

.contact-intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(201, 154, 85, 0.1);
  border: 1px solid rgba(201, 154, 85, 0.2);
  flex-shrink: 0;
}

.contact-intro-block strong {
  display: block;
  font-size: 0.97rem;
  color: #0f2743;
  margin-bottom: 6px;
}

.contact-intro-block span {
  font-size: 0.88rem;
  color: #5c7080;
  line-height: 1.55;
}

.contact-form-box {
  background: #fff;
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: 0 18px 44px rgba(9, 27, 49, 0.07);
}

.contact-success {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(180deg, #edf9f0 0%, #e0f4e6 100%);
  border: 1px solid rgba(54, 115, 78, 0.22);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 28px;
}

.contact-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #3e7f58;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-success strong { display: block; color: #1e5c38; margin-bottom: 4px; }
.contact-success p { margin: 0; color: #2d6b3e; font-size: 0.94rem; }

.contact-form .form-field label,
.partenaires-form .form-field label {
  font-weight: 700;
  color: #0f2743;
  font-size: 0.96rem;
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-field label span,
.partenaires-form .form-field label span {
  color: #c99a55;
}

.contact-form .form-field,
.partenaires-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.contact-rgpd {
  font-size: 0.8rem;
  color: #8a97a4;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

/* ── PARTENAIRES ── */
.section-partenaires-types {
  background: linear-gradient(180deg, #f9f5ee 0%, #f3ead9 100%);
}

.partenaires-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.partenaire-type-card {
  background: #fff;
  border: 1px solid rgba(23, 40, 58, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 10px 28px rgba(9, 27, 49, 0.05);
}

.partenaire-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(201, 154, 85, 0.1);
  border: 1px solid rgba(201, 154, 85, 0.2);
  margin-bottom: 20px;
}

.partenaire-type-card h2 {
  font-size: 1.15rem;
  margin: 0 0 12px;
  color: #091b31;
  line-height: 1.25;
}

.partenaire-type-card > p {
  font-size: 0.96rem;
  color: #425263;
  line-height: 1.72;
  margin: 0 0 20px;
}

.partenaire-type-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partenaire-type-list li {
  font-size: 0.9rem;
  color: #344d62;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.partenaire-type-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c99a55;
  font-weight: 700;
}

.section-partenaires-form {
  background: #f2e9de;
}

.partenaires-form-shell {
  max-width: 820px;
  margin: 0 auto;
}

.partenaires-form-intro {
  margin-bottom: 36px;
}

.partenaires-form-intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 12px 0 16px;
}

.partenaires-form-intro p {
  color: #425263;
  font-size: 1.02rem;
  line-height: 1.72;
  margin: 0;
}

/* ── À PROPOS ── */
.section-apropos-main {
  background: linear-gradient(180deg, #f9f5ee 0%, #f3ead9 100%);
}

.apropos-shell {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.apropos-block h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  color: #091b31;
  margin: 0 0 20px;
}

.apropos-block p {
  font-size: 1.04rem;
  color: #344d62;
  line-height: 1.82;
  margin: 0 0 16px;
}

.apropos-block p:last-child { margin-bottom: 0; }

.apropos-features-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.apropos-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.apropos-feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c99a55;
  flex-shrink: 0;
  margin-top: 6px;
}

.apropos-feature strong {
  display: block;
  font-size: 1rem;
  color: #0f2743;
  margin-bottom: 6px;
}

.apropos-feature p {
  margin: 0;
  font-size: 0.97rem;
  color: #425263;
  line-height: 1.7;
}

.apropos-block-cta {
  background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
  border: 1px solid rgba(201, 154, 85, 0.2);
  border-radius: 24px;
  padding: 36px 40px;
}

.apropos-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-intro,
  .partenaires-types-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .contact-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}