:root {
  --navy-950: #183349;
  --navy-900: #23455f;
  --navy-800: #30536d;
  --navy-700: #3f627d;
  --navy-100: #eaf0f5;
  --navy-50: #f7fafc;
  --white: #ffffff;
  --ink: #102235;
  --ink-soft: #4f6377;
  --ink-on-dark: rgba(255, 255, 255, 0.94);
  --ink-on-dark-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(16, 34, 53, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --accent: #8cc5d9;
  --accent-strong: #6fb4cf;
  --accent-soft: #dff0f6;
  --shadow-soft: 0 18px 45px rgba(20, 45, 69, 0.08);
  --shadow-dark: 0 22px 60px rgba(6, 19, 31, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100vw - 1.5rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    linear-gradient(180deg, #eff4f8 0%, #ffffff 34%, #ffffff 100%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-950);
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.hero,
.stats-band,
.story-strip,
.content-section,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  padding-top: 0.5rem;
}

.eyebrow-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0.2rem 0.65rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.eyebrow-bar p {
  margin: 0;
}

.eyebrow-bar a {
  font-weight: 700;
  text-decoration: none;
}

.nav-float-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0.75rem 0;
}

.nav-float-wrapper .nav-shell {
  max-width: 1120px;
  margin-inline: auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
}

.nav-float-wrapper .brand-logo {
  height: clamp(32px, 3.5vw, 42px);
}

.nav-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 34, 53, 0.08);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(68px, 7.4vw, 88px);
}

.brand strong,
.section-heading h2,
.hero h1,
.hero-local-card h2,
.story-panel h2,
.panel h3,
.feature-card h3,
.comparison-card h3,
.trust-card h3,
.contact-panel h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.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;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, #d3edf8, #a9d6e7);
  box-shadow: 0 12px 28px rgba(124, 182, 205, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #c2e4f1, #96cbde);
}

.button-secondary {
  color: var(--navy-950);
  background: linear-gradient(135deg, #f5d8a6, #efc17d);
  border-color: rgba(241, 202, 151, 0.5);
  box-shadow: 0 12px 28px rgba(239, 193, 125, 0.26);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: linear-gradient(135deg, #f2cf96, #eab56b);
}

.button-tertiary {
  color: var(--navy-950);
  background: var(--white);
  border-color: rgba(16, 34, 53, 0.06);
  box-shadow: 0 10px 22px rgba(16, 34, 53, 0.14);
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.78fr);
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.3rem;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #274a64 0%, #21435d 40%, #183349 100%);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.14), transparent 18rem),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.07), transparent 7rem),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0 10px,
      rgba(255, 255, 255, 0) 10px 22px
    );
  opacity: 0.5;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-photo-card,
.hero-local-card,
.story-panel,
.panel,
.feature-card,
.comparison-card,
.trust-card,
.qualification-form,
.faq-list details,
.contact-panel {
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
}

.section-kicker,
.card-label,
.price-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f1ca97;
}

.section-kicker::before,
.card-label::before,
.price-label::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #f1ca97;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.h1-brand {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-on-dark-soft);
  margin-top: 0.4rem;
}

.hero-lead {
  max-width: 58ch;
  margin: 1rem 0 0;
  color: var(--ink-on-dark-soft);
  font-size: 0.98rem;
}

.hero-actions,
.hero-card-actions,
.form-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.hero-actions .button-secondary {
  position: relative;
  padding-inline: 1.35rem;
}

.hero-actions .button-secondary::after {
  content: "→";
  margin-left: 0.55rem;
  font-size: 1rem;
  line-height: 1;
}

.hero-points,
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}

.hero-points li,
.story-tags li {
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-on-dark);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: default;
}

.hero-card {
  display: grid;
  gap: 0.9rem;
}

.hero-photo-card,
.hero-local-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
}

.hero-photo-card {
  min-height: 420px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
}

