:root {
  --green: #0b5d1e;
  --green-dark: #063d14;
  --green-light: #eaf5ee;
  --text: #152018;
  --muted: #647067;
  --white: #ffffff;
  --border: #dce7df;
  --shadow: 0 20px 60px rgba(10, 55, 25, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7faf8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background:
    linear-gradient(135deg, rgba(6, 61, 20, 0.93), rgba(11, 93, 30, 0.82)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 18px;
}

.logo span {
  font-weight: 400;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 24px 120px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: #7ddc91;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

.hero-text {
  font-size: 20px;
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
}

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

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

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

.contact .btn.secondary {
  border-color: var(--green);
  color: var(--green);
}

.note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  color: var(--green);
}

.cards,
.pricing,
.steps {
  display: grid;
  gap: 20px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.price-card,
.step,
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card p,
.step p,
.price-card p {
  color: var(--muted);
}

.solution,
.target {
  background: var(--green-light);
  max-width: none;
}

.solution > *,
.target > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.pricing {
  grid-template-columns: repeat(4, 1fr);
}

.price-card strong {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  color: var(--green);
}

.price-card.featured {
  border: 2px solid var(--green);
}

.disclaimer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.contact {
  padding-top: 40px;
}

.contact-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.contact-box p {
  color: var(--muted);
}

.email {
  font-weight: 800;
  color: var(--green) !important;
}

.footer {
  padding: 38px 24px;
  text-align: center;
  background: var(--green-dark);
  color: var(--white);
}

.footer .small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 900px) {
  .cards.three,
  .steps,
  .pricing {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    gap: 18px;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 540px) {
  .nav {
    flex-direction: column;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .section {
    padding: 58px 18px;
  }
}

/* =========================================================
   MENU HAMBURGER UADC MANAGEMENT
   Ajout uniquement à la fin du style.css existant
   ========================================================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 3001;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--white);
  border-radius: 999px;
  margin: 5px auto;
}

.mobile-menu {
  position: fixed;
  top: 84px;
  right: 24px;
  width: 230px;
  background: var(--white);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 3000;
  display: none;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu a {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Affichage mobile */
@media (max-width: 900px) {
  .nav {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }
}

/* =========================================================
   BARRE UADC MANAGEMENT FIXE AU SCROLL
   À ajouter à la fin du style.css
   ========================================================= */

.site-header {
  padding-top: 88px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 22px 50px;
  z-index: 4000;
  background: rgba(6, 61, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 4001;
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 92px;
  }

  .nav {
    padding: 22px 50px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-top: 92px;
  }

  .nav {
    padding: 22px 42px;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .logo {
    font-size: 18px;
  }

  .mobile-menu {
    top: 92px;
    right: 24px;
  }
}

/* =========================================================
   COULEUR VERTE DU LOGO DANS LA BARRE FIXE
   À ajouter à la fin du style.css
   ========================================================= */

.nav .logo,
.nav .logo span {
  color: #7ddc91;
}

.menu-toggle span {
  background: #7ddc91;
}

/* =========================================================
PAGE LÉGALE : POLITIQUE DE CONFIDENTIALITÉ
À ajouter uniquement à la fin du style.css
========================================================= */

.legal-page {
background: #f7faf8;
color: var(--text);
}

.legal-hero {
background:
linear-gradient(135deg, rgba(6, 61, 20, 0.95), rgba(11, 93, 30, 0.86)),
url(“https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1600&q=80”);
background-size: cover;
background-position: center;
color: var(--white);
padding: 90px 24px 80px;
}

.legal-container {
max-width: 980px;
margin: 0 auto;
}

.legal-hero h1 {
max-width: 850px;
}

.legal-hero p {
max-width: 760px;
color: rgba(255, 255, 255, 0.86);
}

.back-home {
display: inline-flex;
margin-top: 24px;
padding: 12px 18px;
border: 1px solid rgba(255, 255, 255, 0.65);
border-radius: 999px;
color: var(–-white);
font-weight: 800;
}

.legal-card {
background: var(–-white);
border: 1px solid var(–-border);
border-radius: 28px;
padding: 38px;
margin: 50px 24px 70px;
box-shadow: var(–-shadow);
}

.legal-card h2 {
margin-top: 42px;
color: var(–-green-dark);
}

.legal-card h2:first-of-type {
margin-top: 0;
}

.legal-card h3 {
margin-top: 28px;
color: var(–-green);
}

.legal-card p,
.legal-card li {
color: var(–-muted);
}

.legal-card a {
color: var(–-green);
font-weight: 800;
text-decoration: underline;
text-underline-offset: 3px;
}

.legal-warning {
background: var(–-green-light);
border: 1px solid var(–-border);
border-left: 5px solid var(–-green);
border-radius: 18px;
padding: 18px 20px;
margin-bottom: 34px;
color: var(–-text);
}

.legal-table {
width: 100%;
border-collapse: collapse;
margin: 22px 0 34px;
overflow: hidden;
border-radius: 18px;
border: 1px solid var(–-border);
}

.legal-table th,
.legal-table td {
text-align: left;
padding: 14px 16px;
border-bottom: 1px solid var(–-border);
vertical-align: top;
}

.legal-table th {
background: var(–-green-light);
color: var(–-green-dark);
font-weight: 800;
}

.legal-table tr:last-child td {
border-bottom: none;
}

.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
color: rgba(255, 255, 255, 0.78);
font-size: 13px;
}

.footer-links a {
color: rgba(255, 255, 255, 0.88);
font-weight: 700;
}

.footer-links a:hover {
color: #7ddc91;
}

@media (max-width: 700px) {
.legal-hero {
padding: 70px 20px 60px;
}

.legal-card {
padding: 26px 20px;
margin: 34px 18px 56px;
}

.legal-table,
.legal-table tbody,
.legal-table tr,
.legal-table th,
.legal-table td {
display: block;
width: 100%;
}

.legal-table th {
display: none;
}

.legal-table td {
border-bottom: 1px solid var(–-border);
}

.legal-table td:first-child {
background: var(–-green-light);
color: var(–-green-dark);
font-weight: 800;
}
}

.footer-linkedin-button {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 26px;
  border: 1px solid #b8d8c0;
  border-radius: 30px;
  color: #b8d8c0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-linkedin-button:hover {
  background-color: #b8d8c0;
  color: #003d14;
}

/* =========================================================
   UADC MANAGEMENT - V1 ACQUISITION
   À AJOUTER UNIQUEMENT À LA FIN DU style.css
   ========================================================= */

html {
  scroll-behavior: smooth;
}

.hero-content {
  max-width: 820px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-weight: 700;
  font-size: 14px;
}

.hero-benefits li::before {
  content: "✓";
  color: #7ddc91;
  font-weight: 900;
}

.cta-reassurance {
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 28px 28px 58px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.result-item::before {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-weight: 900;
}

.btn,
.nav-cta {
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {

  .results-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 540px) {

  .hero-benefits {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* =========================================================
   UADC MANAGEMENT — FINALISATION V1.1 À V1.9
   Ajouter uniquement à la fin du fichier style.css
   ========================================================= */

/* V1.8 — Empêche la barre fixe de masquer les titres */
section[id] {
  scroll-margin-top: 115px;
}

/* V1.7 — Le logo reste visuellement identique comme lien */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

/* V1.9 — Boutons plus dynamiques */
.btn,
.nav-cta {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.985);
}

.btn.primary:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.contact .btn.primary:hover {
  box-shadow: 0 12px 30px rgba(11, 93, 30, 0.25);
}

.btn:focus-visible,
.nav-cta:focus-visible,
.logo:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid #7ddc91;
  outline-offset: 4px;
}

/* V1.4 — Menu fluide et légèrement flouté */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 18px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-12px) scale(0.97);
  transform-origin: top right;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu a {
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--green);
  transform: translateX(4px);
}

/* V1.5 — Icônes et interactions des cartes problèmes */
.problem .card {
  position: relative;
  padding-top: 74px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.problem .card::before {
  position: absolute;
  top: 25px;
  left: 28px;

  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.problem .card:nth-child(1)::before {
  content: "▤";
}

.problem .card:nth-child(2)::before {
  content: "₣";
}

.problem .card:nth-child(3)::before {
  content: "◉";
}

.problem .card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 93, 30, 0.28);
  box-shadow: 0 24px 65px rgba(10, 55, 25, 0.16);
}

.problem .card:active {
  transform: scale(0.985);
}

/* V1.3 — Réassurance plus nette */
.cta-reassurance {
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* =========================================================
   OPTIMISATION MOBILE
   ========================================================= */

@media (max-width: 700px) {

  /* V1.1 — Hero moins haut */
  .hero {
    padding:
      58px
      20px
      72px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1.06;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 0;
  }

  /* V1.2 — Bénéfices sur deux colonnes */
  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .hero-benefits li {
    width: 100%;
    min-height: 52px;
    padding: 9px 11px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.25;
  }

  .hero-benefits li:last-child {
    grid-column: 1 / -1;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-actions .btn {
    min-height: 56px;
    padding: 13px 18px;
  }

  .cta-reassurance {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.5;
  }

  .note {
    margin-top: 26px;
    font-size: 13px;
  }

  .problem .card {
    padding-top: 70px;
  }
}

@media (max-width: 390px) {

  .hero {
    padding-left: 17px;
    padding-right: 17px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-benefits li {
    font-size: 13px;
    padding-left: 9px;
    padding-right: 9px;
  }
}

/* Respect du réglage d’accessibilité de l’utilisateur */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   UADC MANAGEMENT — V2 PARCOURS PSYCHOLOGIQUE
   Ajouter uniquement à la fin du fichier style.css
   ========================================================= */

/* ---------------------------------------------------------
   HERO V2 — Question d’identification
   --------------------------------------------------------- */

.hero-question {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-question::before {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #7ddc91;
}

/* ---------------------------------------------------------
   INTRODUCTION DES SECTIONS
   --------------------------------------------------------- */

.section-intro {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.solution .section-intro {
  color: #536158;
}

/* ---------------------------------------------------------
   CONCLUSION DE LA SECTION PROBLÈMES
   --------------------------------------------------------- */

.problem-conclusion {
  position: relative;
  max-width: 900px;
  margin: 34px auto 0;
  padding: 24px 28px 24px 66px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--green);
  border-radius: 20px;
  background: var(--green-light);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  box-shadow: 0 12px 35px rgba(10, 55, 25, 0.08);
}

.problem-conclusion::before {
  content: "!";
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

/* ---------------------------------------------------------
   NOTRE APPROCHE V2
   --------------------------------------------------------- */

.solution .section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.solution .steps {
  align-items: stretch;
}

.solution .step {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.solution .step::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(11, 93, 30, 0.05);
}

.solution .step:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 93, 30, 0.28);
  box-shadow: 0 24px 65px rgba(10, 55, 25, 0.15);
}

.solution .step h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.solution .step p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   RÉSULTATS — TRANSITION PLUS CONVAINCANTE
   --------------------------------------------------------- */

.results .section-heading {
  max-width: 850px;
}

.results-grid {
  align-items: stretch;
}

.result-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  line-height: 1.45;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.result-item:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 93, 30, 0.25);
  box-shadow: 0 22px 55px rgba(10, 55, 25, 0.14);
}

/* ---------------------------------------------------------
   OFFRES — MEILLEURE HIÉRARCHIE
   --------------------------------------------------------- */

.offers .section-heading {
  max-width: 850px;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.price-card p {
  flex-grow: 1;
}

.price-card strong {
  margin-top: auto;
  padding-top: 20px;
}

/* ---------------------------------------------------------
   ACCESSIBILITÉ ET INTERACTIONS
   --------------------------------------------------------- */

.problem-conclusion,
.section-intro,
.hero-question {
  text-wrap: pretty;
}

/* =========================================================
   TABLETTES
   ========================================================= */

@media (max-width: 900px) {

  .solution .step {
    min-height: auto;
  }

  .problem-conclusion {
    max-width: 100%;
  }

}

/* =========================================================
   MOBILES
   ========================================================= */

@media (max-width: 700px) {

  .hero-question {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-question::before {
    width: 44px;
    margin-bottom: 15px;
  }

  .section-intro {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .problem-conclusion {
    margin-top: 28px;
    padding:
      58px
      20px
      22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .problem-conclusion::before {
    top: 20px;
    left: 20px;
  }

  .solution .section-heading {
    margin-bottom: 30px;
  }

  .solution .step {
    padding: 28px;
  }

  .solution .step h3 {
    font-size: 23px;
  }

  .result-item {
    min-height: 100px;
  }

}

/* =========================================================
   PETITS MOBILES
   ========================================================= */

@media (max-width: 390px) {

  .hero-question {
    font-size: 16px;
  }

  .problem-conclusion {
    font-size: 15px;
  }

  .solution .step {
    padding: 25px;
  }

}
