/* ==========================================================================
   WebAssiste — surcouche de marque sur le thème Mivon
   Chargé après style.css. Ne modifie jamais style.css directement :
   toutes les adaptations (couleur olive, mode clair, contenus) vivent ici.
   ========================================================================== */

:root {
  --wa-olive: #a3a319;
  --wa-olive-dark: #86860f;
  --wa-olive-chip: #eef2d6;
  --wa-ink: #161616;
  --wa-panel: #1f1f1f;
  --wa-soft: #f1f1ec;
}

/* ---------- Couleur principale : lime Mivon -> olive WebAssiste ---------- */
.main-color {
  color: var(--wa-olive) !important;
}
.main-colorbg,
body.light .butn-arrow.main-colorbg,
body.light .bg-light.main-colorbg {
  background-color: var(--wa-olive) !important;
  color: var(--wa-ink) !important;
}
body.light .butn-arrow.main-colorbg:hover {
  background: var(--wa-ink) !important;
  color: #fff !important;
}
.wa-olive-text {
  color: var(--wa-olive) !important;
}

/* ---------- Coupure des mots ----------
   Mivon met « word-break: break-word » sur body, ce qui coupe les mots
   n'importe où (« Sauvegarde / s »). On ne coupe qu'en dernier recours. */
body {
  word-break: normal;
  overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6 {
  hyphens: manual;
}

/* Boutons Cal.com : liens sans href, gardés cliquables et visibles au clavier */
[data-cal-link] {
  cursor: pointer;
}
[data-cal-link]:focus-visible {
  outline: 2px solid var(--wa-olive);
  outline-offset: 3px;
}

/* ---------- Pas de curseur personnalisé ni de loader ---------- */
.cursor,
.loader-wrap {
  display: none !important;
}

/* ---------- Sidebar ---------- */
.wa-logo {
  display: block;
  width: 200px;
}
.wa-logo img {
  width: 100%;
  height: auto;
}
.wa-logo .wa-logo-light {
  display: none;
}
body.light .left-side .info .circle-text {
  border-color: rgba(0, 0, 0, 0.1);
}
body.light .left-side .butn.butn-bord {
  border-color: rgba(0, 0, 0, 0.3);
}
body.light .left-side .butn.butn-bord:hover {
  background: var(--wa-ink);
  color: #fff;
}
.left-side .info .cont li {
  font-size: 16px;
}
.left-side .info .cont li a:hover {
  color: var(--wa-olive);
}

/* Badge circulaire « Partenaire Infomaniak depuis 14 ans » */
.wa-badge svg {
  width: 100%;
  height: 100%;
  animation: wa-rotate 30s linear infinite;
}
.wa-badge text {
  font-family: "Funnel Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  fill: var(--wa-ink);
}
.wa-badge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--wa-olive);
  color: var(--wa-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.wa-badge-center strong {
  font-size: 38px;
  font-weight: 600;
}
.wa-badge-center span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
@keyframes wa-rotate {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-badge svg {
    animation: none;
  }
}

/* ---------- Hero ---------- */
.hero-style2 .main-box {
  background-color: #111;
  background-size: cover;
  background-position: center;
}
/* remplace la main robotique du thème par un voile sombre sur la photo de code */
.hero-style2 .main-box:after {
  background-image: linear-gradient(100deg, rgba(14, 14, 14, 0.9) 20%, rgba(14, 14, 14, 0.45) 65%, rgba(14, 14, 14, 0.2));
  bottom: 0;
  z-index: 0;
}
.hero-style2 .main-box > * {
  position: relative;
  z-index: 1;
}
.hero-style2 .caption h1 {
  font-size: clamp(52px, calc((75vw - 342px) / 5), 110px);
}
.hero-style2 .caption h1 p,
body.light .hero-style2 .caption > p {
  color: #d9d9d9;
}
.wa-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 30px;
  background: var(--wa-olive-chip);
  color: var(--wa-ink);
  margin-bottom: 30px;
}
.wa-hero-ctas {
  gap: 24px;
}
.wa-link-light {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.wa-link-light:hover {
  color: #fff;
  border-color: var(--wa-olive);
}

/* Pastilles de compétences */
.hero-style2 .serv {
  background: var(--wa-soft);
}
.hero-style2 .serv h6 {
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.4;
}
.hero-style2 .serv .content .item span {
  background: #fff;
  color: var(--wa-ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.hero-style2 .serv .content .item span.bdark {
  background: var(--wa-olive);
  color: var(--wa-ink);
  border-color: transparent;
}
.hero-style2 .serv .content .item span.bred {
  background: var(--wa-ink);
  color: #fff;
  border-color: transparent;
}

/* Bloc « faits » (ex-récompenses du thème) */
.hero-style2 .awards {
  background: var(--wa-olive);
  color: var(--wa-ink);
}
.hero-style2 .awards .wa-fact {
  /* le bloc suit la largeur de la colonne (25 % de la zone de droite) :
     le mot le plus long, « Infomaniak », doit tenir sur une ligne */
  font-size: clamp(14px, calc((25vw - 167px) / 6), 34px);
  white-space: nowrap;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  padding-bottom: 60px;
}
.hero-style2 .awards .item span {
  bottom: 45px;
  max-width: 90%;
  font-size: 13px;
}
.hero-style2 .awards .controls .swiper-button-next,
.hero-style2 .awards .controls .swiper-button-prev {
  color: var(--wa-ink);
  border-color: var(--wa-ink);
}
.hero-style2 .awards .controls .swiper-button-next:hover,
.hero-style2 .awards .controls .swiper-button-prev:hover {
  background: var(--wa-ink);
  color: #fff;
}

/* ---------- Sections : un cran moins aéré que le thème ---------- */
body.modern-agency .section-padding {
  padding: 70px 40px;
}

/* Réalisations suisses */
.portfolio-style1 .item .img img {
  height: 100%;
  object-position: left top;
}
.portfolio-style1 .item .img:after {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.92), rgba(20, 20, 20, 0) 45%);
  opacity: 1;
}
.portfolio-style1 .item .img .tags span {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  padding: 7px 15px;
  margin-left: 5px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
}
.portfolio-style1 .item h6 {
  font-size: 20px;
}
.wa-work-desc {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #d9d9d9;
  margin-top: 6px;
}
.portfolio-style1 .item:hover h6 {
  color: var(--wa-olive);
}
.portfolio-style1 .sec-head h6:before {
  background: var(--wa-olive) !important;
}
body.light .portfolio-style1 .sec-head.bord {
  border-color: rgba(255, 255, 255, 0.15);
}

/* En-tête des pages intérieures */
.wa-page-head h1 {
  font-size: 80px;
  line-height: 1.05;
}
.wa-page-head p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
}

