:root {
  --color-primary: #1a73e8;
  --color-primary-dark: #1557c0;
  --color-primary-ink: #0f4eb3;
  --color-primary-light: #e8f0fe;
  --color-primary-soft: #f7faff;
  --color-surface: #ffffff;
  --color-surface-alt: #f8fbff;
  --color-surface-elevated: rgba(255, 255, 255, 0.9);
  --color-border: #d9e3f2;
  --color-border-strong: #c4d3ea;
  --color-text: #18212f;
  --color-text-muted: #586577;
  --color-text-soft: #5b6573;
  --color-success: #1e8e3e;
  --color-warning: #f9ab00;
  --shadow-sm: 0 10px 30px rgba(26, 67, 124, 0.06);
  --shadow-md: 0 22px 56px rgba(26, 67, 124, 0.1);
  --shadow-lg: 0 36px 88px rgba(26, 67, 124, 0.14);
  --shadow-focus: 0 0 0 4px rgba(26, 115, 232, 0.14);
  --shadow-soft: 0 16px 40px rgba(26, 67, 124, 0.04);
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --container: min(1220px, calc(100% - 2.5rem));
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 220ms cubic-bezier(.2, .7, .2, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(26, 115, 232, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  line-height: 1.72;
  letter-spacing: -0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button, input, select, textarea { font: inherit; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1rem 1.05rem;
  color: var(--color-text);
  background: #fff;
  min-height: 56px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
input::placeholder, textarea::placeholder { color: var(--color-text-soft); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-focus);
  background: #fff;
}
textarea { min-height: 152px; resize: vertical; }
.container { width: var(--container); margin: 0 auto; }
.page { min-height: 100vh; }
.js-reveal .reveal { transform: translateY(14px); transition: transform .35s ease; }
.js-reveal .reveal.is-visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { transform: none; transition: none; }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(217, 227, 242, 0.88);
}
.site-header__inner {
  width: min(1440px, calc(100% - 3rem));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0 auto;
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.site-header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: #ffffff;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.site-header__icon-btn:hover {
  color: var(--color-primary-dark);
  border-color: rgba(26, 115, 232, 0.4);
  background: rgba(26, 115, 232, 0.06);
}
.site-header__lang-switch {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.site-header__lang-switch:hover {
  color: var(--color-primary-dark);
  border-color: rgba(26, 115, 232, 0.4);
  background: rgba(26, 115, 232, 0.06);
}
.site-header__nav-link {
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-xs);
  color: var(--color-text-muted);
  font-size: 0.91rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.site-header__nav-link:hover {
  color: var(--color-text);
  background: rgba(26, 115, 232, 0.06);
}
.site-header__nav-link.is-active {
  color: var(--color-primary);
  font-weight: 700;
  background: none;
}
.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  background: rgba(255,255,255,0.96);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 1rem 0 1.3rem;
  display: grid;
  gap: 0.7rem;
}
.mobile-menu__link {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  font-weight: 600;
}
.mobile-menu__actions { display: grid; gap: 0.7rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.98rem 1.32rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.button:hover { transform: translateY(-1px); }
.button--primary {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(26, 115, 232, 0.22);
}
.button--primary:hover { box-shadow: 0 22px 48px rgba(26, 115, 232, 0.24); }
.button--secondary {
  background: #fff;
  border-color: rgba(0, 42, 95, 0.18);
  color: #002A5F;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    transform 0.3s ease;
}
.button--secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #002A5F;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: -1;
  border-radius: inherit;
}
.button--secondary:hover {
  border-color: #002A5F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 42, 95, 0.20);
}
.button--secondary:hover::before {
  transform: scaleX(1);
}
.button--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--color-text-muted);
}
.button--ghost:hover {
  background: rgba(26, 115, 232, 0.06);
  border-color: transparent;
  color: var(--color-text);
}
.button--compact { padding: 0.8rem 1.05rem; font-size: 0.9rem; }
.button--full { width: 100%; }
.page-hero,
.section { padding: 6rem 0; }
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 115, 232, 0.09), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(26, 115, 232, 0.07), transparent 20%),
    linear-gradient(180deg, rgba(247, 250, 255, 0.8), rgba(255,255,255,0));
  pointer-events: none;
}
.page-hero > .container,
.section > .container { position: relative; z-index: 1; }
.hero-grid,
.grid-2,
.grid-3,
.feature-grid,
.article-grid,
.contact-grid,
.form-layout,
.stats-grid,
.faq-grid { display: grid; gap: 1.6rem; }
.hero-grid,
.form-layout,
.contact-grid { grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); align-items: center; }
.grid-3,
.feature-grid,
.article-grid,
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2,
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stack { display: grid; gap: 1.35rem; }
/* Image Framework adding Human Touch */
.hero-visual { position: relative; }
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-surface-alt);
  aspect-ratio: 4/5;
  transform: translateZ(0); /* Force hardware accel for smooth round corners */
}
@media (min-width: 900px) {
  .hero-image-wrapper {
    aspect-ratio: auto;
    height: 100%;
    min-height: 540px;
  }
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
/* Floating Micro-Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.floating-card {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 227, 242, 0.85);
  padding: 0.85rem 1.1rem;
  max-width: 240px;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}
.floating-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}
.floating-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}
.floating-card__subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .floating-card {
    bottom: 0.75rem;
    right: 0.75rem;
    max-width: 200px;
    padding: 0.7rem 0.9rem;
  }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-12px); }
  50% { transform: translateY(-6px); }
  70% { transform: translateY(-10px); }
}
.floating-card--co-borrower {
  bottom: 4.5rem;
  right: 0.5rem;
  left: auto;
  max-width: 280px;
}
@media (max-width: 900px) {
  .floating-card--co-borrower {
    bottom: 1rem;
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-md);
  }
}
/* Tablet & Mobile Responsive */
@media (max-width: 768px) {
  /* Typography scale-down */
  .page-title {
    font-size: 2rem;
    line-height: 1.08;
    max-width: none;
  }
  .section-title {
    font-size: 1.7rem;
    line-height: 1.1;
    max-width: none;
  }
  .page-copy {
    font-size: 0.95rem;
  }
  /* Hide desktop line-breaks - let text flow naturally on mobile */
  .page-title br,
  .section-title br,
  .section-copy br,
  .page-copy br {
    display: none;
  }
  /* Hero spacing - bring CTAs above fold */
  .page-hero,
  .section {
    padding: 3.5rem 0;
  }
  /* Inline hero/section padding override (has inline style) */
  .page-hero[style],
  .section[style] {
    padding: 3.5rem 0 !important;
  }
  /* Eyebrow - prevent awkward wrapping */
  .eyebrow {
    font-size: 0.62rem;
    padding: 0.42rem 0.7rem;
    letter-spacing: 0.07em;
  }
  /* Section header spacing */
  .section__header {
    margin-bottom: 1.4rem;
  }
  /* Stack gap reduction */
  .stack {
    gap: 1rem;
  }
  /* Grids to single column */
  .hero-grid,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .feature-grid,
  .article-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .grid-2,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  /* Hero image - taller on mobile to show more */
  .hero-image-wrapper {
    aspect-ratio: 4/5;
    max-height: none;
    overflow: hidden;
  }
  /* Reset inline scale on hero images for mobile - prevent overflow */
  .hero-image[style*="scale"] {
    transform: none !important;
  }
  /* Floating card - keep visible, smaller */
  .floating-card--co-borrower {
    bottom: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
  }
  .co-card {
    border-radius: 16px;
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }
  .co-card__title {
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .avatar-bubble {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  /* Pills - scale down */
  /* CTA buttons - auto-width centered, NOT full-width */
  .inline-cta {
    flex-direction: column;
    align-items: center;
  }
  .inline-cta .button {
    width: auto;
    min-width: 0;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  /* CTA band - zoom into bg image on mobile to focus on subjects */
  .cta-band--home,
  .cta-band--fonctionnement,
  .cta-band--actualite {
    background-size: 250% !important;
    background-position: 55% 83% !important;
  }
}
/* Small phone refinements */
@media (max-width: 480px) {
  .page-title {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.45rem;
  }
  .page-hero,
  .section {
    padding: 2.8rem 0;
  }
}
.eyebrow,
.hero-grid__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.52rem 0.86rem;
  background: rgba(232, 240, 254, 0.82);
  border: 1px solid rgba(196, 211, 234, 0.75);
  border-radius: var(--radius-pill);
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 6px rgba(30, 142, 62, 0.08);
}
.page-title,
.hero-grid__title,
.section-title,
.display-title {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin: 0;
  color: var(--color-text);
}
.page-title,
.hero-grid__title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  max-width: 18ch;
  font-weight: 800;
  overflow-wrap: break-word;
}
.section-title {
  font-size: clamp(2.1rem, 3.7vw, 3.6rem);
  max-width: 22ch;
  font-weight: 800;
}
.page-copy,
.hero-grid__intro,
.section-copy,
.lead {
  color: var(--color-text-muted);
  max-width: 64ch;
  font-size: 1.02rem;
}
.page-copy,
.hero-grid__intro { font-size: clamp(1.03rem, 1.3vw, 1.16rem); }
.section__header {
  margin-bottom: 2rem;
  display: grid;
  gap: 0.7rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
/* When a section header is centered, the section-tag is a grid item
   inside .section__header (display:grid) - text-align doesn't center
   grid items, so we need justify-self. */
.section__header[style*="text-align: center"] > .section-tag,
.section__header[style*="text-align:center"] > .section-tag { justify-self: center; }
.meta-row,
.trust-row,
.hero-grid__trust,
.inline-pills,
.security-badges { display: flex; flex-wrap: wrap; gap: 0.78rem; }
@media (min-width: 769px) {
  #hero-trust-row,
  #hero-news-trust,
  #hero-fonctionnement-trust {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 0.7rem 1.4rem;
  }
}
.mobile-only-break { display: none; }
@media (max-width: 768px) {
  .mobile-only-break { display: inline; }
}
.mobile-hide { display: inline; }
@media (max-width: 768px) {
  .mobile-hide { display: none; }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.trust-item__check,
.trust-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(30, 142, 62, 0.12);
  color: var(--color-success);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-panel,
.card,
.panel,
.form-shell,
.google-panel,
.faq-item,
.article-card,
.contact-card,
.profile-strip {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 227, 242, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card,
.panel,
.form-shell,
.google-panel,
.article-card,
.contact-card { padding: 1.7rem; }
.panel--soft,
.surface-soft { background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%); }
.panel--blue { background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%); }
.card__title, .panel__title, .contact-card__title, .faq-question {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.03em;
}
.card__copy, .panel__copy, .contact-card__copy, .muted { color: var(--color-text-muted); }
.card__description { color: var(--color-text-muted); margin: 0; line-height: 1.55; }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}
.card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.card__list, .check-list, .bullet-list, .contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.84rem;
}
.card__list li,
.check-list li,
.bullet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.68rem;
  color: var(--color-text-muted);
}
.card__list li::before,
.check-list li::before,
.bullet-list li::before {
  content: '✓';
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(26, 115, 232, 0.1);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 800;
  margin-top: 0.05rem;
}
.google-panel {
  padding: clamp(1.5rem, 2.2vw, 2rem);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.96) 100%);
}
.google-panel__top,
.profile-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.profile-brand { display: flex; align-items: center; gap: 0.95rem; }
.profile-brand__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}
.rating-row__score {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.spread-layout .rating-row {
  justify-content: center;
  margin: 2rem 0;
}
.spread-layout .rating-row__score {
  font-size: clamp(3.5rem, 5vw, 4.5rem);
}
/*
   Social Proof - Premium trust cards
    */
.social-proof {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.social-proof__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26, 115, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.social-proof__header {
  text-align: center;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 1;
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
/* Proof Card */
.proof-card {
  padding: 1.8rem 1.5rem 1.6rem;
  border-radius: 28px;
  border: 1px solid rgba(217, 227, 242, 0.92);
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,251,255,0.94) 100%);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 115, 232, 0.22);
}
/* Accent variant - highlight the rating */
.proof-card--accent {
  background: linear-gradient(180deg, #f0f6ff 0%, #e8f0fe 100%);
  border-color: rgba(26, 115, 232, 0.18);
}
.proof-card--accent .proof-card__icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.22);
}
.proof-card--accent .proof-card__bar-fill {
  background: linear-gradient(90deg, #f4b400, #f9ab00);
}
.proof-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  transition: transform var(--transition);
}
.proof-card:hover .proof-card__icon {
  transform: scale(1.08);
}
.proof-card__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.proof-card__label {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.4;
}
/* Mini progress bar accent */
.proof-card__bar {
  width: 100%;
  max-width: 100px;
  height: 4px;
  border-radius: 4px;
  background: rgba(26, 115, 232, 0.08);
  margin-top: 0.6rem;
  overflow: hidden;
}
.proof-card__bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.22, .61, .36, 1);
}
/* Animate bars when they enter viewport */
.social-proof.is-visible .proof-card__bar-fill {
  transform: scaleX(1);
}
@media (max-width: 700px) {
  .social-proof__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .social-proof {
    padding: 3rem 0 3.5rem;
  }
}
.stars { color: #f4b400; letter-spacing: 0.08em; }
.review-list { display: grid; gap: 0.95rem; }
.review-list--horizontal {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-item {
  padding: 1.15rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(217, 227, 242, 0.88);
}
.review-item__text {
  margin: 0.45rem 0 0;
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.65;
}
.review-item__meta {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}
.verified-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.86rem;
}
.verified-row a {
  color: var(--color-primary-dark);
  font-weight: 700;
}
.co-card {
  padding: 1.25rem 1.3rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid #d4e2f8;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.avatar-stack { display: flex; align-items: center; }
.avatar-bubble {
  width: 40px;
  height: 40px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  background: #002A5F;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}
.avatar-bubble:first-child { margin-left: 0; background: #0057BC; }
.co-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  font-weight: 800;
}
.co-card__title { font-weight: 700; line-height: 1.55; }
.process-step,
.compare-table,
.faq-item,
.form-group,
.article-card__content,
.timeline-step { position: relative; }
.process-step {
  padding: 1.65rem;
  border-radius: 28px;
  border: 1px solid rgba(217, 227, 242, 0.95);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 115, 232, 0.24);
}
.process-step__num,
.process-step__number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 800;
  margin-bottom: 1.15rem;
}
.process-step__title {
  margin: 0 0 0.6rem;
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.process-step__copy,
.process-step__description { margin: 0; color: var(--color-text-muted); line-height: 1.55; }
.process-step__meta {
  margin-top: 1rem;
  color: var(--color-primary-dark);
  font-size: 0.86rem;
  font-weight: 700;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
th, td {
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-size: 0.93rem;
}
th {
  color: var(--color-text);
  background: #f5f9ff;
  font-weight: 800;
}
tr.highlight td { background: rgba(26, 115, 232, 0.05); }
.form-shell {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.form-shell__slot {
  border: 1px solid rgba(212, 226, 248, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 28px;
  padding: 1.6rem;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.form-group { display: grid; gap: 0.48rem; }
.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.form-group--full { grid-column: 1 / -1; }
.consent-box {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  margin-top: 1.15rem;
  border-radius: 24px;
  background: #fbfdff;
  border: 1px solid var(--color-border);
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.89rem;
  line-height: 1.6;
}
.checkbox-row input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0.18rem 0 0;
  cursor: pointer;
}
.checkbox-row span {
  flex: 1;
  line-height: 1.55;
}
.checkbox-row a {
  /* Darker than --color-primary to keep 4.5:1+ contrast on the near-white
     consent-box background (#fbfdff). axe / Lighthouse flag --color-primary
     at 4.41:1 on this surface; --color-primary-dark gives ~6.4:1. */
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkbox-row a:hover {
  color: var(--color-primary-dark);
}
.inline-cta,
.hero-grid__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.faq-item {
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 28px;
}
.faq-question,
.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0;
}
.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-answer,
.faq-item__answer {
  margin: 0.85rem 0 0 2.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-item__answer { margin-left: 0; margin-top: 0.6rem; }
.cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(6rem, 12vw, 10rem);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  text-align: left;
}
.cta-band--home {
  background-image: url('images/getty-images-uzTrvT8iu0M-unsplash.webp');
  background-position: 1.5% 37.5%;
  background-size: 100%;
}
.cta-band--fonctionnement {
  background-image: url('images/getty-images-14CP0hn_GhQ-unsplash.webp');
  background-position: 0% 30.5%;
  background-size: 100%;
}
.cta-band--actualite {
  background-image: url('images/getty-images-S6WDY98jq7s-unsplash.webp');
  background-position: 0% 64.5%;
  background-size: 120%;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(21, 87, 192, 0.95) 0%,
    rgba(26, 115, 232, 0.88) 35%,
    rgba(26, 115, 232, 0.55) 60%,
    rgba(26, 115, 232, 0.25) 80%,
    rgba(26, 115, 232, 0.10) 100%
  );
  z-index: 1;
}
.cta-band > .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-band .section-tag { color: rgba(255,255,255,0.80); }
.cta-band .section-title,
.cta-band .section-copy,
.cta-band .muted { color: #fff; }
.cta-band .section-title { max-width: 22ch; }
.cta-band .section-copy { opacity: 0.92; max-width: 50ch; }
.cta-band .button--primary {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}
.cta-band .button--primary:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.cta-band .button--secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(4px);
}
.cta-band .button--secondary::before {
  background: rgba(255,255,255,0.22);
}
.cta-band .button--secondary:hover {
  border-color: rgba(255,255,255,0.50);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* CTA band responsive - center text on mobile since image won't show */
@media (max-width: 768px) {
  .cta-band { text-align: center; }
  .cta-band::before {
    background: linear-gradient(
      to bottom,
      rgba(21, 87, 192, 0.88) 0%,
      rgba(26, 115, 232, 0.75) 60%,
      rgba(26, 115, 232, 0.55) 100%
    );
  }
  .cta-band > .container {
    align-items: center;
    max-width: 100%;
  }
  .cta-band .section-title {
    font-size: 1.7rem;
  }
  .cta-band .section-copy {
    font-size: 0.92rem;
  }
  .cta-band .inline-cta {
    flex-direction: column;
    align-items: center;
    width: auto;
  }
  .cta-band .inline-cta .button {
    width: auto;
    justify-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Legal Disclosure */
.legal-disclosure {
  background: linear-gradient(180deg, #f4f7fc 0%, #eef3fa 100%);
  border-top: 1px solid rgba(26, 115, 232, 0.12);
  margin-top: 0;
  padding: 2.25rem 0 1.75rem;
}
.legal-disclosure__details {
  max-width: 1120px;
  margin: 0 auto;
}
.legal-disclosure__details > summary {
  list-style: none;
  cursor: pointer;
}
.legal-disclosure__details > summary::-webkit-details-marker { display: none; }
.legal-disclosure__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0;
  padding: 0.5rem 0;
  letter-spacing: -0.01em;
  text-align: center;
  transition: color 0.2s ease;
}
.legal-disclosure__details > summary:hover .legal-disclosure__heading,
.legal-disclosure__details > summary:focus-visible .legal-disclosure__heading {
  color: var(--color-primary);
}
.legal-disclosure__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}
.legal-disclosure__details[open] .legal-disclosure__chevron {
  transform: rotate(180deg);
}
.legal-disclosure__details[open] .legal-disclosure__heading {
  margin-bottom: 1.5rem;
}
.legal-disclosure__details[open] .legal-disclosure__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.6rem;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 2px;
}
.legal-disclosure__details[open] .legal-disclosure__heading {
  position: relative;
}
.legal-disclosure__body {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.1rem;
  padding-bottom: 0.5rem;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.legal-disclosure__section,
.legal-disclosure__section--full {
  grid-column: span 2;
}
.legal-disclosure__section:nth-child(4) {
  grid-column: 1 / span 3;
}
.legal-disclosure__section:nth-child(5) {
  grid-column: 4 / span 3;
}
.legal-disclosure__section {
  background: #ffffff;
  border: 1px solid rgba(217, 227, 242, 0.95);
  border-radius: 14px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 4px 14px -10px rgba(20, 60, 130, 0.18);
  height: 100%;
}
.legal-disclosure__section-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.legal-disclosure__body p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--color-text-soft);
  margin: 0;
}
@media (max-width: 768px) {
  .legal-disclosure { padding: 2.5rem 0 2rem; }
  .legal-disclosure__heading { font-size: 1.1rem; }
  .legal-disclosure__body { grid-template-columns: 1fr; gap: 0.85rem; }
  .legal-disclosure__section,
  .legal-disclosure__section--full,
  .legal-disclosure__section:nth-child(4),
  .legal-disclosure__section:nth-child(5) { grid-column: auto; }
  .legal-disclosure__section { padding: 1rem 1.1rem; border-radius: 12px; }
  .legal-disclosure__section-title { font-size: 0.88rem; }
  .legal-disclosure__body p { font-size: 0.78rem; line-height: 1.62; }
}
/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-alt);
}
.footer__inner {
  width: var(--container);
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer__brand-col { display: grid; gap: 1rem; align-content: start; }
.footer__brand-title {
  display: flex;
  align-items: center;
}
.footer__logo {
  height: 36px;
  width: auto;
}
.footer__brand-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 32ch;
}
.footer__col { display: grid; gap: 0.75rem; align-content: start; }
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}
.footer__link {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--color-primary-dark); }
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-text-soft);
  font-size: 0.82rem;
}
.footer__legal-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer__legal-links a {
  color: var(--color-text-soft);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--color-primary-dark); }
