/* ============================================
   JOB&GO — DESIGN SYSTEM
   ============================================ */

/* Fonts chargées via <link> dans chaque page HTML pour éviter le render-blocking */

/* VARIABLES */
:root {
  --blue: #428ED3;
  --blue-dark: #2d73b8;
  --blue-light: #EBF4FC;
  --red: #E54B4B;
  --red-dark: #cc3535;
  --red-light: #FDEAEA;
  --green: #39796C;
  --green-light: #E8F3F1;
  --yellow: #FFB563;
  --yellow-light: #FFF3E0;
  --ivory: #FAF7F4;
  --sable: #F0E9DF;
  --dark: #1A1A1A;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --white: #ffffff;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-w: 1200px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 104px 0;
}

.section--ivory { background: var(--ivory); }
.section--sable { background: var(--sable); }
.section--white { background: var(--white); }

.section-header {
  margin-bottom: 68px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-eyebrow--red { color: var(--red); }
.section-eyebrow--green { color: var(--green); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================
   BADGES
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid transparent;
  margin-bottom: 20px;
}

.badge--blue {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(66,142,211,0.2);
}

.badge--red {
  background: var(--red-light);
  color: var(--red);
  border-color: rgba(229,75,75,0.2);
}

.badge--green {
  background: var(--green-light);
  color: var(--green);
  border-color: rgba(57,121,108,0.25);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 0.98rem;
}

.btn-xl {
  padding: 16px 36px;
  font-size: 1.05rem;
}

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

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-primary--red {
  background: var(--red);
  border-color: var(--red);
}

.btn-primary--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
}

.btn-outline--red {
  color: var(--red);
  border-color: var(--red);
}

.btn-outline--red:hover {
  background: var(--red);
  color: white;
}

.btn-outline--white {
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline--white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--dark);
  background: var(--ivory);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 30px;
  width: auto;
  display: block;
}

/* Footer logo slightly larger */
.footer-brand .logo img {
  height: 28px;
  filter: brightness(0) invert(1);
}

/* Slogan en écho discret dans le footer */
.footer-brand .footer-slogan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: none;
  margin-bottom: 8px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}

.nav a:hover {
  color: var(--dark);
  background: var(--ivory);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.22s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  padding: 12px 16px 20px;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.97);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.mobile-nav a:hover { background: var(--ivory); color: var(--dark); }

.mobile-nav .btn {
  margin-top: 8px;
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero--ivory { background: var(--ivory); }
.hero--blue  { background: var(--blue-light); }
.hero--red   { background: var(--red-light); }

/* Wave decorations */
.hero-wave {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
}

.hero-wave--tr {
  top: -40px;
  right: -60px;
  width: 380px;
  opacity: 0.13;
  transform: rotate(15deg);
}

.hero-wave--bl {
  bottom: -60px;
  left: -30px;
  width: 280px;
  opacity: 0.10;
  transform: rotate(-20deg) scaleX(-1);
}

.hero-wave--br {
  bottom: -30px;
  right: 4%;
  width: 260px;
  opacity: 0.09;
  transform: rotate(12deg);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* Slogan — élément brand dominant, fidèle au Figma (~96px) */
.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 116px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--dark);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.hero-slogan .slogan-green {
  color: var(--green);
}

/* Wrapper slogan + descriptor — groupe typographique dominant */
.hero-headline {
  margin-bottom: 32px;
}

.hero-headline .hero-slogan {
  margin-bottom: 12px;
}

/* Descriptor — séparateur editorial sous le slogan */
.hero-descriptor {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid rgba(26,26,26,0.12);
}

/* H1 — descripteur fonctionnel, stylistiquement sous le slogan */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.hero-title .accent { color: var(--blue); }
.hero-title .accent--red { color: var(--red); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--gray-600);
  margin-bottom: 38px;
  max-width: 540px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Stats bar */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 680px;
}

.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Stat card color variants */
.stat-card--blue  { border-color: rgba(66,142,211,0.25); }
.stat-card--yellow { border-color: rgba(255,181,99,0.30); }
.stat-card--green  { border-color: rgba(57,121,108,0.25); }
.stat-card--red    { border-color: rgba(229,75,75,0.25); }

.stat-card--blue  strong { color: var(--blue); }
.stat-card--yellow strong { color: var(--yellow); }
.stat-card--green  strong { color: var(--green); }
.stat-card--red    strong { color: var(--red); }

/* ============================================
   AUDIENCE SPLIT
   ============================================ */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.audience-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: white;
  position: relative;
  overflow: hidden;
}

.audience-card--blue { background: var(--blue); }
.audience-card--red { background: var(--red); }

/* Wave decoration inside audience cards */
.audience-wave {
  position: absolute;
  pointer-events: none;
}

.audience-wave--tr {
  top: -30px;
  right: -40px;
  width: 200px;
  opacity: 0.12;
  transform: rotate(20deg);
}

