/* ============================================================
   CA3P Sàrl – Styles
   Design : premium, sobre, élégant – inspiré finance suisse
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  --cream:      #f5f3ee;
  --cream-2:    #eeebe4;
  --white:      #ffffff;

  --dark-1:     #0e1320;
  --dark-2:     #16202f;
  --dark-3:     #1e2a3d;

  --red:        #C8102E;
  --red-dark:   #a00d24;
  --red-light:  #fbeaed;

  --text:       #1a202c;
  --text-2:     #4a5568;
  --text-3:     #8896a7;

  --border:     #e4e0db;
  --border-2:   #ccc8c2;

  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.13);

  --ease: 0.25s ease;
  --ease-long: 0.45s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== BARRE ROUGE SUPÉRIEURE ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  z-index: 200;
}

/* ===== UTILITAIRES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 110px 0; }
.section-alt { background: var(--cream-2); }
.section-white { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
}
.section-header { margin-bottom: 70px; }
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-desc { margin: 0 auto; }

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.25);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVIGATION ===== */
#header {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 16px rgba(0,0,0,0.09);
  transition: box-shadow var(--ease);
}
.navbar {
  display: flex;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  gap: 40px;
}

/* Logo dans la nav */
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.nav-logo:hover { opacity: 0.82; }
.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* Liens */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(0,0,0,0.05);
}
.nav-links a.active { font-weight: 600; color: var(--red); }

/* Bouton CTA nav */
.btn-nav {
  margin-left: 12px;
  background: var(--red);
  color: #fff;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--ease);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--red-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}

/* Scroll effect */
#header.scrolled {
  box-shadow: 0 2px 28px rgba(0,0,0,0.13);
}

/* ===== HERO — PAGE D'ACCUEIL ===== */
.hero {
  background-image: url('handshake.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 79px);
  display: flex;
  align-items: stretch;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

/* Split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Colonne gauche */
.hero-left {
  padding: 100px 64px 80px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 18px 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  gap: 4px;
}
.stat-num {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  text-align: center;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Colonne droite : logo sur fond blanc */
.hero-right {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
}
.hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 100%;
  background: rgba(255,255,255,0.08);
}
.hero-right img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin-bottom: 28px;
}
.hero-right-tagline {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.7;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  width: 100%;
}
.hero-right-finma {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.6;
}
.hero-right-finma strong { color: var(--red); font-weight: 600; }

/* ===== HERO SOUS-PAGES ===== */
.page-hero {
  background: var(--dark-2);
  padding: 140px 32px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--ease); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== CARDS SERVICES ===== */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-long);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.sc-icon {
  font-size: 1.75rem;
  margin-bottom: 18px;
  display: block;
}
.sc-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.sc-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--ease);
}
.sc-link:hover { gap: 10px; }

/* ===== CARDS AVANTAGES ===== */
.avantage-card {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.avantage-card:last-child { border-bottom: 1px solid var(--border); }
.av-num {
  font-size: 2rem;
  font-weight: 800;
  color: #ddd8d0;
  line-height: 1;
  padding-top: 4px;
}
.av-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.av-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== VALEURS (À propos) ===== */
.valeur-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.valeur-item:first-child { border-top: 1px solid var(--border); }
.valeur-bullet {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.valeur-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.valeur-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== MARQUEE PARTENAIRES ===== */
.marquee-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.marquee-outer {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
}
.marquee-fade-l,
.marquee-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-l { left:  0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left,  var(--white), transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: scrollLeft 36s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.plogo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  background: transparent;
  border: none;
  height: 72px;
  min-width: 150px;
  flex-shrink: 0;
}
.plogo img {
  max-height: 42px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter var(--ease);
}
.plogo:hover img { filter: grayscale(0%); }
.plogo-lg img {
  max-height: 56px;
  max-width: 160px;
}
.plogo span { display: none; }
.plogo.text-only img { display: none; }
.plogo.text-only span {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-2);
  white-space: nowrap;
}
.plogo-swisslife.text-only span { color: #cc0000; }

/* ===== SECTION PRÉSENTATION (2 colonnes) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-text { }
.two-col-visual {
  position: relative;
}
.visual-box {
  background: var(--dark-1);
  border-radius: var(--r-lg);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.visual-box-photo {
  padding: 0;
  background: none;
  border-radius: var(--r-lg);
  min-height: 400px;
  box-shadow: var(--shadow-lg);
}
.visual-box-photo::before { display: none; }
.visual-box-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
}
.visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(200,16,46,0.15), transparent 70%);
}
.visual-box-logo {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 28px;
  display: inline-block;
  margin-bottom: 28px;
}
.visual-box-logo img { height: 80px; width: auto; }
.visual-box-tagline {
  position: relative; z-index: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 20px;
}
.visual-box-finma {
  position: relative; z-index: 1;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.visual-box-finma strong { color: var(--red); font-weight: 600; }

/* ===== BANDEAU CTA ===== */
.cta-band {
  background: var(--dark-1);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,16,46,0.1), transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.5);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PROCESSUS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--red);
  margin: 0 auto 20px;
}
.ps-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ps-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: start;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-block:first-child { border-top: 1px solid var(--border); }
.cb-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.cb-value {
  font-size: 1.0625rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
}
.cb-value a {
  color: var(--text);
  transition: color var(--ease);
}
.cb-value a:hover { color: var(--red); }
.finma-block {
  margin-top: 32px;
  padding: 22px;
  background: var(--red-light);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}
.finma-block strong { color: var(--red-dark); }

/* Formulaire */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--text); letter-spacing: 0.01em; }
.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.09);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--text-3); line-height: 1.5; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-1);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 56px;
  padding-bottom: 56px;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-brand-logo {
  background: var(--white);
  display: inline-block;
  border-radius: var(--r-sm);
  padding: 10px 16px;
  margin-bottom: 18px;
}
.footer-brand-logo img { height: 50px; width: auto; }
.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  font-style: italic;
}
.footer-addr {
  margin-top: 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}
.footer-addr a { color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-addr a:hover { color: #fff; }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-legal p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-legal ul { gap: 2px; }
.footer-legal strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.footer-finma {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 7px 12px;
}
.footer-finma strong { color: var(--red); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--ease); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ===== RÉVÉLATION SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .two-col { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 3px; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--text-2); }
  .nav-links.open a.active { color: var(--red); font-weight: 700; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-left { padding: 80px 24px 48px; }
  .hero-right { padding: 48px 32px; border-top: 1px solid var(--border); }
  .hero-right img { max-width: 200px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .two-col { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .stat-sep:nth-child(even) { display: none; }
}
@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .cards-grid-3,
  .cards-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .marquee-fade-l, .marquee-fade-r { width: 60px; }
  .hero-logo-box img { height: 76px; }
  .contact-form { padding: 24px; }
  .process-grid { grid-template-columns: 1fr; }
}