/* Hero des pages intérieures (panneau sombre + forme verte) */
.wa-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 70px 40px;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #000;
  background-image: url(../imgs/home/forme-verte-1.webp);
  background-repeat: no-repeat;
  background-size: 52% auto;
  background-position: right top;
}
.wa-page-hero .row {
  width: 100%;
  position: relative;
  z-index: 1;
}
.wa-page-hero h1 {
  font-size: clamp(40px, calc((58vw - 284px) / 6.4), 84px);
  line-height: 1.02;
}
body.light .wa-page-hero p {
  color: #d9d9d9;
  font-size: 18px;
  line-height: 1.5;
  max-width: 520px;
}

/* Titre de section sur fond clair */
body.light .wa-sec-dark h6:before {
  background: var(--wa-ink);
}
body.light .wa-sec-dark.bord {
  border-color: rgba(0, 0, 0, 0.15);
}

/* Cartes « ce qui est fait » */
.wa-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 28px;
}
.wa-card-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 30px;
  background: var(--wa-olive-chip);
  color: var(--wa-ink);
}
.wa-card p {
  line-height: 1.6;
}
.wa-card h5 {
  font-size: clamp(20px, 1.7vw, 24px);
}
@media screen and (min-width: 992px) and (max-width: 1099.98px) {
  /* colonne étroite de l'accueil : un peu moins de marge intérieure */
  .about-md .team.wa-gateway {
    padding: 22px 18px;
  }
}
@media screen and (max-width: 1399.98px) {
  .wa-card-col {
    margin-bottom: 10px;
  }
}

