.header {
  padding: 1rem 2rem;
  position: relative;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
  .header__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; }
  .header__logo img {
    height: 40px; }
  .header__nav {
    flex-grow: 1;
    margin-left: 2rem; }
    @media (max-width: 1024px) {
      .header__nav {
        display: block;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; }
        .header__nav.is-open {
          max-height: 500px;
          opacity: 1;
          visibility: visible;
          border-top: 1px solid #eee;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); } }
  .header__menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0; }
    .header__menu li a {
      display: block;
      width: 100%;
      padding: 0.75rem 0;
      text-decoration: none;
      color: #000;
      font-weight: 500; }
      .header__menu li a:hover {
        text-decoration: underline; }
    @media (max-width: 1024px) {
      .header__menu {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0; } }
  .header__actions {
    display: flex;
    align-items: center;
    gap: 1rem; }
    @media (max-width: 1024px) {
      .header__actions {
        flex: 1;
        justify-content: flex-end; } }
  .header__cta {
    background-color: #005cbf;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    white-space: nowrap; }
    .header__cta:hover {
      background-color: #004aad; }
  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0; }
    .header__burger span {
      height: 3px;
      width: 25px;
      background: #000;
      display: block;
      transition: transform 0.3s ease; }
    @media (max-width: 1024px) {
      .header__burger {
        display: flex;
        margin-right: 1rem; } }

@media (max-width: 500px) {
  .hidden-mobile {
    display: none; } }
.footer {
  background: #f9f9f9;
  padding: 3rem 1.5rem 1.5rem;
  font-size: 0.95rem; }
  .footer__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto; }
  .footer__section {
    flex: 1 1 200px; }
    .footer__section h3 {
      font-weight: bold;
      font-size: 1rem;
      margin-bottom: 1rem; }
    .footer__section ul {
      list-style: none;
      padding: 0; }
      .footer__section ul li {
        margin-bottom: 0.5rem; }
        .footer__section ul li a {
          text-decoration: none;
          color: #000; }
          .footer__section ul li a:hover {
            text-decoration: underline; }
    .footer__section p, .footer__section a {
      color: #333;
      font-size: 0.9rem; }
    .footer__section a {
      display: inline-block; }
  .footer__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; }
    .footer__cta .btn {
      display: inline-block;
      padding: 0.6rem 1rem;
      font-weight: 600;
      text-align: center;
      white-space: nowrap;
      transition: all 0.2s ease;
      border-radius: 9999px; }
    .footer__cta .btn--primary {
      background: #0754aa;
      color: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
      .footer__cta .btn--primary:hover {
        background: #003c80; }
    .footer__cta .btn--ghost {
      background: transparent;
      color: #0754aa;
      border: 2px solid #0754aa; }
      .footer__cta .btn--ghost:hover {
        background: #f0f6ff; }
  .footer__bottom {
    margin-top: 3rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666; }
    .footer__bottom .footer__links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding: 0;
      list-style: none;
      margin-bottom: 0.5rem; }
      .footer__bottom .footer__links li a {
        color: #666;
        text-decoration: none; }
        .footer__bottom .footer__links li a:hover {
          text-decoration: underline; }
  @media (max-width: 768px) {
    .footer__content {
      flex-direction: column; }
    .footer__section {
      flex: 1 1 100%; }
    .footer__cta {
      align-items: flex-start; } }

.actu-une {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto; }
  .actu-une h1 {
    width: 100%;
    align-items: center; }
  .actu-une .grid-actu-une {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
    .actu-une .grid-actu-une .article-une {
      min-width: 300px;
      display: flex;
      position: relative;
      justify-content: flex-end;
      flex-direction: column;
      border-radius: 16px; }
      .actu-une .grid-actu-une .article-une .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 0;
        pointer-events: none;
        border-radius: 16px; }
        .actu-une .grid-actu-une .article-une .overlay--blue {
          background: linear-gradient(to bottom, rgba(7, 84, 170, 0) 0%, #0754AA 72%); }
        .actu-une .grid-actu-une .article-une .overlay--red {
          background: linear-gradient(to bottom, rgba(7, 84, 170, 0) 0%, #5B0000 72%); }
        .actu-une .grid-actu-une .article-une .overlay--green {
          background: linear-gradient(to bottom, rgba(7, 84, 170, 0) 0%, #1C5000 72%); }
      .actu-une .grid-actu-une .article-une div img {
        z-index: 1;
        width: 100%;
        height: auto; }
      .actu-une .grid-actu-une .article-une .actu-une-info {
        padding: 10px 15px;
        color: white; }
        .actu-une .grid-actu-une .article-une .actu-une-info h2 {
          z-index: 1;
          position: relative; }
        .actu-une .grid-actu-une .article-une .actu-une-info p {
          z-index: 1;
          position: relative; }

.hero-banner {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px; }

.row-filtre {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content; }
  .select-wrapper select {
    appearance: none;
    background-color: #0754AA;
    color: white;
    border: none;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 87, 193, 0.2); }
  .select-wrapper .btn-select-icon {
    background: none;
    border: none;
    position: absolute;
    right: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0; }

.grid-actus {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, 1fr); }
  @media (min-width: 600px) {
    .grid-actus {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) {
    .grid-actus {
      grid-template-columns: repeat(4, 1fr); } }

.actualite {
  border-radius: 10px;
  transition: transform 0.2s ease; }
  .actualite a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 0; }
    .actualite a img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 10px 10px 0 0; }
    .actualite a h2 {
      font-size: 1rem;
      font-weight: 700;
      margin: 0.8rem 1rem 0.3rem; }
    .actualite a .categorie {
      font-size: 0.85rem;
      color: #777;
      margin: 0 1rem 1rem; }
  .actualite:hover {
    transform: translateY(-3px); }

.scroll-x-hidden {
  display: flex;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; }

.scroll-x-hidden::-webkit-scrollbar {
  display: none; }

.single-post {
  padding: 2rem 1rem; }
  .single-post .container {
    max-width: 1200px;
    margin: 30px auto; }
  .single-post__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem; }
  .single-post__content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem; }

.filter {
  padding: 2rem 0;
  max-width: 1200px;
  margin: 20px auto; }
  .filter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem; }
  .filter__fields {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; }
    @media (max-width: 768px) {
      .filter__fields {
        flex-direction: column; } }
  .filter__field {
    flex: 1;
    position: relative; }
    .filter__field input[type="text"] {
      width: calc(100% - 3.5rem);
      padding: 0.9rem 1rem 0.9rem 2.5rem;
      border: none;
      border-radius: 999px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      font-size: 1rem;
      background-color: #fff;
      background-repeat: no-repeat;
      background-position: 1rem center;
      background-size: 1.2rem; }
    .filter__field:first-child input {
      background-image: url("/wp-content/themes/wevora_theme-main/assets/img/icon-search.svg"); }
    .filter__field:nth-child(2) input {
      background-image: url("/wp-content/themes/wevora_theme-main/assets/img/icon-location.svg"); }
  .filter__actions {
    display: flex; }
    @media (max-width: 768px) {
      .filter__actions {
        width: 100%; } }
  .filter__submit {
    background-color: #0754aa;
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.2s; }
    .filter__submit:hover {
      background-color: #054c96; }
    @media (max-width: 768px) {
      .filter__submit {
        width: 100%; } }

.profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem; }
  .profile__header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; }
    @media (min-width: 768px) {
      .profile__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start; } }
  .profile__info {
    display: flex;
    gap: 1rem;
    width: 70%; }
    @media (max-width: 768px) {
      .profile__info {
        width: 100%; } }
  .profile__avatar {
    width: 47.5%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 16px; }
    .profile__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .profile__title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; }
    .profile__title .profile__name {
      font-size: 3rem;
      font-weight: bold;
      margin: 0 5px; }
    .profile__title .profile__job {
      font-size: 2rem;
      margin: 0 5px; }
    .profile__title .profile__adresse {
      font-size: 1.2rem;
      margin: 0 5px; }
    .profile__title .profile__rating {
      font-size: 0.9rem;
      color: #ff9800; }
  .profile__cta-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 30%; }
    @media (max-width: 768px) {
      .profile__cta-stats {
        width: 100%; } }
  .profile__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center; }
    .profile__cta .profile__button {
      background: #0251AC;
      color: #fff;
      padding: 0.75rem 1.25rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none; }
    .profile__cta .profile__save {
      background: none;
      border: none;
      font-size: 1rem;
      cursor: pointer; }
  .profile .profile__stats-card {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 1rem 0rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
    .profile .profile__stats-card .profile__stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: center;
      padding: 0 5px; }
      .profile .profile__stats-card .profile__stat:not(:last-child) {
        border-right: 1px solid #ddd; }
      .profile .profile__stats-card .profile__stat-label {
        font-size: 0.85rem;
        color: #444;
        font-weight: 500;
        text-align: center; }
      .profile .profile__stats-card .profile__stat-value {
        font-size: 1.25rem;
        font-weight: bold;
        color: #000;
        text-align: center; }
  .profile__content {
    display: flex;
    flex-direction: column;
    gap: 2rem; }
    @media (min-width: 1024px) {
      .profile__content {
        flex-direction: row; } }
  .profile__sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 25%; }
    @media (max-width: 1024px) {
      .profile__sidebar {
        width: 100%;
        flex-direction: row; } }
    .profile__sidebar .profile__contact-card {
      background: #fff;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); }
      @media (max-width: 1024px) {
        .profile__sidebar .profile__contact-card {
          width: 50%; } }
    .profile__sidebar .profile__map {
      border-radius: 10px; }
      @media (max-width: 1024px) {
        .profile__sidebar .profile__map {
          width: 50%; } }
    .profile__sidebar .profile__contact-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 1rem; }
    .profile__sidebar .profile__contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem; }
    .profile__sidebar .profile__contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem; }
    .profile__sidebar .profile__contact-icon {
      flex-shrink: 0; }
    .profile__sidebar .profile__map iframe,
    .profile__sidebar .profile__map img {
      width: 100%;
      height: auto;
      border-radius: 6px; }
  .profile__main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem; }
  .profile__skills .profile__skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; }
    .profile__skills .profile__skills-list .profile__skill {
      background: #e0ecf8;
      color: #0754aa;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.9rem; }
  .profile__bio p {
    line-height: 1.6; }
  .profile .profile__gallery-title {
    font-weight: bold;
    margin-bottom: 1rem; }
  .profile .profile__gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; }
    @media (max-width: 768px) {
      .profile .profile__gallery-list {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.5rem;
        padding-right: 1rem;
        scroll-padding-left: 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none; }
        .profile .profile__gallery-list::-webkit-scrollbar {
          display: none; } }
  .profile .profile__gallery-item {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
    scroll-snap-align: start; }
    @media (min-width: 769px) {
      .profile .profile__gallery-item {
        width: 100%;
        height: auto; } }
  .profile__reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem; }
  .profile__reviews-author {
    display: flex;
    align-items: center;
    gap: 0.5rem; }
    .profile__reviews-author img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover; }
  .profile__reviews-text {
    margin-top: 0.5rem;
    font-style: italic; }
  .profile .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem; }
    .profile .modal__content {
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      width: 100%;
      max-width: 600px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      position: relative;
      animation: fadeIn 0.25s ease-in-out; }
      .profile .modal__content h2 {
        margin-top: 0;
        font-size: 1.6rem;
        text-align: center; }
      .profile .modal__content form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem; }
        .profile .modal__content form input,
        .profile .modal__content form textarea {
          padding: 0.75rem 1rem;
          border-radius: 8px;
          border: 1px solid #ddd;
          font-size: 1rem;
          resize: vertical; }
          .profile .modal__content form input:focus,
          .profile .modal__content form textarea:focus {
            outline: none;
            border-color: #0754aa;
            box-shadow: 0 0 0 2px rgba(7, 84, 170, 0.2); }
        .profile .modal__content form textarea {
          min-height: 120px; }
        .profile .modal__content form .btn-submit {
          background-color: #0754aa;
          color: #fff;
          font-weight: bold;
          border: none;
          padding: 0.75rem;
          border-radius: 9999px;
          cursor: pointer;
          transition: background 0.3s ease; }
          .profile .modal__content form .btn-submit:hover {
            background-color: #054a95; }
    .profile .modal__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem;
      background: transparent;
      border: none;
      color: #999;
      cursor: pointer; }
      .profile .modal__close:hover {
        color: #333; }
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* LISTE */
.listing {
  padding: 2rem 0;
  max-width: 1200px;
  margin: 30px auto; }
  .listing__grid {
    display: grid;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    grid-template-columns: 1fr; }
    @media (min-width: 600px) {
      .listing__grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) {
      .listing__grid {
        grid-template-columns: repeat(4, 1fr); } }
  .listing__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease; }
    .listing__card:hover {
      transform: translateY(-4px); }
    .listing__card a {
      color: inherit;
      text-decoration: none;
      display: block;
      height: 100%; }
  .listing__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden; }
    .listing__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .listing__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease; }
    .listing__card:hover .listing__overlay {
      background: rgba(255, 255, 255, 0.6); }
  .listing__more {
    opacity: 0;
    font-weight: bold;
    font-size: 1rem;
    color: #0754AA;
    transition: opacity 0.2s ease; }
    .listing__card:hover .listing__more {
      opacity: 1; }
  .listing__info {
    padding: 1rem;
    font-size: 0.9rem; }
    .listing__info p {
      margin: 0.25rem 0; }
  .listing__title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0 0 0.25rem 0; }
  .listing__metier, .listing__ville, .listing__email, .listing__tel, .listing__distance, .listing__note {
    color: #333;
    font-size: 0.85rem; }
  .listing__note {
    font-weight: bold;
    color: #0754AA; }

.clear-filter-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem; }