.footer__disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--color-text-soft);
  text-align: center;
  font-style: italic;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand-col {
    grid-column: 1 / -1;
  }
}
#hero-proof-block,
#landing-sidebar {
  align-self: start;
}
#landing-sidebar {
  gap: 1rem;
}
#landing-form .inline-cta .muted {
  max-width: 34ch;
  font-size: 0.88rem;
}
#landing-form-section .form-layout {
  align-items: start;
}
#landing-faq .faq-grid {
  gap: 1rem;
}
@media (min-width: 1081px) {
  #hero-proof-block,
  #landing-sidebar {
    position: sticky;
    top: 118px;
  }
}
@media (max-width: 1080px) {
  .site-header__nav,
  .site-header__right > .button,
  .site-header__icon-btn,
  .site-header__lang-switch { display: none; }
  .mobile-menu-button { display: inline-grid; place-items: center; }
  .hero-grid,
  .form-layout,
  .contact-grid,
  .grid-2,
  .grid-3,
  .feature-grid,
  .article-grid,
  .stats-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .page-title,
  .section-title { max-width: none; }
}
@media (max-width: 720px) {
  :root { --container: min(100% - 1.25rem, 100% - 1.25rem); }
  .page-hero,
  .section { padding: 4.25rem 0; }
  .page-title { font-size: 2rem; line-height: 1.1; }
  .section-title { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .form-grid { grid-template-columns: 1fr; }
  .button--full-mobile { width: 100%; }
  .hero-content,
  .hero-content .page-copy {
    min-width: 0;
    max-width: calc(100vw - 2rem);
  }
  .hero-content .page-copy {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
  .profile-strip,
  .google-panel__top { align-items: flex-start; }
  .co-card { align-items: flex-start; }
  .page-hero__panel,
  .hero-panel,
  .google-panel,
  .form-shell,
  .card,
  .panel,
  .contact-card,
  .article-card,
  .faq-item { padding: 1.25rem; }
  .site-header__inner { min-height: 78px; }
  .form-shell { padding: 0; }
  .form-shell__slot {
    padding: 1.15rem;
    border-radius: 22px;
  }
  body[data-page="nous-joindre"] #contact-form-slot {
    padding: 0.95rem;
  }
  .hero-bg-orbs { display: none; }
}
@media (max-width: 360px) {
  .form-shell__slot { padding: 0.95rem; }
  body[data-page="nous-joindre"] #contact-form-slot { padding: 0.75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
/* Missing Utility Classes */
.container--narrow { width: var(--container); max-width: 960px; margin: 0 auto; }
.text-center { text-align: center; }
.stack-center { display: grid; gap: 1.35rem; align-items: center; justify-items: center; }
.section--light { background: linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%); }
/* News Item Styles */
@media (max-width: 600px) {
}
/* News Grid (card-style without images) */
@media (max-width: 768px) {
}
/* Form Sections (fieldsets) */
/* Numbered List Variant */
/* Contact Page Enhancements */
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.contact-tile {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(217, 227, 242, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-tile__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.contact-tile__label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  font-weight: 800;
}
.contact-tile__value {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .contact-tiles { grid-template-columns: 1fr; }
}
/* Content + Sidebar Layout */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1081px) {
  .content-sidebar { align-items: stretch; }
  .content-sidebar > .sidebar-sticky { align-self: stretch; display: flex; flex-direction: column; gap: 1rem; }
  .content-sidebar > .sidebar-sticky > .panel { flex: 1 1 0; display: flex; flex-direction: column; justify-content: center; }
}
@media (max-width: 1080px) {
  .content-sidebar { grid-template-columns: 1fr; }
  .content-sidebar[style] { grid-template-columns: 1fr !important; }
}
/* Eligibility section responsive */
@media (max-width: 768px) {
  #eligibility-section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
/*
   Payment Calculator
    */
#calc-amounts,
#calc-freqs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  padding: 1.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
  border: 1px solid #d4e2f8;
}
.calc-pill {
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: -0.01em;
}
.calc-pill:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}
.calc-pill.is-active {
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.22);
}
#calc-results {
  transition: opacity 0.2s ease;
}
#calc-results.is-updating {
  opacity: 0.5;
}
@media (max-width: 600px) {
  #calc-results {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .calc-pill {
    padding: 0.6rem 0.9rem;
    font-size: 0.84rem;
  }
}
/* PREMIUM ELEVATIONS & UI ENHANCEMENTS */
/* Hero Orbs Background */
.hero-bg-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: orbFloat 20s infinite ease-in-out alternate;
}
@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.15) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.1) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -10s;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
  100% { transform: translate(-30px, 80px) scale(0.9); }
}
/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(26, 67, 124, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.glass-eyebrow {
  background: rgba(232, 240, 254, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 211, 234, 0.5);
}
/* Premium Typography */
.hero-headline {
  background: linear-gradient(135deg, #18212f 0%, #1557c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.12;
  padding-bottom: 0.08em;
}
/* Dynamic Buttons */
/* Interactive Hover States */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
/* Links & Badges */
.glow-link {
  display: inline-flex;
  font-weight: 800;
  color: var(--color-primary-dark);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(26, 115, 232, 0.05);
  transition: all 0.3s ease;
}
.glow-link:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 16px rgba(26, 115, 232, 0.2);
  transform: translateX(4px);
}
.trust-check {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--color-success);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  margin-right: 6px;
}
/* Smooth Review Stars Sync */
.stars-animated {
  display: flex;
  gap: 2px;
}
.stars-animated svg {
  animation: starPulse 2.5s infinite;
}
.stars-animated svg:nth-child(2) { animation-delay: 0.1s; }
.stars-animated svg:nth-child(3) { animation-delay: 0.2s; }
.stars-animated svg:nth-child(4) { animation-delay: 0.3s; }
.stars-animated svg:nth-child(5) { animation-delay: 0.4s; }
@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 6px rgba(244, 180, 0, 0.6)); }
}
/* =============================================
   Sidebar Sticky Utility
   ============================================= */