/* Formules de maintenance (price-style1 sur panneau sombre) */
.price-style1 .wa-plan {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
}
.price-style1 .wa-plan ul {
  flex-grow: 1;
  margin: 0;
}
.price-style1 .wa-plan li {
  font-size: 15px;
  margin: 12px 0;
}
.price-style1 .wa-plan li:before {
  background: var(--wa-olive);
}
.price-style1 .wa-plan li.opacity-5 {
  text-decoration: line-through;
}
.price-style1 .wa-plan li.opacity-5:before {
  background: #fff;
}
.price-style1 .wa-plan h2 small {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
}
.price-style1 .wa-plan .wa-plan-tag {
  color: #bdbdbd;
  min-height: 52px;
}
.price-style1 .wa-plan-featured {
  border-color: var(--wa-olive);
  background: rgba(163, 163, 25, 0.08);
}
.wa-plan-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 30px;
  background: var(--wa-olive);
  color: var(--wa-ink);
}
.price-style1 .butn {
  text-align: center;
}
.price-style1 .butn.active {
  background: var(--wa-olive);
  border-color: var(--wa-olive);
  color: var(--wa-ink);
}
.price-style1 .butn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.wa-plan-note {
  font-size: 14px;
  max-width: 640px;
}
body.light .price-style1 .sec-head h6:before {
  background: var(--wa-olive);
}
body.light .price-style1 .sec-head.bord {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Maintenance / Dépannage côte à côte */
.wa-split-item {
  border-radius: 15px;
  padding: 40px;
}
.wa-split-item h3 {
  font-size: clamp(26px, 2.6vw, 40px);
}
.wa-split-olive {
  background: var(--wa-olive);
  color: var(--wa-ink);
}
body.light .wa-split-olive p {
  color: #2a2a10;
}
.wa-split-dark {
  background: var(--wa-panel);
  color: #fff;
  transition: background 0.3s;
}
.wa-split-dark:hover {
  background: #000;
  color: #fff;
}
body.light .wa-split-dark p {
  color: #d2d1d1;
}
.wa-split-price {
  display: inline-block;
  margin-top: 25px;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.12);
}
.wa-split-dark .wa-split-price {
  background: rgba(255, 255, 255, 0.1);
}

/* FAQ sur fond clair (accordéon du process) */
.wa-faq h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}
.wa-faq .accordion-item.active {
  border-color: var(--wa-olive);
}

/* Page Tarifs : raccourcis vers les sections */
.wa-jump {
  gap: 10px;
}
.wa-jump a {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s;
}
.wa-jump a:hover {
  background: var(--wa-olive);
  border-color: var(--wa-olive);
  color: var(--wa-ink);
}
.wa-sub-title {
  font-size: clamp(26px, 2.6vw, 40px);
}

/* Interventions ponctuelles : une ligne par offre */
.wa-offer {
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  gap: 30px;
  align-items: center;
  padding: 28px 32px;
  border-radius: 15px;
  margin-top: 10px;
  scroll-margin-top: 30px;
}
.wa-offer-dark {
  background: var(--wa-panel);
  color: #fff;
}
.wa-offer-light {
  background: #fff;
  color: var(--wa-ink);
}
.wa-offer-head h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--wa-olive);
}
.wa-offer-price {
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 6px;
}
.wa-offer-price small {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
}
.wa-offer-list li {
  position: relative;
  padding-left: 28px;
  margin: 6px 0;
  font-size: 15px;
}
.wa-offer-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--wa-olive) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%23161616' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
}
.wa-offer-cta {
  text-align: right;
}
.wa-offer-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 30px;
  transition: all 0.3s;
}
.wa-offer-dark .wa-offer-btn {
  background: #fff;
  color: var(--wa-ink);
}
.wa-offer-light .wa-offer-btn {
  background: var(--wa-ink);
  color: #fff;
}
.wa-offer .wa-offer-btn:hover {
  background: var(--wa-olive);
  color: var(--wa-ink);
}
.wa-offer-cta span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--wa-olive);
}
.wa-offer-light .wa-offer-cta span {
  color: var(--wa-olive-dark);
}
#hebergement .wa-split-item h3,
.wa-create h3 {
  font-size: clamp(20px, calc((33.3vw - 196px) / 6.8), 40px);
  white-space: nowrap;
}
.wa-create .wa-offer-price,
.wa-split-olive .wa-offer-price {
  font-size: clamp(34px, 3.4vw, 52px);
}

/* Moyens de paiement */


