:root {
  --navy: #071120;
  --ink: #132033;
  --muted: #647084;
  --line: #e4e9f0;
  --surface: #f6f2ea;
  --soft: #101c2c;
  --gold: #b8892f;
  --gold-dark: #8e681e;
  --green: #1f7a64;
  --blue-soft: #dfe8f3;
  --danger: #c84636;
  --shadow: 0 24px 70px rgba(7, 17, 32, 0.13);
  --radius: 8px;
  --font-title: "Manrope", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #0b1524;
  font-family: var(--font-body);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#header.scrolled {
  background: rgba(7, 17, 32, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

#header.scrolled .logo,
#header.scrolled .nav-links {
  color: #fff;
}

#header.scrolled .burger {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

#header.scrolled .burger span {
  background: #fff;
}

.nav-container {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(7, 17, 32, 0.12);
}

.logo-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, #f3d985, var(--gold));
}

.logo-text {
  display: grid;
  line-height: 1.05;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.logo-text strong {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  color: #fff;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--navy);
  border: 1px solid rgba(184, 137, 47, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4d98b, var(--gold));
}

.burger {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 11, 21, 0.9) 0%, rgba(5, 11, 21, 0.72) 42%, rgba(5, 11, 21, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 11, 21, 0.1), rgba(5, 11, 21, 0.38)),
    url("../assets/paris-office-hero.png") center right/cover no-repeat,
    linear-gradient(135deg, #050b15 0%, #101f33 50%, #07111f 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%);
  background-size: 88px 88px, 88px 88px;
  opacity: 0.13;
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(7, 17, 32, 0), #0f1b2b 92%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 108px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.76fr);
  gap: 48px;
  align-items: center;
}

.hero-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-badge {
  padding: 9px 13px;
  border: 1px solid rgba(184, 137, 47, 0.34);
  border-radius: 999px;
  background: rgba(184, 137, 47, 0.09);
  color: #f4d98b;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-title);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin: 18px 0 20px;
  font-size: clamp(3.15rem, 5.2vw, 5.45rem);
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
}

h3 {
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.25;
}

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

.hero-sub {
  max-width: 710px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.55vw, 1.17rem);
  line-height: 1.65;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-highlights i {
  color: var(--gold);
}

.hero-proof {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 217, 139, 0.24);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.hero-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(244, 217, 139, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.hero-proof-logo {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
}

.hero-proof-logo img {
  width: min(198px, 68%);
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.2));
}

.hero-proof-logo img.advisor-photo {
  width: min(230px, 74%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid rgba(244, 217, 139, 0.72);
  border-radius: 50%;
  background: #efe7dc;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  filter: grayscale(1) contrast(1.05);
}

.hero-proof-metric {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 180px;
  padding: 13px 14px;
  border: 1px solid rgba(184, 137, 47, 0.34);
  border-radius: 12px;
  background: rgba(7, 17, 32, 0.78);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.hero-proof-metric strong,
.hero-proof-metric span {
  display: block;
}

.hero-proof-metric strong {
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 1.25rem;
}

.hero-proof-metric span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-proof-content {
  position: relative;
  padding: 24px 26px 26px;
}

.hero-proof-content h2 {
  color: #fff;
  font-size: clamp(1.36rem, 1.75vw, 1.72rem);
  line-height: 1.1;
}

.hero-proof-content p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.proof-list span,
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.proof-list i,
.hero-phone i {
  color: var(--gold);
}

.hero-phone {
  color: #fff;
}

.whatsapp-link i,
.contact-detail .fa-whatsapp,
.footer-contact .fa-whatsapp {
  color: #25d366;
}

.hero-actions,
.contact-form .form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost,
.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f6da87, var(--gold));
  box-shadow: 0 18px 44px rgba(184, 137, 47, 0.32);
}

.btn-primary:hover,
.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 25, 35, 0.18);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.btn-service {
  width: 100%;
  margin-top: auto;
  color: var(--gold-dark);
  background: #fbf5e8;
}

.btn-primary.large {
  width: 100%;
}

.btn-primary.small {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.9rem;
}

.full-width {
  width: 100%;
}

.hero-stats {
  width: min(720px, 100%);
  margin-top: 34px;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(244, 217, 139, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.stat {
  flex: 1;
  padding: 19px 18px;
}

.stat-number {
  display: block;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: clamp(1.95rem, 3vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  transform: translateX(-50%);
}

#partners {
  overflow: hidden;
  padding: 30px 0 38px;
  background: #0f1b2b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-heading {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  background: linear-gradient(90deg, rgba(238, 231, 218, 0.88), rgba(255, 255, 255, 0.94), rgba(238, 231, 218, 0.88));
  border-top: 1px solid rgba(184, 137, 47, 0.22);
  border-bottom: 1px solid rgba(184, 137, 47, 0.22);
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 110px;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(238, 231, 218, 0.96), rgba(238, 231, 218, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(238, 231, 218, 0.96), rgba(238, 231, 218, 0));
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  padding: 2px 0;
  animation: logoScroll 44s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  min-width: 156px;
  height: 58px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-logo img {
  display: block;
  max-width: 148px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
}

.partner-logo.compact {
  min-width: 74px;
  padding: 6px 4px;
}

.partner-logo.compact img {
  max-width: 38px;
  max-height: 38px;
}

section {
  scroll-margin-top: 86px;
}

.section-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-container,
.partners-heading {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-header.light h2,
.section-header.light p {
  color: #fff;
}

#pourquoi,
#frais,
#services,
#pour-qui,
#avantages,
#about,
#faq {
  background: #f3eee5;
}

.expertise-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 137, 47, 0.18);
}

.expertise-section .section-container {
  padding: 42px 0 68px;
}

.expertise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 31, 51, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(17, 31, 51, 0.045) 0 1px, transparent 1px 100%);
  background-size: 88px 88px;
  pointer-events: none;
}