.sidebar-sticky {
  position: sticky;
  top: 118px;
  align-self: start;
}
/* =============================================
   Contact Tiles
   ============================================= */
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  gap: 0.75rem;
}
.contact-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 115, 232, 0.08);
}
.contact-tile__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.contact-tile__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .contact-tiles {
    grid-template-columns: 1fr;
  }
}
/* =============================================
   Contact Tile Icons (Lucide-style SVG)
   ============================================= */
.contact-tile__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  stroke-width: 1.75;
  transition: color 0.3s ease, transform 0.3s ease;
}
.contact-tile:hover .contact-tile__icon svg {
  color: var(--color-primary-dark);
  transform: scale(1.1);
}
a.contact-tile__value {
  color: inherit;
  text-decoration: none;
}
a.contact-tile__value:hover {
  color: var(--color-primary);
}
/* =============================================
   Homepage Modifiers
   ============================================= */
.hero-image--home {
  object-position: 64% 91.5%;
  filter: brightness(0.96);
  height: 580px;
  padding: 0;
}
.cta-band--home {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: 380px;
}
@media (max-width: 720px) {
  .hero-image--home {
    height: auto;
    max-height: 420px;
  }
  .cta-band--home {
    min-height: 280px;
    padding: 2.5rem 0;
  }
}
/*
   Mobile Review Fixes - 2026-04-13 (Jérémie feedback pass)
    */