/* Page Dépannage */
.wa-page-hero.wa-hero-code {
  background-image: linear-gradient(100deg, rgba(10, 10, 10, 0.94) 30%, rgba(10, 10, 10, 0.55) 70%, rgba(10, 10, 10, 0.3)),
    url(../imgs/home/code-hero.webp);
  background-size: cover, cover;
  background-position: center, center;
}
.wa-symptom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: calc(100% - 10px);
  margin-bottom: 10px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 15px;
  color: var(--wa-ink);
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.wa-symptom:hover {
  color: var(--wa-ink);
  border-color: var(--wa-olive);
}
.wa-symptom-text {
  font-size: 17px;
  line-height: 1.4;
}
.wa-symptom-offer {
  flex-shrink: 0;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 30px;
  background: var(--wa-olive-chip);
  white-space: nowrap;
}
.wa-symptom-offer b {
  font-weight: 600;
  margin-left: 4px;
}
.wa-symptom-offer i {
  font-style: normal;
  margin-left: 6px;
  transition: margin 0.3s;
}
.wa-symptom:hover .wa-symptom-offer {
  background: var(--wa-olive);
}
.wa-symptom:hover .wa-symptom-offer i {
  margin-left: 10px;
}
.wa-form-foot {
  gap: 24px;
}

/* Page Création de sites */
.wa-page-hero.wa-hero-hex {
  background-image: url(../imgs/home/forme-verte-2.webp);
  background-size: 38% auto;
  background-position: right 50px bottom;
}
.wa-feat {
  height: calc(100% - 10px);
  margin-bottom: 10px;
  padding: 28px;
  background: #fff;
  border-radius: 15px;
  border-top: 3px solid var(--wa-olive);
}
.wa-feat h5 {
  font-size: clamp(18px, 1.6vw, 22px);
}
.wa-feat p {
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 1199.98px) {
  .wa-offer-col {
    margin-bottom: 30px;
  }
}
.wa-works-head {
  gap: 20px;
}
.wa-thumb {
  display: block;
  color: var(--wa-ink);
}
.wa-thumb .fit-img {
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}
.wa-thumb .fit-img img {
  object-position: left top;
  transition: transform 0.5s;
}
.wa-thumb:hover .fit-img img {
  transform: scale(1.04);
}
.wa-thumb span {
  display: block;
  margin-top: 14px;
  font-weight: 500;
}
.wa-thumb:hover {
  color: var(--wa-olive-dark);
}