.clear-filter-button {
  background-color: #0057c1;
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 87, 193, 0.2);
  transition: background-color 0.2s ease, transform 0.2s ease; }

.clear-filter-button:hover {
  background-color: #0046a0;
  transform: translateY(-1px); }

.no-result-text {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #444; }

.account {
  padding: 2rem; }
  .account .account__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem; }
    @media (min-width: 1024px) {
      .account .account__header {
        flex-direction: row;
        align-items: flex-start; } }
    .account .account__header-left {
      flex: 2; }
    .account .account__header-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.75rem; }
      .account .account__header-right .account__button {
        width: fit-content; }
      .account .account__header-right form {
        margin: 0; }
  .account .account__title {
    font-size: 1.8rem;
    font-weight: 600; }
    .account .account__title .account__name {
      color: #0754AA; }
    .account .account__title .account__status {
      font-size: 1rem;
      font-weight: 400;
      color: #555; }
  .account .account__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    width: 50%; }
    .account .account__identity .account__avatar {
      width: 50%;
      height: auto;
      object-fit: cover;
      flex-shrink: 0; }
    .account .account__identity .account__job {
      font-size: 1rem;
      font-weight: bold;
      margin: 0; }
    .account .account__identity .account__location {
      font-size: 0.9rem;
      color: #666; }
    .account .account__identity .account__note {
      font-size: 0.9rem;
      font-weight: bold;
      color: #0754AA; }
      .account .account__identity .account__note .account__avis {
        font-weight: normal;
        color: #999;
        font-size: 0.85rem;
        margin-left: 0.3rem; }
  .account__button {
    display: inline-block;
    background: #0251AC;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-right: 1rem; }
    .account__button:hover {
      background: #054183; }
    .account__button--secondary {
      background: #f1f1f1;
      color: #0251AC; }
      .account__button--secondary:hover {
        background: #e0e0e0; }
  .account__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr; }
    @media (min-width: 1024px) {
      .account__grid {
        grid-template-columns: repeat(3, 1fr); } }
  .account__box {
    background: #fff;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
    .account__box-title {
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 1rem; }
    .account__box p, .account__box li {
      font-size: 0.9rem;
      margin: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 5px; }
    .account__box .formation-card-pdf {
      color: #0251AC;
      text-decoration: underline; }
  .account__formations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; }
    .account__formations a, .account__formations li {
      margin-bottom: 0.5rem;
      gap: 0.4rem;
      text-align: center;
      color: #000;
      text-decoration: none; }
  .account__logout {
    display: inline-block;
    margin-top: 2rem;
    color: #e53935;
    font-weight: bold;
    text-decoration: none; }
    .account__logout:hover {
      text-decoration: underline; }
  .account__subscribe {
    margin-top: 2rem; }

/* EDIT */
.edit-profile {
  width: calc(100% - 4rem);
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem; }
  @media screen and (max-width: 600px) {
    .edit-profile {
      width: 100%;
      padding: 2rem 0; } }
  .edit-profile #cropper-modal {
    overflow-y: auto; }
  .edit-profile #cropper-modal img {
    max-height: 70vh;
    object-fit: contain; }
  .edit-profile__wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
  .edit-profile__back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #0251AC;
    font-weight: bold;
    text-decoration: none; }
    .edit-profile__back:hover {
      text-decoration: underline; }
  .edit-profile .edit-profile__photo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem; }
    @media (max-width: 600px) {
      .edit-profile .edit-profile__photo {
        flex-direction: column;
        align-items: flex-start; } }
    .edit-profile .edit-profile__photo-label {
      font-weight: bold;
      margin-bottom: 0.5rem;
      display: block; }
    .edit-profile .edit-profile__photo-left {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
      width: 70%; }
    .edit-profile .edit-profile__photo-button {
      background: none;
      border: 1px solid #0754AA;
      color: #0754AA;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      font-size: 0.9rem;
      cursor: pointer;
      transition: background 0.2s; }
      .edit-profile .edit-profile__photo-button:hover {
        background: #f0f7ff; }
    .edit-profile .edit-profile__photo-right {
      flex-shrink: 0;
      max-width: 30%; }
      .edit-profile .edit-profile__photo-right .edit-profile__photo-preview {
        width: 100%;
        max-width: 300px;
        aspect-ratio: 16/9;
        border-radius: 9999px;
        object-fit: cover;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); }
  .edit-profile .edit-profile__group--inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem; }
    @media screen and (max-width: 768px) {
      .edit-profile .edit-profile__group--inline {
        flex-direction: column; } }
    .edit-profile .edit-profile__group--inline label {
      font-weight: bold;
      flex-shrink: 0;
      min-width: 100px; }
    .edit-profile .edit-profile__group--inline .edit-profile__select {
      flex: 1;
      background: transparent;
      border: none;
      border-bottom: 1px solid #0754AA;
      padding: 0.5rem 0.5rem;
      font-size: 1rem;
      color: #333;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230754AA' stroke-width='2' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.5rem center;
      background-size: 12px 8px;
      padding-right: 2rem;
      max-width: 400px; }
      .edit-profile .edit-profile__group--inline .edit-profile__select:focus {
        outline: none;
        border-color: #003e7e; }
      .edit-profile .edit-profile__group--inline .edit-profile__select option {
        padding: 2px 10px; }
  .edit-profile .edit-profile__group {
    margin-bottom: 2rem; }
    .edit-profile .edit-profile__group .edit-profile__label {
      font-weight: bold;
      margin-bottom: 0.75rem;
      display: block; }
  .edit-profile .edit-profile__inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; }
  .edit-profile .edit-profile__pill {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 200px; }
    .edit-profile .edit-profile__pill input {
      width: 100%;
      padding: 0.6rem 2.5rem 0.6rem 1rem;
      border: 1px solid #0754AA;
      border-radius: 999px;
      font-size: 0.95rem; }
    .edit-profile .edit-profile__pill .edit-profile__icon {
      position: absolute;
      right: 0.75rem;
      color: #0754AA;
      pointer-events: none;
      font-size: 0.95rem; }
  .edit-profile .modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 90; }
  .edit-profile .cropper-container {
    width: 100% !important; }
  .edit-profile .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    border-radius: 12px;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }
    .edit-profile .modal__content textarea {
      width: 90%;
      margin: 0 auto;
      padding: 1rem;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      resize: vertical; }
    .edit-profile .modal__actions {
      display: flex;
      justify-content: flex-end;
      gap: 1rem;
      margin-top: 1rem; }
      .edit-profile .modal__actions button {
        padding: 0.5rem 1.2rem;
        border-radius: 9999px;
        border: none;
        cursor: pointer;
        font-weight: bold; }
      .edit-profile .modal__actions .modal__cancel {
        background: #eee;
        color: #000; }
      .edit-profile .modal__actions .modal__save {
        background: #0754AA;
        color: white; }
  .edit-profile .edit-profile__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; }
    .edit-profile .edit-profile__gallery-item {
      position: relative;
      width: 100px;
      height: 100px;
      border-radius: 10px;
      overflow: hidden;
      background: #f1f1f1;
      flex-shrink: 0; }
      .edit-profile .edit-profile__gallery-item .edit-profile__delete {
        position: absolute;
        top: 6px;
        right: 6px;
        background: rgba(255, 0, 0, 0.7);
        border: none;
        color: #fff;
        width: 24px;
        height: 24px;
        font-size: 18px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        display: flex;
        cursor: pointer;
        z-index: 2; }
      .edit-profile .edit-profile__gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .edit-profile .edit-profile__gallery-item .edit-profile__gallery-placeholder {
        width: 100%;
        height: 100%;
        font-size: 0.85rem;
        color: #888;
        display: flex;
        align-items: center;
        justify-content: center; }
      .edit-profile .edit-profile__gallery-item .edit-profile__upload-btn {
        position: absolute;
        bottom: 5px;
        left: 5px;
        right: 5px;
        background: rgba(255, 255, 255, 0.85);
        font-size: 0.75rem;
        text-align: center;
        padding: 0.2rem;
        border-radius: 6px;
        cursor: pointer;
        border: 1px solid #0754AA;
        color: #0754AA; }
        .edit-profile .edit-profile__gallery-item .edit-profile__upload-btn input {
          display: none; }
  .edit-profile .edit-profile__notice {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #e6ffe6;
    color: #006600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease; }
    .edit-profile .edit-profile__notice.is-visible {
      opacity: 1;
      pointer-events: auto; }
  .edit-profile .edit-profile__submit {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: not-allowed;
    opacity: 0.5;
    transition: all 0.3s ease; }
  .edit-profile .edit-profile__submit:enabled {
    cursor: pointer;
    opacity: 1; }
  .edit-profile .edit-profile__submit:hover:enabled {
    background-color: #0b5ed7; }

.profile__stats-card {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 1rem 0rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
  .profile__stats-card .profile__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding: 0 5px; }
    .profile__stats-card .profile__stat:not(:last-child) {
      border-right: 1px solid #ddd; }
    .profile__stats-card .profile__stat-label {
      font-size: 0.85rem;
      color: #444;
      font-weight: 500;
      text-align: center; }
    .profile__stats-card .profile__stat-value {
      font-size: 1.25rem;
      font-weight: bold;
      color: #000;
      text-align: center; }

.formations-hero {
  padding: 4rem 1rem;
  background: #fff; }
  .formations-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem; }
  .formations-hero__content {
    flex: 1 1 52%; }
  .formations-hero__title {
    font-size: 2rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.3; }
    @media (min-width: 1024px) {
      .formations-hero__title {
        font-size: 3rem; } }
    .formations-hero__title .formations-hero__highlight {
      color: #0251AC; }
  .formations-hero__subtitle {
    font-size: 1.2rem;
    margin: 1rem 0 3rem;
    color: #444; }
  .formations-hero .formations__cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap; }
  .formations-hero .btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap; }
    .formations-hero .btn--primary {
      background-color: #0251AC;
      color: #fff;
      box-shadow: 0 4px 8px rgba(0, 87, 193, 0.2); }
      .formations-hero .btn--primary:hover {
        background-color: #0046a0; }
    .formations-hero .btn--secondary {
      background-color: #fff;
      color: #0251AC;
      border: 1px solid #e0e0e0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); }
      .formations-hero .btn--secondary:hover {
        background-color: #f5f5f5; }
  .formations-hero__image {
    flex: 1 1 43%;
    text-align: center; }
    .formations-hero__image img {
      max-width: 100%;
      height: auto; }

@media (max-width: 768px) {
  .formations-hero {
    padding: 0; }

  .formations-hero__container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center; }

  .formations-hero__content {
    flex: 1 1 auto; }

  .formations-hero__image {
    margin-bottom: 1rem;
    width: 100%; }
    .formations-hero__image img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover; }

  .formations__cta {
    justify-content: center; } }
.formations-preview {
  padding: 4rem 1rem; }
  .formations-preview__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem; }
  .formations-preview__left {
    flex: 1 1 48%;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    align-items: center; }
    .formations-preview__left .formation-grid-card {
      display: flex; }
    .formations-preview__left .formation-card-pdf {
      background: #fff;
      border-radius: 10px;
      padding: 1rem;
      text-align: center; }
      .formations-preview__left .formation-card-pdf img {
        width: 80px;
        margin-bottom: 0.5rem; }
      .formations-preview__left .formation-card-pdf h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0.5rem 0; }
      .formations-preview__left .formation-card-pdf p {
        font-size: 0.9rem;
        color: #444; }
    .formations-preview__left .btn {
      display: inline-block;
      padding: 0.8rem 1.6rem;
      border-radius: 9999px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      text-align: center;
      transition: background 0.2s, box-shadow 0.2s;
      white-space: nowrap; }
      .formations-preview__left .btn--primary {
        background-color: #0251AC;
        color: #fff;
        box-shadow: 0 4px 8px rgba(0, 87, 193, 0.2);
        width: 40%;
        margin-bottom: 1rem; }
        .formations-preview__left .btn--primary:hover {
          background-color: #0046a0; }
  .formations-preview__right {
    flex: 1 1 38%; }
    .formations-preview__right h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 1.5rem; }
    .formations-preview__right .domain-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem; }
      .formations-preview__right .domain-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.5rem; }
        .formations-preview__right .domain-list li img {
          width: 40px;
          height: 40px; }

@media (max-width: 768px) {
  .formations-preview__container {
    flex-direction: column-reverse;
    gap: 3rem; }
  .formations-preview__right {
    width: 100%; }
  .formations-preview__left {
    align-items: stretch;
    width: 100%; }
    .formations-preview__left .formation-grid-card {
      gap: 1rem;
      overflow: hidden; }
    .formations-preview__left .btn--primary {
      width: 80% !important;
      align-self: center; }
  .formations-preview__right h2 {
    font-size: 1.8rem;
    text-align: center; }
  .formations-preview__right .domain-list {
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    position: relative; }
    .formations-preview__right .domain-list li {
      font-size: 1.2rem; } }
.formation-steps {
  padding: 4rem 1rem;
  text-align: center; }
  .formation-steps__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem; }
  .formation-steps__desc {
    max-width: 1000px;
    margin: 0 auto 3rem;
    color: #444;
    font-size: 1rem; }
  .formation-steps__flow {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .formation-steps__flow > * {
      flex: 1 1 50%; }
  .formation-steps__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 800px;
    position: relative;
    margin-bottom: 2rem; }
    .formation-steps__line::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background-color: #0057c1;
      z-index: 1;
      transform: translateY(-50%); }
  .formation-steps__circle {
    background-color: #0057c1;
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 2; }
  .formation-steps__blocks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: no-wrap; }
  .formation-steps__block {
    display: flex;
    align-items: center;
    gap: 20px; }
  .formation-steps__box {
    z-index: 5;
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 0.95rem;
    max-width: 200px;
    text-align: center; }
  .formation-steps__arrow {
    margin-top: 0.5rem;
    font-size: 3rem;
    color: #0057c1; }
  @media (max-width: 768px) {
    .formation-steps__flow {
      flex-direction: row;
      gap: 2rem;
      align-items: flex-start;
      justify-content: center; }
    .formation-steps__block {
      flex-direction: column; }
    .formation-steps__line {
      flex-direction: column;
      width: auto;
      height: 370px; }
      .formation-steps__line::before {
        top: 0;
        left: 50%;
        height: 100%;
        width: 3px;
        transform: translateX(-50%); }
    .formation-steps__blocks {
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; }
    .formation-steps__arrow {
      transform: rotate(90deg); } }

.formation-pricing {
  position: relative;
  padding: 4rem 1rem;
  text-align: center; }
  .formation-pricing__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem; }
  .formation-pricing__highlight {
    color: #0251AC; }
  .formation-pricing__container {
    max-width: 1000px;
    margin: auto;
    display: flex; }
  .formation-pricing__cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: no-wrap;
    margin-top: 3rem;
    position: relative; }
  .formation-pricing .formation-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 87, 193, 0.1);
    padding: 2rem 1.5rem 1.5rem;
    max-width: 380px;
    position: relative;
    text-align: center;
    flex: 1; }
    .formation-pricing .formation-card__icon {
      position: absolute;
      top: -32px;
      left: 1.5rem;
      padding: 6px;
      border-radius: 8px;
      display: flex; }
      .formation-pricing .formation-card__icon img {
        width: 64px;
        height: 64px;
        display: block; }
    .formation-pricing .formation-card__title {
      font-size: 1.15rem;
      font-weight: 700;
      margin: 1.8rem 1rem 1rem 2rem; }
    .formation-pricing .formation-card__desc {
      font-size: 0.95rem;
      color: #333;
      margin-bottom: 1rem;
      text-align: left; }
    .formation-pricing .formation-card__list {
      list-style: disc inside;
      text-align: left;
      font-size: 0.9rem;
      color: #333;
      padding: 0;
      max-width: 280px; }
      .formation-pricing .formation-card__list li {
        margin-bottom: 0.5rem; }
    .formation-pricing .formation-card__price {
      font-weight: 700;
      margin-bottom: 1.5rem; }
    .formation-pricing .formation-card .btn {
      display: inline-block;
      width: 100%;
      max-width: 200px;
      padding: 0.8rem 1.6rem;
      border-radius: 9999px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      text-align: center;
      transition: background 0.2s, box-shadow 0.2s;
      white-space: nowrap; }
      .formation-pricing .formation-card .btn--primary {
        align-self: center;
        background-color: #0251AC;
        color: #fff;
        box-shadow: 0 4px 8px rgba(0, 87, 193, 0.2); }
        .formation-pricing .formation-card .btn--primary:hover {
          background-color: #0046a0; }
  .formation-pricing__divider {
    font-weight: bold;
    font-size: 3rem;
    margin: auto;
    color: #555;
    display: flex;
    align-items: center; }
  @media (max-width: 1024px) {
    .formation-pricing__container {
      flex-direction: column;
      align-items: center; }
    .formation-pricing__divider {
      margin: 1.5rem 0; } }
  @media (max-width: 560px) {
    .formation-pricing .formation-card__title {
      font-size: 1rem;
      font-weight: 700;
      margin: 1.8rem 0.5rem 1rem 1rem; } }

.filtres-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem; }

