:root {
  --brand-sky: #7ed3f7;
  --brand-sky-deep: #37b4e6;
  --brand-azure: #1f7cc8;
  --brand-midnight: #0a2540;
  --brand-sunset: #f59e57;
  --brand-sunset-dark: #ea8b37;
  --surface-light: #f5fbff;
  --surface-white: #ffffff;
  --surface-muted: #e1f3fc;
  --shadow-color: rgba(15, 64, 128, 0.12);
  --shadow-strong: rgba(10, 37, 64, 0.18);
  --radius-lg: 20px;
  --brand-white: white;
}

body {
  background-color: var(--surface-light);
}

.bg-brand-gradient {
  background-image: linear-gradient(135deg, rgba(15, 64, 128, 0.95) 0%, rgba(55, 180, 230, 0.92) 42%, rgba(245, 158, 87, 0.85) 100%);
}

.bg-glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.shadow-elevated {
  box-shadow: 0 15px 45px var(--shadow-color);
}

.shadow-elevated-strong {
  box-shadow: 0 25px 60px var(--shadow-strong);
}

.text-brand-sky {
  color: var(--brand-sky-deep);
}

.text-brand-midnight {
  color: var(--brand-midnight);
}

.text-brand-sunset {
  color: var(--brand-sunset-dark);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: rgba(126, 211, 247, 0.18);
  color: var(--brand-sunset-dark);
  border: 1px solid rgba(126, 211, 247, 0.35);
}

.badge-soft-special {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  background-color: rgba(126, 211, 247, 0.18);
  color: var(--brand-white);
  border: 1px solid rgba(126, 211, 247, 0.35);
}

.badge-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 9999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid rgba(15, 37, 64, 0.08);
  color: rgba(15, 37, 64, 0.7);
}

.card {
  border-radius: var(--radius-lg);
  background-color: var(--surface-white);
  box-shadow: 0 20px 45px rgba(15, 64, 128, 0.1);
  border: 1px solid rgba(15, 37, 64, 0.05);
}

.card-muted {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(126, 211, 247, 0.12), rgba(245, 158, 87, 0.12));
  border: 1px solid rgba(55, 180, 230, 0.18);
}

.partner-card {
  position: relative;
  border-radius: 22px;
  padding: 1.5rem 1rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 18px 40px rgba(10, 37, 64, 0.12);
  border: 1px solid rgba(15, 37, 64, 0.08);
}

.partner-card img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(10, 37, 64, 0.15));
}

.partner-card figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-midnight);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.link-chevron {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-azure);
  font-weight: 600;
}

.link-chevron svg {
  transition: transform 0.2s ease;
}

.link-chevron:hover svg {
  transform: translateX(3px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 16, 32, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 40;
  pointer-events: auto;
}

.cta-primary {
  background-image: linear-gradient(135deg, var(--brand-sunset) 0%, var(--brand-sunset-dark) 100%);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 35px rgba(245, 158, 87, 0.35);
  white-space: nowrap;
}

.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(245, 158, 87, 0.45);
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 9999px;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--brand-azure);
  border: 1px solid rgba(55, 180, 230, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 12px 28px rgba(126, 211, 247, 0.25);
}

.cta-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(55, 180, 230, 0.32);
}

.cta-secondary--light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.cta-secondary--light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-azure);
  font-weight: 600;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 9999px;
  padding: 0.8rem 1.4rem;
  font-weight: 500;
  border: 1px solid rgba(15, 37, 64, 0.18);
  color: var(--brand-midnight);
  background: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cta-ghost:hover {
  border-color: var(--brand-azure);
  color: var(--brand-azure);
}

.cta-ghost.text-white {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.cta-ghost.text-white:hover {
  background: rgba(255, 255, 255, 0.18);
}

.progress-track {
  position: relative;
  height: 4px;
  background: rgba(15, 37, 64, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand-sky), var(--brand-sunset));
}

