:root {
  /* Colors */
  --primary-blue: #0070f3; /* Le bleu des boutons CTA et logos */
  --primary-dark: #002b5c; /* Pour les titres et la navigation */
  --secondary-green: #00c853; /* Pour les états "payé" ou succès */
  --bg-light: #f8fafd; /* Fond de page très légèrement bleuté */
  --bg-white: #ffffff; /* Fond des cartes et sections blanches */
  --text-main: #334155; /* Texte de corps (gris ardoise) */
  --text-muted: #64748b; /* Texte secondaire (FAQ, légendes) */
  --border-color: #e2e8f0; /* Bordures fines des cartes et tableaux */

  /* Typography */
  --font-main: "Manrope", sans-serif;
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --body-size: 1.1rem;

  /* Layout */
  --container-width: 1200px;
  --section-padding: 100px 0; /* Espacement généreux entre les sections */
  --radius-lg: 16px; /* Arrondi des cartes Pricing et Hero */
  --radius-md: 8px; /* Arrondi des boutons et inputs */
}

body {
  width: 100vw;
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--body-size);
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

span {
  color: var(--text-muted);
}
header {
  height: 81px;
  background-color: var(--bg-white);
  margin: auto;
}

.header {
  width: var(--container-width);
  height: 100%;
  margin: auto;
  display: flex;
  color: var(--text-main);
  justify-content: space-between;
  align-items: center;
}
.nameLogo {
  font-weight: bold;
}
nav {
  display: flex;
  gap: 40px;
}

nav > a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.logButtons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.logButtons > button {
  background-color: var(--primary-blue);
  border-radius: var(--radius-md);
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  color: white;
}

.hero {
  height: 1748px;
  width: 100vw;
  background-color: var(--bg-light);
}

.hero_box {
  width: var(--container-width);

  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80%;
  gap: 40px;
  margin-top: 100px;
}

.hero_txt > h1 {
  margin: 0;
}

