﻿@charset "UTF-8";
.site-header {
  background-color: #1E2328;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 70px;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 101;
}
.logo img {
  height: 110px;
  width: auto;
  -webkit-transform: translateY(25px);
      -ms-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
@media (min-width: 768px) {
  .logo img {
    height: 165px;
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.nav-main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.nav-main a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.nav-main a:hover {
  color: #D9C08A;
}

.header-cta {
  display: none;
}
@media (min-width: 768px) {
  .header-cta {
    display: inline-block;
  }
}

.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
      -ms-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
      -ms-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .nav-main {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1E2328;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-main.open {
    display: block;
  }
  .nav-main ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0 1rem;
  }
  .nav-main a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

main {
  min-height: calc(100vh - 70px - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}
.section--creme {
  background-color: #F5F0E8;
}
.section--charbon {
  background-color: #1E2328;
  color: #FFFFFF;
}

.site-footer {
  background-color: #1E2328;
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
}

.footer-coords p {
  margin: 0.25rem 0;
  font-size: 0.875rem;
}
.footer-coords a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-coords a:hover {
  color: #D9C08A;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer-social a:hover {
  color: #D94F2B;
}

.footer-credits p {
  margin: 0.25rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-credits a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-credits a:hover {
  color: #D9C08A;
}

.btn-cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease;
  transition: background-color 0.2s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
}
.btn-cta:active {
  -webkit-transform: scale(0.98);
      -ms-transform: scale(0.98);
          transform: scale(0.98);
}
.btn-cta--primary {
  background-color: #D94F2B;
  color: #FFFFFF;
}
.btn-cta--primary:hover {
  background-color: #8C2F18;
  color: #FFFFFF;
}
.btn-cta--secondary {
  background-color: #4A9E8E;
  color: #FFFFFF;
}
.btn-cta--secondary:hover {
  background-color: #2B5F54;
  color: #FFFFFF;
}
.btn-cta--outline {
  background-color: transparent;
  color: #4A9E8E;
  border: 2px solid #4A9E8E;
}
.btn-cta--outline:hover {
  background-color: #4A9E8E;
  color: #FFFFFF;
}

.card-service {
  background-color: #FFFFFF;
  border: 1px solid #E0DDD6;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.card-service:hover {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.card-service__image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-service__body {
  padding: 20px;
}
.card-service__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E2328;
  margin: 0 0 0.5rem;
}
.card-service__desc {
  font-size: 0.95rem;
  color: #4A4A48;
  margin: 0;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: #F5F5F3;
  color: #4A4A48;
}
.badge--automne {
  background-color: #F5D5CB;
  color: #8C2F18;
}
.badge--printemps {
  background-color: #D4EDE6;
  color: #2B5F54;
}
.badge--futur {
  background-color: #F5F5F3;
  color: #4A4A48;
}
.badge--premium {
  background-color: #F5E8C8;
  color: #7A5C22;
}
.badge--succes {
  background-color: #D4EDE6;
  color: #2B5F54;
}
.badge--attente {
  background-color: #F5E8C8;
  color: #7A5C22;
}
.badge--info {
  background-color: #F0E8D4;
  color: #8A7545;
}
.badge--danger {
  background-color: #F5D5CB;
  color: #8C2F18;
}

.barre-compte {
  background-color: #2B5F54;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.barre-compte .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.barre-compte__lien {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.barre-compte__lien:hover {
  color: #D9C08A;
}
.barre-compte__salut {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-style: italic;
}
.barre-compte__form {
  display: inline;
  margin: 0;
}
.barre-compte__btn {
  background: none;
  border: none;
  padding: 0;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.barre-compte__btn:hover {
  color: #D9C08A;
}
@media (max-width: 767px) {
  .barre-compte .container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .nav-item-demande {
    display: none;
  }
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 2.5rem;
}

.table-espace {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border: 1px solid #E0DDD6;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.95rem;
}
.table-espace th, .table-espace td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #E0DDD6;
}
.table-espace thead th {
  background-color: #1E2328;
  color: #FFFFFF;
  font-weight: 600;
  white-space: nowrap;
}
.table-espace tbody tr:last-child td {
  border-bottom: none;
}
.table-espace tbody tr:hover {
  background-color: #F5F5F3;
}

.alerte {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.alerte--erreur {
  background-color: #F5D5CB;
  color: #8C2F18;
}

.bandeau-chiffres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .bandeau-chiffres {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.chiffre-item {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 120px;
  position: relative;
}
@media (min-width: 768px) {
  .chiffre-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1rem;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #E0DDD6;
  }
}
.chiffre-item__nombre {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1E2328;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.chiffre-item__label {
  font-size: 0.875rem;
  color: #4A4A48;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.hero--compact {
  min-height: 50vh;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 35, 40, 0.55);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem 1rem;
}
.hero__content h1, .hero__content h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-compact {
  background-color: #1E2328;
  color: #FFFFFF;
  padding: 3rem 0;
  text-align: center;
}
.hero-compact h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.hero-compact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.grille-cartes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .grille-cartes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .grille-cartes--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grille-cartes--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-service--bientot {
  opacity: 0.7;
  border-style: dashed;
}
.card-service--bientot .card-service__image--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 16/9;
  background-color: #F5F5F3;
  color: #4A4A48;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .service-detail--reverse .service-detail__side {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .service-detail--reverse .service-detail__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.service-detail__image img {
  width: 100%;
  border-radius: 12px;
}
.service-detail__side img {
  width: 100%;
  border-radius: 12px;
}

.etapes-processus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.etape {
  text-align: center;
}
.etape__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.4rem;
}
.etape__label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1E2328;
  margin-bottom: 0.5rem;
}
.etape__photo {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.mission-intro {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mission-intro__image img {
  width: 100%;
}

.legende-sacs {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: #4A4A48;
}

.points-cles {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.points-cles li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.point-cle-icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.tarification {
  font-size: 1.1rem;
  color: #1E2328;
  margin-bottom: 1.5rem;
}
.tarification strong {
  font-size: 1.3rem;
  color: #D94F2B;
}

.grille-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .grille-2col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: #1E2328;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #E0DDD6;
  border-radius: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #1E2328;
  background-color: #FFFFFF;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: #4A9E8E;
  -webkit-box-shadow: 0 0 0 3px rgba(74, 158, 142, 0.15);
          box-shadow: 0 0 0 3px rgba(74, 158, 142, 0.15);
}
.form-input--erreur {
  border-color: #D94F2B;
}
.form-input--erreur:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(217, 79, 43, 0.15);
          box-shadow: 0 0 0 3px rgba(217, 79, 43, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: block;
  color: #D94F2B;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  min-height: 1.2em;
}

.contact-renvoi {
  margin-bottom: 1.75rem;
  padding: 0.9rem 1.1rem;
  border-left: 4px solid #4A9E8E;
  background: rgba(74, 158, 142, 0.08);
  line-height: 1.55;
}
.contact-renvoi a {
  color: #D94F2B;
  font-weight: 600;
}

@media (min-width: 768px) {
  .coordonnees-bloc {
    padding-left: 2rem;
  }
}

.coordonnees-info p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.lien-social {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.lien-social:hover {
  color: #D94F2B;
}

.contenu-mission {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.liste-plantes {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.liste-plantes li {
  padding: 0.3rem 0;
}

.note {
  background-color: #D4EDE6;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #4A9E8E;
  margin-top: 1.5rem;
}

.grille-objectifs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .grille-objectifs {
    grid-template-columns: repeat(3, 1fr);
  }
}

.objectif-col h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #4A9E8E;
}
.objectif-col ul {
  list-style: none;
  padding: 0;
}
.objectif-col ul li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.objectif-col ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4A9E8E;
  font-weight: 700;
}

.objectif-ultime {
  margin-top: 3rem;
  text-align: center;
}
.objectif-ultime blockquote {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1E2328;
  font-style: italic;
  border: none;
  margin: 0;
  padding: 2rem;
  background-color: #F5F0E8;
  border-radius: 12px;
}

.confirmation-bloc {
  padding: 4rem 0;
}
.confirmation-bloc svg {
  margin-bottom: 1.5rem;
}
.confirmation-bloc h1 {
  margin-bottom: 1rem;
}
.confirmation-bloc p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.confirmation-bloc .btn-cta + .btn-cta {
  margin-left: 0.75rem;
}

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

.img-rounded {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.avant-apres {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .avant-apres {
    grid-template-columns: 1fr 1fr;
  }
}
.avant-apres__col img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.avant-apres__col h3 {
  margin-bottom: 0.5rem;
}
.avant-apres__col p {
  line-height: 1.7;
}
.avant-apres__col--probleme h3 {
  color: #8C2F18;
}
.avant-apres__col--solution h3 {
  color: #2B5F54;
}

.section--charbon h2 {
  color: #FFFFFF;
}
.section--charbon p {
  color: rgba(255, 255, 255, 0.8);
}

.wizard-etapes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.wizard-etape {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #F5F5F3;
  color: rgba(74, 74, 72, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: 3px solid transparent;
}
.wizard-etape span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 50%;
  background: #E0DDD6;
  color: #1E2328;
  font-weight: 700;
}
.wizard-etape.is-active {
  background: #F5F0E8;
  color: #1E2328;
  border-bottom-color: #D94F2B;
}
.wizard-etape.is-active span {
  background: #D94F2B;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .wizard-etape {
    font-size: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wizard-etape span {
    font-size: 0.85rem;
  }
}

.wizard-panneau {
  display: none;
}
.wizard-panneau.is-active {
  display: block;
}

.wizard-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .wizard-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .wizard-actions .btn-cta {
    width: 100%;
    text-align: center;
  }
}

.btn-cta--secondaire {
  background: transparent;
  color: #1E2328;
  border: 1px solid #E0DDD6;
}
.btn-cta--secondaire:hover {
  border-color: #1E2328;
}

.catalogue-filtres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.catalogue-filtres--saisons {
  margin-top: -16px;
}

.filtre-courant {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: #4A9E8E;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  vertical-align: 1px;
}

.offre-saison {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2B5F54;
}

.filtre-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #E0DDD6;
  background: #FFFFFF;
  color: #4A4A48;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.filtre-btn:hover {
  border-color: #4A9E8E;
  color: #2B5F54;
}
.filtre-btn.is-active {
  background: #1E2328;
  border-color: #1E2328;
  color: #FFFFFF;
}

.catalogue-etat,
.catalogue-vide {
  padding: 32px 0;
  color: rgba(74, 74, 72, 0.7);
  text-align: center;
}

.catalogue-liste {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .catalogue-liste {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.offre-carte {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  border: 1px solid #E0DDD6;
  border-radius: 12px;
  background: #FFFFFF;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.offre-carte h3 {
  margin: 8px 0 4px;
  font-size: 1.1rem;
}
.offre-carte.est-choisie {
  border-color: #D94F2B;
  -webkit-box-shadow: 0 0 0 1px #D94F2B;
          box-shadow: 0 0 0 1px #D94F2B;
}

.offre-type {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #F0E8D4;
  color: #8A7545;
}
.offre-type--Service {
  background: #D4EDE6;
  color: #2B5F54;
}
.offre-type--ProduitAvecService {
  background: #F5E8C8;
  color: #7A5C22;
}

.offre-desc {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.offre-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  margin: auto 0 16px;
}

.offre-prix {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E2328;
}

.offre-unite,
.offre-duree {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(74, 74, 72, 0.75);
}

.offre-quantite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}

.qte-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #E0DDD6;
  background: #FFFFFF;
  color: #1E2328;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.qte-btn:hover {
  border-color: #D94F2B;
  color: #D94F2B;
}

.qte-valeur {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1E2328;
}

.bloc-form {
  margin: 0 0 28px;
  padding: 20px;
  border: 1px solid #E0DDD6;
  border-radius: 12px;
}
.bloc-form legend {
  padding: 0 8px;
  font-weight: 600;
  color: #1E2328;
}

.grille-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .grille-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

.champ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1E2328;
}
.champ input,
.champ select,
.champ textarea {
  padding: 11px 12px;
  border: 1px solid #E0DDD6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #4A4A48;
  background: #FFFFFF;
}
.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: #4A9E8E;
  -webkit-box-shadow: 0 0 0 3px rgba(74, 158, 142, 0.15);
          box-shadow: 0 0 0 3px rgba(74, 158, 142, 0.15);
}
.champ small {
  font-weight: 400;
  color: rgba(74, 74, 72, 0.7);
}
.champ abbr {
  color: #D94F2B;
  text-decoration: none;
}
.champ .optionnel {
  font-weight: 400;
  font-style: normal;
  color: rgba(74, 74, 72, 0.6);
}
.champ--large {
  grid-column: 1/-1;
}