.hero-photo,
.story-photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.8), transparent 6rem),
    linear-gradient(160deg, #b9c9d6 0%, #8aa2b5 40%, #5a7186 100%);
  position: relative;
}

.hero-photo-primary {
  background:
    url("../assets/production/images/hero-proprietaire-bureau-4x5.webp") center top / cover no-repeat,
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.8), transparent 6rem),
    linear-gradient(160deg, #b9c9d6 0%, #8aa2b5 40%, #5a7186 100%);
}

.hero-photo-primary::before,
.hero-photo-primary::after {
  display: none;
}

.hero-photo::before,
.story-photo::before {
  content: "";
  position: absolute;
  inset: auto 14% 0 14%;
  height: 64%;
  border-radius: 22px 22px 0 0;
  background:
    radial-gradient(circle at 50% 16%, #2d2a29 0 12%, transparent 13%),
    radial-gradient(circle at 50% 34%, #ebd4c9 0 13%, transparent 14%),
    linear-gradient(180deg, #f6f6f6 0%, #ffffff 48%, #d8e0e7 100%);
  box-shadow: 0 20px 38px rgba(17, 34, 51, 0.18);
}

.hero-photo::after,
.story-photo::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 9%;
  width: 34%;
  height: 18%;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(16, 34, 53, 0.14), rgba(16, 34, 53, 0.28)),
    linear-gradient(180deg, #dfe7ee, #c2cfda);
}

.story-photo-secondary::before {
  inset: auto 18% 0 18%;
  height: 62%;
  background:
    radial-gradient(circle at 50% 16%, #2f2b29 0 12%, transparent 13%),
    radial-gradient(circle at 50% 34%, #ead2c2 0 13%, transparent 14%),
    linear-gradient(180deg, #223449 0%, #2a3c52 100%);
}

.story-photo-secondary {
  background:
    url("../assets/production/images/story-conseiller-client-4x5.webp") center top / cover no-repeat,
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.8), transparent 6rem),
    linear-gradient(160deg, #b9c9d6 0%, #8aa2b5 40%, #5a7186 100%);
}

.story-photo-secondary::before,
.story-photo-secondary::after {
  display: none;
}

.hero-local-card {
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-local-card .button-tertiary {
  color: var(--navy-950);
  background: linear-gradient(180deg, #ffffff 0%, #eef4f8 100%);
  border-color: rgba(16, 34, 53, 0.1);
}

.hero-local-card .button-tertiary:hover,
.hero-local-card .button-tertiary:focus-visible {
  background: linear-gradient(180deg, #f8fbfd 0%, #e8f0f5 100%);
}

.hero-local-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-local-card address,
.local-panel address,
.site-footer address {
  font-style: normal;
}

.hero-local-card p,
.hero-local-card a {
  color: var(--ink-on-dark-soft);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.95rem;
  padding: 0 0.75rem 1.1rem;
  position: relative;
  z-index: 1;
}

.stats-band div {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  color: var(--ink-on-dark);
  background: rgba(41, 71, 95, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-dark);
}

.stats-band strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
}

.stats-band span {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink-on-dark-soft);
  font-size: 0.9rem;
}

.story-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  padding: 1.2rem 0 0.6rem;
}

.story-panel {
  overflow: hidden;
  min-height: 240px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
}

.story-panel-visual {
  padding: 0.55rem;
  background: var(--white);
  min-height: 520px;
}

.story-panel-copy {
  padding: 1.7rem;
  background: linear-gradient(180deg, var(--navy-50), #ffffff 100%);
}

.story-panel-copy .section-kicker,
.content-section .section-kicker {
  color: var(--navy-700);
}

.story-panel-copy .section-kicker::before,
.content-section .section-kicker::before {
  background: var(--accent-strong);
}

.story-panel-copy h2,
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.16;
  font-weight: 800;
}

.story-panel-copy p,
.section-heading p,
.panel p,
.feature-card p,
.comparison-card p,
.trust-card p,
.faq-list p,
.contact-panel p,
.form-note,
.form-feedback {
  color: var(--ink-soft);
}

.story-panel-copy p {
  margin-top: 0.9rem;
}

.story-tags li {
  background: var(--navy-100);
  border-color: rgba(111, 180, 207, 0.2);
  color: var(--ink);
}

.local-visual-panel {
  overflow: hidden;
  min-height: 360px;
  margin-bottom: 1rem;
  padding: 0.55rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.local-photo {
  width: 100%;
  min-height: 348px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.local-photo-building {
  background:
    url("../assets/production/images/local-terrebonne-bureau-3x2.webp") center center / cover no-repeat,
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.audience-visual-panel {
  overflow: hidden;
  grid-column: 1 / -1;
  min-height: 360px;
  padding: 0.55rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.audience-photo {
  width: 100%;
  min-height: 348px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.audience-photo-pme {
  background:
    url("../assets/production/images/pme-proprietaire-employe-16x9.webp") center 28% / cover no-repeat,
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.content-section {
  padding: 2.2rem 0;
}

.split-section,
.local-grid,
.offer-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

#pour-qui {
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

#pour-qui > :first-child {
  max-width: 60rem;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 1rem;
}

.panel-grid,
.feature-grid,
.comparison-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.panel-grid,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
}

.trust-visual-panel {
  overflow: hidden;
  grid-row: span 2;
  min-height: 460px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-photo {
  width: 100%;
  min-height: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.trust-photo-independent {
  background:
    url("../assets/production/images/travailleur-autonome-bureau-4x5.webp") center 18% / cover no-repeat,
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.trust-photo-team {
  background:
    url("../assets/production/images/portrait-equipe-confiance-1x1.webp") center top / cover no-repeat,
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.trust-card {
  min-height: 220px;
}

.panel,
.feature-card,
.comparison-card,
.trust-card,
.qualification-form,
.faq-list details,
.contact-panel {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
}

.panel h3,
.feature-card h3,
.comparison-card h3,
.trust-card h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.panel ul,
.comparison-card ul,
.service-area-list {
  padding-left: 1.1rem;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-visual-panel {
  overflow: hidden;
  min-height: 320px;
  margin-bottom: 1rem;
  padding: 0.55rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.offer-photo {
  width: 100%;
  min-height: 308px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.offer-photo-process {
  background:
    url("../assets/production/images/poste-comptable-paie-remises-3x2.webp") center center / cover no-repeat,
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.spotlight {
  background: linear-gradient(180deg, var(--navy-50) 0%, #eef5f9 100%);
  border-color: rgba(111, 180, 207, 0.24);
}

.price-label {
  color: var(--navy-700);
}

.price-label::before {
  background: var(--accent-strong);
}

.price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 700;
}

.comparison-card-positive {
  background: linear-gradient(180deg, #f8fcfe 0%, #ffffff 100%);
}

.comparison-card-negative {
  background: linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
}

.local-section {
  background: linear-gradient(180deg, #fbfdfe 0%, #ffffff 100%);
}

.local-panel,
.trust-card {
  min-height: 100%;
}

.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1rem;
}

.contact-stack a {
  font-weight: 700;
  text-decoration: none;
}

.trust-section {
  padding-top: 2.5rem;
}

.trust-card {
  background: linear-gradient(180deg, var(--navy-50) 0%, #ffffff 100%);
}

.process-section {
  padding-top: 2.5rem;
}

.process-visual-panel {
  overflow: hidden;
  min-height: 420px;
  margin-bottom: 1rem;
  padding: 0.55rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-photo {
  width: 100%;
  min-height: 408px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.process-photo-onboarding {
  background:
    url("../assets/production/images/onboarding-demarrage-16x9.webp") center 18% / cover no-repeat,
    linear-gradient(160deg, #d6e0e7 0%, #a7b8c5 42%, #70889a 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  padding: 1.15rem 1rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.timeline li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: var(--navy-800);
}

.timeline strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.timeline span {
  color: var(--ink-soft);
}

.qualification-form {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-span-2 {
  grid-column: span 2;
}

.qualification-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 700;
}

.qualification-form input,
.qualification-form select,
.qualification-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(16, 34, 53, 0.12);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.qualification-form textarea {
  resize: vertical;
}

.form-actions {
  margin-top: 1.15rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  font-weight: 700;
}

.form-feedback.is-success {
  color: #2f5973;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
  padding-right: 2rem;
}

.faq-list details summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] {
  background: #fbfdfe;
}

.faq-list details p {
  margin-bottom: 0;
}

.contact-section {
  padding-top: 2.6rem;
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  color: var(--ink-on-dark);
  background:
    linear-gradient(135deg, #274a64 0%, #1f3f58 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-panel p,
.contact-panel h2 {
  color: inherit;
}

.contact-panel p {
  color: var(--ink-on-dark-soft);
}

.contact-panel .section-kicker {
  color: #f1ca97;
}

.contact-panel .section-kicker::before {
  background: #f1ca97;
}

.site-footer {
  padding: 0 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: #f8fbfd;
  border: 1px solid var(--line);
}

.footer-title {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-weight: 800;
}

.footer-logo {
  display: block;
  width: auto;
  height: clamp(70px, 8.6vw, 92px);
  max-width: 100%;
  margin-bottom: 0.4rem;
}

.footer-meta {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 8px;
  background: rgba(16, 34, 53, 0.06);
  color: var(--ink);
}

@media (max-width: 1080px) {
  .hero,
  .story-strip,
  .offer-layout,
  .split-section,
  .local-grid,
  .comparison-grid,
  .trust-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
    padding-inline: 0;
  }

  .trust-grid {
    grid-auto-rows: auto;
  }

  .trust-visual-panel {
    grid-row: auto;
    min-height: 320px;
  }

  .local-visual-panel {
    min-height: 300px;
  }

  .local-photo {
    min-height: 288px;
  }

  .offer-visual-panel {
    min-height: 260px;
  }

  .offer-photo {
    min-height: 248px;
  }

  .process-visual-panel {
    min-height: 300px;
  }

  .process-photo {
    min-height: 288px;
  }

  .audience-visual-panel {
    min-height: 300px;
  }

  .audience-photo {
    min-height: 248px;
  }

  .contact-panel {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .nav-shell,
  .nav-links,
  .hero-actions,
  .form-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-shell {
    border-radius: 24px;
  }

  .nav-float-wrapper {
    padding: 0.4rem 0.5rem 0;
  }

  .nav-float-wrapper .nav-shell,
  .nav-float-wrapper .nav-links {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-float-wrapper .nav-shell {
    border-radius: 999px;
    gap: 0.5rem;
    justify-content: space-between;
  }

  .nav-float-wrapper .nav-links > a:not(.button) {
    display: none;
  }

  .site-header {
    padding-top: 0.25rem;
  }

  .field-grid,
  .feature-grid,
  .panel-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: span 1;
  }

  .hero-photo-card {
    min-height: 360px;
  }
}

/* Badge urgence dans le hero */
.hero-points .badge-urgence {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.1) !important;
  border: 1px solid rgba(251, 191, 36, 0.3) !important;
  border-left: 3px solid #f59e0b !important;
  padding-left: 0.75rem;
}

/* Section témoignages */
.temoignages-section {
  padding-top: 2.5rem;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.temoignage {
  margin: 0;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--navy-50) 0%, #ffffff 100%);
  box-shadow: var(--shadow-soft);
}

.temoignage p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.7;
}

.temoignage footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.temoignage footer strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.temoignage footer span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.note-reviews {
  text-align: center;
  margin: 0;
}

.note-reviews a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: none;
}

.note-reviews a:hover {
  text-decoration: underline;
}

/* Bouton d'appel flottant — mobile uniquement */
.cta-mobile-float {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1d4ed8;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cta-mobile-float {
    display: block;
  }

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

@media (max-width: 1080px) {
  .temoignages-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