.step-dot {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(126, 211, 247, 0.35);
  background: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--brand-azure);
  box-shadow: 0 10px 25px rgba(15, 64, 128, 0.12);
}

.faq-item {
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid rgba(15, 37, 64, 0.05);
  box-shadow: 0 12px 30px rgba(15, 64, 128, 0.08);
}

.faq-item[open] {
  border-color: rgba(55, 180, 230, 0.45);
  box-shadow: 0 18px 45px rgba(55, 180, 230, 0.15);
}

.form-field {
  border-radius: 14px;
  border: 1px solid rgba(15, 37, 64, 0.12);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field:focus {
  border-color: var(--brand-sunset-dark);
  background-color: rgba(245, 158, 87, 0.12);
  box-shadow: 0 0 0 4px rgba(245, 158, 87, 0.25);
  outline: none;
}

.form-field-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-helper {
  font-size: 0.8125rem;
  color: rgba(15, 37, 64, 0.6);
}

.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.35rem;
}

.grid-auto-fit {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-auto-lg {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.logo-shadow {
  box-shadow: 0 12px 30px rgba(15, 64, 128, 0.25);
  border-radius: 18px;
}

.mobile-link {
  display: block;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 64, 128, 0.08);
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-link:hover {
  color: var(--brand-azure);
  box-shadow: 0 18px 36px rgba(55, 180, 230, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: rgba(55, 180, 230, 0.12);
  color: var(--brand-azure);
  font-weight: 600;
  font-size: 0.8125rem;
}

.stats-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 37, 64, 0.08);
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(10, 37, 64, 0.08);
}

.bg-city-hero {
  background: linear-gradient(145deg, rgba(15, 37, 64, 1), rgba(55, 180, 230, 0.92));
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 37, 64, 0.1), rgba(55, 180, 230, 0.4), rgba(15, 37, 64, 0.1));
  margin: 4rem 0;
}

.reviews-grid-wrapper {
  min-height: 100%;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 37, 64, 0.06);
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(10, 37, 64, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 100%;
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.review-card__rating {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-card__stars {
  color: var(--brand-sunset-dark);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

.review-card__score {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(15, 37, 64, 0.6);
}

.review-card__tag {
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(55, 180, 230, 0.12);
  color: var(--brand-azure);
  border: 1px solid rgba(55, 180, 230, 0.25);
}

.review-card__quote {
  font-size: 1rem;
  color: rgba(15, 37, 64, 0.8);
  line-height: 1.65;
}

.review-card__author {
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 37, 64, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-card__name {
  font-weight: 600;
  color: var(--brand-midnight);
}

.review-card__context {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(15, 37, 64, 0.5);
}

.review-card--empty {
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-card {
    padding: 1.25rem;
  }
}

.elig-shell-wrapper {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

@media (min-width: 1024px) {
  .elig-shell-wrapper {
    padding: 0;
  }
}

.elig-shell {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(15, 37, 64, 0.06);
  box-shadow: 0 30px 60px rgba(10, 37, 64, 0.08);
  padding: clamp(1rem, 1.6vw, 2rem);
  width: 100%;
}

.elig-progress {
  background: linear-gradient(135deg, rgba(126, 211, 247, 0.18), rgba(245, 158, 87, 0.14));
  border: 1px solid rgba(55, 180, 230, 0.25);
  border-radius: 20px;
  padding: clamp(1rem, 1.5vw, 1.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.elig-progress-counter {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-azure);
}

.elig-progress-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 37, 64, 0.12);
  overflow: hidden;
}

.elig-progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-sky), var(--brand-sunset));
  transition: width 0.3s ease;
}

.elig-progress-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.elig-progress-stats {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: rgba(10, 37, 64, 0.65);
  font-weight: 500;
}

.elig-progress-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.elig-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.elig-alert {
  border-radius: 18px;
  border: 1px solid rgba(220, 38, 38, 0.25);
  background: rgba(254, 226, 226, 0.7);
  padding: 1rem 1.25rem;
}

.elig-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .elig-grid {
    gap: 1.25rem;
  }
}