@media (min-width: 768px) {
  .champ--court {
    max-width: 220px;
  }
}
.visuellement-cache {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.recap {
  padding: 24px;
  border: 1px solid #E0DDD6;
  border-radius: 12px;
  background: #F5F0E8;
}
.recap h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.recap h3 {
  margin: 20px 0 4px;
  font-size: 1rem;
}

.recap-offres {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recap-offres li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #E0DDD6;
}

.recap-qte {
  font-weight: 700;
  color: #D94F2B;
}

.recap-prix {
  margin-left: auto;
  font-weight: 600;
  color: #1E2328;
}

.recap-total {
  margin-top: 16px;
  font-size: 1.15rem;
  color: #1E2328;
}
.recap-total em {
  font-size: 0.85rem;
  color: rgba(74, 74, 72, 0.75);
}

.note-planification {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid #4A9E8E;
  background: #D4EDE6;
  color: #2B5F54;
  font-size: 0.9rem;
}

.message-erreur {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid #D94F2B;
  background: #F5D5CB;
  color: #8C2F18;
  font-weight: 500;
}

.bloc-confirmation {
  max-width: 640px;
}

.piege-robot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.connexion-bloc {
  max-width: 420px;
  margin: 0 auto;
  padding: 1.75rem;
  background: #FFFFFF;
  border: 1px solid #E0DDD6;
  border-radius: 12px;
}

.form-error--bloc {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid #D94F2B;
  background: #F5D5CB;
  color: #8C2F18;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0 6px 6px 0;
  min-height: 0;
}
.form-error--bloc:empty {
  display: none;
}
.form-error--bloc ul {
  margin: 0;
  padding-left: 1.1rem;
}

.form-group--case {
  margin-bottom: 1.5rem;
}

.case-a-cocher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  cursor: pointer;
}
.case-a-cocher input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #4A9E8E;
  cursor: pointer;
}

.connexion-aide {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid #E0DDD6;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #1E2328;
}
.connexion-aide a {
  color: #D94F2B;
  font-weight: 600;
}

.bandeau-env {
  margin: -1.75rem -1.75rem 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bandeau-env__note {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.85;
}

.pastille-env {
  display: inline-block;
  margin-right: 0.75rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.env-integration {
  background: #FAEEDA;
  color: #633806;
}

.env-developpement {
  background: #EAF3DE;
  color: #27500A;
}

.env-inconnu {
  background: #FDE2E1;
  color: #7F1D1D;
}

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4A4A48;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: #1E2328;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.25rem;
  }
  h2 {
    font-size: 2.25rem;
  }
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #4A9E8E;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
a:hover {
  color: #2B5F54;
}

img {
  max-width: 100%;
  height: auto;
}
/*# sourceMappingURL=N:\Repos\EBF\2.Developpements\EntretienBigfoot.Web\wwwroot\scss\site.css.map */