/* Page À propos */
.wa-page-hero.wa-hero-cube {
  background-image: url(../imgs/home/forme-verte-3.webp);
  background-size: 34% auto;
  background-position: right 60px bottom;
}
.wa-milestone {
  background: var(--wa-panel);
  color: #fff;
  border-radius: 15px;
  padding: 30px 28px;
}
.wa-milestone-year {
  display: block;
  font-size: clamp(26px, 2.1vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--wa-olive);
}
body.light .wa-milestone p {
  color: #bdbdbd;
  line-height: 1.6;
}
.wa-founder-quote {
  background: #10140d;
  color: #fff;
  border-radius: 15px;
  padding: 50px 44px;
}
.wa-quote-mark {
  display: block;
  font-size: 90px;
  line-height: 0.6;
  color: var(--wa-olive);
  font-family: Georgia, serif;
}
body.light .wa-founder-quote p {
  color: #e4e4e4;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}
.wa-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.wa-split-olive .wa-link-dark {
  align-self: flex-start;
  border-color: rgba(0, 0, 0, 0.5);
}
.wa-list-dark li {
  font-size: 16px;
  margin: 14px 0;
}
.wa-list-dark li:before {
  background-color: var(--wa-ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='%23a3a319' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
body.light .bg-light .wa-sec-light h6:before,
body.light .wa-sec-light h6:before {
  background: var(--wa-olive);
}
.wa-tool {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.wa-tool img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Page FAQ */
.wa-page-hero.wa-hero-faq {
  background-size: 42% auto;
}
.bg-white-panel {
  background: var(--wa-soft);
}
.wa-faq .accordion-body a {
  color: var(--wa-ink);
  border-bottom: 1px solid var(--wa-olive);
}
.wa-faq .accordion-body a:hover {
  color: var(--wa-olive-dark);
}
.wa-faq {
  scroll-margin-top: 20px;
}

.wa-inline-link {
  color: var(--wa-ink);
  border-bottom: 1px solid var(--wa-olive);
}
.wa-inline-link:hover {
  color: var(--wa-olive-dark);
}

/* Page Contact */
.wa-contact-side {
  gap: 10px;
}
.wa-contact-side .wa-split-item {
  flex: 1 1 auto;
}
.wa-contact-side h4 {
  font-size: clamp(20px, 1.9vw, 28px);
}
.wa-contact-side h4.wa-mail {
  font-size: clamp(16px, 1.4vw, 22px);
}
.wa-contact-side h4 a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.wa-contact-soft {
  background: var(--wa-soft);
  color: var(--wa-ink);
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.wa-contact-soft:hover {
  color: var(--wa-ink);
  border-color: var(--wa-olive);
}
.wa-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-style1 .contact-form select optgroup {
  color: var(--wa-ink);
}
.wa-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #d2d1d1;
  cursor: pointer;
}
.contact-style1 .contact-form .wa-consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--wa-olive);
}
.wa-consent a {
  color: #fff;
  border-bottom: 1px solid var(--wa-olive);
}

.wa-ticket-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1px solid rgba(163, 163, 25, 0.5);
  background: rgba(163, 163, 25, 0.08);
}
body.light .wa-ticket-note p {
  color: #e4e4e4;
  font-size: 15px;
  margin: 0;
}
.wa-ticket-btn {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 30px;
  background: var(--wa-olive);
  color: var(--wa-ink);
  transition: background 0.3s;
}
.wa-ticket-btn:hover {
  background: #fff;
  color: var(--wa-ink);
}

/* Configurateur « Demander un devis » (assets/js/devis.js) */
.wa-devis[hidden] {
  display: none;
}
.wa-devis {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wa-devis-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
}
.wa-devis-panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  color: var(--wa-ink);
  border-radius: 15px;
  padding: 36px 36px 30px;
  border-top: 4px solid var(--wa-olive);
}
.wa-devis-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--wa-soft);
  font-size: 22px;
  line-height: 1;
  color: var(--wa-ink);
  cursor: pointer;
}
.wa-devis-close:hover {
  background: var(--wa-ink);
  color: #fff;
}
.wa-devis-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 30px;
  background: var(--wa-olive-chip);
}
.wa-devis-head {
  margin-top: 18px;
}
.wa-devis-step {
  font-size: 13px;
  color: #6b6b6b;
}
.wa-devis-bar {
  height: 4px;
  margin: 8px 0 18px;
  border-radius: 4px;
  background: #ececE6;
  overflow: hidden;
}
.wa-devis-bar span {
  display: block;
  height: 100%;
  background: var(--wa-olive);
  transition: width 0.3s;
}
.wa-devis-head h3 {
  font-size: clamp(22px, 2.2vw, 28px);
}
.wa-devis-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wa-devis-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}
.wa-devis-services .wa-devis-choice:last-child {
  grid-column: 1 / -1;
}
.wa-devis-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--wa-ink);
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.wa-devis-choice b {
  font-size: 17px;
  font-weight: 600;
}
.wa-devis-choice span {
  font-size: 13px;
  color: #6b6b6b;
}
.wa-devis-choice:hover {
  border-color: var(--wa-olive);
}
.wa-devis-choice.is-selected {
  border-color: var(--wa-olive);
  background: var(--wa-olive-chip);
}
.wa-devis-pill {
  padding: 10px 16px;
  border-radius: 30px;
}
.wa-devis-q {
  margin-top: 22px;
}
.wa-devis-label {
  font-weight: 500;
  color: var(--wa-ink) !important;
  margin-bottom: 10px;
}
.wa-devis-label em,
.wa-devis-field em {
  font-style: normal;
  font-weight: 400;
  color: #6b6b6b;
}
.wa-devis-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  font-size: 16px;
  color: var(--wa-ink);
  background: #fff;
}
.wa-devis-input:focus {
  outline: none;
  border-color: var(--wa-olive);
}
.wa-devis-form {
  margin-top: 16px;
}
.wa-devis-field {
  display: block;
  margin-top: 14px;
}
.wa-devis-field > span {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.wa-devis-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #585858;
}
.wa-devis-consent input {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--wa-olive);
}
.wa-devis-consent a {
  color: var(--wa-ink);
  border-bottom: 1px solid var(--wa-olive);
}
.wa-devis-recap {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--wa-soft);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--wa-ink);
}
.wa-devis-text {
  margin-top: 12px;
  color: #585858;
}
.wa-devis-error {
  min-height: 20px;
  margin-top: 12px;
  font-size: 14px;
  color: #b3261e !important;
}
.wa-devis-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.wa-devis-back {
  border: 0;
  background: none;
  padding: 8px 0;
  font-size: 15px;
  color: #585858;
  cursor: pointer;
}
.wa-devis-back:hover {
  color: var(--wa-ink);
}
.wa-devis-next {
  display: inline-block;
  border: 0;
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--wa-olive);
  color: var(--wa-ink);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.wa-devis-next:hover {
  background: var(--wa-ink);
  color: #fff;
}
.wa-devis-next:disabled {
  opacity: 0.6;
  cursor: wait;
}
.wa-devis button:focus-visible,
.wa-devis a:focus-visible {
  outline: 2px solid var(--wa-olive);
  outline-offset: 2px;
}
@media screen and (max-width: 575.98px) {
  .wa-devis {
    padding: 0;
    align-items: flex-end;
  }
  .wa-devis-panel {
    max-height: 92vh;
    border-radius: 15px 15px 0 0;
    padding: 28px 20px 24px;
  }
  .wa-devis-services {
    grid-template-columns: 1fr;
  }
}