.filtre-categorie {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  color: #0057c1;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out; }
  .filtre-categorie:hover {
    background: #f5faff; }
  .filtre-categorie.is-active {
    background: #0057c1;
    color: #fff; }

.grid-formations {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  max-width: 95%;
  margin: 50px auto; }
  @media (min-width: 768px) {
    .grid-formations {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1024px) {
    .grid-formations {
      grid-template-columns: repeat(4, 1fr); } }

.formation-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .formation-card__lock-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 0.4rem;
    border-radius: 8px; }
    .formation-card__lock-icon img {
      width: 40px;
      height: 40px; }
  .formation-card__pdf-icon img {
    width: 120px;
    margin-bottom: 1rem; }
  .formation-card__title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem; }
  .formation-card__desc {
    font-size: 0.95rem;
    color: #555;
    min-height: 48px;
    margin-bottom: 1.2rem; }
  .formation-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #0057c1;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 87, 193, 0.2);
    transition: background 0.2s ease;
    width: calc(100% - 3rem); }
    .formation-card__btn:hover {
      background: #0046a0; }
    .formation-card__btn--locked {
      background: #0057c1;
      color: #fff;
      fill: #fff; }
    .formation-card__btn img {
      width: 18px;
      height: 18px; }
  .formation-card__link {
    margin-top: 0.8rem;
    display: inline-block;
    color: #333;
    font-size: 0.9rem;
    text-decoration: underline; }
  .formation-card--unlocked .formation-card__lock-icon {
    display: none; }

.degrade-radial {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle at center, rgba(7, 84, 170, 0.3) 0%, rgba(7, 84, 170, 0) 70%);
  filter: blur(150px);
  z-index: 0;
  pointer-events: none; }

.formation-description {
  padding: 3rem 1rem; }
  .formation-description__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem; }
    @media (max-width: 1024px) {
      .formation-description__container {
        flex-direction: column-reverse; } }
  .formation-description__content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6; }
    .formation-description__content h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem; }
    .formation-description__content p {
      margin-bottom: 1rem;
      color: #333; }
  .formation-description__sidebar {
    flex-shrink: 0;
    width: 100%;
    display: flex; }
    @media (min-width: 1024px) {
      .formation-description__sidebar {
        max-width: 360px;
        flex-direction: column; } }
    @media (max-width: 768px) {
      .formation-description__sidebar {
        flex-direction: column;
        align-items: center; } }
    .formation-description__sidebar .formation-card {
      margin-bottom: 2rem; }
      .formation-description__sidebar .formation-card__price {
        margin-bottom: 1rem; }
      .formation-description__sidebar .formation-card li {
        text-align: start; }
  .formation-description__divider {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 1.5rem 0;
    color: #444; }

.contact-section {
  padding: 4rem 1rem;
  background: #fff;
  display: flex;
  justify-content: center; }

.contact-wrapper {
  max-width: 800px;
  width: 100%;
  text-align: center; }

.contact-wrapper h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem; }

.subtitle {
  margin-bottom: 2rem;
  color: #555; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.contact-form__row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }

.contact-form__row input {
  flex: 1;
  min-width: 150px; }

input, textarea {
  font-family: inter;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem; }

button {
  background: #0057c1;
  border-radius: 9999px;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.9rem;
  cursor: pointer;
  transition: background 0.3s; }

button:hover {
  background: #0046a0; }

.contact-confirmation {
  background: #e6f7ff;
  color: #004085;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem; }

@media (max-width: 600px) {
  .contact-form__row {
    flex-direction: column; } }
body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden; }

.filter-home {
  padding: 2rem 1rem; }
  .filter-home__title {
    text-align: center;
    margin-bottom: 4rem; }
    .filter-home__title h1 {
      font-size: 1.5rem;
      font-weight: 800;
      line-height: 1.4;
      margin: 0; }
      .filter-home__title h1 .highlight {
        color: #0754AA; }
    @media (min-width: 768px) {
      .filter-home__title h1 {
        font-size: 2.5rem; } }

.section-avantages {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 50px auto; }
  .section-avantages__container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; }
  .section-avantages__content {
    flex: 1 1 500px;
    max-width: 600px; }
  .section-avantages__title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.5rem; }
    .section-avantages__title .highlight {
      color: #0754AA; }
  .section-avantages__text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.6; }
  .section-avantages__grid {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 2rem;
    max-width: 400px;
    flex: 1 1 350px; }

.avantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }
  .avantage-card img {
    width: 80px;
    margin-bottom: 0.5rem; }
  .avantage-card p {
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
    line-height: 1.4; }

@media (max-width: 1024px) {
  .section-avantages__container {
    flex-direction: column;
    align-items: center; }

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

  .section-avantages__grid {
    width: 100%; }

  .section-avantages__title {
    font-size: 1.5rem;
    text-align: center; }

  .section-avantages__text {
    text-align: center; } }
@media (max-width: 768px) {
  .section-avantages__grid {
    width: calc(100% - 4rem); } }
.section-confiance {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 50px auto; }
  .section-confiance__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap; }
  .section-confiance__hero_title {
    margin: 50px auto !important;
    text-align: center; }
  .section-confiance__intro {
    max-width: 560px; }
    @media screen and (min-width: 1200px) {
      .section-confiance__intro {
        width: 40%; } }
    .section-confiance__intro .section-confiance__title {
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.4;
      margin-bottom: 2rem; }
      .section-confiance__intro .section-confiance__title .highlight {
        color: #0754AA; }
    .section-confiance__intro .btn {
      padding: 0.8rem 1.6rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 9999px; }
  .section-confiance__steps {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem 1rem;
    width: 60%;
    max-width: 600px; }

.steps__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center; }
.steps__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none; }
  .steps__wrapper::-webkit-scrollbar {
    display: none; }
