html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  :root {
    --step-size: 3rem;
    --timeline-gap: 2rem;
  }

  .connexion-hero {
    background: var(--gradient-hero);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    padding: 3.5rem 2.5rem;
    position: relative;
    text-align: center;
  }

  .connexion-hero__label {
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    color: var(--bg-primary);
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    padding: 0.35rem 1rem;
    text-transform: uppercase;
  }

  .connexion-hero__title {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .connexion-hero__title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .connexion-hero__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 600px;
  }

  .connexion-hero__cta-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .connexion-hero__trust {
    align-items: center;
    color: var(--text-secondary);
    display: flex;
    font-size: 0.8rem;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .connexion-hero__trust-dot {
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    height: 6px;
    width: 6px;
  }

  /* TIMELINE */
  .steps-section {
    margin-bottom: 3rem;
  }

  .steps-section__heading {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .steps-section__subtext {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .steps-timeline {
    border-left: 2px solid var(--border-card);
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.5rem;
    position: relative;
  }

  .steps-timeline__item {
    align-items: flex-start;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    position: relative;
  }

  .steps-timeline__item:last-child {
    margin-bottom: 0;
  }

  .steps-timeline__number {
    align-items: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--accent-glow);
    color: var(--bg-primary);
    display: flex;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 800;
    height: var(--step-size);
    justify-content: center;
    left: calc(-1.5rem - 1.5rem + 1px);
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: var(--step-size);
  }

  .steps-timeline__content {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
  }

  .steps-timeline__content:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
  }

  .steps-timeline__content-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .steps-timeline__content-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
  }

  /* INSCRIPTION HIGHLIGHT */
  .inscription-highlight {
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--accent-dim);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 2rem 2.5rem;
  }

  .inscription-highlight__body {
    flex: 1;
    min-width: 200px;
  }

  .inscription-highlight__label {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

  .inscription-highlight__title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .inscription-highlight__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  .inscription-highlight__action {
    flex-shrink: 0;
  }

  /* FEATURES GRID */
  .features-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
  }

  .feature-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
  }

  .feature-card__icon {
    background: var(--bg-highlight);
    border-radius: var(--radius-md);
    display: inline-flex;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0.6rem 0.8rem;
  }

  .feature-card__title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .feature-card__text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
  }

  /* SUPPORT BAND */
  .support-band {
    align-items: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 2rem 2.5rem;
  }

  .support-band__info {
    flex: 1;
    min-width: 200px;
  }

  .support-band__title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .support-band__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  .support-band__badge {
    align-items: center;
    background: var(--bg-highlight);
    border-radius: var(--radius-md);
    color: var(--accent);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 0.2rem;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.25rem;
    text-align: center;
    text-transform: uppercase;
  }

  .support-band__badge-num {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
  }

  /* FAQ ACCORDION */
  .faq-section {
    margin-bottom: 3rem;
  }

  .faq-section__heading {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
  }

  .faq-item:hover {
    border-color: var(--accent-dim);
  }

  .faq-item__question {
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 1rem;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    text-align: left;
    width: 100%;
  }

  .faq-item__question:hover {
    color: var(--accent);
  }

  .faq-item__icon {
    color: var(--accent);
    flex-shrink: 0;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
    user-select: none;
  }

  .faq-item--open .faq-item__icon {
    transform: rotate(45deg);
  }

  .faq-item__answer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .faq-item--open .faq-item__answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
  }

  .faq-item__answer a {
    color: var(--accent);
    text-decoration: none;
  }

  .faq-item__answer a:hover {
    text-decoration: underline;
  }

  /* BOTTOM CTA */
  .bottom-cta {
    background: var(--gradient-hero);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-cta);
    margin-bottom: 2rem;
    padding: 3rem 2.5rem;
    text-align: center;
  }

  .bottom-cta__title {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
  }

  .bottom-cta__title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .bottom-cta__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .steps-timeline {
      padding-left: 2.5rem;
    }
    .steps-timeline__number {
      left: calc(-2.5rem - 1.5rem + 1px);
    }
  }

  @media (max-width: 767px) {
    .inscription-highlight,
    .support-band {
      flex-direction: column;
      text-align: center;
    }
    .support-band__badge {
      align-self: center;
    }
    .inscription-highlight__action {
      align-self: center;
    }
  }