/* ==========================================================================
   Dormira — Landing page
   ========================================================================== */

:root {
  --color-green: #45A142;
  --color-blue: #0E4876;
  --color-gray: #525252;
  --color-light-blue: #F1F8FF;
  --color-white: #FFFFFF;
  --color-light-gray: #8D8D8D;

  --font-base: "Source Sans 3", sans-serif;
  --font-hand: "Gochi Hand", cursive;

  --container-width: 1200px;
  --gutter: 20px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-base);
  color: var(--color-gray);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-green);
  text-decoration: underline;
}

a:hover,
a:focus-visible {
  opacity: 0.8;
}

h1, h2, h3 {
  margin: 0;
  color: var(--color-blue);
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

/* ---------- Layout helpers ---------- */
.hero,
.temoignages,
.description,
.famille,
.mission,
.tarifs,
.faq {
  padding: 48px var(--gutter);
}

.hero__content,
.temoignages__grid,
.description__card,
.description__content,
.famille__content,
.mission__estimation,
.mission__content,
.tarifs__cards,
.faq {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-green);
  color: var(--color-white);
}

.hand-note {
  display: inline-block;
  font-family: var(--font-hand);
  color: var(--color-green);
  transform: rotate(-8deg);
}

.hand-note--right {
  transform: rotate(8deg);
}

.hand-note--strike {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  margin-right: 6px;
}

.highlight-circle {
  display: inline-block;
  position: relative;
  background-repeat: no-repeat;
}

.highlight-circle--price {
  background-image: url("assets/description/cercle-40.svg");
  background-position: center;
  background-size: 100% 100%;
  padding: 6px 14px 8px;
}

.highlight-circle--fee {
  background-image: url("assets/tarifs/cercle-3-6.svg");
  background-position: center;
  background-size: 100% 100%;
  padding: 4px 14px 6px;
  color: var(--color-blue);
  font-weight: 700;
}

.check-list {
  text-align: left;
}

.check-list li {
  position: relative;
  margin-bottom: 4px;
  color: var(--color-blue);
  text-align: left;
}

.check-list li img {
  position: absolute;
  left: -22px;
  top: 6px;
}

/* ==========================================================================
   Pre-head
   ========================================================================== */

.pre-head {
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--gutter);
  font-size: 13px;
}

.pre-head__back {
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.pre-head__login {
  white-space: nowrap;
}

.pre-head__login a {
  color: var(--color-white);
}

.pre-head__login-text {
  display: none;
}

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 16px var(--gutter);
}

.nav__logo {
  display: inline-flex;
  flex-shrink: 0;
}

.nav__logo img {
  width: 140px;
  height: auto;
}

.nav__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
  font-size: 15px;
  color: var(--color-gray);
}

.nav__help {
  white-space: nowrap;
}

.nav__avatar {
  border-radius: 50%;
  display: none;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.nav__text {
  display: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 32px var(--gutter);
}

.hero__content {
  position: relative;
  z-index: 2;
  order: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__title-small {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-blue);
}

.hero__title-small--muted {
  color: var(--color-light-gray);
}

.hero__title-big {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--color-blue);
}

.hero__title-percent {
  position: relative;
  display: inline-block;
}

.hero__title-underline {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: auto;
}

.hero__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
}

.hero__list li {
  max-width: 100%;
}

.hero__list li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -2px;
}

