:root {
  --navy: #0B1F3A;
  --navy-dark: #071527;
  --white: #ffffff;
  --off-white: #F6F4EE;
  --border: #E5E2D8;
  --text: #2B2D33;
  --muted: #5A5C63;
  --warning-bg: #fff4d6;
  --warning-text: #5e4300;
  --shadow: 0 16px 36px rgba(11, 31, 58, 0.12);
  --seal: #8B1E2F;
  --brass: #B8935E;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--off-white);
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  padding: 56px 20px 64px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  text-align: center;
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
}

.hero__label {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-family: 'Spectral', serif;
  font-weight: 500;
}

.hero__subtitle {
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: -32px auto 56px;
}

.warning-banner {
  padding: 16px 20px;
  color: var(--warning-text);
  background: var(--warning-bg);
  border: 1px solid #f1d27a;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 700;
  text-align: center;
}

.intro {
  margin: 34px auto 26px;
  max-width: 720px;
  text-align: center;
}

.intro h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.intro p {
  margin: 0;
  color: var(--muted);
}

.intro__source {
  margin-top: 12px;
  font-size: 0.92rem;
}

.intro__source a {
  color: var(--navy);
  font-weight: 600;
}

.intro__note {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cards--single {
  grid-template-columns: minmax(0, 1fr);
  margin-top: 22px;
}

.card--wide {
  min-height: auto;
  align-items: center;
  text-align: center;
}

.card {
  display: flex;
  min-height: 260px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-start;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(26, 39, 68, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.card:focus {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card--culture {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.card--culture:hover,
.card--culture:focus {
  border-color: var(--navy-dark);
  box-shadow: 0 16px 36px rgba(26, 39, 68, 0.26);
}

.card:focus {
  outline: 3px solid rgba(26, 39, 68, 0.3);
  outline-offset: 3px;
}

.card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: var(--off-white);
  border-radius: 8px;
  color: var(--seal);
}

.card--culture .card__icon {
  background: rgba(255, 255, 255, 0.14);
}

.card__icon-svg {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  padding: 14px;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: var(--off-white);
  border-radius: 8px;
  color: var(--seal);
  flex-shrink: 0;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.3;
}

.card--culture h3,
.card--culture p {
  color: var(--white);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  .hero {
    padding: 42px 18px 54px;
  }

  .container {
    width: min(100% - 28px, 1120px);
    margin-bottom: 36px;
  }

  .warning-banner {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .intro {
    margin: 28px auto 22px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    min-height: auto;
    padding: 24px;
  }
}

/* ——— Compte, tarifs et barre de navigation ——— */

.hero--compact {
  padding: 40px 20px 48px;
}

.gpx-site-nav {
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 16px;
  font-size: 0.92rem;
}

.gpx-site-nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gpx-site-nav__brand {
  color: var(--white);
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.gpx-site-nav__flag {
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 3px;
  background: linear-gradient(to right, #E1000F 0%, #E1000F 33%, #FFFFFF 33%, #FFFFFF 66%, #000091 66%, #000091 100%);
}

.gpx-site-nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gpx-site-nav__links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.gpx-site-nav__cta {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy) !important;
}

.gpx-site-nav__user {
  opacity: 0.9;
}

.gpx-site-nav__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 700;
}

.gpx-site-nav__badge.is-active {
  background: #2f9e44;
}

.gpx-site-nav__logout {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-container {
  display: grid;
  gap: 24px;
}

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

.auth-card,
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.auth-card--wide {
  max-width: 720px;
  margin: 0 auto;
}

.auth-card--narrow {
  max-width: 440px;
  margin: 0 auto;
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}

.auth-switch a {
  color: var(--navy);
  text-decoration: underline;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 8px;
}

.legal-content p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 14px 0;
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.legal-content a {
  color: var(--accent, #1d4ed8);
  text-decoration: underline;
}

.auth-card__intro {
  color: var(--muted);
  margin-bottom: 20px;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.auth-form input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
}

.auth-error {
  color: #b42318;
  font-weight: 700;
  margin: 0;
}

.auth-success {
  color: #0d6832;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.auth-status {
  margin: 8px 0;
  color: var(--muted);
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.auth-hint {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-legal-notice {
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  margin: 0 0 10px;
  line-height: 1.5;
}

.auth-legal-notice a {
  color: inherit;
  text-decoration: underline;
}

.auth-legal-notice a:hover {
  color: var(--navy, #1e3a5f);
}

.auth-banner {
  padding: 14px 18px;
  border-radius: 14px;
  background: #e8f4fc;
  border: 1px solid #b8d9f0;
  font-weight: 600;
}

.auth-footer {
  text-align: center;
  color: var(--muted);
}

.auth-footer a {
  color: var(--navy);
  font-weight: 700;
}

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

.pricing-grid--single {
  max-width: 820px;
  margin-inline: auto;
}

.pricing-price__period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.auth-banner {
  max-width: 820px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
}

.auth-banner.auth-error {
  background: #fff5f5;
  border-color: #f1c0c0;
}

.pricing-card--featured {
  border-color: var(--seal);
  border-width: 2px;
}

.pricing-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin: 12px 0;
}

.pricing-reassurance {
  font-size: 0.9rem;
  color: #2e7d32;
  margin: -4px 0 14px;
}

.pricing-why h2 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pricing-why p {
  line-height: 1.75;
  color: var(--text, #1e293b);
}

.pricing-contact-hint {
  font-size: 0.8rem;
  color: var(--muted, #64748b);
  margin: 10px 0 0;
  text-align: center;
}

.pricing-contact-hint a {
  color: inherit;
  text-decoration: underline;
}

.faq {
  margin: 0;
}

.faq__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq__item dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.faq__item dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text, #1e293b);
}

.retractation-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--muted, #64748b);
  opacity: 0.8;
  line-height: 1.5;
  margin: 16px 0 12px;
  cursor: pointer;
}

.retractation-label input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.retractation-label a {
  color: inherit;
  text-decoration: underline;
}

.retractation-label a:hover {
  color: var(--navy, #1e3a5f);
}

.primary-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pricing-card ul {
  margin: 0 0 20px;
  padding-left: 1.2rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.primary-button {
  background: var(--seal);
  color: var(--white);
}

.secondary-button {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--border);
}

.gpx-paywall {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gpx-paywall.hidden {
  display: none;
}

.gpx-paywall__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 26, 47, 0.55);
}

.gpx-paywall__card {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.gpx-paywall__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

/* ——— Page d'accueil ——— */

html:has(.page-home) {
  scroll-behavior: smooth;
}

@keyframes heroTitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-home .hero--full {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 20px 48px;
  box-sizing: border-box;
}

.page-home .hero__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  display: grid;
  gap: 4px;
}

.page-home .hero__title-line {
  display: block;
  line-height: 1.1;
}

.page-home .hero__title-line--emphasis {
  font-size: 1.08em;
}

.page-home .hero__title--animate {
  animation: heroTitleFadeIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .hero__subtitle {
  margin-top: 20px;
}

.page-home .hero__hook-list {
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
  max-width: 520px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.5;
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.page-home .hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.page-home .hero__cta--primary {
  color: var(--white);
  background: var(--seal);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.page-home .hero__cta--primary:hover,
.page-home .hero__cta--primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.page-home .hero__cta--secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.page-home .hero__cta--secondary:hover,
.page-home .hero__cta--secondary:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.page-home .container {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 48px;
}

.page-home .why-us {
  padding: 48px 0 36px;
}

.page-home .why-us__title {
  margin: 0 0 28px;
  text-align: center;
  color: var(--navy);
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-home .why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-home .why-us__item {
  padding: 28px 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--seal);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.06);
  text-align: center;
}

.page-home .why-us__icon {
  display: none;
}

.page-home .why-us__item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.page-home .why-us__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.page-home .positioning-note {
  border-left-color: var(--accent, #1d4ed8);
}

.page-home .reform-notice {
  margin: 28px auto 0;
  max-width: 820px;
  padding: 22px 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 14px;
}

.page-home .reform-notice h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-home .reform-notice p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.55;
}

.page-home .reform-notice p + p {
  margin-top: 10px;
}

.page-home .intro {
  margin-top: 12px;
}

.page-home .cards--epreuves {
  grid-template-columns: repeat(3, 1fr);
}

.page-home .dashboard-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.page-home .dashboard-section__intro {
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: center;
}

.page-home .dashboard-section__intro h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.page-home .dashboard-section__intro p {
  margin: 0;
  color: var(--muted);
}

.page-home .dashboard-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid #7c3aed;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(26, 35, 50, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.page-home .dashboard-link:hover,
.page-home .dashboard-link:focus {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(26, 35, 50, 0.12);
}

.page-home .dashboard-link__icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--off-white);
  border-radius: 14px;
}

.page-home .dashboard-link__content {
  flex: 1;
  min-width: 0;
}

.page-home .dashboard-link__content h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.1rem;
}

.page-home .dashboard-link__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.page-home .dashboard-link__badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5b21b6;
  background: #ede9fe;
}

.page-home .dashboard-link__arrow {
  flex-shrink: 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
}

.page-home .card {
  position: relative;
  min-height: 280px;
  border-radius: 16px;
  border-top-width: 4px;
  border-top-style: solid;
  box-shadow: 0 8px 22px rgba(26, 35, 50, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.page-home .card:hover,
.page-home .card:focus {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 35, 50, 0.14);
  border-color: var(--border);
}

.page-home .card--theme-psycho {
  border-top-color: var(--seal);
}

.page-home .card--theme-culture {
  border-top-color: var(--seal);
}

.page-home .card--theme-cas {
  border-top-color: var(--seal);
}

.page-home .card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-home .card__badge--free {
  color: #166534;
  background: #dcfce7;
}

.page-home .card__badge--premium {
  color: #5b21b6;
  background: #ede9fe;
}

.page-home .cards--single {
  grid-template-columns: repeat(2, 1fr);
}

.page-home .cards--single .card {
  min-height: 280px;
  text-align: left;
  align-items: flex-start;
}

.site-footer {
  padding: 20px 24px;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
  max-width: 900px;
  margin-inline: auto;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus {
  color: var(--white);
  text-decoration: underline;
}

.page-home .seo-content {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.page-home .seo-content h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  text-align: center;
}

.page-home .seo-content > p {
  margin: 0 auto 22px;
  max-width: 780px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  text-align: center;
}

.page-home .seo-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-home .seo-content__grid article {
  padding: 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.page-home .seo-content__grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 0.98rem;
}

.page-home .seo-content__grid p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.55;
}

.page-home .seo-content__grid a {
  color: var(--navy);
  font-weight: 600;
}

.gpx-legal-footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  padding: 12px 16px 16px;
  margin: 0;
}

.gpx-legal-footer a {
  color: inherit;
  text-decoration: none;
}

.gpx-legal-footer a:hover {
  text-decoration: underline;
}

.site-footer .gpx-legal-footer {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}

.site-footer .gpx-legal-footer a {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .gpx-legal-footer a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__notice {
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.site-footer__icon {
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 980px) {
  .page-home .why-us__grid {
    grid-template-columns: 1fr;
  }

  .page-home .seo-content__grid {
    grid-template-columns: 1fr;
  }

  .page-home .cards--epreuves {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-home .hero--full {
    padding: 64px 18px 40px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .page-home .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 28px;
  }

  .page-home .hero__cta {
    width: 100%;
  }

  .page-home .why-us {
    padding: 36px 0 28px;
  }

  .page-home .card {
    min-height: 240px;
  }

  .page-home .dashboard-link {
    flex-wrap: wrap;
    gap: 14px;
  }

  .page-home .dashboard-link__arrow {
    margin-left: auto;
  }

  .site-footer__notice {
    flex-direction: column;
    font-size: 0.82rem;
  }
}
