/* ============================================
   CAPITAL KEYS — Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,700;1,700&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-navy: #212B46;
  --color-navy-light: #2E3A58;
  --color-gold: #CABD99;
  --color-gold-deep: #B8A16F;
  --color-white: #F7F4EE;
  --color-offwhite: #F8F7F4;
  --color-beige: #F2F0EB;
  --color-text: #212B46;
  --color-text-secondary: #6B7280;
  --color-border: #E5E5E0;
  --color-border-light: #F0EFEB;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 780px;
  --border-radius: 9999px;
  --border-radius-md: 20px;

  /* Transitions */
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: #FFFFFF;
  line-height: 1.7;
  font-size: var(--text-base);
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-4xl);
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

h2, .h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-2xl);
  line-height: 1.3;
  color: var(--color-navy);
}

h3, .h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--color-navy);
}

h4, .h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--color-navy);
}

.surtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.body-large {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.body-text {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 3rem;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background-color: #F7F3EE;
}

.section--pierre {
  background-color: #EFECE6;
}

.section--navy {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 5.5rem 0;
}

.section--navy h2,
.section--navy h3,
.section--navy .h2,
.section--navy .h3 {
  color: var(--color-white);
}

.section--navy .body-text,
.section--navy .body-large,
.section--navy p {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 1.5rem;
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-navy);
  transition: color var(--transition), border-color 0.2s ease;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  min-width: 90px;
  text-align: center;
}

.header__nav a:hover {
  color: var(--color-navy-light);
  opacity: 1;
}

.header__nav a.active:not(.header__cta) {
  border-color: var(--color-gold-deep);
  opacity: 1;
}

.header__cta {
  font-size: var(--text-sm) !important;
  font-weight: 600 !important;
  color: var(--color-white) !important;
  background: var(--color-navy);
  padding: 0.55rem 1.5rem;
  border-radius: 9999px;
  transition: background var(--transition);
  min-width: 100px;
}

.header__cta:hover {
  background: var(--color-navy-light);
  opacity: 1 !important;
}

.header__cta.active {
  border: 1px solid var(--color-gold-deep) !important;
  box-shadow: 0 0 0 1px var(--color-gold-deep);
}

/* Mobile menu toggle */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Footer --- */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer__brand-col img {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer__brand-col p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer__links a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__bottom {
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(191, 163, 109, 0.2);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  height: 48px;
  padding: 0 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-navy-light);
  opacity: 1;
}

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-navy);
  opacity: 1;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn--white:hover {
  background: var(--color-offwhite);
  opacity: 1;
}

.btn-group {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.text-center .btn-group {
  justify-content: center;
}

/* --- Hero --- */
.hero {
  padding: 7rem 0 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.hero .container {
  max-width: 820px;
  text-align: center;
}

.hero .surtitle {
  margin-bottom: 1.25rem;
}

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

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.trust-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-gold-deep);
  line-height: 1;
}

.trust-item span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero .body-large {
  margin-bottom: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

/* --- Section Header --- */
.section__header {
  margin-bottom: 3.25rem;
}

.section__header--center {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  margin-bottom: var(--space-md);
}

.section__header p {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  line-height: 1.8;
}

/* --- Grid: 2 Columns --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-2__item {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 2rem;
}

.section--alt .grid-2__item {
  background: var(--color-white);
}

.grid-2__item h3 {
  margin-bottom: var(--space-md);
}

.grid-2__item ul {
  list-style: none;
}

.grid-2__item li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.grid-2__item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-navy);
  opacity: 0.35;
}

/* --- Grid: 3 Piliers --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pillar__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-gold-deep);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.pillar h3 {
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.pillar ul {
  list-style: none;
}

.pillar li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.pillar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-navy);
  opacity: 0.3;
}

/* --- Grid: 4 items (constat) — numbered vertical list --- */
.grid-4 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
}