.elig-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-midnight);
}

.elig-card-text {
  font-size: 0.875rem;
  color: rgba(15, 37, 64, 0.7);
  line-height: 1.45;
}

.elig-step {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.elig-step.hidden {
  display: none !important;
}

.elig-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.elig-step-actions .cta-primary,
.elig-step-actions .elig-secondary {
  min-width: 160px;
}

.elig-secondary {
  border-radius: 9999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  border: 1px solid rgba(15, 37, 64, 0.18);
  background: #ffffff;
  color: var(--brand-midnight);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.elig-secondary:hover {
  border-color: var(--brand-azure);
  color: var(--brand-azure);
}

.elig-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.elig-pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(55, 180, 230, 0.18);
  color: var(--brand-azure);
}

.pill-accent {
  background: rgba(245, 158, 87, 0.85);
  color: #ffffff;
}

.elig-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(15, 37, 64, 0.75);
  margin-bottom: 0.35rem;
}

.elig-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(15, 37, 64, 0.12);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: rgba(15, 37, 64, 0.7);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.elig-choice input {
  accent-color: var(--brand-azure);
}

.elig-choice:hover {
  border-color: rgba(55, 180, 230, 0.45);
  box-shadow: 0 12px 28px rgba(55, 180, 230, 0.15);
}

.elig-radio-rounded {
  width: 16px;
  height: 16px;
}

.elig-card {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  height: auto; /* s’adapte au contenu */
  margin: 0 auto;
}

.elig-card:hover .elig-card-content {
  border-color: rgba(55, 180, 230, 0.25);
  box-shadow: 0 18px 40px rgba(15, 64, 128, 0.12);
}

.elig-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.elig-card-content {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 18px;
  background: #f6f9fc;
  border: 1px solid rgba(15, 37, 64, 0.08);
  transition: all 0.25s ease;
  height: 100%;
}

.elig-card input:checked + .elig-card-content {
  border-color: var(--brand-sunset-dark);
  background: linear-gradient(135deg, rgba(245, 158, 87, 0.18), rgba(55, 180, 230, 0.25));
  box-shadow: 0 25px 55px rgba(10, 37, 64, 0.25);
}

.elig-checkbox + .elig-card-content,
.elig-radio + .elig-card-content {
  border: 1px solid rgba(15, 37, 64, 0.08);
  border-radius: 18px;
}

.elig-card input:checked + .elig-card-content h4 {
  color: var(--brand-midnight);
}

.elig-card input:checked + .elig-card-content p {
  color: rgba(15, 37, 64, 0.75);
}

.elig-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-midnight);
}

.elig-summary {
  background: rgba(126, 211, 247, 0.12);
  border: 1px solid rgba(55, 180, 230, 0.28);
  border-radius: 18px;
  padding: 1.15rem;
  font-size: 0.875rem;
  color: rgba(15, 37, 64, 0.75);
}

.elig-additional {
  background: rgba(126, 211, 247, 0.1);
  border-radius: 18px;
  padding: 1.1rem;
  border: 1px solid rgba(55, 180, 230, 0.18);
}
@media (max-width: 640px) {
  .partner-card {
    padding: 1rem 0.75rem;
  }

  .elig-progress-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .elig-step-actions {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.6rem;
  }

  .elig-step-actions .cta-primary,
  .elig-step-actions .elig-secondary {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.85rem;
    padding: 0.65rem 0.9rem;
  }

  .elig-thumb {
    height: 100px;
  }
	
  .elig-card {
    max-width: 350px;
  }
}

.video-shell {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 37, 64, 0.12);
  border: 1px solid rgba(15, 37, 64, 0.08);
  background: #000;
}

.video-shell iframe,
.video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .video-shell {
    padding-bottom: 45%;
  }
}