.audience-wave--bl {
  bottom: -30px;
  left: -40px;
  width: 200px;
  opacity: 0.12;
  transform: rotate(-15deg) scaleX(-1);
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.audience-caption {
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 24px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.audience-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================
   PROCESS TIMELINE (horizontal)
   ============================================ */

.timeline {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.timeline--4::before {
  left: 12.5%;
  right: 12.5%;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.timeline-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.timeline-num--red    { background: var(--red); }
.timeline-num--yellow { background: var(--yellow); color: var(--dark); }
.timeline-num--green  { background: var(--green); }

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Vertical steps (extras page) */
.steps-vertical {
  max-width: 480px;
  margin: 0 auto;
}

.step-v {
  display: flex;
  gap: 20px;
  position: relative;
}

.step-v:not(:last-child) {
  padding-bottom: 36px;
}

.step-v:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.step-v-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.step-v-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  padding-top: 8px;
}

.step-v-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================
   CARDS GRID
   ============================================ */

.cards-grid {
  display: grid;
  gap: 16px;
}

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

.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--gray-400);
}

.card--ivory { background: var(--ivory); border-color: transparent; }
.card--ivory:hover { border-color: var(--gray-200); }

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   COMPARISON (before / after)
   ============================================ */

.comparison-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.comp-col {
  padding: 36px 32px;
}

.comp-col--before { background: #FFF5F5; }
.comp-col--after { background: white; }

.comp-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-col li {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comp-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.comp-icon--bad { background: var(--red-light); color: var(--red); }
.comp-icon--good { background: var(--green-light); color: var(--green); }

/* ============================================
   PARTNERS
   ============================================ */

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.partner-chip {
  padding: 16px 28px;
  background: var(--ivory);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-400);
  letter-spacing: -0.02em;
  transition: all 0.2s;
  white-space: nowrap;
}

.partner-chip:hover {
  background: white;
  border-color: var(--gray-400);
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
}

.t-stars {
  color: #FBBF24;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testimonial blockquote {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue);
  flex-shrink: 0;
}

.t-avatar--red { background: var(--red-light); color: var(--red); }

.t-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.t-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.18s;
}

.faq-q:hover { color: var(--blue); }

.faq-q-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.22s;
  font-style: normal;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
}

.faq-a {
  display: none;
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.78;
}

.faq-item.open .faq-a { display: block; }

/* ============================================
   CTA FORM
   ============================================ */

.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wave {
  position: absolute;
  pointer-events: none;
}

.cta-wave--tl {
  top: -40px;
  left: -50px;
  width: 240px;
  opacity: 0.07;
  transform: rotate(-10deg) scaleX(-1);
}

.cta-wave--br {
  bottom: -40px;
  right: -50px;
  width: 200px;
  opacity: 0.08;
  transform: rotate(15deg);
}

.cta-section .section-sub {
  margin: 0 auto 40px;
}

.form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.01em;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: white;
  transition: border-color 0.18s, box-shadow 0.18s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(66,142,211,0.12);
}

.form-field input::placeholder { color: var(--gray-400); }

.form-submit { width: 100%; margin-top: 8px; }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 14px;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.trust-icon {
  color: var(--green);
  font-style: normal;
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark);
  color: white;
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand .logo-mark { background: var(--blue); }

.footer-brand p {
  font-size: 0.87rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  transition: color 0.18s;
}

.footer-social a:hover {
  background: transparent;
  color: rgba(255,255,255,0.85);
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.87rem;
  color: #6B7280;
  transition: color 0.18s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: #6B7280;
  transition: color 0.18s;
}

.footer-bottom-links a:hover { color: white; }

/* ============================================
   PRICING / FORMULES
   ============================================ */

.formules-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.formules-group {}

.formules-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.formules-group-label--red { color: var(--red); }
.formules-group-label--blue { color: var(--blue); }

.pricing-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.pricing-pair--centered {
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.pricing-card--popular-red {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.pricing-card--popular-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* Cercle décoratif supprimé — style épuré */

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.pricing-badge--free { background: var(--red-light); color: var(--red); }
.pricing-badge--free-blue { background: var(--blue-light); color: var(--blue); }
.pricing-badge--popular { background: var(--yellow); color: var(--dark); }

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: inherit;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: inherit;
}

.pricing-period {
  font-size: 0.85rem;
  color: inherit;
  opacity: 0.75;
  margin-bottom: 7px;
}

.pricing-tagline {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.pricing-card--popular-red .pricing-tagline,
.pricing-card--popular-blue .pricing-tagline {
  color: rgba(255,255,255,0.65);
}

.pricing-promo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 2px;
}

.pricing-promo-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.pricing-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 14px 0;
}

.pricing-card--popular-red .pricing-divider,
.pricing-card--popular-blue .pricing-divider {
  background: rgba(255,255,255,0.2);
}

.pricing-note {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.3;
}

.pricing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-check--red    { background: var(--red-light);  color: var(--red); }
.pricing-check--blue   { background: var(--blue-light); color: var(--blue); }
.pricing-check--yellow { background: var(--yellow);     color: var(--dark); }

.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
}

.pricing-cta--red  { border: 1.5px solid var(--red);  color: var(--red);  background: transparent; }
.pricing-cta--red:hover  { background: var(--red);  color: white; }
.pricing-cta--blue { border: 1.5px solid var(--blue); color: var(--blue); background: transparent; }
.pricing-cta--blue:hover { background: var(--blue); color: white; }
.pricing-cta--white { border: 1.5px solid white; color: var(--dark); background: white; }
.pricing-cta--white:hover { background: transparent; color: white; }

/* ============================================
   STATS STRIP — DARK METRICS BAR
   ============================================ */

/* Outer dark band wrapper — avoids naming conflict with .stats-strip light version */
.stats-band--dark { background: var(--dark); }

.stats-strip { background: var(--dark); }

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-strip-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stats-strip-item:last-child { border-right: none; }

.stats-strip-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stats-strip-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  display: block;
}

/* ============================================
   HERO — NOTIFICATION STACK (visuel droit)
   ============================================ */

.hero-notif-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-bottom: 52px;
  max-width: 320px;
}

.notif-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: notif-slide 0.55s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

.notif-card:nth-child(1) { animation-delay: 0.1s; }
.notif-card:nth-child(2) { animation-delay: 0.5s; }
.notif-card:nth-child(3) { animation-delay: 0.9s; }