.grid-4__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #FFFFFF;
  border-radius: 50px;
  border: none;
  box-shadow: 0 2px 8px rgba(33, 43, 70, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.grid-4__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 43, 70, 0.1);
}

.grid-4__number {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-navy);
  background: var(--color-beige);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 1;
  line-height: 1;
}

.grid-4__item h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 0;
}

.grid-4__item p {
  display: none;
}

.section--navy .grid-4__item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section--navy .grid-4__item h4 {
  color: rgba(255, 255, 255, 0.9);
}

.section--navy .grid-4__number {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

/* --- Floating Cards (alternating left/right) --- */
.floating-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  position: relative;
  padding: 2.5rem 0;
}

.floating-cards::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.floating-card {
  max-width: 75%;
  padding: 1.25rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.05);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(33, 43, 70, 0.1);
}

.floating-card--left {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.7), rgba(255, 255, 255, 0.7));
}

.floating-card--right {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.7), rgba(255, 255, 255, 0.7));
}

.floating-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.floating-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- Structured List --- */
.structured-list {
  list-style: none;
  max-width: var(--max-width-narrow);
}

.structured-list li {
  padding: var(--space-md) 0;
  padding-left: 1rem;
  border-bottom: 1px solid var(--color-border);
  border-left: 2px solid rgba(184, 161, 111, 0.25);
  font-size: var(--text-base);
  line-height: 1.7;
}

.structured-list li:last-child {
  border-bottom: none;
}

.structured-list li strong {
  color: var(--color-navy);
  font-weight: 600;
}

.section--navy .structured-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.section--navy .structured-list li strong {
  color: var(--color-white);
}

/* --- Steps / Parcours --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.steps--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Parcours wrapper (title + steps in one card) --- */
.parcours-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem 2rem;
}

.parcours-wrapper .section__header--center {
  margin-bottom: 1.5rem;
}

.steps--6 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-navy);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

.steps--6 .step {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-top: none;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  transition: background 0.2s ease;
}

.steps--6 .step:hover {
  background: rgba(255, 255, 255, 0.14);
  border-top-color: transparent;
}

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

.steps--6 .step::before {
  content: counter(step);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 1;
  margin-bottom: 0;
  line-height: 1;
}

.steps--6 .step h4 {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.step {
  counter-increment: step;
  padding: 1.875rem 0;
  border-top: 1px solid var(--color-border);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-gold-deep);
  opacity: 0.35;
  display: block;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.step h4 {
  font-size: var(--text-base);
  font-weight: 600;
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: 0.35rem;
  line-height: 1.65;
}

/* --- Encadre (highlight box) --- */
.encadre {
  background: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
}

.encadre--navy {
  background: var(--color-navy);
  border-color: transparent;
  color: var(--color-white);
}

.encadre ul {
  list-style: none;
}

.encadre li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--text-base);
  line-height: 1.6;
}

.encadre--navy li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.encadre li:last-child {
  border-bottom: none;
}

.encadre li strong {
  font-weight: 600;
  color: var(--color-navy);
}

.encadre--navy li strong {
  color: var(--color-white);
}