/* Blog : liste */
.wa-post-card {
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  color: var(--wa-ink);
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.wa-post-card:hover {
  color: var(--wa-ink);
  border-color: var(--wa-olive);
}
.wa-post-cover {
  height: 200px;
  background-color: #000;
  background-size: cover;
  background-position: center;
}
.wa-post-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 26px 26px 24px;
}
.wa-post-card-body h5 {
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.3;
}
.wa-post-card-body p {
  line-height: 1.6;
  flex-grow: 1;
}
.wa-post-date {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: #6b6b6b;
}

/* Blog : article */
.wa-post-hero {
  min-height: 460px;
  background-size: cover !important;
  background-position: center !important;
}
.wa-post-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, 0.94) 35%, rgba(10, 10, 10, 0.6));
}
.wa-post-hero h1 {
  font-size: clamp(34px, calc((58vw - 284px) / 9), 64px) !important;
  line-height: 1.1;
}
.wa-post-back {
  display: inline-block;
  font-size: 14px;
  color: #d9d9d9;
  margin-bottom: 20px;
}
.wa-post-back:hover {
  color: #fff;
}
.wa-post-hero .wa-kicker {
  display: table;
  margin-bottom: 20px;
}
body.light .wa-post-meta {
  color: #bdbdbd !important;
  font-size: 15px !important;
}
.wa-article {
  max-width: 720px;
  color: var(--wa-ink);
}
body.light .wa-article p,
.wa-article li {
  font-size: 18px;
  line-height: 1.75;
  color: #2b2b2b;
}
body.light .wa-article p.wa-lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--wa-ink);
}
.wa-article p + p {
  margin-top: 16px;
}
.wa-article h2 {
  font-size: clamp(24px, 2vw, 30px);
  margin: 44px 0 14px;
}
.wa-article blockquote {
  margin: 44px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--wa-olive);
  background: #fff;
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  line-height: 1.6;
}
.wa-aside-col {
  margin-top: 50px;
}
.wa-post-aside h4 {
  font-size: clamp(20px, 1.7vw, 28px);
}
@media screen and (min-width: 1200px) {
  .wa-aside-col {
    margin-top: 0;
  }
}
.wa-post-aside {
  position: sticky;
  top: 20px;
}
.wa-post-more {
  padding: 24px;
  background: #fff;
  border-radius: 15px;
}
.wa-post-more li {
  margin-top: 16px;
}
.wa-post-more a {
  display: block;
  color: var(--wa-ink);
  font-weight: 500;
  line-height: 1.4;
}
.wa-post-more a span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--wa-olive-dark);
  margin-bottom: 4px;
}
.wa-post-more a:hover {
  color: var(--wa-olive-dark);
}