.expertise-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.expertise-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 10px 42px;
  align-items: end;
}

.expertise-heading .section-tag {
  grid-column: 1 / -1;
}

.expertise-heading h2 {
  grid-column: 1;
}

.expertise-heading h2 {
  max-width: 620px;
  margin: 8px 0 0;
  font-size: clamp(1.62rem, 1.9vw, 2.05rem);
  line-height: 1.08;
  text-wrap: balance;
}

.expertise-heading p {
  grid-column: 2;
  grid-row: 2;
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.expertise-heading .btn-primary {
  grid-column: 2;
  grid-row: 3;
  margin-top: 4px;
  justify-self: start;
  align-self: start;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.expertise-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 300px;
  height: 100%;
  padding: 18px 16px;
  border: 1px solid rgba(17, 31, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.5);
  box-shadow: 0 18px 40px rgba(17, 31, 51, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.expertise-item::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  width: auto;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.expertise-item:hover::after,
.expertise-item.featured::after {
  transform: scaleX(1);
}

.expertise-item:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 137, 47, 0.38);
  background: rgba(255, 252, 246, 0.78);
}

.expertise-index {
  color: rgba(17, 31, 51, 0.26);
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.expertise-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-dark);
  background: #fbf5e8;
  box-shadow: inset 0 0 0 1px rgba(184, 137, 47, 0.28);
}

.expertise-item > div:last-child {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.expertise-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.expertise-item p {
  max-width: 100%;
  margin-bottom: 12px;
  color: rgba(17, 31, 51, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.expertise-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(184, 137, 47, 0.24);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(251, 245, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.audience-section {
  position: relative;
  overflow: hidden;
}

.audience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 31, 51, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(17, 31, 51, 0.035) 0 1px, transparent 1px 100%);
  background-size: 92px 92px;
  pointer-events: none;
}

.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 31, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 18px 44px rgba(17, 31, 51, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 47, 0.38);
  background: rgba(255, 252, 246, 0.96);
}

.audience-card.featured {
  color: #fff;
  border-color: rgba(244, 217, 139, 0.24);
  background:
    radial-gradient(circle at 86% 16%, rgba(184, 137, 47, 0.22), transparent 34%),
    linear-gradient(145deg, #071120, #172b43);
  box-shadow: 0 24px 70px rgba(7, 17, 32, 0.18);
}

.audience-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--gold-dark);
  background: #fbf5e8;
  font-size: 1.15rem;
}

.audience-card.featured i {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.audience-card h3 {
  font-size: 1.35rem;
}

.audience-card.featured h3 {
  color: #fff;
}

.audience-card p {
  color: rgba(17, 31, 51, 0.7);
  line-height: 1.65;
}

.audience-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.audience-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gold-dark);
  font-weight: 900;
}

.audience-card.featured a {
  color: var(--gold);
}

#processus,
#cta-mid,
#conformite,
#contact {
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(198, 155, 69, 0.22), transparent 30%),
    linear-gradient(145deg, #071120, #13253b);
}

#pourquoi,
#frais,
#services,
#pour-qui,
#avantages,
#about,
#faq,
#processus,
#cta-mid,
#conformite,
#contact {
  color: var(--ink);
}

.services-intro {
  max-width: 980px;
  margin: 0 0 42px;
}

.services-intro h2 {
  max-width: 860px;
  margin: 14px 0 18px;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
}

.services-intro p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.why-card,
.advantage-card,
.service-card,
.rendement-card,
.temoignage-card,
.step,
.contact-form-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf7ef;
  box-shadow: 0 14px 44px rgba(7, 17, 32, 0.07);
}

.approach-section,
.essentials-section {
  position: relative;
  overflow: hidden;
}

.approach-section::before,
.essentials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%);
  background-size: 92px 92px;
  pointer-events: none;
}

.approach-intro {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin-bottom: 34px;
}

.approach-intro h2 {
  max-width: 900px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
}

.approach-intro p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.advisor-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px !important;
  padding: 11px 13px;
  border: 1px solid rgba(244, 217, 139, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86) !important;
  background: rgba(255, 255, 255, 0.065);
  font-size: 0.96rem !important;
  font-weight: 800;
}

.advisor-note i {
  color: var(--gold);
}

.approach-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: stretch;
}