@keyframes notif-slide {
  from { opacity: 0; transform: translateX(28px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.notif-card--candidate { border-left: 3px solid var(--red); }
.notif-card--confirmed { border-left: 3px solid var(--green); background: #f8fbf9; }

.notif-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.notif-avatar--red   { background: var(--red-light);   color: var(--red);   }
.notif-avatar--blue  { background: var(--blue-light);  color: var(--blue);  }
.notif-avatar--green { background: var(--green-light); color: var(--green); }

.notif-body { flex: 1; min-width: 0; }

.notif-body strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.notif-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.notif-stars { color: var(--yellow); letter-spacing: 0.5px; }

.notif-time {
  font-size: 0.62rem;
  color: var(--gray-400);
  white-space: nowrap;
  align-self: flex-start;
  padding-top: 3px;
  flex-shrink: 0;
}

.notif-btn {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 13px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  line-height: 1;
}

.notif-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.notif-timing {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: notif-pop 0.4s ease 1.6s both;
}

/* ============================================
   HERO — CENTRÉ (pas de split / radar)
   ============================================ */

.hero-centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-centered .hero-slogan {
  align-items: center;
}

.hero-centered .hero-sub {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-centered .stats-grid {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   AVANT / APRÈS — REDESIGN
   ============================================ */

.aa-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.aa-col {
  border-radius: 20px;
  padding: 40px 36px;
}

.aa-col--before {
  background: rgba(229,75,75,0.04);
  border: 1.5px solid rgba(229,75,75,0.12);
}

.aa-col--after {
  background: white;
  border: 1.5px solid var(--gray-200);
}

.aa-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
}

.aa-col--before .aa-col-header { border-bottom: 1px solid rgba(229,75,75,0.12); }
.aa-col--after .aa-col-header  { border-bottom: 1px solid var(--gray-200); }

.aa-col-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.aa-col--before .aa-col-icon { background: rgba(229,75,75,0.10); }
.aa-col--after .aa-col-icon  { background: var(--green-light); }

.aa-col-title-wrap { flex: 1; }

.aa-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  display: block;
}

.aa-col--before .aa-col-title { color: #b52a2a; }
.aa-col--after  .aa-col-title { color: var(--green); }

.aa-col-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: 2px;
  display: block;
}

.aa-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aa-vs-badge {
  width: 44px;
  height: 44px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gray-400);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.04em;
}

.aa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aa-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-700);
}

.aa-item-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  margin-top: 2px;
}

.aa-col--before .aa-item-icon { background: rgba(229,75,75,0.10); color: var(--red); }
.aa-col--after  .aa-item-icon { background: var(--green-light);   color: var(--green); }

.aa-savings {
  max-width: 1000px;
  margin: 24px auto 0;
  background: rgba(57,121,108,0.06);
  border: 1px solid rgba(57,121,108,0.15);
  border-radius: var(--radius-lg);
  padding: 22px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.aa-savings-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }

.aa-savings-text {
  font-size: 0.92rem;
  color: var(--green);
  font-weight: 600;
  line-height: 1.5;
}

.aa-savings-text strong { color: #2a6359; }

/* ============================================
   CARDS — ICON CONTAINER & VARIANTES
   ============================================ */

.card-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 18px;
  background: var(--ivory);
  border: 1px solid var(--gray-200);
}

.card-icon-wrap--red    { background: rgba(229,75,75,0.06);    border-color: rgba(229,75,75,0.12);    }
.card-icon-wrap--green  { background: rgba(57,121,108,0.06);   border-color: rgba(57,121,108,0.12);   }
.card-icon-wrap--blue   { background: rgba(66,142,211,0.06);   border-color: rgba(66,142,211,0.12);   }
.card-icon-wrap--yellow { background: rgba(255,181,99,0.06);   border-color: rgba(255,181,99,0.15);   }

/* ============================================
   CARDS — VARIANTES DE COULEUR HOVER
   ============================================ */

.cards-grid--red .card:hover {
  border-color: rgba(229,75,75,0.30);
}

/* ============================================
   HERO — NOTIFICATION BUBBLE (RADAR)
   ============================================ */

.radar-notif {
  position: absolute;
  left: -24px;
  bottom: 12px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6;
  min-width: 220px;
  animation: notif-pop 0.4s ease 1.2s both;
}

.radar-notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--red);
  flex-shrink: 0;
}

.radar-notif-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.radar-notif-text span {
  font-size: 0.7rem;
  color: var(--gray-400);
}

@keyframes notif-pop {
  from { opacity: 0; transform: scale(0.88) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================
   APP SECTION — TÉLÉCHARGEMENT & FONCTIONNALITÉS
   ============================================ */

.app-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.app-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.app-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--ivory);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.app-feature-body h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--dark);
}

.app-feature-body p {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.app-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--dark);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
}

.store-badge:hover {
  background: #2d2d2d;
  color: white;
}

.store-badge-icon { font-size: 1.45rem; line-height: 1; }

.store-badge-text { line-height: 1.3; }
.store-badge-text small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.55;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Phone mock UI */
.app-phone-wrap {
  position: relative;
}

.app-phone-mock {
  background: #0f0f0f;
  border-radius: 32px;
  padding: 18px 14px 22px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 24px 60px rgba(0,0,0,0.22),
    0 6px 16px rgba(0,0,0,0.12);
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}

.app-phone-mock::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin: 0 auto 16px;
}

.app-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 14px;
}

.app-screen-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
}

.app-screen-logo .logo-amp { color: var(--yellow); }
.app-screen-logo .logo-dot { color: var(--red); }

.app-screen-badge {
  background: rgba(229,75,75,0.18);
  border: 1px solid rgba(229,75,75,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #f08080;
  letter-spacing: 0.04em;
}

.app-mission-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 6px;
  margin-bottom: 8px;
}

.app-candidate-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-candidate-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: white;
  flex-shrink: 0;
}

.app-candidate-avatar--blue { background: var(--blue); }

.app-candidate-info { flex: 1; }

.app-candidate-info strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.app-candidate-info span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}

