/* GLOBAL */
body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

a {
  text-decoration: none;
}
p {
  font-weight: 300 !important;
  font-size: 16px;
}


/* NAVBAR */
nav {
  background-color: #fff;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .nav-content {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.nav-content .nav-logo {
  width: auto;
  height: 43px;
}

.nav-content .nav-link {
  font-size: 14px;
  font-weight: 700;
}

.btn-pink.smaller {
  font-size: 13px !important;
  font-weight: 700;
  color: #fff;
  background-color: #FF2AA0;
  padding: 10px 16px;
  border-radius: 40px;
  text-align: center;
}
@media (max-width: 992px) {
  .btn-pink.smaller {
    padding: 10px 16px !important;
  }
}

.btn-burger {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 30px;
  color: #111;
  background-color: #F2F2F2;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 16, 0.42);
  backdrop-filter: blur(16px);
}

.mobile-menu-panel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu-link {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-menu-overlay {
    display: none;
  }
}

.desktop-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.desktop-dialog-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.desktop-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.62);
  backdrop-filter: blur(18px);
}

.desktop-dialog {
  position: relative;
  width: min(1040px, calc(100vw - 48px));
  max-height: min(550px, calc(100vh - 48px));
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 28px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.desktop-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(17, 20, 28, 0.08);
  color: #111;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.desktop-dialog-panel {
  display: none;
  width: 100%;
  height: 100%;
}

.desktop-dialog-panel.is-active {
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 1fr);
}

.desktop-dialog-hero {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 32px 36px;
  overflow: hidden;
}

.desktop-dialog-panel[data-desktop-dialog-panel="approche"] .desktop-dialog-hero {
  padding-top: 34px;
  padding-bottom: 20px;
}

.desktop-dialog-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.desktop-dialog-title {
  max-width: 360px;
  font-size: 46px;
  font-weight: 900;
  color: #fff;
}

.desktop-dialog-title-small {
  font-size: 40px;
}

.desktop-dialog-robot {
  width: min(100%, 200px);
  height: auto;
}

.desktop-dialog-content {
  min-width: 0;
  background: #fff;
  overflow: auto;
}

.content-section.popup {
  padding: 56px 42px 40px;
}

@media (max-width: 991.98px) {
  .desktop-dialog-overlay {
    display: none;
  }
}


/* HERO */
.hero-section {
  max-width: 1300px;
  margin: 0 auto;
}

.dark-bg-gradient {
    background: radial-gradient(
        118.46% 81.82% at 50% 50%, 
        #222734 0%, 
        #000000 100%
    );
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

@media (max-width: 577px) {
  .dark-bg-gradient.mobile-black {
    background: #111317;
    background: linear-gradient(180deg,rgba(17, 19, 23, 1) 49%, rgba(0, 0, 0, 1) 50%);
  }
}

.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.blue-glow-effect {
  position: absolute;
  width: 25vw;
  height: 18vw;
  top: -8%;
  left: -8%;
  background: rgba(0, 255, 255, 0.7);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}
.pink-glow-effect {
  position: absolute;
  width: 25vw;
  height: 18vw;
  bottom: -8%;
  right: -8%;
  background: rgba(255, 41, 159, 0.7);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .blue-glow-effect,
  .pink-glow-effect {
    filter: blur(100px);
  }
}
@media (max-width: 768px) {
  .blue-glow-effect,
  .pink-glow-effect {
    width: 40vw;
    height: 30vw;
  }
}
@media (max-width: 768px) {
  .blue-glow-effect,
  .pink-glow-effect {
    width: 50vw;
    height: 42vw;
    filter: blur(140px);
  }
}

/* Left hero */
.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
  min-height: 500px;
}