.approach-summary {
  padding: 28px;
  border: 1px solid rgba(244, 217, 139, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 10%, rgba(184, 137, 47, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.summary-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #f6da87, var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.approach-summary h3 {
  color: #fff;
  font-size: 1.6rem;
}

.approach-summary ul {
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.approach-summary li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.approach-summary li i {
  margin-top: 4px;
  color: var(--gold);
}

.approach-steps {
  display: grid;
  gap: 12px;
}

.approach-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.approach-step:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 217, 139, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.approach-step > span {
  color: rgba(244, 217, 139, 0.42);
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.approach-step h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.3rem;
}

.approach-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.62;
}

.trust-proof {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(184, 137, 47, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 245, 232, 0.98), rgba(236, 222, 196, 0.92)),
    #fbf5e8;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.orias-proof {
  display: flex;
  align-items: center;
  gap: 18px;
}

.orias-proof img {
  width: 150px;
  max-width: 38vw;
  height: auto;
  display: block;
  padding: 9px;
  border: 1px solid rgba(17, 31, 51, 0.08);
  border-radius: 6px;
  background: #fff;
}

.orias-proof span,
.orias-proof strong {
  display: block;
}

.orias-proof span {
  color: rgba(17, 31, 51, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orias-proof strong {
  margin-top: 5px;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1;
}

.trust-proof-grid {
  display: grid;
  gap: 10px;
}

.trust-proof-grid span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(17, 31, 51, 0.76);
  font-weight: 800;
}

.trust-proof-grid i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 8px;
  color: var(--gold-dark);
  background: rgba(184, 137, 47, 0.12);
}

.trust-proof-grid .fa-whatsapp {
  color: #25d366;
}

.essentials-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.essentials-hero h2 {
  max-width: 820px;
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(2.15rem, 4.2vw, 4.3rem);
}

.essentials-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.essentials-cta {
  padding: 24px;
  border: 1px solid rgba(244, 217, 139, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.essentials-cta strong,
.essentials-cta span {
  display: block;
}

.essentials-cta strong {
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 1.45rem;
}

.essentials-cta span {
  margin: 6px 0 16px;
  color: rgba(255, 255, 255, 0.74);
}

.essentials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.essential-card {
  position: relative;
  min-height: 268px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.essential-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 217, 139, 0.46);
  background: rgba(255, 255, 255, 0.095);
}

.essential-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(244, 217, 139, 0.12);
}

.essential-card > span {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.essential-card h3 {
  color: #fff;
  font-size: 1.25rem;
}

.essential-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.62;
}

.advisor-strip {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(244, 217, 139, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 20%, rgba(184, 137, 47, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.05);
}

.advisor-strip h2 {
  max-width: 720px;
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.advisor-strip p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.advisor-points {
  display: grid;
  gap: 10px;
}

.advisor-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.advisor-points i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(244, 217, 139, 0.12);
}

.advisor-points .fa-whatsapp {
  color: #25d366;
}

.fee-panel,
.mid-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(184, 137, 47, 0.22), transparent 32%),
    linear-gradient(145deg, #071120, #15263c);
  box-shadow: var(--shadow);
}

.fee-panel h2,
.mid-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.fee-panel p,
.mid-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.fee-grid {
  display: grid;
  gap: 14px;
}

.fee-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.fee-item strong,
.fee-item span {
  display: block;
}

.fee-item strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.fee-item span {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 5px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.advantage-card {
  padding: 24px;
}

.advantage-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--gold-dark);
  background: #fbf5e8;
  font-size: 1.1rem;
}

.advantage-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mid-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.why-card {
  padding: 28px;
}

.why-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--gold-dark);
  background: #fbf5e8;
  font-size: 1.2rem;
}

.service-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  border-color: rgba(17, 31, 51, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(251, 247, 239, 0.96)),
    #fbf7ef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  height: auto;
  background: linear-gradient(180deg, var(--gold), rgba(34, 59, 93, 0.22));
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: rgba(198, 155, 69, 0.42);
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(184, 137, 47, 0.16), transparent 32%),
    linear-gradient(145deg, #071120, #172b43);
  box-shadow: 0 28px 72px rgba(7, 17, 32, 0.22);
}

.service-card.featured h3,
.service-card.featured p {
  color: #fff;
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.82);
}

.service-card.featured .btn-service {
  color: var(--navy);
  background: linear-gradient(135deg, #f6da87, var(--gold));
}

.service-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.service-card.cta-card {
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(184, 137, 47, 0.32), transparent 34%),
    linear-gradient(145deg, var(--navy), #172b43);
}

.service-card.cta-card h3,
.service-card.cta-card p {
  color: #fff;
}

.service-icon,
.rendement-icon,
.step-icon,
.contact-detail > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--gold-dark);
  background: #fbf5e8;
  font-size: 1.2rem;
}

.service-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-number {
  color: rgba(17, 31, 51, 0.22);
  font-family: var(--font-title);
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.service-card.featured .service-number {
  color: rgba(244, 217, 139, 0.32);
}

.gold-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.service-badge,
.rendement-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fbf5e8;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-features {
  margin: 0 0 6px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-features li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: rgba(17, 31, 51, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-features i {
  margin-top: 3px;
  color: var(--gold-dark);
}

.service-card.featured .service-features i {
  color: var(--gold);
}

.small-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 0.85rem;
}

.expertise-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid rgba(184, 137, 47, 0.34);
  border-radius: 8px;
  color: var(--gold-dark);
  background: rgba(251, 245, 232, 0.78);
  font-size: clamp(0.76rem, 0.86vw, 0.84rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.expertise-link i {
  flex: 0 0 auto;
  color: var(--gold-dark);
}

.per-calculator-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 137, 47, 0.22), transparent 30%),
    linear-gradient(145deg, #071120, #13253b);
}

.calculator-panel[hidden] {
  display: none;
}

.calculator-panel.is-open {
  animation: calculatorReveal 0.42s ease both;
}

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

.life-calculator-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(184, 137, 47, 0.2), transparent 30%),
    linear-gradient(145deg, #0b1524, #1f2d3d 52%, #121a26);
}

.mutuelle-section {
  background:
    radial-gradient(circle at 16% 14%, rgba(244, 217, 139, 0.16), transparent 30%),
    linear-gradient(145deg, #08131f, #16293a 54%, #0d1724);
}

.prevoyance-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(220, 64, 64, 0.18), transparent 30%),
    radial-gradient(circle at 14% 22%, rgba(244, 217, 139, 0.14), transparent 30%),
    linear-gradient(145deg, #071120, #1c2431 55%, #121722);
}