/* Pages légales */
.wa-page-hero.wa-legal-hero {
  min-height: 0;
  padding-top: 60px;
  padding-bottom: 50px;
  background-image: none;
}
.wa-page-hero.wa-legal-hero h1 {
  font-size: clamp(34px, calc((58vw - 284px) / 9), 60px);
  line-height: 1.1;
}
body.light .wa-legal-hero p {
  color: #bdbdbd;
  font-size: 15px;
}
.wa-legal h3 {
  font-size: clamp(19px, 1.5vw, 22px);
  margin: 30px 0 10px;
}
.wa-legal ul {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}
.wa-legal ul li {
  position: relative;
  padding-left: 22px;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.65;
}
.wa-legal ul li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa-olive);
}
body.light .wa-legal p {
  font-size: 17px;
}
.wa-legal a {
  color: var(--wa-ink);
  border-bottom: 1px solid var(--wa-olive);
  overflow-wrap: anywhere;
}
.wa-post-more p a {
  display: inline;
  font-weight: 500;
  border-bottom: 1px solid var(--wa-olive);
}
.wa-legal ul + p {
  margin-top: 16px;
}
.wa-legal-nav a[aria-current="page"] {
  color: var(--wa-olive-dark);
}
.wa-legal-nav a[aria-current="page"]:before {
  content: "→ ";
}

/* Bandeau d'appel à l'action */
.wa-cta {
  background: var(--wa-soft);
  gap: 30px;
}
.wa-cta p {
  max-width: 520px;
}
.wa-cta.wa-cta-dark {
  background: var(--wa-panel);
  color: #fff;
}
body.light .wa-cta.wa-cta-dark p {
  color: #d2d1d1;
}

/* Services sur fond clair */
body.light .services-reval.sub-bg {
  background: #ececE6;
}
body.light .services-reval .sec-head h6:before {
  background: var(--wa-ink);
}
body.light .services-reval .item-row .arrow-icon {
  border-color: rgba(0, 0, 0, 0.3);
}
body.light .services-reval .item-row .arrow-icon svg {
  stroke: var(--wa-ink);
}
body.light .services-reval .item-row:hover .arrow-icon {
  background: var(--wa-ink);
  border-color: var(--wa-ink);
}
body.light .services-reval .item-row:hover .arrow-icon svg {
  stroke: #fff;
}
.services-reval .item-row .fs-40 a:hover {
  color: var(--wa-olive-dark);
}
.wa-price {
  display: table;
  margin: 10px 0 0 46px;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 30px;
  background: var(--wa-olive-chip);
  color: var(--wa-ink);
  white-space: nowrap;
}

.wa-services-ctas {
  gap: 30px;
}
.wa-link-dark {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--wa-ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.wa-link-dark:hover {
  color: var(--wa-ink);
  border-color: var(--wa-olive);
}

/* Process sur panneau sombre */
body.light .process-style2.bg-light .accordion-item {
  border-color: rgba(255, 255, 255, 0.15);
}
body.light .process-style2.bg-light .accordion-item.active {
  border-color: var(--wa-olive);
}
body.light .process-style2.bg-light .accordion-item .accordion-header button:after {
  filter: none;
}
body.light .process-style2 .sec-head h6:before {
  background: var(--wa-olive);
}
body.light .process-style2 .sec-head.bord {
  border-color: rgba(255, 255, 255, 0.15);
}
.wa-process-img {
  max-width: 420px !important;
}
.wa-process-img img {
  border-radius: 15px;
}

/* Bandeau chiffres : olive plein, texte sombre */
.numbers-md {
  background: var(--wa-olive);
  color: var(--wa-ink);
  padding: 90px 40px 60px;
}
.numbers-md .item h2 {
  margin-bottom: 20px;
}

/* Bloc « agence française » */
.testim-style2 .item.wa-why {
  background: var(--wa-panel);
  color: #fff;
  border-radius: 15px;
  padding: 50px 40px;
}
.testim-style2 .team-intro h6.fs-18 {
  font-size: clamp(14px, 1.3vw, 18px) !important;
}
.testim-style2 .team-intro h2.fs-100 {
  font-size: clamp(48px, calc((33vw - 216px) / 2.4), 100px) !important;
}
.testim-style2 .item.wa-why h4 {
  font-size: 28px;
  line-height: 1.4;
}

/* About : passerelle automatisation + espace client + bloc « une personne » */
.about-md .team.wa-gateway {
  background: var(--wa-soft);
  padding: 30px;
}
.about-md .team.wa-gateway h5 {
  font-size: clamp(13px, calc((25vw - 200px) / 4.5), 22px);
}
.about-md .join .cont h4 {
  font-size: clamp(18px, 1.8vw, 26px);
}
.about-md .team.wa-gateway a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.about-md .team.wa-gateway a:hover {
  border-color: var(--wa-olive);
  color: var(--wa-olive-dark);
}
.about-md .join {
  background: var(--wa-olive);
  color: var(--wa-ink);
}
.about-md .join .jon-link .icon {
  background: var(--wa-ink);
}
.about-md .join .jon-link .icon img {
  filter: invert(1);
}
.about-md .main-box.wa-person {
  height: 600px;
  background-color: #000;
  background-image: url(../imgs/home/forme-verte-2.webp);
  background-size: 42% auto;
  background-position: right 20px bottom;
  background-repeat: no-repeat;
}
.about-md .main-box.wa-person .caption h1 {
  font-size: clamp(40px, calc((75vw - 342px) / 6.5), 84px);
}
.about-md .main-box.wa-person .text {
  max-width: 420px;
}
.about-md .main-box.wa-person .text h6 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #d9d9d9;
}