.hero__list strong {
  color: var(--color-blue);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__cta .btn {
  order: 1;
}

.hero__offer {
  order: 2;
  font-family: var(--font-hand);
  color: var(--color-green);
  font-size: 18px;
  transform: rotate(-3deg);
}

.hero__offer del {
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

/* Mobile — collage en flux, sous le CTA (voir landing-mobile.png) */
.hero__collage {
  position: relative;
  order: 2;
  width: 100%;
  height: 480px;
  margin-top: 8px;
  z-index: 1;
}

.hero__card {
  position: absolute;
  width: 60%;
  max-width: 240px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(14, 72, 118, 0.18);
}

.hero__card--2 { top: 0; right: -6%; width: 60%; transform: rotate(5deg); z-index: 2; }
.hero__card--1 { top: 60px; left: -6%; width: 60%; transform: rotate(-7deg); z-index: 1; }
.hero__card--7 { top: 140px; left: 20%; width: 60%; transform: rotate(-2deg); z-index: 4; }
.hero__card--5 { top: 230px; left: -6%; width: 60%; transform: rotate(-6deg); z-index: 2; }
.hero__card--8 { top: 260px; right: -6%; width: 60%; transform: rotate(-3deg); z-index: 3; }

.hero__card--3,
.hero__card--4,
.hero__card--6 {
  display: none;
}

.hero__deco {
  position: absolute;
  width: 15px;
}

.hero__deco--1 { top: 30px; left: 6%; }
.hero__deco--2 { top: 150px; left: 46%; }
.hero__deco--3 { display: none; }

/* ==========================================================================
   Temoignages
   ========================================================================== */

.temoignages {
  background: var(--color-light-blue);
}

.temoignages__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.temoignages__quotes {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quote p {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-blue);
}

.quote cite {
  font-style: italic;
  font-size: 15px;
  color: var(--color-gray);
}

.quote cite a {
  color: var(--color-green);
  font-family: var(--font-hand);
  font-style: normal;
  text-decoration: underline;
}

.temoignages__partners-title {
  font-style: italic;
  margin-bottom: 20px;
}

.temoignages__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 12px;
  align-items: center;
  margin-bottom: 32px;
}

.temoignages__logos img {
  max-height: 48px;
  width: auto;
  margin: 0 auto;
}

.temoignages__credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hand);
  color: var(--color-green);
  font-size: 16px;
  text-align: center;
  transform: rotate(-2deg);
}

.temoignages__credits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.temoignages__credits img {
  flex-shrink: 0;
}

.temoignages__credits a {
  color: var(--color-green);
}

/* ==========================================================================
   Description
   ========================================================================== */

.description {
  position: relative;
  z-index: 1;
}

.description__content {
  text-align: left;
}

.description__card {
  position: relative;
  max-width: 380px;
  margin-bottom: 40px;
  margin-left: 72px;
}

.description__card img:first-child {
  border-radius: 12px;
  border: 1px solid var(--color-light-blue);
  box-shadow: 0 12px 24px rgba(14, 72, 118, 0.12);
}

.description__arrow {
  position: absolute;
  width: 46px;
  top: 58%;
  left: -50px;
  transform: rotate(10deg);
}

.description__note {
  position: absolute;
  font-family: var(--font-hand);
  color: var(--color-green);
  top: 57%;
  left: -66px;
  transform: rotate(-8deg) translateY(-24px);
}

.description__star {
  position: absolute;
  width: 14px;
  top: 64%;
  left: -33px;
}

.description__content h2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}

.description__content p {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.description__content .check-list li {
  font-size: 16px;
  line-height: 22px;
}

.description__content .check-list strong {
  color: var(--color-blue);
  font-weight: 600;
}

.description__content strong {
  font-weight: 600;
}

.description__price {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: var(--color-gray);
  margin-bottom: 20px;
}

.description__price del {
  color: var(--color-gray);
  text-decoration-thickness: 3px;
}

.description__price .highlight-circle {
  color: var(--color-gray);
  font-weight: 700;
}

.description__footer {
  margin-top: 20px;
  position: relative;
  padding-bottom: 30px;
}

.description__ensemble {
  position: relative;
  display: inline-block;
  font-family: var(--font-hand);
  color: var(--color-green);
  font-size: 20px;
  margin-left: 8px;
  vertical-align: middle;
  transform: rotate(-5deg);
}

.description__ensemble-underline {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Famille
   ========================================================================== */

.famille {
  background: var(--color-light-blue);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.famille__content h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.famille__illustration {
  max-width: 100%;
  width: 100%;
  margin: 24px auto 0;
}

/* ==========================================================================
   Mission
   ========================================================================== */

.mission {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission__estimation {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border-left: 2px solid var(--color-light-blue);
  border-top: 2px solid var(--color-light-blue);
  border-right: 2px solid var(--color-light-blue);
  padding: 28px 28px 0;
  max-width: 460px;
}

.mission__estimation h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 20px;
}

.range-row {
  margin-bottom: 20px;
}

.range-row label {
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-gray);
  margin-bottom: 8px;
}

.range-row strong {
  color: var(--color-green);
  font-weight: 600;
}

.range-bar {
  width: 100%;
  height: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, var(--color-green) 0%, var(--color-light-blue) 0%);
  outline: none;
  cursor: pointer;
}

.range-bar::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 8px;
  background: transparent;
}

.range-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(14, 72, 118, 0.3);
  cursor: pointer;
}

.range-bar::-moz-range-track {
  height: 8px;
  border-radius: 8px;
  background: transparent;
}