.app-candidate-stars {
  font-size: 0.65rem;
  color: var(--yellow);
  letter-spacing: 1px;
}

.app-confirm-btn {
  background: var(--red);
  color: white;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 14px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.app-phone-badge {
  position: absolute;
  right: -20px;
  top: 40px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: notif-pop 0.4s ease 1.8s both;
}

/* ============================================
   COMPARISON — SAVINGS NOTE
   ============================================ */

.comp-savings {
  background: linear-gradient(135deg, var(--green-light) 0%, #d0ebe6 100%);
  border: 1px solid rgba(57,121,108,0.22);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.comp-savings strong { color: #2a6359; }

/* ============================================
   FAQ — VARIANTE ROUGE
   ============================================ */

.faq-list--red .faq-q:hover { color: var(--red); }
.faq-list--red .faq-item.open .faq-q-icon {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================
   SEO — ZONES
   ============================================ */

.seo-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.seo-intro p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.78;
}

/* ============================================
   CTA — DARK RED (page établissements)
   ============================================ */

.cta-dark-red {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-dark-red .section-title { color: white; }
.cta-dark-red .section-sub {
  color: rgba(255,255,255,0.60);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-dark-red .section-eyebrow { color: var(--red); }
.cta-dark-red .badge--red {
  background: rgba(229,75,75,0.16);
  border-color: rgba(229,75,75,0.38);
  color: #f08080;
}
.cta-dark-red .trust-bar { border-top-color: rgba(255,255,255,0.09); }
.cta-dark-red .trust-item { color: rgba(255,255,255,0.45); }
.cta-dark-red .trust-icon { color: var(--green); }
.cta-dark-red .container { position: relative; z-index: 1; }
.cta-dark-red .form-field input:focus,
.cta-dark-red .form-field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229,75,75,0.14);
}
.cta-dark-red .form-note { color: rgba(255,255,255,0.35); }

.cta-dark-red .cta-wave-dark--a {
  top: -70px; left: -80px;
  width: 460px;
  opacity: 0.16;
  filter: brightness(0) invert(1);
  transform: rotate(-12deg);
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.cta-dark-red .cta-wave-dark--b {
  bottom: -80px; right: -80px;
  width: 400px;
  opacity: 0.12;
  transform: rotate(22deg);
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   SLOGAN — SIGNATURE DE MARQUE
   ============================================ */

/* Slogan dans le CTA dark — rappel de marque avant conversion */
.cta-brand-slogan {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 32px;
  line-height: 1.1;
}
/* Vert lumineux sur fond sombre — brand green #39796C trop foncé sur #1A1A1A */
.cta-brand-slogan .slogan-green { color: #5bbfb0; }

/* Slogan dans le footer */
.footer-brand .footer-slogan {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  max-width: none;
  line-height: 1.2;
}
.footer-brand .footer-slogan .slogan-green { color: #5bbfb0; }

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

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .formules-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav, .header-actions { display: none; }
  .hamburger { display: flex; }

  .section { padding: 72px 0; }
  .hero { padding: 72px 0 56px; }

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

  .timeline--3,
  .timeline--4 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .timeline::before { display: none; }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    padding-bottom: 28px;
  }

  .timeline-num { margin-bottom: 0; flex-shrink: 0; }

  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4 { grid-template-columns: 1fr; }

  .comparison-wrap { grid-template-columns: 1fr; }

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .partners-row { gap: 10px; }
  .partner-chip { padding: 12px 20px; font-size: 0.88rem; }
  .pricing-pair,
  .pricing-pair--centered { grid-template-columns: 1fr; }
  .pricing-card { min-height: auto; }
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  background: var(--ivory);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 0.8rem;
  color: var(--gray-400);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  color: var(--gray-400);
}

.breadcrumb-list a {
  color: var(--gray-600);
  transition: color 0.15s;
}

.breadcrumb-list a:hover { color: var(--blue); }

.breadcrumb-list li[aria-current="page"] { color: var(--dark); font-weight: 500; }

/* ============================================
   AUDIENCE RADAR DECORATION
   ============================================ */

.audience-radar {
  position: absolute;
  pointer-events: none;
  /* Convert to white so rings are visible on blue/red card backgrounds */
  filter: brightness(0) invert(1);
  opacity: 0.22;
}

.audience-radar--blue {
  bottom: -80px;
  right: -80px;
  width: 360px;
}

.audience-radar--red {
  top: -80px;
  left: -80px;
  width: 360px;
  transform: scaleX(-1);
}

/* ============================================
   LINKEDIN SHOWCASE
   ============================================ */

.linkedin-showcase {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}

.linkedin-banner-wrap {
  width: 100%;
  height: clamp(200px, 33vw, 460px);
  overflow: hidden;
  position: relative;
}

.linkedin-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 640px) {
  .linkedin-banner-wrap { height: 180px; }
  .audience-radar--blue,
  .audience-radar--red { width: 240px; }
}

@media (max-width: 900px) {
  .aa-grid { grid-template-columns: 1fr; gap: 16px; }
  .aa-vs { display: none; }
  .aa-savings { flex-direction: column; text-align: center; gap: 10px; padding: 16px 20px; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-item { padding: 28px 20px; }
  .stats-strip-item:nth-child(2) { border-right: none; }
  .stats-strip-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .stats-strip-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }
}

@media (max-width: 860px) {
  .hero-notif-stack { display: none; }
}

@media (max-width: 860px) {
  .app-layout { grid-template-columns: 1fr; gap: 48px; }
  .app-phone-wrap { display: flex; justify-content: center; }
  .app-phone-badge { right: auto; left: 50%; transform: translateX(60px); }
}

@media (max-width: 640px) {
  .app-stores { flex-direction: column; align-items: flex-start; }
  .radar-notif { display: none; }
}

/* ============================================
   SEO — TEXTE LOCAL + ZONES
   ============================================ */

.seo-text {
  max-width: 820px;
  margin: 0 auto 48px;
}

.seo-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.78;
  margin-bottom: 18px;
}

.seo-text p:last-child { margin-bottom: 0; }

.seo-text strong {
  color: var(--dark);
  font-weight: 600;
}

.zone-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}

.zone-chip {
  background: var(--ivory);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
}

@media (max-width: 640px) {
  .zone-grid { gap: 8px; }
  .zone-chip { font-size: 0.78rem; padding: 6px 12px; }
}

/* ====================================================
   DESIGN v2 — Waves as Universe · Radars as Story
   ==================================================== */

/* --- Wave Section Dividers --- */
.wave-sep {
  display: block;
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
  margin: -2px 0;  /* overlap 2px pour éliminer tout gap pixel */
  height: 96px;
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: 96px;    /* hauteur fixe — cohérente à toutes largeurs */
}

/* --- Hero Split Layout (text left / radar right) --- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Remove max-width constraint inside split */
.hero-split .hero-content { max-width: none; }

/* Upgrade hero waves: bigger, bolder, animated */
.hero-wave--tr {
  top: -60px !important;
  right: -80px !important;
  width: 540px !important;
  opacity: 0.38 !important;
  transform: rotate(12deg) !important;
}
.hero-wave--bl {
  bottom: -80px !important;
  left: -60px !important;
  width: 420px !important;
  opacity: 0.30 !important;
  animation: wave-float-bl 7s ease-in-out infinite;
}
.hero-wave--br {
  bottom: -40px !important;
  right: 5% !important;
  width: 340px !important;
  opacity: 0.22 !important;
  animation: wave-float-br 9s ease-in-out infinite;
}

@keyframes wave-float-bl {
  0%, 100% { transform: rotate(-20deg) scaleX(-1) translateY(0px); }
  50%       { transform: rotate(-20deg) scaleX(-1) translateY(-20px); }
}
@keyframes wave-float-br {
  0%, 100% { transform: rotate(12deg) translateY(0px); }
  50%       { transform: rotate(12deg) translateY(-14px); }
}

/* --- Radar Hero Visualization --- */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.radar-hero-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.radar-hero-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(66,142,211,0.10) 0%,
    rgba(66,142,211,0.04) 65%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(66,142,211,0.14);
  box-shadow:
    0 0 0 12px rgba(66,142,211,0.03),
    0 0 0 28px rgba(66,142,211,0.02),
    0 24px 80px rgba(66,142,211,0.10);
}

.radar-hero-svg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: contain;
  opacity: 0.95;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 278deg,
    rgba(66,142,211,0.04) 305deg,
    rgba(66,142,211,0.22) 340deg,
    rgba(66,142,211,0.08) 355deg,
    transparent 360deg
  );
  animation: radar-spin 4.5s linear infinite;
  z-index: 3;
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Pings = extras disponibles */
.radar-ping {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--blue);
  transform: translate(-50%, -50%);
  z-index: 4;
  display: block;
}