.hero-robot-img {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(140%, 370px);
  max-width: none;
  height: auto;
}
@media (max-width: 1200px) {
  .hero-right {
    width: 100%;
    max-width: 625px !important;
  }

  .hero-robot-img {
    position: static !important;
    transform: translateX(0);
    width: auto;
    height: 450px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .hero-left {
    min-height: 300px;
  }

  .hero-robot-img {
    width: auto;
    height: 300px;
  }
}
@media (max-width: 576px) {
  .hero-left {
    min-height: 250px;
  }
  .hero-robot-img {
    height: 250px;
  }
}

/* Right hero */
.hero-right {
  width: 100%;
  max-width: 700px;
}
@media (max-width: 992px) {
  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-badge {
    font-size: 13px !important;
  }
  h1 {
    font-size: 42px !important;
  }
  p {
    font-size: 15px !important;
  }

}
@media (max-width: 576px) {
  .hero-badge {
    font-size: 11px !important;
  }
  h1 {
    font-size: 36px !important;
  }

  .btn-group {
    width: 250px;
  }
  .btn-group a {
    width: 100%;
  }
}
.hero-badge {
  width: fit-content;
  text-transform: uppercase;
  color: #01FFFF;
  background-color: rgb(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 500 !important;
  letter-spacing: 11%;
  padding: 5px 18px;
  border-radius: 50px;
  text-align: center;
}

h1 {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  max-width: 600px;
}
.text-blue-to-pink {
  background: linear-gradient(90deg, #00FFFF 14.3%, #923FC0 49%, #FA3582 85.7%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.text-blue {
  color: #00FFFF;
}

.btn-pink {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #FF2AA0;
  padding: 12px 26px;
  border-radius: 40px;
}
.btn-border-white {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: transparent;
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
}

/* Robot mobile */
.space-robot-mobile {
  height: 175px;
}
.robot-mobile {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .space-robot-mobile {
    height: 135px;
  }
}


/* LE CONCEPT */
.concept-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 80px 30px;
}

h2 {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  color: #000;
}
h4 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 14%;
  text-align: center;
  color: #2ACDFF;
}

.concept-video-wrapper {
  width: 100%;
  max-width: 834px;
}

.concept-video {
  width: 100%;
  max-width: 834px;
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  background-color: #1F1F1F;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
}

.concept-video-under {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  background-color: #281845;
  padding: 30px 25px;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 576px) {
  .concept-container {
    gap: 20px;
    padding: 30px;
  }

  .concept-video-under {
    gap: 10px;
  }
  .concept-video {
    background: linear-gradient(107.22deg, #00FFFF 4.15%, #8942C5 56.81%, #FA3582 100%);
  }
}

h5 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.text-pink {
  color: #FF2AA0;
}
.text-small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}


/* POUR QUI ? */
h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.matiere-carousel-section {
  width: 100%;
  max-width: 1240px;
  margin: 34px auto 0;
  padding: 0 24px;
}

.matiere-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.matiere-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.matiere-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.matiere-carousel-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.matiere-carousel-item {
  margin: 0;
}

.matiere-carousel-image {
  display: block;
  width: 100%;
  height: auto;
}

.matiere-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.matiere-carousel-arrow:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}

.matiere-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.matiere-carousel-arrow-prev {
  left: -22px;
}

.matiere-carousel-arrow-next {
  right: -22px;
}

.matiere-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.matiere-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.matiere-carousel-dot.is-active {
  background-color: #fff;
  transform: scale(1.15);
}

@media (max-width: 991.98px) {
  .matiere-carousel-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matiere-carousel-arrow-prev {
    left: -10px;
  }

  .matiere-carousel-arrow-next {
    right: -10px;
  }
}