.range-bar::-moz-range-progress {
  height: 8px;
  border-radius: 8px;
  background: var(--color-green);
}

.range-bar::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(14, 72, 118, 0.3);
  cursor: pointer;
}

.range-bar:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.range-bar:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

.mission__compare {
  display: flex;
  gap: 16px;
  margin: 24px -28px 0;
  padding: 20px 28px 28px;
  background: var(--color-light-blue);
}

.mission__compare-item {
  position: relative;
  flex: 1;
  font-size: 16px;
  line-height: 1;
}

.mission__compare-item p:first-child {
  color: var(--color-light-gray);
}

.mission__compare-item--dormira {
  background: var(--color-white);
  padding: 16px;
  text-align: center;
  margin-left: -10px;
}

.mission__compare-item--dormira p:first-child {
  color: var(--color-blue);
}

.mission__compare-price {
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-light-gray);
  margin-top: 4px;
}

.mission__compare-item--dormira .mission__compare-price {
  color: var(--color-green);
}

.mission__compare-item .hand-note {
  position: absolute;
  bottom: 10px;
  right: 80px;
  font-size: 20px;
  line-height: 16px;
  text-align: center;
}

.mission__avatars {
  position: absolute;
  bottom: -25px;
  right: 12px;
  width: 80px;
}

.mission__stars {
  position: absolute;
  width: 13px;
}

.mission__stars--a { top: 15px; left: 17px; }
.mission__stars--c { top: 20px; left: 200px; }
.mission__stars--d { bottom: 10px; left: 40px; }

/* Mobile — voir landing-mobile.png : "Ouille !" sous le prix barré,
   étoiles et avatars regroupés à droite sous "40€/an" */
@media (max-width: 767px) {
  .mission__compare-item .hand-note {
    top: auto;
    bottom: -20px;
    left: auto;
    right: -4px;
  }

  .mission__stars--a { top: -8px; left: auto; right: 22px; bottom: auto; }
  .mission__stars--c { top: 8px; left: auto; right: 2px; bottom: auto; }
  .mission__stars--d { top: 48px; left: auto; right: 123px; bottom: auto; }

  .mission__avatars {
    right: -11px;
  }
}

.mission__content h2 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
}

.mission__doodle {
  display: none;
}

.mission__content p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 22px;
}

.mission__content strong {
  font-weight: 600;
}

.mission__accent {
  color: var(--color-blue);
}

.mission__accent strong {
  color: var(--color-blue);
}

.mission__ps {
  color: var(--color-light-gray);
  font-size: 14px;
  margin-top: 40px;
}

/* ==========================================================================
   Tarifs
   ========================================================================== */

.tarifs {
  background: var(--color-light-blue);
}

.tarifs__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  margin-bottom: 48px;
}

.tarif-card {
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.tarif-card h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-blue);
}

.tarif-card p {
  color: var(--color-light-gray);
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.tarif-card p strong {
  font-weight: 600;
}

.tarif-card p.tarif-card__price {
  display: flex;
  align-items: center;
  font-size: 55px;
  line-height: 30px;
  color: var(--color-blue);
  gap: 6px;
  position: relative;
  margin-top: 10px;
}

.tarif-card__price .hand-note {
  font-size: 18px;
  line-height: 16px;
}

.tarif-card__price .hand-note--strike {
  align-self: flex-start;
}

.tarif-card__avatars {
  width: 66px;
  margin-left: 4px;
}

.tarif-card .btn {
  margin-top: 6px;
}

.tarif-card__footnote {
  font-style: italic;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-light-gray);
}

.tarifs__option {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.tarifs__option h3 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  color: var(--color-blue);
}

.tarifs__option p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--color-light-gray);
}

.tarifs__option p strong {
  font-weight: 600;
}

.tarifs__option a {
  color: var(--color-green);
  font-weight: 400;
}

@media (max-width: 767px) {
  .tarif-card {
    padding: 8px 5px;
  }
  .tarifs__option br {
    display: none;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq h2 {
  font-size: 26px;
  margin-bottom: 24px;
}

.faq__item {
  border-bottom: 1px solid var(--color-light-blue);
  padding: 16px 0;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-blue);
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq__item summary::before {
  content: "→";
  color: var(--color-green);
  flex-shrink: 0;
}

.faq__item[open] summary::before {
  content: "↓";
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin-top: 12px;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-gray);
}

.faq__item ul {
  margin-top: 8px;
  padding-left: 24px;
  list-style: none;
}

.faq__item ul li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.faq__item ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-green);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-blue);
  color: var(--color-light-blue);
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo {
  width: 210px;
}