/* Global: prevent any horizontal scroll - root cause of multiple overflow bugs.
   Use overflow-x: clip (not hidden) so we don't create a scroll container on
   <body>, which would break position: sticky on descendants and cause scroll jank. */
html, body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}
@media (max-width: 1080px) {
  /* Force ALL inline grid-template-columns overrides to single column on mobile */
  .hero-grid,
  .hero-grid[style],
  .form-layout,
  .form-layout[style],
  .contact-grid,
  .contact-grid[style] {
    grid-template-columns: 1fr !important;
  }
  /* Header - center brand, keep hamburger pinned right */
  .site-header__inner {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
  }
  .site-header__brand {
    margin: 0 auto;
  }
  .site-header__right {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    gap: 0.4rem;
  }
  .site-header__logo {
    height: 44px;
  }
  /* Contact page - disable sticky sidebar on mobile + reorder so form comes first */
  #contact-grid #contact-sidebar.sidebar-sticky,
  .content-sidebar .sidebar-sticky,
  .sidebar-sticky {
    position: static !important;
    top: auto !important;
    align-self: auto !important;
  }
  #contact-grid,
  .content-sidebar,
  .content-sidebar[style] {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }
  #contact-grid > * { width: 100%; }
  #contact-grid #contact-form-shell { order: 1; }
  #contact-grid #contact-sidebar { order: 2; }
  /* Final CTA block - inline margin "0px 233px 52px" destroys mobile layout */
  #landing-final-cta .container,
  #landing-final-cta .container[style] {
    margin: 0 auto !important;
    padding: 0 1rem !important;
    max-width: 100% !important;
  }
  /* Override inline `style="padding: 88px"` on hero sections and `padding: 64px/72px 0` on article sections - destroys mobile width */
  .page-hero[style*="padding"],
  section.page-hero[style] {
    padding: 2.5rem 0 !important;
  }
  .section[style*="padding:64px"],
  .section[style*="padding:72px"],
  .section[style*="padding: 64px"],
  .section[style*="padding: 72px"] {
    padding: 2rem 1rem !important;
  }
  .cta-band[style*="padding:64px"] {
    padding: 2.5rem 1rem !important;
  }
  main[style*="margin"] { margin: 0 !important; }
}
@media (max-width: 360px) {
  .site-header__inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .site-header__right {
    right: 0.85rem;
  }
  .site-header__logo {
    height: 40px;
  }
}
@media (max-width: 768px) {
  /* Trust row - single column instead of 2x2 */
  .trust-row,
  #hero-trust-row,
  #hero-fonctionnement-trust {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.6rem !important;
  }
  /* Hide the invisible flex-basis spacer that was forcing 2+2 layout */
  .trust-row > span[style*="flex-basis"] {
    display: none !important;
  }
  /* Calculator pills - even grid instead of wrap-orphan */
  #calc-amounts {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 0.3rem !important;
  }
  #calc-freqs {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.35rem !important;
  }
  .calc-pill {
    padding: 0.55rem 0.25rem !important;
    font-size: 0.7rem !important;
    letter-spacing: -0.02em !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  #calc-freqs .calc-pill {
    font-size: 0.7rem !important;
    padding: 0.6rem 0.3rem !important;
  }
  /* Calculator card - less padding so buttons aren't squeezed */
  #calculator-card {
    padding: 1.2rem 0.85rem !important;
    border-radius: 22px !important;
  }
  /* Calculator results - 3 columns on desktop, stacked on mobile */
  .calc-results {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    padding: 1.25rem !important;
  }
  /* Hero visual card - ensure no phantom whitespace from aspect-ratio mismatch */
  .hero-image-wrapper {
    aspect-ratio: auto !important;
    min-height: 0 !important;
  }
  .hero-image,
  .hero-image--home {
    height: auto !important;
    max-height: 320px !important;
    width: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }
  /* Hide the floating card on mobile - too hard to position cleanly inside image */
  .floating-card--co-borrower {
    display: none !important;
  }
}
/* Inline CTA row helper for section-end CTAs added after Jérémie's review */
.section-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem auto 0.5rem;
}
.section-cta-row .button {
  min-width: 220px;
}
@media (max-width: 768px) {
  .section-cta-row {
    flex-direction: column;
    gap: 0.7rem;
    margin: 2rem 1rem 0.5rem;
  }
  .section-cta-row .button {
    width: 100%;
    min-width: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
/* Contact page: tighten hero-to-tiles spacing */
body[data-page="nous-joindre"] #hero-contact { padding-bottom: 2.5rem !important; }
body[data-page="nous-joindre"] #contact-info-section { padding-top: 1.25rem; padding-bottom: 3rem; }
@media (max-width: 768px) {
  body[data-page="nous-joindre"] #hero-contact { padding-bottom: 1.5rem !important; }
  body[data-page="nous-joindre"] #contact-info-section { padding-top: 0.5rem; padding-bottom: 2rem; }
}
/* Card list - stacked term + description (Law 25 privacy policy) */
.card__list-desc {
  grid-column: 2;
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-soft, #6b7484);
  font-weight: 400;
}
.card__list li > strong,
.card__list li > .card__list-desc {
  grid-column: 2;
}
.card__list li > strong {
  color: var(--color-text);
  font-weight: 700;
}
/* Scroll to top matches #cc-manage-link styling on the right */
#scroll-top {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-primary, #1a73e8);
  border: 1px solid #e4ecf7;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 60, 130, 0.10);
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
  opacity: 0;
  pointer-events: none;
  padding: 0;
}
#scroll-top[hidden] { display: none; }
#scroll-top.is-visible {
  opacity: 0.85;
  pointer-events: auto;
}
#scroll-top:hover {
  opacity: 1;
  box-shadow: 0 10px 24px rgba(26, 115, 232, 0.18);
  transform: scale(1.06);
}
#scroll-top:focus-visible {
  outline: 2px solid var(--color-primary, #1a73e8);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  #scroll-top { transition: opacity 150ms ease; }
  #scroll-top:hover { transform: none; }
}
/* Skip-link - visible only on keyboard focus (a11y) */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--color-primary, #1a73e8);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transform: translateY(-110%);
  transition: transform 150ms ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #ffffff;
  outline-offset: -5px;
}
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}
main:focus { outline: none; }
/* Legacy SEO landing page structural shims
   src/fr/pret-urgent-sans-rejet.njk and src/fr/pret-rapide-en-fin-de-semaine.njk
   were authored against an older template that uses .hero-grid as the section
   wrapper directly (without .page-hero / .container). These rules give those
   sections proper padding + container behavior. Post-launch refactor: rewrite
   both .njk files to match src/fr/pret-rapide-sans-refus.njk structure. */
