:root {
  --primary-color: #EF0061;
  --secondary-color: #AA007A;
  --light: #F5F5FA;
  --light1: #ebebf5;
  --bs-border-color: var(--light1);
  --light2: #DADEE8;
  --light3: #BDC1CC;
  --light4: #A1A5B2;
  --light5: #868B98;
  --medium: #6C717F;
  --medium2: #585D6B;
  --medium3: #454A57;
  --medium4: #333844;
  --medium5: #222632;
  --dark: #04101D;
  --dark2: #020E1D;
  --dark3: #000914;
  --font-size-base: 16px;
  --neongradient: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body {
  font-family: "Google Sans Flex", sans-serif;
  background: radial-gradient(circle at top left, #f5f5f5 0, #dfe5ef 45%, #f8f8f8 100%);
  color: var(--dark);
  /*#333*/
}

.page-wrapper {
  max-width: 900px;
  margin: 30px auto;
  background: #f4f6fb;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

/* Bandeau du haut */
.top-bar {
  height: 70px;
  background: linear-gradient(90deg, #fdfdfd, #f4f6fb);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.lang-dropdown .btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--medium2);
  background: transparent;
  border: none;
  padding: 4px 2px;
}

.lang-dropdown .btn-lang:focus {
  box-shadow: none;
}

.lang-name {
  white-space: nowrap;
}

/* Section principale */
.hero-section, .info-section {
  padding: 30px 40px 20px;
  background: linear-gradient(to bottom, #fdfdfd 0, #f2f4f8 70%, #e7ecf5 100%);
}

.related-section {
  padding: 30px 40px 20px;
  background: linear-gradient(to bottom, #fdfdfd 0, #f2f4f8 70%, #e7ecf5 100%);
}

.hero-title-main {
  font-size: 34px;
  font-weight: 600;
  color: var(--dark);
}

.hero-title-main span {
  font-weight: 800;
}

.hero-title-sub {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 4px;
  position: relative;
  display: inline-block;
}

.hero-title-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--neongradient);
  border-radius: 999px;
}

.hero-subtext {
  margin-top: 22px;
  color: var(--medium2);
  font-size: var(--font-size-base);
}

.hero-subtext-strong {
  margin-top: 2px;
  font-weight: 700;
  color: var(--medium3);
}

.divider {
  margin: 22px 0 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--dark);
}

.bullet-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #222;
  margin-top: 7px;
  flex-shrink: 0;
}

/* Section "Cómo funciona" */
.how-section {
  padding: 20px 40px 30px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}

.how-bg {
  position: absolute;
  inset: 0;
  background: url("../images/local/local-bg-ICn_4pc.jpg") center/cover no-repeat;
  opacity: 0.28;
  filter: blur(1px);
  transform: scale(1.05);
}

.how-content {
  position: relative;
  z-index: 1;
}

.how-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 22px;
}

.how-steps {
  text-align: center;
}

.how-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  font-size: 30px;
  color: var(--primary-color);
}

.how-step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--medium5);
}

.how-step-num {
  margin-top: 6px;
  font-size: 14px;
  color: var(--medium3);
  font-weight: 600;
}

/* Carte burger */
.brand-card-wrapper {
}

.brand-card {
  /*background: linear-gradient(90deg, #f02b8b, #ff6f48);*/
  background: var(--neongradient);
  border-radius: 0px;
  padding: 0px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.brand-text {
  /* flex: 1 1 220px; */
  flex: 1 1 350px;
  padding: 26px 0px 26px 20px;
  min-width: 0;
}

.brand-text .title {
  text-transform: none;
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.brand-name {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-description {
  margin-top: 14px;
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 1.4;
}

.brand-image {
  /* flex: 0 0 220px; */
  flex: 1 1 350px;
  max-width: 350px;
  position: relative;
}

/* Bouton CTA */
.cta-wrapper {
  padding: 40px 32px;
}

.cta-btn {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 22px;
  background: var(--neongradient);
  border: none;
  border-radius: 4px;
  color: #fff;
  box-shadow: 0 7px 18px rgba(255, 49, 90, 0.55);
}

.cta-btn .thumb {
  background: #ffc107;
  border-radius: 4px;
  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cta-btn span strong {
  font-weight: 800;
}

/* Footer */
.footer-basic {
  padding: 12px 16px;
  background: #e2e6f0;
  font-size: 13px;
  color: var(--medium2);
  text-align: center;
}

.accordion-body {
  color: var(--medium3);
}

.accordion-button:not(.collapsed) {
  color: var(--dark3);
  background-color: transparent;
}

.accordion-button {
  color: var(--dark3);
  font-weight: 500;
}

button:focus, .accordion-button:focus {
  box-shadow: none;
}

.hero-brand-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary-color);
}

.hero-brand-title span {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  width: fit-content;
  font-weight: 800;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}
h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.related-section li {
  font-size: 15px;
}

/* RESPONSIVE */
/* @media (max-width: 767.98px) { */
@media (max-width: 752.99px) {
  .page-wrapper {
    margin: 10px;
  }

  .hero-section,
  .info-section,
  .how-section,
  .cta-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .related-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title-main {
    font-size: 24px;
  }

  .hero-title-sub {
    font-size: 20px;
  }

  .top-bar {
    padding: 0 16px;
  }

  .brand-image {
    flex: 0 0 auto;
    max-width: 450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-text {
    flex: 1 1 auto;
    padding: 18px 15px;
  }

  .cta-btn {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 600px) {
  body {
    --font-size-base: 15px;
  }

  .hero-title-main {
    font-size: 32px;
  }

  .brand-text .title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .brand-name {
    font-size: 30px;
  }

  .brand-description {
    font-size: 16px;
    margin-top: 10px;
  }
}