.radar-ping::before,
.radar-ping::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0;
  inset: 0;
  animation: ping-wave 2.8s ease-out infinite;
}
.radar-ping::after { animation-delay: 1s; }

@keyframes ping-wave {
  0%   { inset: 0; opacity: 0.85; }
  100% { inset: -22px; opacity: 0; }
}

.radar-ping--yellow { background: var(--yellow); color: var(--yellow); }
.radar-ping--green  { background: var(--green);  color: var(--green);  }
.radar-ping--red    { background: var(--red);    color: var(--red);    }

.radar-hero-label {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Wave intégrée dans la bannière LinkedIn */
.linkedin-exit-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: block;
  z-index: 3;
}

/* --- LinkedIn Showcase — Brand Universe Opener --- */
.linkedin-banner-wrap { position: relative; }

.linkedin-overlay {
  position: absolute;
  inset: 0;
  background:
    /* panneau gauche pour lisibilité du texte */
    linear-gradient(90deg, rgba(26,26,26,0.86) 0%, rgba(26,26,26,0.55) 40%, transparent 70%),
    /* fondu bas → #1A1A1A pour transition fluide avec la wave */
    linear-gradient(to bottom, transparent 20%, rgba(26,26,26,0.88) 52%, #1A1A1A 68%);
  display: flex;
  align-items: center;
  z-index: 2;
}

.linkedin-overlay-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.linkedin-overlay-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: white;
  margin-bottom: 24px;
}

.linkedin-overlay-tagline .hl-green  { color: #4aab97; }
.linkedin-overlay-tagline .hl-yellow { color: var(--yellow); }

.linkedin-overlay-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.linkedin-overlay-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.linkedin-overlay-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}

.linkedin-overlay-stat span {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Audience Cards — Radar Enhanced --- */
.audience-radar {
  opacity: 0.36 !important;
  transition: opacity 0.4s ease;
}
.audience-card:hover .audience-radar { opacity: 0.52 !important; }

.audience-radar--blue {
  bottom: -100px !important;
  right: -100px !important;
  width: 430px !important;
  animation: radar-drift 9s ease-in-out infinite;
}
.audience-radar--red {
  top: -100px !important;
  left: -100px !important;
  width: 430px !important;
  transform: scaleX(-1) !important;
  animation: radar-drift-flip 11s ease-in-out infinite reverse;
}

@keyframes radar-drift {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(8px, -14px); }
}
@keyframes radar-drift-flip {
  0%, 100% { transform: scaleX(-1) translate(0, 0); }
  50%       { transform: scaleX(-1) translate(8px, -14px); }
}

/* Audience wave decorations — bigger & bolder */
.audience-wave--tr {
  top: -50px !important;
  right: -60px !important;
  width: 260px !important;
  opacity: 0.18 !important;
}
.audience-wave--bl {
  bottom: -50px !important;
  left: -60px !important;
  width: 260px !important;
  opacity: 0.18 !important;
}