.steps__item {
  text-align: center;
  flex: 0 0 auto; }
  .steps__item img {
    width: 40px;
    margin-bottom: 0.5rem; }
  .steps__item p {
    font-size: 0.9rem;
    font-weight: 600; }
.steps__arrow {
  font-size: 1.5rem;
  font-weight: bold;
  color: #777; }

@media (max-width: 1200px) {
  .section-confiance__container {
    flex-direction: column;
    align-items: center; }

  .section-confiance__intro {
    text-align: center; }
    .section-confiance__intro .section-confiance__title {
      font-size: 1.5rem; }
    .section-confiance__intro .btn {
      margin-top: 1rem; }

  .section-confiance__steps {
    width: 100%;
    padding: 1.5rem; } }
.home-hero {
  padding: 4rem 1rem;
  background: #fff;
  max-width: 1200px;
  margin: auto; }
  .home-hero__intro {
    text-align: center;
    margin-bottom: 3rem; }
  .home-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem; }
  .home-hero__subtitle {
    font-size: 1.2rem;
    color: #333; }
    .home-hero__subtitle .home-hero__number {
      font-size: 1.6rem;
      font-weight: 700;
      color: #0754AA; }
    .home-hero__subtitle .text-blue {
      color: #0754AA;
      font-weight: 600; }
  .home-hero__content-block {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem; }
    @media (min-width: 768px) {
      .home-hero__content-block {
        flex-direction: row;
        align-items: center;
        justify-content: space-between; } }
  .home-hero__text {
    flex: 1 1 50%; }
  .home-hero__highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem; }
  .home-hero__desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px; }
  .home-hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; }
  .home-hero__image-wrapper {
    position: relative;
    flex: 1 1 50%;
    display: flex;
    justify-content: center; }
    .home-hero__image-wrapper img {
      max-width: 100%;
      border-radius: 20px; }
  .home-hero__badge {
    position: absolute;
    left: -2rem;
    top: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    width: 180px; }
    .home-hero__badge-title {
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 0.9rem; }
    .home-hero__badge-text {
      font-size: 0.85rem;
      margin-bottom: 0.8rem; }
    .home-hero__badge-btn {
      background: #0754AA;
      color: white;
      font-size: 0.85rem;
      text-align: center;
      display: inline-block;
      padding: 0.4rem 0.8rem;
      border-radius: 8px;
      text-decoration: none; }
      .home-hero__badge-btn:hover {
        background: #064892; }

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none; }
  .btn--primary {
    background-color: #0754AA;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 87, 193, 0.2); }
    .btn--primary:hover {
      background-color: #0046a0; }
  .btn--secondary {
    background-color: #fff;
    color: #0754AA;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); }
    .btn--secondary:hover {
      background-color: #f5f5f5; }

.steps {
  background: #fff;
  padding: 3rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 50px; }
  .steps__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem; }
  .steps__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem; }
  .steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    flex: 0 0 auto; }
    .steps__item .steps__icon {
      width: 48px;
      height: 48px;
      margin-bottom: 0.4rem; }
    .steps__item .steps__text {
      font-size: 0.9rem;
      font-weight: 600;
      line-height: 1.2; }
  .steps__arrow {
    font-size: 2rem;
    color: #888;
    flex: 0 0 auto; }
  @media (max-width: 600px) {
    .steps {
      padding: 2rem 1rem;
      width: calc(100% - 2rem); }
      .steps__title {
        font-size: 1.4rem; }
      .steps__icon {
        width: 36px;
        height: 36px; }
      .steps__text {
        font-size: 0.75rem; }
      .steps__arrow {
        font-size: 1.5rem; }
      .steps__wrapper {
        gap: 0.6rem; } }

.actus-home {
  padding: 4rem 1rem; }
  .actus-home__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 1rem; }
  .actus-home h2 {
    font-size: 2.2rem;
    font-weight: 700; }
  .actus-home__link {
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #000; }
    .actus-home__link:hover {
      text-decoration: underline; }
  .actus-home__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto; }
    @media (max-width: 1024px) {
      .actus-home__grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) {
      .actus-home__grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        -ms-overflow-style: none;
        scrollbar-width: none; }
        .actus-home__grid::-webkit-scrollbar {
          display: none; } }
  .actus-home__card {
    background: #fff;
    border-radius: 12px;
    flex: 0 0 80%;
    max-width: 300px;
    scroll-snap-align: start; }
    @media (min-width: 769px) {
      .actus-home__card {
        flex: none;
        max-width: 100%; } }
    .actus-home__card a {
      display: block;
      text-decoration: none;
      color: inherit; }
  .actus-home__image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover; }
  .actus-home__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 0; }
  .actus-home__date {
    font-size: 0.9rem;
    color: #555; }

.pdf-preview {
  padding: 4rem 1rem;
  background: #fff; }
  .pdf-preview .container {
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2rem 1rem;
    border-radius: 10px; }
  .pdf-preview__cards {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory; }
    .pdf-preview__cards::-webkit-scrollbar {
      display: none; }
  .pdf-preview .pdf-card {
    min-width: 160px;
    max-width: 160px;
    text-align: center;
    scroll-snap-align: start;
    flex-shrink: 0; }
    .pdf-preview .pdf-card img {
      width: 50px;
      margin-bottom: 0.5rem; }
    .pdf-preview .pdf-card h3 {
      font-size: 1rem;
      font-weight: 600; }
      .pdf-preview .pdf-card h3 small {
        display: block;
        font-weight: 400;
        font-size: 0.85rem;
        color: #444;
        margin-top: 0.25rem; }
  .pdf-preview__cta {
    margin-top: 2rem;
    text-align: center; }

.connexion {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center; }
  .connexion__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem; }
  .connexion__text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #555; }
  .connexion__error {
    color: #d00000;
    background: #ffd9d9;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem; }
  .connexion__form {
    display: flex;
    flex-direction: column;
    gap: 1rem; }
  .connexion__input {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
    .connexion__input::placeholder {
      color: #aaa; }
  .connexion__button {
    background-color: #0754AA;
    color: #fff;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
    .connexion__button:hover {
      background-color: #004c99; }

.deconnexion {
  max-width: 400px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center; }
  .deconnexion__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem; }
  .deconnexion__text {
    font-size: 1rem;
    color: #555; }

/*# sourceMappingURL=style.css.map */