.per-calculator-intro {
  max-width: 920px;
  margin-bottom: 34px;
}

.per-calculator-intro h2 {
  max-width: 840px;
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(2.15rem, 4.8vw, 4.5rem);
  line-height: 1.02;
}

.per-calculator-intro p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.per-calculator {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.per-form-panel,
.per-result-panel {
  border: 1px solid rgba(244, 217, 139, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.per-form-panel {
  padding: 26px;
  display: grid;
  gap: 20px;
}

.per-field {
  display: grid;
  gap: 10px;
}

.per-field label,
.per-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.per-input-wrap {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.per-input-wrap span {
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
}

.per-input-wrap input,
.per-field select {
  width: 100%;
  min-height: 58px;
  border: 0;
  padding: 0 16px;
  color: #fff;
  background: transparent;
  outline: none;
  font-size: 1.2rem;
  font-weight: 900;
}

.per-field select {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.per-field select option {
  color: var(--navy);
}

.per-field input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.per-range-value {
  display: flex;
  justify-content: center;
}

.per-range-value strong {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-size: 0.9rem;
}

.per-profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.life-profile {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.per-profile button {
  min-height: 58px;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.life-profile button {
  min-height: 70px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.life-profile button.active {
  border-color: rgba(244, 217, 139, 0.72);
  color: #fff;
  background: rgba(244, 217, 139, 0.15);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.per-profile button small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
}

.per-profile button.active {
  color: var(--navy);
  background: #fff;
}

.micro-note {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.45;
}

.structured-note {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(244, 217, 139, 0.18);
  border-radius: 8px;
  background: rgba(244, 217, 139, 0.08);
}

.structured-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.5;
}

.structured-note strong {
  color: rgba(255, 255, 255, 0.9);
}

.info-dot {
  display: inline-grid;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.per-result-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.per-donut {
  position: relative;
  width: 230px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.per-donut-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0deg 216deg, rgba(255, 255, 255, 0.16) 216deg 360deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.per-donut-ring::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #13253b;
  border: 14px solid rgba(255, 255, 255, 0.9);
}

.per-donut-center {
  position: relative;
  z-index: 1;
  max-width: 120px;
  text-align: center;
}

.per-donut-center strong {
  display: block;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
}

.per-donut-center span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.25;
}

.per-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.per-result-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.per-result-grid div.highlight {
  grid-column: span 2;
  border-color: rgba(244, 217, 139, 0.4);
  background: rgba(244, 217, 139, 0.12);
}

.per-result-grid div.capital-card {
  border-color: rgba(244, 217, 139, 0.72);
  background:
    linear-gradient(135deg, rgba(244, 217, 139, 0.18), rgba(255, 255, 255, 0.08));
}

.per-result-grid div.capital-card span {
  color: rgba(255, 255, 255, 0.78);
}

.per-result-grid div.capital-card strong {
  color: var(--gold);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.per-result-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
}

.per-result-grid strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
}

.per-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.5;
}

.simulation-next-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(244, 217, 139, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 12%, rgba(244, 217, 139, 0.12), transparent 36%),
    rgba(7, 17, 32, 0.42);
}

.simulation-next-step span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.simulation-next-step strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
}

.simulation-next-step p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  line-height: 1.45;
}

.simulation-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.simulation-actions .btn-primary,
.simulation-actions .btn-ghost {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}

.mutuelle-wizard {
  border: 1px solid rgba(244, 217, 139, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.mutuelle-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.mutuelle-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #fff0bd);
  transition: width 0.25s ease;
}

.mutuelle-wizard form {
  padding: 30px;
}

.mutuelle-step {
  display: none;
}

.mutuelle-step.active {
  display: block;
  animation: calculatorReveal 0.28s ease both;
}

.mutuelle-step-head {
  max-width: 860px;
  margin-bottom: 24px;
}

.mutuelle-step-head span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(244, 217, 139, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.mutuelle-step-head h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.mutuelle-step-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.mutuelle-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mutuelle-choice-grid button,
.coverage-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.mutuelle-choice-grid button {
  min-height: 150px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.mutuelle-choice-grid button:hover,
.mutuelle-choice-grid button.active {
  border-color: rgba(244, 217, 139, 0.66);
  background: rgba(244, 217, 139, 0.13);
  transform: translateY(-2px);
}

.mutuelle-choice-grid i {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(244, 217, 139, 0.12);
  font-size: 1.3rem;
}

.mutuelle-choice-grid strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
}

.mutuelle-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
}

.mutuelle-fields.compact {
  max-width: 420px;
  grid-template-columns: 1fr;
}

.mutuelle-fields label {
  position: relative;
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mutuelle-fields input,
.mutuelle-fields select {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  font-size: 1.04rem;
  font-weight: 800;
}

.mutuelle-fields input[type="date"] {
  cursor: pointer;
}

.mutuelle-fields select option {
  color: var(--navy);
}

.address-field {
  grid-column: 1 / -1;
}

.address-field small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.address-suggestions {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 4px;
  max-height: 220px;
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(244, 217, 139, 0.24);
  border-radius: 8px;
  background: #101b29;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.address-suggestions button {
  border: 0;
  border-radius: 7px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.address-suggestions button:hover {
  color: #fff;
  background: rgba(244, 217, 139, 0.12);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.coverage-grid article {
  padding: 18px;
}

.coverage-grid article > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(244, 217, 139, 0.12);
  font-size: 1.15rem;
}

.coverage-grid h4 {
  margin: 12px 0 16px;
  color: #fff;
  font-size: 1.08rem;
}

.coverage-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.coverage-options button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.coverage-options button.active {
  color: var(--navy);
  background: #fff;
}

.mutuelle-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.mutuelle-consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.prevoyance-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 900px;
  margin-top: 16px;
}

.prevoyance-checks label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.prevoyance-checks input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.mutuelle-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.mutuelle-back {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.mutuelle-back:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.mutuelle-result {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(244, 217, 139, 0.28);
  border-radius: 8px;
  background: rgba(244, 217, 139, 0.1);
}

.mutuelle-result h4 {
  margin: 0 0 6px;
  color: #fff;
}

.mutuelle-result p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
}

.mutuelle-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-page {
  background: #f6f0e7;
}

.legal-header {
  position: sticky;
  background: rgba(7, 17, 32, 0.94);
  backdrop-filter: blur(14px);
}

.legal-header .logo,
.legal-header .nav-links {
  color: #fff;
}

.family-page {
  background: #f6f0e7;
}

.family-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #071120;
}

.family-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.94), rgba(7, 17, 32, 0.64) 46%, rgba(7, 17, 32, 0.22)),
    url("../assets/family-office-boardroom.png") center / cover no-repeat;
  transform: scale(1.02);
}