/* --- CTA Section — Dark Universe --- */
.cta-section--dark {
  background: var(--dark) !important;
}
.cta-section--dark .section-title { color: white; }
.cta-section--dark .section-sub { color: rgba(255,255,255,0.62); max-width: 520px; }
.cta-section--dark .section-eyebrow { color: var(--yellow); }
.cta-section--dark .badge--blue {
  background: rgba(66,142,211,0.18);
  border-color: rgba(66,142,211,0.4);
  color: #7ab8e8;
}
.cta-section--dark .trust-bar { border-top-color: rgba(255,255,255,0.10); }
.cta-section--dark .trust-item { color: rgba(255,255,255,0.50); }
.cta-section--dark .trust-icon { color: var(--green); }

/* Wave fills in dark CTA */
.cta-wave-dark {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.cta-wave-dark--a {
  top: -70px; left: -80px;
  width: 460px;
  opacity: 0.28;
  filter: brightness(0) invert(1);
  transform: rotate(-12deg);
}
.cta-wave-dark--b {
  bottom: -80px; right: -80px;
  width: 400px;
  opacity: 0.20;
  transform: rotate(22deg);
}
.cta-wave-dark--c {
  top: 50%; left: 42%;
  width: 280px;
  opacity: 0.10;
  filter: brightness(0) invert(1);
  transform: translate(-50%, -50%) rotate(6deg);
  animation: wave-float-br 12s ease-in-out infinite;
}
.cta-section--dark .container { position: relative; z-index: 1; }

/* Radar accent in extras page hero */
.hero-radar-accent {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0.12;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 340px; gap: 44px; }
  .radar-hero-wrap { width: 320px; height: 320px; }
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 640px) {
  .linkedin-overlay {
    background: linear-gradient(180deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.25) 100%);
  }
  .linkedin-overlay-stats { gap: 20px; }
  .linkedin-overlay-inner { padding: 0 20px; }
  .linkedin-overlay-tagline { margin-bottom: 14px; }
}

/* ============================================
   HERO TRUST MINI — extras page
   ============================================ */

.hero-trust-mini {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 4px;
}

.hero-trust-mini .sep {
  margin: 0 10px;
  color: var(--gray-400);
}

/* ============================================
   CALC CALLOUT — comparison section
   ============================================ */

.calc-callout {
  max-width: 720px;
  margin: 36px auto 0;
  background: var(--green-light);
  border: 1px solid rgba(57,121,108,0.18);
  border-radius: var(--radius-lg);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.calc-label {
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green);
  background: rgba(57,121,108,0.12);
  border: 1px solid rgba(57,121,108,0.2);
  border-radius: 50px;
  padding: 4px 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.calc-bad  { color: var(--red);   font-weight: 700; }
.calc-good { color: var(--green); font-weight: 700; }

/* ============================================
   STATS STRIP — chiffres-clés extras page
   ============================================ */

.stats-strip-wrap {
  background: var(--white);
  padding: 8px 0 72px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}

.stat-strip-item {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}

.stat-strip-item:last-child { border-right: none; }

.stat-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 7px;
}

.stat-strip-item:nth-child(1) strong { color: var(--green); }
.stat-strip-item:nth-child(2) strong { color: var(--blue); }
.stat-strip-item:nth-child(3) strong { color: var(--yellow); }
.stat-strip-item:nth-child(4) strong { color: var(--blue); }

.stat-strip-item span {
  font-size: 0.79rem;
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   PHONE APP MOCKUP — hero extras
   ============================================ */

.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 64px;
  position: relative;
}

.phone-live-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-frame {
  width: 264px;
  background: #101010;
  border-radius: 40px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.09),
    0 0 0 10px rgba(66,142,211,0.05),
    0 28px 72px rgba(66,142,211,0.24),
    0 56px 110px rgba(0,0,0,0.22);
  position: relative;
}

.phone-notch {
  width: 68px;
  height: 20px;
  background: #101010;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
}

.phone-screen {
  background: var(--ivory);
  border-radius: 31px;
  overflow: hidden;
  padding: 18px 14px 20px;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mock-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.mock-amp { color: var(--yellow); }
.mock-dot { color: var(--red); }

.mock-bell { font-size: 0.9rem; }

.mock-greeting {
  font-size: 0.7rem;
  color: var(--gray-600);
  margin-bottom: 3px;
  font-weight: 500;
}

.mock-section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.mock-mission-card {
  background: white;
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.mock-mission-card:last-child { margin-bottom: 0; }

.mmc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.mmc-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--blue-light);
  color: var(--blue);
  padding: 2px 7px;
  border-radius: 50px;
  letter-spacing: 0.01em;
}

.mmc-badge--yellow { background: var(--yellow-light); color: #b5650d; }
.mmc-badge--green  { background: var(--green-light);  color: var(--green); }

.mmc-pay {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.mmc-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mmc-meta {
  font-size: 0.62rem;
  color: var(--gray-400);
  margin-bottom: 9px;
  line-height: 1.3;
}

.mmc-btn {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.mmc-btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(66,142,211,0.35);
}

/* ============================================
   APP STORE BADGES — dark CTA section
   ============================================ */

.app-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 36px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  color: white;
  min-width: 152px;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}

.asb-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.asb-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.asb-text span {
  font-size: 0.64rem;
  opacity: 0.55;
  letter-spacing: 0.01em;
}

.asb-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   TÉMOIGNAGES — variante 3 colonnes
   ============================================ */

.testimonials-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

/* ============================================
   RESPONSIVE — nouveaux composants
   ============================================ */

@media (max-width: 900px) {
  .testimonials-grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-item:nth-child(2) { border-right: none; }
  .stat-strip-item:nth-child(3) {
    border-top: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
  }
  .stat-strip-item:nth-child(4) { border-top: 1px solid var(--gray-200); }

  .calc-callout { font-size: 0.85rem; }
}

@media (max-width: 600px) {
  .testimonials-grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stat-strip-item { border-right: none !important; border-bottom: 1px solid var(--gray-200); }
  .stat-strip-item:last-child { border-bottom: none; }
  .app-stores { flex-direction: column; align-items: center; }
  .phone-frame { width: 230px; }
  .hero-trust-mini { font-size: 0.72rem; }
}

/* ============================================
   HERO — APP STORE BADGES
   ============================================ */

.hero-app-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.app-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s;
}