.hero_txt > h5 {
  color: var(--primary-blue);
  margin: 0;
  background-color: #c4dfff;
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.hero_txt > span {
  color: var(--text-muted);
}

.hero_btn {
  display: flex;
  gap: 20px;
}
.startBtn {
  background-color: var(--primary-blue);
  border-radius: var(--radius-md);
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  color: white;
  border: 1px solid var(--border-color);
}
.demoBtn {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.hero_box > img {
  width: 1040px;
  margin-top: 100px;
}

.features {
  width: 100%;
  display: flex;
  justify-content: center;
}

.features_all {
  width: var(--container-width);
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 62px;
}

.features_txt > h5 {
  color: var(--primary-blue);
}

.features_txt > span {
  color: var(--text-muted);
}
.features_box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: 100%;
  height: 264px;
  gap: 2rem;
}

.box {
  width: 384px;
  height: 174px;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.fa-wallet,
.fa-user-group,
.fa-file-invoice {
  padding: 15px;
  background-color: #c4dfff;
  border-radius: var(--radius-md);
  color: var(--primary-blue);
}

.pricing {
  width: 100%;
  background-color: var(--bg-light);
  display: flex;
  justify-content: center;
  height: 900px;
}

.pricing_box {
  width: var(--container-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing_cards {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
}

.plans {
  margin-top: 20px;
  height: 46px;

  padding-top: 12.5px;
  padding-bottom: 12.5px;
  padding-left: 3rem;
  padding-right: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: white;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.price_toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 370px;
  height: 490px;
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  gap: 20px;
  border: 2px solid var(--primary-blue);
}

.reco {
  position: absolute;
  top: -3%;
  left: 32%;
  background-color: var(--primary-blue);
  font-size: 0.75rem;
  padding: 0.375rem 1.25rem;
  border-radius: 999px;
  color: white;
}

.card > h2,
.card > span {
  text-align: center;
  margin: 0;
}

.card > span > b {
  font-size: 50px;
  color: black;
}

.card > ul {
  color: var(--text-muted);
  line-height: 40px;
}

.card > button {
  width: 90%;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  font-size: var(--body-size);
  border-radius: var(--radius-lg);
  border: none;
  background-color: var(--primary-blue);
  color: white;
  font-weight: bold;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.faq {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 30%;
  justify-content: center;
  margin: auto;
  gap: 30px;
  padding-top: 50px;
}

details {
  border-width: 1px;
  border-style: solid;
  border-color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contacts {
  height: 466px;
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  flex-direction: column;
  gap: 30px;
}

.contacts > span {
  color: white;
}

.contacts_txt {
  max-width: 800px;

  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  gap: 30px;
}

.contacts_txt > span {
  color: white;
}

.contacts_txt > h1 {
  margin: 0;
}

.contacts > button {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background-color: rgb(14 100 188);
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 2.5rem;
}

footer {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature_hero {
  width: 100%;
  height: 500px;
  background-color: var(--bg-light);
}

.features_explained {
  width: 100%;
  display: flex;
  justify-content: center;
}

.explained_box {
  width: var(--container-width);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  gap: 30px;
}

.explained_txt {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  padding: 20px;
}
.explained_txt > h2,
.text_box > h3 {
  margin: 0;
}

.text_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.explained_img {
  width: 50%;

  border-radius: var(--radius-md);
}

.fa-bell,
.fa-palette,
.fa-arrows-rotate {
  padding: 8px;
  margin-right: 8px;
  background-color: rgb(239 246 255);
  border-radius: var(--radius-md);
  color: var(--primary-blue);
}
.item-middle {
  transform: translateY(-20px);
}

.table {
  width: 1200px;
  border-radius: 20px;
  border: 1px solid #dddddd;
  padding: 20px;
}
table {
  border-collapse: collapse;
  width: 100%;
  border: none;
  font-size: 0.9rem;
}
td,
th {
  text-align: center;
  padding: 8px;
  font-weight: 500;
}

tr {
  box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #dddddd;
  border-radius: 20px;
  overflow: hidden;
  height: 68px;
  font-weight: 100;
}
tr:first-child {
  border-top: none;
}
td {
  border: none !important;
}
.plans_table {
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  border: none;
}

.help {
  width: 100%;
  text-align: center;
}

.help_box {
  width: var(--container-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.help_box > h2 {
  margin: 0;
}

.help_box > p {
  font-size: 12px;
  color: var(--text-muted);
}
.help_box > input {
  width: 670px;
  height: 24px;
  padding: 16px 16px 16px 48px;
  border: 1px solid #dddddd;
  border-radius: var(--radius-lg);
}

.more {
  width: 100%;
  background-color: var(--bg-light);
  height: 210px;
  padding: 64px 0;
}

.more_box {
  width: var(--container-width);
  display: flex;
  margin: auto;
  gap: 20px;
}

.more_card {
  width: 236px;
  height: 180px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.more_card > span {
  font-size: 15px;
}

.fa-rocket {
  text-align: center;
  width: 32px;
  padding: 10px 5px;
  background-color: rgb(219 234 254);
  border-radius: var(--radius-md);
  color: var(--primary-blue);
}

.fa-money-bill {
  text-align: center;
  width: 32px;
  padding: 10px 5px;
  background-color: rgb(220 252 231);
  border-radius: var(--radius-md);
  color: rgb(22 163 74);
}

.fa-shield {
  text-align: center;
  width: 32px;
  padding: 10px 5px;
  background-color: rgb(243 232 255);
  border-radius: var(--radius-md);
  color: rgb(147 51 234);
}

.fa-user-gear {
  text-align: center;
  width: 32px;
  padding: 10px 5px;
  background-color: rgb(255 237 213);
  border-radius: var(--radius-md);
  color: rgb(234 88 12);
}

.questions_acc {
  width: 100%;
  margin-bottom: 50px;
}

.questions_box {
  width: 800px;
  margin: auto;
}

.questions_box > h2 {
  text-align: center;
}
.circle_txt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.fa-circle {
  color: var(--primary-blue);
}
.acc {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion {
  background-color: rgb(248 250 252);
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: solid 1px rgb(241 245 249);
  text-align: left;
  outline: none;
  font-size: var(--body-size);
  font-weight: 500;
}

.active,
.accordion:hover {
  background-color: rgb(243, 247, 249);
}

.panel {
  padding: 0 18px;
  background-color: rgb(243, 247, 249);
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  transition: max-height 0.2s ease-out;
  color: var(--text-muted);
}

.accordions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.more_questions {
  background-color: var(--bg-light);
  height: 434px;
  padding: 24px 0;
}

.more_questions_box {
  width: var(--container-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.more_questions_box > h3 {
  margin: 0;
  padding-top: 20px;
}
.more_questions_card {
  width: 236px;
  height: 180px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.more_questions_card > span,
.more_questions_card > a {
  font-size: 15px;
}

.fa-headset {
  background-color: rgb(19 127 236 / 0.1);
  padding: 15px;
  color: var(--primary-blue);
  border-radius: 999px;
}
.more_questions_cards {
  display: flex;
  gap: 20px;
}