.family-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 86px;
}

.family-hero h1 {
  max-width: 860px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.93;
}

.family-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.family-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.family-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 920px;
  margin-top: 34px;
}

.family-hero-points span {
  padding: 14px;
  border: 1px solid rgba(244, 217, 139, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 17, 32, 0.58);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
}

.family-hero-points strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.94rem;
}

.family-role,
.family-ecosystem,
.family-gallery-section,
.family-final-cta {
  background: #f6f0e7;
}

.family-role-grid,
.family-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.family-role-copy h2,
.family-section-head h2,
.family-gallery-copy h2,
.family-cta-panel h2 {
  max-width: 760px;
  margin: 10px 0 18px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

.family-role-copy p,
.family-gallery-copy p,
.family-cta-panel p {
  color: rgba(17, 31, 51, 0.74);
  line-height: 1.75;
}

.family-lead {
  padding: 18px;
  border-left: 3px solid var(--gold);
  color: var(--navy) !important;
  background: rgba(255, 252, 246, 0.76);
  font-weight: 900;
}

.family-office-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 520px;
  border: 1px solid rgba(184, 137, 47, 0.18);
  box-shadow: 0 30px 80px rgba(17, 31, 51, 0.2);
}

.family-office-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.family-office-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(244, 217, 139, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 17, 32, 0.84);
  backdrop-filter: blur(12px);
}

.family-office-card strong,
.family-office-card span {
  display: block;
}

.family-office-card strong {
  font-size: 1.2rem;
}

.family-office-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.family-section-head {
  max-width: 900px;
  margin-bottom: 30px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ecosystem-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(17, 31, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 18px 44px rgba(17, 31, 51, 0.06);
}

.ecosystem-grid i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-dark);
  background: #fbf5e8;
}

.ecosystem-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
}

.ecosystem-grid p {
  color: rgba(17, 31, 51, 0.7);
  font-size: 0.92rem;
  line-height: 1.62;
}

.family-gallery-copy ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.family-gallery-copy li {
  display: flex;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}

.family-gallery-copy i {
  color: var(--gold-dark);
}

.family-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.office-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(184, 137, 47, 0.14);
  box-shadow: 0 18px 48px rgba(17, 31, 51, 0.12);
}

.office-shot.large {
  grid-row: span 2;
}

.office-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.office-shot.crop-a img {
  object-position: 62% center;
}

.office-shot.crop-b img {
  object-position: 36% center;
}

.family-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.94), rgba(7, 17, 32, 0.78)),
    url("../assets/family-office-detail.png") center / cover no-repeat;
  box-shadow: 0 26px 70px rgba(17, 31, 51, 0.16);
}

.family-cta-panel h2,
.family-cta-panel p {
  color: #fff;
}

.family-cta-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.legal-main {
  padding-top: 0;
  background: #f6f0e7;
}

.legal-hero {
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(198, 155, 69, 0.22), transparent 28%),
    linear-gradient(145deg, #071120, #13253b);
}

.legal-hero .section-container {
  padding: 120px 0 70px;
}

.legal-hero h1 {
  margin: 14px 0 14px;
  max-width: 780px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 800;
}

.legal-content .section-container {
  padding: 58px 0 82px;
}

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

.legal-card {
  padding: 28px;
  border: 1px solid rgba(7, 17, 32, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(7, 17, 32, 0.07);
}

.legal-card h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.legal-card p {
  color: var(--muted);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card dl {
  margin: 0;
  display: grid;
  gap: 10px;
}

.legal-card dl + p,
.legal-card p + dl {
  margin-top: 16px;
}

.legal-card dl div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(7, 17, 32, 0.08);
}

.legal-card dl div:last-child {
  border-bottom: 0;
}

.legal-card dt {
  color: rgba(17, 31, 51, 0.62);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.legal-card a {
  color: var(--gold-dark);
  font-weight: 800;
}

.legal-note {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fbf5e8;
  color: var(--ink);
  font-weight: 700;
}

.legal-footer-bottom {
  border-top: 0;
}

.audit-page {
  background: #071120;
}

.audit-main {
  min-height: 100vh;
}

.audit-hero {
  min-height: 100vh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 32, 0.92), rgba(7, 17, 32, 0.66)),
    url("../assets/paris-office-hero.png") center/cover no-repeat;
}