.app-badge-pill:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(66,142,211,0.15);
  transform: translateY(-1px);
}

.app-badge-icon { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
.app-badge-text { display: flex; flex-direction: column; gap: 2px; }
.app-badge-sub { font-size: 0.62rem; font-weight: 500; color: var(--gray-400); letter-spacing: 0.03em; line-height: 1; text-transform: uppercase; }
.app-badge-name { font-size: 0.82rem; font-weight: 700; color: var(--dark); line-height: 1; }
.hero-app-label { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; }

@media (max-width: 768px) {
  .hero-app-row { gap: 10px; margin-top: 20px; }
  .app-badge-pill { padding: 9px 14px; }
}

/* ============================================
   TÉMOIGNAGES — RATING AGGREGATE
   ============================================ */

.rating-aggregate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  border: 1px solid rgba(57,121,108,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 16px;
}

.rating-stars { color: #FBBF24; letter-spacing: 2px; font-size: 0.9rem; }
.rating-aggregate strong { font-family: var(--font-display); font-weight: 800; color: var(--green); font-size: 0.9rem; }
.rating-aggregate span { color: var(--gray-600); font-size: 0.78rem; }

@media (max-width: 480px) {
  .rating-aggregate { gap: 8px; padding: 7px 14px; }
  .rating-aggregate span { display: none; }
}

/* ============================================
   HERO — STATS ROW (remplace les cards)
   ============================================ */

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 24px;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--dark);
}

.hero-stat-val--blue { color: var(--blue); }
.hero-stat-val--yellow { color: var(--yellow); }
.hero-stat-val--green { color: var(--green); }
.hero-stat-val--red { color: var(--red); }

.hero-stat span {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-stats-row { flex-wrap: wrap; gap: 4px; }
  .hero-stat { padding: 10px 16px; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat-sep { display: none; }
}

/* ============================================
   TIMELINE — TIME BADGE
   ============================================ */

.timeline-time {
  display: inline-block;
  background: var(--ivory);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

/* ============================================
   LIVE FEED WIDGET
   ============================================ */

.live-feed {
  background: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.09),
    0 4px 16px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-200);
  max-width: 360px;
  width: 100%;
}

.live-feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.live-feed-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.live-feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: feed-in 0.35s ease both;
}

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

.live-feed-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.live-feed-icon--green  { background: var(--green-light);  color: var(--green); }
.live-feed-icon--blue   { background: var(--blue-light);   color: var(--blue); }
.live-feed-icon--yellow { background: var(--yellow-light); color: #c47a10; }
.live-feed-icon--red    { background: var(--red-light);    color: var(--red); }

.live-feed-body { flex: 1; min-width: 0; }

.live-feed-body strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  line-height: 1.3;
}

.live-feed-body span {
  font-size: 0.72rem;
  color: var(--gray-400);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.35;
}

.live-feed-time {
  font-size: 0.66rem;
  color: var(--gray-400);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.live-feed-footer {
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.live-stat { text-align: center; }

.live-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.live-stat span {
  font-size: 0.6rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.live-stat--blue  strong { color: var(--blue); }
.live-stat--green strong { color: var(--green); }

.live-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================
   SAVINGS VISUAL — comparaison intérim vs Job&Go
   ============================================ */

.savings-visual {
  max-width: 680px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--gray-200);
}

.savings-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.si-tag {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
}

.si-tag--bad  { background: var(--red-light);  color: var(--red); }
.si-tag--good { background: var(--green-light); color: var(--green); }

.si-amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.si-amount--bad  { color: var(--red); }
.si-amount--good { color: var(--green); }

.si-desc {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.savings-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.savings-vs-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.savings-delta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--green-light);
  border: 1.5px solid rgba(57,121,108,0.22);
  border-radius: 50px;
  padding: 10px 16px;
  white-space: nowrap;
}

.savings-delta-amount {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}

.savings-delta-label {
  font-size: 0.59rem;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.savings-context {
  text-align: center;
  font-size: 0.77rem;
  color: var(--gray-400);
  margin-bottom: 44px;
}

/* ============================================
   CARD TOP ACCENT — avantages extras
   ============================================ */

.card--blue-top   { border-top: 3px solid var(--blue);   }
.card--green-top  { border-top: 3px solid var(--green);  }
.card--yellow-top { border-top: 3px solid var(--yellow); }
.card--red-top    { border-top: 3px solid var(--red);    }

/* ============================================
   CTA FORM SPLIT — section inscription dark
   ============================================ */

.cta-form-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.cta-form-left { text-align: left; }

.cta-form-left h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.cta-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  line-height: 1.4;
}

.cta-perk-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74,171,151,0.18);
  border: 1.5px solid rgba(74,171,151,0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #4aab97;
  flex-shrink: 0;
  font-style: normal;
}

/* ============================================
   RESPONSIVE — nouveaux composants extras v3
   ============================================ */

