/* Page Entreprises — complète style.css */

.heros-pro h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
.heros-faits {
  list-style: none; margin: 0 0 2rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  font-size: .78rem; letter-spacing: .06em;
  color: rgba(255,255,255,.82);
}
.heros-faits li { display: flex; align-items: center; gap: .5rem; }
.heros-faits li::before { content: ""; width: .3rem; height: .3rem; border-radius: 50%; background: #C9D4F5; flex: 0 0 auto; }

.intro-large { max-width: 58ch; color: var(--sourdine); font-size: 1.05rem; margin-bottom: 2.25rem; }
.fond-bleu .intro-large { color: rgba(255,255,255,.85); }
.texte-clair { color: rgba(255,255,255,.85) !important; }
.texte-clair strong { color: #fff; }

/* formules */
.formules {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 1rem; align-items: start;
}
.formule {
  background: var(--blanc); border: 1px solid var(--trait);
  padding: 1.5rem 1.4rem 1.6rem; position: relative;
  display: flex; flex-direction: column;
}
.formule.mise-en-avant { border: 2px solid var(--bleu); box-shadow: 0 14px 34px -22px rgba(31,63,166,.7); }
.ruban {
  position: absolute; top: -.72rem; left: 1.3rem;
  background: var(--bleu); color: #fff;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .22rem .55rem;
}
.formule header { border-bottom: 1px solid var(--trait); padding-bottom: .95rem; margin-bottom: 1rem; }
.formule h3 { font-size: 1.45rem; margin-bottom: .45rem; }
.prix { font-size: 1.55rem; font-weight: 500; color: var(--bleu); margin: 0; letter-spacing: -.02em; }
.prix span { font-family: "Karla", sans-serif; font-size: .78rem; font-weight: 400; color: var(--sourdine); letter-spacing: 0; margin-left: .3rem; }
.formule ul { margin: 0; padding-left: 1.1rem; display: grid; gap: .42rem; font-size: .91rem; color: var(--sourdine); }
.formule li::marker { color: var(--bleu); }

.mention { margin-top: 1.5rem; font-size: .84rem; color: var(--sourdine); }

/* étapes */
.etapes { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 2rem; }
.etape-num {
  font-size: 1.05rem; color: #fff; background: var(--bleu);
  width: 2.1rem; height: 2.1rem; display: grid; place-items: center;
  border-radius: 50%; margin-bottom: 1rem;
}
.etape h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.etape p { color: var(--sourdine); font-size: .93rem; }

/* exemples */
.exemples { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1rem; }
.exemple { background: var(--blanc); border-left: 3px solid var(--bleu); padding: 1.3rem 1.4rem; }
.exemple-titre { font-weight: 700; margin-bottom: .3rem; font-size: 1rem; }
.exemple-detail { color: var(--sourdine); font-size: .9rem; margin-bottom: .9rem; }
.exemple-prix { font-size: 1.35rem; color: var(--bleu); font-weight: 500; margin: 0; letter-spacing: -.02em; }
.exemple-prix span { font-family: "Karla", sans-serif; font-size: .78rem; color: var(--sourdine); font-weight: 400; letter-spacing: 0; }

/* formulaire */
.formulaire {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.1rem; max-width: 760px;
}
.champ { display: flex; flex-direction: column; gap: .45rem; }
.champ-large { grid-column: 1 / -1; }
.champ label { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9); }
.champ input, .champ textarea {
  font-family: "Karla", sans-serif; font-size: 1rem;
  padding: .75rem .85rem; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08); color: #fff; border-radius: 2px;
  width: 100%; max-width: 100%;
}
.champ input::placeholder, .champ textarea::placeholder { color: rgba(255,255,255,.5); }
.champ input:focus, .champ textarea:focus { outline: 2px solid #fff; outline-offset: 1px; background: rgba(255,255,255,.14); }
.champ textarea { resize: vertical; }
.form-note { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .8rem; }

/* faq */
.faq { display: grid; gap: 0; max-width: 780px; border-top: 1px solid var(--trait); }
.faq details { border-bottom: 1px solid var(--trait); }
.faq summary {
  cursor: pointer; padding: 1.05rem 2rem 1.05rem 0; position: relative;
  font-weight: 600; font-size: 1.02rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  color: var(--bleu); font-size: 1.35rem; font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 2rem 1.15rem 0; color: var(--sourdine); margin: 0; font-size: .95rem; }