.footer__legal {
  font-size: 13px;
}

.footer__legal a {
  color: var(--color-light-blue);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 14px;
}

/* Mobile — voir landing-mobile.png : logo, puis liens, puis mentions en bas */
@media (max-width: 767px) {
  .footer__logo {
    order: 1;
  }

  .footer__links {
    order: 2;
    margin-top: 12px;
  }

  .footer__legal {
    order: 3;
    margin-top: 24px;
  }
}

/* ==========================================================================
   Tablet / Desktop
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --gutter: 70px;
  }

  .pre-head__login-text {
    display: inline;
  }

  .nav__logo img {
    width: 193px;
  }

  .nav__avatar {
    display: block;
  }

  .nav__text {
    display: inline;
  }

  .hero {
    flex-direction: row;
    min-height: 600px;
  }

  .hero__content {
    order: 0;
  }

  .hero__collage {
    position: absolute;
    inset: 0;
    order: 0;
    width: auto;
    height: auto;
    margin-top: 0;
  }

  .hero__card {
    width: 42%;
    max-width: 220px;
  }

  /* Left side — 4 vignettes (haut vers bas) */
  .hero__card--1 { top: -3%; left: -6%; right: auto; width: 9%; transform: rotate(8deg); z-index: auto; }
  .hero__card--3 { display: block; top: 31%; left: -1%; width: 9%; transform: rotate(-3deg); }
  .hero__card--4 { display: block; top: 63%; left: 5%; width: 10%; transform: rotate(5deg); }
  .hero__card--6 { display: block; top: 90%; left: -1%; width: 8%; transform: rotate(6deg); }

  /* Droite — 4 vignettes (haut vers bas) */
  .hero__card--2 { top: 28%; left: 89%; right: auto; width: 9%; transform: rotate(-14deg); z-index: auto; }
  .hero__card--7 { top: 57%; left: 84%; width: 7%; transform: rotate(4deg); z-index: auto; }
  .hero__card--5 { top: 66%; left: 74%; right: auto; width: 8%; transform: rotate(-5deg); z-index: auto; }
  .hero__card--8 { top: 75%; left: 89%; right: auto; width: 9%; transform: rotate(-7deg); z-index: auto; }

  .hero__title-big {
    font-size: 92px;
  }

  .hero__list li {
    white-space: nowrap;
  }

  .hero__cta {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
  }

  .hero__cta .btn {
    order: 0;
  }

  .hero__offer {
    order: 0;
    margin-top: 0;
  }

  .hero__deco {
    display: block;
  }

  .hero__deco--1 { top: 5%; left: 20%; }
  .hero__deco--2 { top: 45%; right: 30%; }
  .hero__deco--3 { display: block; top: 70%; left: 28%; }

  .temoignages__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .temoignages__quotes,
  .temoignages__partners {
    flex: 1;
    min-width: 0;
  }

  .temoignages__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .temoignages__logos img {
    max-height: 84px;
  }

  .description {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: calc(var(--container-width) + 80px);
    margin: 0 auto;
  }

  .description__card {
    flex: 0 0 380px;
    margin-top: -110px;
    margin-bottom: 0;
    margin-left: 0;
  }

  .description__content {
    flex: 1;
    max-width: none;
    margin: 0;
  }

  .famille {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .famille__content {
    position: relative;
    z-index: 1;
    max-width: 575px;
    margin-right: 0px;
  }

  .famille__illustration {
    max-width: 800px;
    width: 100%;
    margin: 60px 150px 0 -150px;
  }

  .mission {
    flex-direction: row;
    align-items: flex-start;
    max-width: calc(var(--container-width) + 80px);
    margin: 0 auto;
  }

  .mission__estimation {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .mission__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    margin: 10px;
  }

  .mission__doodle {
    display: inline-block;
    width: 90px;
    vertical-align: top;
    margin-left: -40px;
    margin-top: -40px;
  }

  .tarifs__cards {
    flex-direction: row;
    position: relative;
  }

  .tarif-card {
    flex: 1 1 0;
    min-width: 0;
  }

  .tarifs__cards::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--color-white);
    opacity: 1;
  }

  .tarifs__option {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .tarifs__option h3 {
    flex: 0 0 220px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__links {
    flex-direction: row;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 400px;
  }
}