/* Contact sur panneau sombre */
.contact-style1 .contact-form label .star {
  color: var(--wa-olive);
}
.contact-style1 .contact-form select {
  color: #fff;
  background: transparent;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  appearance: none;
}
.contact-style1 .contact-form select option {
  color: var(--wa-ink);
}
.contact-style1 .contact-form input:focus,
.contact-style1 .contact-form textarea:focus,
.contact-style1 .contact-form select:focus {
  outline: none;
  border-bottom-color: var(--wa-olive);
}
.contact-style1 .messages {
  color: #fff;
  margin-bottom: 20px;
}

/* Pied de page minimal */
.wa-footer {
  padding: 30px 40px 15px;
  font-size: 14px;
  color: #585858;
  gap: 15px;
}
.wa-footer ul {
  gap: 24px;
}
.wa-footer a:hover {
  color: var(--wa-ink);
}

/* ---------- Tablette / mobile ---------- */
@media screen and (max-width: 992px) {
  /* la barre du haut passe sur le hero sombre : logo et menu en clair */
  .wa-logo .wa-logo-dark {
    display: none;
  }
  .wa-logo .wa-logo-light {
    display: block;
  }
  .wa-logo {
    width: 160px;
  }
  .portfolio-style1 .item .img {
    height: 260px;
  }
  .left-side .navbar .menu-icon .icon {
    color: #fff;
  }
  .hero-style2 .serv .content {
    height: 200px;
  }
  body.modern-agency .section-padding {
    padding: 50px 20px !important;
  }
  .hero-style2 .main-box {
    height: auto;
    min-height: 640px;
  }
  .hero-style2 .main-box .caption h1 {
    font-size: 64px;
  }
  .about-md .main-box.wa-person {
    height: auto;
    min-height: 480px;
  }
  .about-md .main-box.wa-person .caption h1 {
    font-size: 56px;
  }
  .wa-footer {
    padding: 25px 20px 10px;
  }
}
@media screen and (max-width: 991.98px) {
  .wa-page-hero {
    padding: 140px 20px 50px;
    min-height: 0;
    background-size: 75% auto;
    background-position: right top;
  }
  .wa-page-hero h1 {
    font-size: 60px;
  }
  .price-style1 .wa-plan {
    height: auto;
  }
  .wa-split-item {
    padding: 30px 24px;
  }
  .wa-offer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 24px;
  }
  .wa-offer-cta {
    text-align: left;
  }
  .wa-page-hero.wa-hero-hex {
    background-size: 70% auto;
    background-position: right bottom;
  }
  .wa-page-hero.wa-hero-cube {
    background-size: 55% auto;
    background-position: right 20px bottom;
  }
  .wa-founder-quote {
    padding: 36px 24px;
  }
  .wa-thumb {
    margin-bottom: 20px;
  }
  .wa-symptom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }
  /* colonne pleine largeur : plus de contrainte sur « Infomaniak » */
  .hero-style2 .awards .wa-fact {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .hero-style2 .main-box .caption h1 {
    font-size: 52px;
  }
  .about-md .main-box.wa-person .caption h1 {
    font-size: 44px;
  }
  .wa-page-head h1,
  .wa-page-hero h1 {
    font-size: 44px;
  }
  .services-reval .item-row .fs-40 {
    font-size: 28px !important;
  }
  .testim-style2 .item.wa-why h4 {
    font-size: 22px;
  }
}