@media (max-width: 575.98px) {
  .matiere-carousel-section {
    margin-top: 26px;
    max-width: none;
    padding: 0;
  }

  .matiere-carousel {
    gap: 18px;
  }

  .matiere-carousel-viewport {
    cursor: pointer;
  }

  .matiere-carousel-page {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .matiere-carousel-arrow {
    display: none;
  }

}


/* POURQUOI PASCALE... */
.card-container {
  width: 100%;
  max-width: 1380px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.card {
  flex: 1 1 330px;
  padding: 30px;
  border: none;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.card h6 {
  text-align: center;
  font-size: 22px;
  font-weight: 700 !important;
  color: #000;
  max-width: 300px;
  margin: 0 auto 13px;
}
.card p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3%;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}
.card p b {
  font-weight: 700;
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }
}

/* ILS EN PARLENT */
.avis-container h4 {
  font-size: 14px;
}

.feedback-carousel-shell {
  width: 100%;
  margin-top: 32px;
  padding: 0 24px;
}

.feedback-carousel {
  width: 100%;
}

.feedback-carousel-viewport {
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.feedback-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.feedback-carousel-track {
  display: flex;
  width: max-content;
  gap: 18px;
}

.feedback-card {
  width: min(237px, calc(100vw - 64px));
  height: fit-content;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.feedback-card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #E5FF00;
  font-size: 14px;
}

.feedback-card-text {
  margin: 0;
  color: #fff;
  font-size: 15px !important;
  font-style: italic;
  line-height: 19px;
  font-weight: 400 !important;
  text-align: left;
}

.feedback-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.feedback-card-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.feedback-card-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.feedback-card-name,
.feedback-card-class {
  margin: 0;
  text-align: left;
}

.feedback-card-name {
  color: #fff;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 18px;
}

.feedback-card-class {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px !important;
  line-height: 17px;
}

.stat-chiffre {
  font-size: 64px;
  font-weight: 700 !important;
  margin-bottom: 0;
}

/* CONCRETEMENT */
.card-container.icon {
  width: 100%;
  max-width: 1230px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
}

.fs-18 {
  font-size: 18px;
}

.card-icon {
  flex: 1 1 240px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  gap: 10px;
  max-width: 100%;
}
.card-icon .icon-container {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDE9FF;
  border-radius: 4px;
  margin: 0 auto 5px;
}
.card-icon .icon-container p {
  font-size: 14px !important;
}
.card-icon h6 {
  font-size: 17px;
  font-weight: 700 !important;
  text-align: center;
  color: #000;
  max-width: 217px;
  margin: 0 auto;
}
.card-icon p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3%;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

@media (max-width: 540px) {
  .card-icon {
    flex: 1 1 100%;
  }

  .feedback-carousel-shell {
    padding: 0 16px;
  }

  .feedback-card {
    width: min(237px, calc(100vw - 32px));
    padding: 20px 24px;
  }
}

/* PRICES */
.price-table-header {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
}

.price-table-header .price-table-item {
  width: 100%;
  max-width: 895px;
}
.price-table-header .empty-section {
  width: 100%;
  max-width: 325px;
}

.price-section {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  flex: 1;
  align-items: stretch;
}
@media (max-width: 992px) {
  .price-section {
    flex-direction: column;
    align-items: center;
  }

  .free-trial-section {
    max-width: 1000px !important;
    height: fit-content !important;
    margin-top: 20px;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .price-table-item p {
    width: 120px !important;
  }
  
  .free-trial-section {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .price-table-item.header {
    gap: 1.5rem !important;
  }
}

.price-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 895px;
  height: 100%;
  justify-content: space-between;
  gap: 12px;
}
.price-table-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F4F3FB;
  padding: 18px 15px;
}
.price-table-item.header {
  background-color: transparent;
  padding: 22px 15px;
  justify-content: end;
  gap: 50px;
}
.price-table-item p {
  margin-bottom: 0;
  width: 140px;
  text-align: left;
}

.free-trial-section {
  width: 100%;
  max-width: 325px;
  height: 300px;
  padding: 40px 30px;
  background: linear-gradient(180deg, #522AAB 0%, #3A1F74 100%);
  color: #fff;
}
.free-trial-section .small-title {
  font-size: 14px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 14%;
  color: #FF2AA0 !important;
}
.free-trial-section .big-title {
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: 3%;
  color: #fff;
}
.free-trial-section .btn-pink {
  font-size: 14px !important;
  display: block;
  width: 100%;
  text-align: center;
}

.subscription-container {
  width: 100%;
  max-width: 1260px;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
}

.text-small.grey {
  color: rgba(0, 0, 0, 0.4);
}
.text-small.grey b {
  font-weight: 700 !important;
}

.subscription-item {
  flex: 1 1 300px;
  background-color: #C0C0C0;
  border: 2px solid #C0C0C0;
  border-radius: 20px;
  min-height: 80px;
  cursor: pointer;
}
.subscription-item.active {
  background-color: #A95FBD;
  border-color: #A95FBD;
}

.subscription-item .name {
  width: 30%;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: 3%;
  text-align: center;
  color: #fff;
}
.subscription-item .content {
  width: 70%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 19px !important;
  letter-spacing: 3%;
  text-align: center;
  color: #000;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .subscription-container {
    padding: 10px 25px 30px;
  }
}

/* FOOTER */
.text-small.bright {
  color: #fff;
  font-weight: 300 !important;
}
.text-small.bright b {
  font-weight: 700 !important;
}

.text-extrasmall {
  font-size: 12px;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.underline {
  text-decoration: underline;
}


/* A PROPOS */
.content-section {
  width: 100%;
  max-width: 1220px;
  margin: auto;
}
.title {
	font-size: 22px;
	font-weight: 700;
	color: #000;
  text-align: left;
  margin: 20px 0;
}

p b {
  font-weight: 600;
}

/* NOTRE APPROCHE */
.info-card {
  background-color: #F4F3FB;
  padding: 16px;
  border-radius: 20px;
  margin: 25px 0;
}
.info-card p {
  color: #00000066;
  margin-bottom: 0;
}