.audit-layout {
  min-height: 100vh;
  padding: 128px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}

.audit-copy h1 {
  max-width: 780px;
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(2.85rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.audit-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.audit-value-card {
  max-width: 560px;
  margin: 28px 0 0;
  padding: 20px;
  display: grid;
  gap: 11px;
  border: 1px solid rgba(244, 217, 139, 0.22);
  border-radius: 8px;
  background: rgba(7, 17, 32, 0.5);
  backdrop-filter: blur(14px);
}

.audit-value-card strong {
  color: var(--gold);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.audit-value-card span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  line-height: 1.45;
}

.audit-value-card i {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.8rem;
}

.audit-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.audit-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.audit-points i {
  color: var(--gold);
}

.audit-form {
  min-height: 560px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(244, 217, 139, 0.22);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.96);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.audit-progress {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--navy);
}

.audit-progress span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audit-progress strong {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fbf0d4;
  font-size: 0.82rem;
}

.audit-progress-track {
  height: 7px;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(7, 17, 32, 0.08);
}

.audit-progress-track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), #f1d27a);
  transition: width 0.25s ease;
}

.audit-step-card {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.audit-step-card.active {
  display: block;
  animation: auditFade 0.22s ease;
}

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

.audit-step-card legend {
  display: block;
  padding: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  font-weight: 900;
  line-height: 1.05;
}

.audit-step-card legend span {
  display: block;
  margin-bottom: 11px;
  color: var(--gold-dark);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-question-text {
  max-width: 620px;
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(116, 130, 153, 0.46);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 900;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.choice-grid span::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 2px solid rgba(116, 130, 153, 0.5);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff;
}

.choice-grid input:checked + span {
  border-color: #4cab6a;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(76, 171, 106, 0.12);
}

.choice-grid input:checked + span::before {
  border-color: #4cab6a;
  background: #4cab6a;
  box-shadow: inset 0 0 0 5px #fff;
}

.audit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.audit-step-card select,
.audit-fields input {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(7, 17, 32, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: #fbf7ef;
  outline: none;
}

.audit-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.audit-fields input {
  min-height: 68px;
  margin-top: 0;
  padding: 16px 18px;
  border-color: rgba(116, 130, 153, 0.5);
  background: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 800;
}

.audit-fields label {
  display: grid;
  gap: 10px;
}

.audit-fields label strong {
  color: var(--navy);
  font-size: 1rem;
}

.audit-fields-stack {
  grid-template-columns: 1fr;
}

.audit-fields input[type="email"] {
  grid-column: auto;
}

.audit-consent {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px !important;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 800;
}

.audit-consent input {
  width: 24px;
  min-height: 24px;
  accent-color: #4cab6a;
}

.audit-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
}

.audit-nav button {
  border: 0;
  cursor: pointer;
}

.audit-nav .btn-secondary {
  color: var(--navy);
  border-color: rgba(7, 17, 32, 0.16);
}

.audit-nav .btn-primary,
.audit-nav .btn-secondary {
  flex: 1 1 220px;
  justify-content: center;
}

.audit-nav button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.audit-privacy {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.audit-result {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(184, 137, 47, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(184, 137, 47, 0.18), transparent 28%),
    #071120;
  color: #fff;
}

.audit-result.hidden {
  display: none;
}

.audit-result h2 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.audit-result p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.audit-result-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.audit-result-actions .btn-primary,
.audit-result-actions .btn-secondary {
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  text-align: center;
}

.audit-result-actions .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

#rendements,
#temoignages,
#footer {
  color: #fff;
  background:
    radial-gradient(circle at 20% 8%, rgba(184, 137, 47, 0.18), transparent 28%),
    linear-gradient(145deg, #071120, #0f2238);
}

.rendements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.rendement-card {
  position: relative;
  padding: 28px;
  text-align: center;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.rendement-card.highlight {
  border-color: rgba(198, 155, 69, 0.7);
  transform: translateY(-8px);
}

.rendement-icon {
  margin: 0 auto 16px;
}

.rendement-value {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
}

.rendement-label {
  font-weight: 800;
}

.rendement-period,
.disclaimer {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.disclaimer {
  margin: 24px 0 0;
  text-align: center;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-img-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.08), rgba(7, 17, 32, 0.78)),
    url("../assets/per-avenir-logo.png") center 42%/72% no-repeat,
    linear-gradient(145deg, #f9fbff, #eaf1fb);
  box-shadow: var(--shadow);
}

.about-img-inner {
  display: none;
}

.about-badge-floating {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(16, 25, 35, 0.86);
}

.about-badge-floating i {
  color: var(--gold);
  font-size: 1.45rem;
}

.about-badge-floating span,
.value-item span,
.contact-detail span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-badge-floating span {
  color: rgba(255, 255, 255, 0.72);
}

.about-intro {
  color: var(--ink);
  font-size: 1.12rem;
}

.about-content > p {
  color: var(--muted);
}

.about-values {
  margin: 26px 0;
  display: grid;
  gap: 14px;
}

.value-item,
.contact-detail,
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.value-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--gold-dark);
  background: #fbf5e8;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.step {
  position: relative;
  min-height: 280px;
  padding: 30px;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(198, 155, 69, 0.2);
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.step-arrow {
  color: var(--gold);
  font-size: 1.5rem;
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  width: min(100vw, 100%);
  padding: 8px 0 10px;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #071120, transparent);
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #071120, transparent);
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonialScroll 56s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.temoignage-card {
  width: 330px;
  min-height: 252px;
  flex: 0 0 330px;
  padding: 28px;
  color: var(--ink);
}

.testimonials-track .temoignage-card {
  background: rgba(251, 247, 239, 0.98);
}

.testimonials-track .temoignage-card p {
  min-height: 92px;
  color: rgba(17, 31, 51, 0.78);
  line-height: 1.62;
}

.featured-temoignage {
  border-color: rgba(198, 155, 69, 0.55);
  box-shadow: var(--shadow);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
}

.case-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fbf5e8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.author-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.temoignage-author span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf7ef;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  color: var(--navy);
  background: #fbf7ef;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
  max-height: 360px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

#conformite {
  background: #f6f0e7;
}

#conformite .section-container {
  padding: 18px 0;
}

#contact {
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(198, 155, 69, 0.22), transparent 30%),
    linear-gradient(145deg, #071120, #13253b);
}

.compliance-panel {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.compliance-panel p {
  margin-bottom: 0;
  color: rgba(17, 31, 51, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.compliance-panel strong {
  color: rgba(17, 31, 51, 0.74);
}

.compliance-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
}

.compliance-list li {
  display: flex;
  min-height: 30px;
  padding: 6px 9px 6px 7px;
  gap: 8px;
  align-items: center;
  color: rgba(17, 31, 51, 0.68);
  border: 1px solid rgba(7, 17, 32, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.compliance-list i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: transparent;
  font-size: 0.72rem;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 110px;
}

.contact-info h2 {
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

.contact-info p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-action-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 24px;
}

.contact-choice-card {
  min-height: 116px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(244, 217, 139, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-choice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 217, 139, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.contact-choice-card.featured {
  color: var(--navy);
  border-color: rgba(244, 217, 139, 0.52);
  background: linear-gradient(135deg, #f6da87, var(--gold));
  box-shadow: 0 18px 44px rgba(184, 137, 47, 0.2);
}

.contact-choice-card.whatsapp {
  border-color: rgba(37, 211, 102, 0.28);
  background: rgba(37, 211, 102, 0.12);
}

.contact-choice-card i {
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-choice-card.whatsapp i {
  color: #25d366;
}

.contact-choice-card.featured i {
  color: var(--navy);
}

.contact-choice-card span {
  display: block;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-choice-card.featured span {
  color: rgba(7, 17, 32, 0.66);
}

.contact-choice-card strong {
  display: block;
  margin-top: 3px;
  color: inherit;
  font-size: 0.98rem;
  line-height: 1.15;
}

.contact-whatsapp {
  margin-left: 10px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-whatsapp:hover {
  color: var(--navy);
  background: #fff;
}

.contact-details {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-detail {
  min-height: 78px;
  padding: 16px;
  align-items: flex-start;
  color: var(--navy);
  border: 1px solid rgba(244, 217, 139, 0.2);
  border-radius: 8px;
  background: #fbf7ef;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.contact-detail a {
  display: inline-block;
  max-width: 100%;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.25;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-detail span {
  color: var(--muted);
}

.contact-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #dff8eb;
  border: 1px solid rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.16);
  font-weight: 700;
}

.contact-calendly {
  margin: 12px 0 22px;
}

.contact-action-panel {
  display: grid;
  gap: 18px;
}

.contact-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(244, 217, 139, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.05), rgba(7, 17, 32, 0.62)),
    linear-gradient(90deg, rgba(7, 17, 32, 0.42), transparent 48%);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.contact-visual-card {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 410px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 17, 32, 0.78);
  backdrop-filter: blur(14px);
}

.contact-visual-card strong,
.contact-visual-card span {
  display: block;
}

.contact-visual-card strong {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-visual-card span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form-wrapper {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.contact-form-intro {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(7, 17, 32, 0.08);
}

.contact-form-intro span {
  display: block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form-intro strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.3;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row .form-group {
  flex: 1 1 220px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 112px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 155, 69, 0.16);
}

.form-group .error {
  border-color: var(--danger);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox-label a {
  color: var(--gold-dark);
  font-weight: 700;
}

.form-success {
  padding: 34px 20px;
  text-align: center;
}

.form-success i {
  color: var(--green);
  font-size: 3rem;
}

.hidden {
  display: none !important;
}

#footer {
  padding: 64px 0 28px;
}

.footer-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
}

#footer .logo {
  color: #fff;
}

#footer .logo-mark {
  width: 54px;
  height: 54px;
}

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-bottom,
.footer-legal {
  color: rgba(255, 255, 255, 0.68);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  color: #fff;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: #fff;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(16, 25, 35, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  #header.scrolled .nav-links {
    color: #fff;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: 12px;
  }

  .hero-content,
  .fee-panel,
  .mid-cta,
  .why-grid,
  .advantages-grid,
  .services-grid,
  .rendements-grid,
  .temoignages-grid,
  .about-grid,
  .contact-grid,
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-proof {
    max-width: 560px;
  }

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

  .step-arrow {
    display: none;
  }

  .about-grid,
  .contact-grid {
    gap: 32px;
  }

  .mid-cta-actions {
    justify-content: flex-start;
  }

  .compliance-panel {
    grid-template-columns: 1fr;
  }

  .service-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .approach-layout,
  .trust-proof {
    grid-template-columns: 1fr;
  }

  .essentials-hero,
  .advisor-strip {
    grid-template-columns: 1fr;
  }

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

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

  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .expertise-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .expertise-heading h2,
  .expertise-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .expertise-heading p {
    max-width: 680px;
  }

  .expertise-heading .btn-primary {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

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

  .audit-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .audit-form {
    max-width: 760px;
  }

  .per-calculator,
  .per-result-panel {
    grid-template-columns: 1fr;
  }

  .family-role-grid,
  .family-gallery-grid {
    grid-template-columns: 1fr;
  }

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

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

  .per-donut {
    width: 210px;
  }
}

@media (max-width: 720px) {
  .nav-container {
    width: min(100% - 24px, 1180px);
  }

  .hero-content,
  .section-container,
  .footer-container,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  #hero {
    min-height: 100vh;
    background-position: 58% center;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero-highlights {
    gap: 8px;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    padding: 14px 8px;
    text-align: center;
  }

  .stat-number {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero-proof {
    max-width: none;
  }

  .hero-proof-logo {
    min-height: 170px;
    padding: 22px;
  }

  .hero-proof-logo img {
    width: min(190px, 66%);
  }

  .hero-proof-metric {
    right: 14px;
    bottom: 14px;
    max-width: 146px;
    padding: 10px 11px;
  }

  .hero-proof-content {
    padding: 22px;
  }

  .hero-proof-content h2 {
    font-size: 1.45rem;
  }

  .section-container {
    padding: 68px 0;
  }

  .fee-panel,
  .mid-cta,
  .why-grid,
  .advantages-grid,
  .services-grid,
  .rendements-grid,
  .temoignages-grid,
  .about-grid,
  .contact-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .rendement-card.highlight {
    transform: none;
  }

  .about-img-card {
    min-height: 380px;
  }

  .contact-form-wrapper,
  .contact-action-panel,
  .why-card,
  .advantage-card,
  .service-card,
  .temoignage-card,
  .step {
    padding: 22px;
  }

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

  .contact-info {
    position: static;
  }

  .contact-action-choice {
    grid-template-columns: 1fr;
  }

  .contact-choice-card {
    min-height: 96px;
  }

  .contact-whatsapp {
    margin-left: 0;
    margin-top: 10px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    min-height: 240px;
  }

  .contact-visual img {
    min-height: 240px;
  }

  .audit-layout {
    padding: 112px 0 52px;
  }

  .audit-copy h1 {
    font-size: 2.75rem;
  }

  .audit-form {
    padding: 16px;
  }

  .choice-grid,
  .audit-row,
  .audit-fields,
  .audit-result-actions {
    grid-template-columns: 1fr;
  }

  .audit-fields input[type="email"] {
    grid-column: auto;
  }

  .per-form-panel,
  .per-result-panel {
    padding: 20px;
  }

  .per-profile,
  .per-result-grid {
    grid-template-columns: 1fr;
  }

  .simulation-next-step {
    grid-template-columns: 1fr;
  }

  .simulation-actions {
    min-width: 0;
  }

  .life-profile,
  .mutuelle-choice-grid,
  .coverage-grid,
  .mutuelle-fields,
  .prevoyance-checks {
    grid-template-columns: 1fr;
  }

  .per-result-grid div.highlight {
    grid-column: span 1;
  }

  .per-donut {
    width: 190px;
  }

  .mutuelle-wizard form {
    padding: 20px;
  }

  .mutuelle-choice-grid button {
    min-height: 124px;
  }

  .coverage-options {
    grid-template-columns: 1fr;
  }

  .mutuelle-actions {
    flex-direction: column-reverse;
  }

  .mutuelle-actions .btn-primary,
  .mutuelle-back {
    width: 100%;
    justify-content: center;
  }

  .services-intro h2 {
    font-size: 2.35rem;
  }

  .service-wide {
    grid-column: span 1;
  }

  .approach-intro h2 {
    font-size: 2.35rem;
  }

  .approach-step {
    grid-template-columns: 1fr;
  }

  .approach-summary,
  .approach-step,
  .trust-proof {
    padding: 22px;
  }

  .essentials-hero h2 {
    font-size: 2.35rem;
  }

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

  .essential-card {
    min-height: auto;
  }

  .audience-card {
    min-height: auto;
  }

  .advisor-strip {
    padding: 22px;
  }

  .advisor-strip h2 {
    font-size: 2rem;
  }

  .expertise-heading h2 {
    font-size: 2.08rem;
  }

  .expertise-heading p {
    font-size: 0.96rem;
  }

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .expertise-item {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 260px;
    padding: 18px;
  }

  .expertise-index {
    font-size: 1.35rem;
  }

  .expertise-icon {
    width: 48px;
    height: 48px;
  }

  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .floating-cta .btn-primary {
    width: 100%;
  }

  .hero-proof-logo {
    min-height: 180px;
  }

  .family-hero {
    min-height: 82vh;
  }

  .family-hero h1 {
    font-size: 3rem;
  }

  .family-hero-actions,
  .family-hero-actions .btn-primary,
  .family-hero-actions .btn-ghost {
    width: 100%;
  }

  .family-hero-points {
    grid-template-columns: 1fr;
  }

  .family-office-card,
  .family-office-card img {
    min-height: 360px;
  }

  .ecosystem-grid,
  .family-gallery {
    grid-template-columns: 1fr;
  }

  .family-gallery {
    grid-template-rows: repeat(3, 220px);
  }

  .office-shot.large {
    grid-row: auto;
  }

  .family-cta-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