/* --- FAQ --- */
.faq-list {
  max-width: var(--max-width-narrow);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  margin-left: var(--space-sm);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --- CTA Final --- */
.cta-final {
  text-align: center;
  padding: 6.5rem 0;
  background: #FFFFFF;
}

.cta-final.section--alt {
  background: #F7F3EE;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.cta-final .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

.cta-final .cta-final__coords {
  margin-top: 2.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.cta-final__coords a {
  color: var(--color-text-secondary);
}

/* --- Contact Form --- */
.form {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(33, 43, 70, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  height: auto;
  padding: 0.875rem 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form .btn {
  width: 100%;
  max-width: 240px;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success p {
  font-size: var(--text-lg);
  color: var(--color-navy);
}

/* --- Contact cards --- */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.contact-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.contact-card--accent {
  border-top: 3px solid var(--color-gold-deep);
}

.contact-card .btn {
  margin-top: var(--space-md);
}

.container--form {
  max-width: 720px;
}

/* --- Piliers dominant section --- */
.section--piliers {
  padding: var(--space-3xl) 0;
}

.piliers-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.25;
}

/* --- Editorial section --- */
.section-editorial {
  border-bottom: 1px solid var(--color-border);
}

.section-editorial .editorial-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold-deep);
  margin-top: var(--space-md);
}

.editorial-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

/* --- List centering (replaces inline styles) --- */
.structured-list,
.faq-list {
  margin: 0 auto;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-narrow { max-width: var(--max-width-narrow); margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* --- Values grid (a propos) --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 2rem var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* --- Exploitation list (vertical timeline) --- */
.exploitation-list {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  padding-left: 3rem;
  counter-reset: timeline;
  overflow: hidden;
}

/* Vertical line connecting circle centers. The list uses overflow:hidden
   so we only need to position top/bottom to match circle centers of
   first and last items. Each item is ~46px tall, circle at 50% = ~23px. */
.exploitation-list::before {
  content: '';
  position: absolute;
  left: 19px; /* 0.5rem(8px) + 12px(half of 24px circle) - 1px(half of 2px line) */
  top: 23px;
  bottom: 23px;
  width: 2px;
  background: var(--color-border);
  z-index: 0;
}

.exploitation-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 2px 8px rgba(33, 43, 70, 0.04);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.exploitation-item:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: none;
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.08);
}

/* Hide the generic ::before since we use .timeline-number */
.exploitation-item::before {
  display: none;
}

.exploitation-item .timeline-number {
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  z-index: 1;
}

.exploitation-item:last-child {
  border-bottom: none;
}

.exploitation-item strong {
  color: var(--color-navy);
  font-weight: 600;
  font-size: var(--text-sm);
}

.exploitation-item span:not(.timeline-number) {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.6;
}

/* --- Process steps after contact --- */
.process-steps {
  counter-reset: process;
  max-width: var(--max-width-narrow);
}

.process-step {
  counter-increment: process;
  padding: var(--space-sm) 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.process-step::before {
  content: counter(process) '.';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--color-navy);
}

.section--navy .process-step {
  color: rgba(255, 255, 255, 0.75);
}

.section--navy .process-step::before {
  color: var(--color-white);
}

/* --- Footer legal links --- */
.footer__legal {
  display: flex;
  gap: var(--space-md);
  margin-top: 0;
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

/* --- Legal pages --- */
.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-content li {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

/* --- Narrow text accent (visual anchoring) --- */
.section:not(.section--navy):not(.section--alt):not(.section-editorial) .container--narrow > .body-text.mt-md {
  padding-left: 1.25rem;
  border-left: 2px solid rgba(184, 161, 111, 0.3);
}

/* --- Verify Split (text left, cards right) --- */
.verify-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.verify-split__text {
  position: sticky;
  top: 6rem;
}

.verify-split__text h2 {
  margin-bottom: 0;
}

.verify-split__cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.verify-split__cards .grid-4__item p {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
  line-height: 1.6;
}

@media (max-width: 840px) {
  .verify-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .verify-split__text {
    position: static;
    text-align: center;
  }
}

/* --- Contact Layout (form + sidebar) --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-layout__form h2 {
  margin-bottom: 1.5rem;
}

.contact-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: 5rem;
}

.contact-sidebar-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
}

.contact-sidebar-card h3 {
  font-size: var(--text-base);
  margin-bottom: 0.5rem;
}

.contact-sidebar-card h4 {
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
}

.contact-sidebar-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.contact-sidebar-card__actions {
  display: flex;
  gap: 0.5rem;
}

.contact-sidebar-card__actions .btn {
  height: 40px;
  font-size: var(--text-sm);
}

.contact-sidebar-card__lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-sidebar-card__lines a,
.contact-sidebar-card__lines span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-sidebar-card--light {
  background: rgba(255, 255, 255, 0.3);
}

.contact-sidebar-steps {
  list-style: none;
  counter-reset: sidebar-step;
}

.contact-sidebar-steps li {
  counter-increment: sidebar-step;
  position: relative;
  padding-left: 1.75rem;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-sidebar-steps li:last-child {
  margin-bottom: 0;
}

.contact-sidebar-steps li::before {
  content: counter(sidebar-step);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-navy);
  background: rgba(33, 43, 70, 0.08);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 840px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-layout__sidebar {
    position: static;
  }
}

/* --- Criteria Grid (navy section, pill items) --- */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.2s ease;
}

.criteria-item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.criteria-item--full {
  grid-column: 1 / -1;
}

.criteria-icon {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 640px) {
  .criteria-grid {
    grid-template-columns: 1fr;
  }
  .criteria-item--full {
    grid-column: auto;
  }
}

/* --- Reduced top spacing (tight coupling) --- */
.section--tight-top {
  margin-top: -2rem;
}

/* --- Architectural Background Sections --- */
.section--bg-architectural {
  position: relative;
  padding: 5.5rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--bg-architectural::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 238, 0.88);
  z-index: 0;
}

.section--bg-architectural > .container {
  position: relative;
  z-index: 1;
}

.section--bg-architectural-alt::before {
  background: rgba(242, 240, 235, 0.85);
}

/* --- Scroll Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes goldLineGrow {
  from { width: 0; }
  to { width: 40px; }
}

.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
}

.fade-up.is-visible {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-left.is-visible {
  animation: fadeLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-right.is-visible {
  animation: fadeRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scale-in.is-visible {
  animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up.delay-1, .fade-left.delay-1, .fade-right.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2, .fade-left.delay-2, .fade-right.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }

/* --- Stagger Children (grid items appear one by one) --- */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.40s; }

[data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large desktop cap */
@media (max-width: 1024px) {
  .container {
    padding: 0 2.5rem;
  }

  .steps--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (max-width: 840px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section--navy {
    padding: 4.5rem 0;
  }

  .section--bg-architectural {
    padding: 4.5rem 0;
  }

  .cta-final {
    padding: 5rem 0;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 12px 32px rgba(31, 38, 135, 0.1);
    gap: 0;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 0.75rem 0;
    display: block;
    border: none;
    min-width: auto;
    text-align: left;
  }

  .header__nav a.active:not(.header__cta) {
    border: none;
    font-weight: 600;
    color: var(--color-gold-deep);
  }

  .header__nav .header__cta {
    margin-top: var(--space-sm);
    text-align: center;
    display: inline-block;
    min-width: auto;
  }

  .header__toggle {
    display: block;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
  }

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

  .hero-image img {
    height: 360px;
  }

  .section-image img {
    height: 300px;
  }

  .section-image--small img {
    height: 220px;
  }

  .hero-badges,
  .split-feature,
  .split-feature--reverse,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .split-feature--reverse .split-feature__media,
  .split-feature--reverse .split-feature__content {
    order: initial;
  }

  .split-feature__media img {
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 5.5rem 0 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section--navy {
    padding: 3.5rem 0;
  }

  .section--bg-architectural {
    padding: 3.5rem 0;
  }

  .cta-final {
    padding: 4rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: left;
  }

  .footer__brand-col {
    grid-column: auto;
  }

  .footer__brand-col img {
    height: 48px;
    margin: 0 0 0.75rem 0;
  }

  .footer__brand-col p {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

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

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .exploitation-list {
    padding-left: 2.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    width: 100%;
    max-width: none;
  }

  .hero-image img {
    height: 240px;
  }

  .section-image img {
    height: 220px;
  }

  .section-image--small img {
    height: 180px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 4.5rem;
    right: 1.25rem;
  }

  /* Disable card hover lift on touch devices */
  .exploitation-item:hover,
  .pillar:hover,
  .grid-2__item:hover,
  .value-item:hover,
  .report-card:hover {
    transform: none;
  }

  .sticky-cta__text {
    display: none;
  }

  .sticky-cta .container {
    justify-content: center;
  }

  body.has-sticky-cta {
    padding-bottom: 52px;
  }

  .section--compact {
    padding: 1rem 0 1.5rem;
  }

  .hero-badges {
    margin-top: 0;
  }

  .split-feature__content {
    padding: 1.25rem;
  }

  .form .btn {
    max-width: none;
  }

  .section__header--center {
    margin-bottom: 2rem;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero__headline {
    font-size: 1.625rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .pillar {
    padding: 1.75rem 1.25rem;
  }
}

/* --- Page Images --- */
.hero-image {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

.section-image {
  padding: 2.5rem 0;
}

.section-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-md);
}

.section-image--small img {
  height: 280px;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.18);
  transition: background var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  background: var(--color-navy-light);
  box-shadow: 0 4px 18px rgba(27, 42, 74, 0.28);
  opacity: 1;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

/* --- Hero Badges --- */
.section--compact {
  padding: 1.5rem 0 2.5rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.25rem;
  box-shadow: 0 10px 30px rgba(33, 43, 70, 0.04);
}

.hero-badge strong {
  display: block;
  color: var(--color-navy);
  font-size: var(--text-sm);
  margin-bottom: 0.3rem;
}

.hero-badge span {
  display: block;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* --- Split Feature (image + content) --- */
.section--image-split {
  padding: 5.5rem 0;
  background: #FFFFFF;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-feature--reverse {
  grid-template-columns: 1fr 1.02fr;
}

.split-feature--reverse .split-feature__media {
  order: 2;
}

.split-feature--reverse .split-feature__content {
  order: 1;
}

.split-feature__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.split-feature__content {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 2rem;
}

.mini-list {
  display: grid;
  gap: 0.85rem;
}

.mini-list__item {
  padding: 0.9rem 1rem;
  border-left: 2px solid rgba(184, 161, 111, 0.45);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.mini-list__item strong {
  display: block;
  color: var(--color-navy);
  font-size: var(--text-sm);
  margin-bottom: 0.2rem;
}

.mini-list__item span {
  display: block;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* --- Report Grid (legacy) --- */
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.report-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

.report-card strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
  font-size: var(--text-base);
}

.report-card span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* --- Suivi Grid (new structured monthly report) --- */
.suivi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}

.suivi-card {
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(33, 43, 70, 0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.suivi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(33, 43, 70, 0.08);
}

.suivi-card strong {
  display: block;
  color: var(--color-navy);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.suivi-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.suivi-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.suivi-card__header strong {
  margin-bottom: 0;
}

.suivi-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-deep);
  background: rgba(184, 161, 111, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.suivi-card--accent {
  grid-column: 1 / -1;
  background: var(--color-navy);
  border-color: transparent;
  text-align: center;
  padding: 1.5rem;
}

.suivi-card--accent strong {
  color: var(--color-white);
  font-size: var(--text-base);
  margin-bottom: 0.35rem;
}

.suivi-card--accent p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
}

.suivi-card--accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(33, 43, 70, 0.2);
}

.suivi-card--detail {
  grid-column: 1 / -1;
}

.suivi-card--detail ul {
  list-style: none;
  margin-top: 0.5rem;
}

.suivi-card--detail li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.suivi-card--detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold-deep);
  opacity: 0.5;
}

/* --- Subtle card shadows + hover micro-interactions --- */
.exploitation-item,
.pillar,
.grid-2__item,
.contact-card,
.value-item,
.report-card,
.suivi-card,
.hero-badge {
  box-shadow: 0 4px 20px rgba(33, 43, 70, 0.03);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.exploitation-item:hover,
.pillar:hover,
.grid-2__item:hover,
.value-item:hover,
.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(33, 43, 70, 0.08);
  border-color: rgba(184, 161, 111, 0.35);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(33, 43, 70, 0.08);
}

/* Gold accent line on card hover */
.pillar::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  margin-top: auto;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.pillar:hover::after {
  width: 40px;
}

/* --- Step hover --- */
.step {
  transition: border-color 0.3s ease;
}

.step:hover {
  border-top-color: var(--color-gold-deep);
}

/* --- FAQ Smooth Animation --- */
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding-bottom 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-bottom: var(--space-md);
}

.faq-question::after {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

/* --- Section Separator (gold line) --- */
.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.section-separator::before {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-deep), transparent);
  opacity: 0.5;
}

/* --- Text Reveal (letter-by-letter) --- */
.text-reveal {
  visibility: hidden;
}

.text-reveal__word {
  display: inline-block;
}

.text-reveal__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.3em);
  filter: blur(4px);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
}

.text-reveal__letter.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* --- Wave Separator (interactive) --- */
.wave-separator {
  position: relative;
  height: 1px;
  width: calc(100% - 6rem);
  max-width: 900px;
  margin: 2rem auto;
}

.wave-separator__hit {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  cursor: default;
}

.wave-separator__hit:hover {
  top: -100px;
  height: 200px;
}

.wave-separator__svg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: visible;
}

.wave-separator__path {
  fill: none;
  stroke: var(--color-gold-deep);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.wave-separator:hover .wave-separator__path {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .wave-separator {
    display: none;
  }
}

/* --- Sticky CTA Bar --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--color-navy);
  padding: 0.875rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -4px 20px rgba(33, 43, 70, 0.15);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: 500;
}

.sticky-cta .btn--white {
  padding: 0 1.25rem;
  height: 40px;
  font-size: var(--text-sm);
  white-space: nowrap;
}

/* --- Counter animation (trust bar) --- */
.trust-item strong {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.trust-item.is-counted strong {
  animation: countUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* --- Button enhanced hover --- */
.btn--primary {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(33, 43, 70, 0.2);
}

.btn--secondary:hover {
  transform: translateY(-1px);
}

/* --- WhatsApp float enhanced --- */
.whatsapp-float {
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* --- Gold accent on section headers (visible after scroll) --- */
.section__header--center h2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  margin: var(--space-sm) auto 0;
  border-radius: 1px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.is-visible .section__header--center h2::after,
.section__header--center.is-visible h2::after {
  width: 40px;
}

/* --- Image parallax-lite --- */
.hero-image img,
.section-image img,
.split-feature__media img {
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image.is-visible img {
  transform: scale(1.03);
}

/* --- Smooth body when sticky CTA is visible --- */
body.has-sticky-cta {
  padding-bottom: 56px;
}

/* --- Header scroll behavior --- */
.header {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header--hidden {
  transform: translateX(-50%) translateY(calc(-100% - 1rem));
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
}

/* --- V2 Components Responsive (must come after component definitions) --- */
@media (max-width: 840px) {
  .hero-badges,
  .split-feature,
  .split-feature--reverse,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .split-feature--reverse .split-feature__media,
  .split-feature--reverse .split-feature__content {
    order: initial;
  }

  .split-feature__media img {
    height: 320px;
  }

  .section--image-split {
    padding: 4.5rem 0;
  }
}

@media (max-width: 640px) {
  .section--compact {
    padding: 1rem 0 1.5rem;
  }

  .hero-badges {
    margin-top: 0;
    gap: 0.75rem;
  }

  .hero-badge {
    padding: 1rem;
  }

  .split-feature__content {
    padding: 1.25rem;
  }

  .split-feature__media img {
    height: 240px;
  }

  .section--image-split {
    padding: 3.5rem 0;
  }

  .report-card {
    padding: 1.25rem;
  }

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

  .suivi-card--accent,
  .suivi-card--detail {
    grid-column: auto;
  }
}