@media (max-width: 820px) {
  .cta-form-split { grid-template-columns: 1fr; gap: 32px; }
  .cta-form-left { text-align: center; }
  .cta-perks { align-items: flex-start; max-width: 340px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .savings-visual {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }
  .savings-vs { flex-direction: row; justify-content: center; gap: 20px; }
}

@media (max-width: 480px) {
  .savings-visual { padding: 22px 16px; }
  .si-amount { font-size: 2.4rem; }
}

/* ========================================================
   DESIGN POLISH — june 2026
   ======================================================== */

/* Timeline time badges — color-coded per step */
.timeline-step:nth-child(1) .timeline-time {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(66,142,211,0.25);
}
.timeline-step:nth-child(2) .timeline-time {
  background: var(--yellow-light);
  color: #b06d10;
  border-color: rgba(255,181,99,0.35);
}
.timeline-step:nth-child(3) .timeline-time {
  background: var(--green-light);
  color: var(--green);
  border-color: rgba(57,121,108,0.25);
}

/* Comparison "after" column — subtle green tint */
.comp-col--after {
  background: linear-gradient(160deg, #f4faf8 0%, #eef7f4 100%);
  border-color: rgba(57,121,108,0.18);
}
.comp-col--after h3 {
  color: var(--green);
}

/* Testimonials — large decorative quote mark */
.testimonial {
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--sable);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.testimonial blockquote {
  position: relative;
  z-index: 1;
}

/* ============================================
   EXTRAS PAGE — section sombre + glass cards
   ============================================ */

.section--dark {
  background: var(--dark);
}

.section--dark .section-title {
  color: white;
}

.section--dark .section-sub {
  color: rgba(255,255,255,0.55);
}

.section--dark .section-eyebrow {
  color: var(--yellow);
  opacity: 1;
}

.card--glass {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.09);
  color: white;
}

.card--glass h3 {
  color: white;
}

.card--glass p {
  color: rgba(255,255,255,0.58);
}

.card--glass:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

/* ============================================
   HERO BULLETS — liste de bénéfices
   ============================================ */

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.4;
}

.hero-bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================
   MISSION CARDS — dot coloré + badge salaire
   ============================================ */

.card--mission {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 14px;
  display: block;
  flex-shrink: 0;
}

.card-pay-badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 14px;
}

/* ============================================
   WAVE DARK — override de couleur de texte
   ============================================ */

.wave-sep--dark svg { display: block; }

/* Comp savings font size bump */
.comp-savings {
  font-size: 0.95rem;
  padding: 20px 28px;
}

/* ============================================
   TYPOGRAPHY POLISH
   ============================================ */

/* Elegant text wrapping — titles never break on a single short word */
.section-title,
.hero-title,
.hero-slogan { text-wrap: balance; }

/* Body copy: prevent orphans (single-word last line) */
.section-sub,
.hero-sub,
.seo-text p,
.testimonial blockquote,
.comp-col li,
.audience-list li { text-wrap: pretty; }

/* Centered section titles: max-width for elegant line breaks */
.section-header--center .section-title {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

/* Hero title: richer contrast against the ivory background */
.hero-title { color: var(--gray-700); }

/* SEO text: auto-hyphenation for dense justified prose */
.seo-text p { hyphens: auto; }

/* Audience caption: slightly more weight so it reads as a sub-label */
.audience-caption {
  font-weight: 500;
  opacity: 0.80;
}

/* ============================================
   MINIMALISME — épuration visuelle
   ============================================ */

/* Héros centré : stats + app row + badge symétriques */
.hero-centered .hero-stats-row  { justify-content: center; }
.hero-centered .hero-app-row    { justify-content: center; }
.hero-centered .hero-stat:first-child { padding-left: 24px; }

/* Témoignages : supprimer la grosse guillemet décorative */
.testimonial::before { display: none; }

/* Témoignages : remplacer shadow par une bordure fine */
.testimonial {
  box-shadow: none;
  border: 1px solid var(--gray-200);
}

/* Form card : shadow allégée */
.form-card {
  box-shadow: var(--shadow-sm);
}

/* Section : padding augmenté pour plus d'air */
.section { padding: 104px 0; }

/* Section header : plus d'espace sous le titre */
.section-header { margin-bottom: 64px; }

/* Hero : padding augmenté — le slogan doit respirer */
.hero { padding: 112px 0 96px; }

/* Comp-col before/after : fond plat, pas de dégradé */
.comp-col--before { background: var(--red-light); }
.comp-col--after  { background: white; }

/* Comparaison : ombre supprimée sur le wrapper */
.comparison-wrap { box-shadow: none; border: 1px solid var(--gray-200); }

/* hero-visual : visible (le masquage mobile est géré par media query) */

/* ---- Cartes : hover discret, pas de lift ---- */
.card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(66,142,211,0.36);
}
.card--mission:hover     { border-color: var(--gray-200); }
.card--glass:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
}

/* ---- Timeline : numéros sans ombre ---- */
.timeline-num {
  box-shadow: none;
  border-width: 2px;
}

/* ---- Hero bullets : check mark nu ---- */
.hero-bullet-check {
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
}

/* ---- CTA perk checks : check mark nu ---- */
.cta-perk-check {
  background: none;
  border: none;
  width: auto;
  height: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: #4aab97;
}

/* ---- Pricing : pas de cercle décoratif en fond ---- */
.pricing-card--popular-blue::after,
.pricing-card--popular-red::after  { display: none; }

/* ---- Phone mockup : glow réduit ---- */
.phone-frame {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 48px rgba(0,0,0,0.16);
}

/* ---- Savings visual : fond blanc, padding serré ---- */
.savings-visual {
  background: white;
  padding: 32px 28px;
}

/* ---- Stats strip : padding serré ---- */
.stat-strip-item { padding: 24px 20px; }
.stats-strip-wrap { padding-bottom: 56px; }

/* ---- Hero mockup row (extras centered hero) ---- */
.hero-mockup-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