section.hero-grid {
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 4vw, 2rem);
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  section.hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero-grid__content {
  display: grid;
  gap: 1.35rem;
  align-content: center;
}
.hero-grid__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-surface-alt);
  aspect-ratio: 4/5;
  align-self: stretch;
}
@media (min-width: 900px) {
  .hero-grid__image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 540px;
  }
}
.hero-grid__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
section.process-section,
section.benefits-section,
section.faq-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
  max-width: 1280px;
  margin: 0 auto;
}
section.process-section .section-title,
section.benefits-section .section-title,
section.faq-section .section-title {
  margin-bottom: 2.5rem;
}
/* Legacy SEO landing page aliases (EN side: page-hero__/feature-grid__)
   src/en/money-loan-with-no-rejection.njk and src/en/quick-loan-without-refusal.njk
   use yet a third class system. These aliases route them to the modern rules. */
/* page-hero structural */
section.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
/* page-section padding wrapper */
section.page-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
/* Trust items list (plural; horizontal flex) */
.trust-items > .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
/* Feature-grid item (numbered process card on EN landing pages) */
.feature-grid__item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 227, 242, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.7rem;
  display: grid;
  gap: 0.6rem;
}
.feature-grid__number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.feature-grid__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin: 0;
}
.feature-grid__text {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}
/* card__text alias */
.card__text {
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}