/* ============================================================
   4D EST — Page Nettoyage professionnel
   Composants spécifiques (réutilise styles.css)
   ============================================================ */

/* ---- Hero price float card ---- */
.fc--price { left: -28px; top: 26px; transform: rotate(-4deg); }
.fc--price .fc-v { color: var(--green-cta); }
.fc--devis { left: -30px; bottom: 14px; }
.fc--devis .fc-v { color: var(--navy); }
.chip--spark { width: 49px; height: 49px; background: var(--sky); right: 6px; top: 18px; transform: rotate(8deg); }
.chip--spark .icon { width: 26px; height: 26px; color: #fff; }
.chip--win { width: 40px; height: 40px; background: var(--navy); right: 58px; bottom: -10px; transform: rotate(-12deg); }
.chip--win .icon { width: 20px; height: 20px; color: var(--sky); }

/* ---- Types de locaux (chips) ---- */
.locaux { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 56px; }
.locaux-chip {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 2px solid var(--sky-soft); border-radius: var(--radius-pill);
  padding: 14px 26px 14px 16px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.locaux-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--sky); }
.locaux-chip .lc-ic { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--surf); display: grid; place-items: center; flex: none; color: var(--navy); }
.locaux-chip .lc-ic .icon { width: 24px; height: 24px; }
.locaux-chip span { font-weight: 700; font-size: 18px; color: var(--ink); white-space: nowrap; }

/* ---- Nos prestations (cards) ---- */
.presta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.presta-card {
  background: #fff; border: 2px solid var(--sky-soft); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column; gap: 18px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.presta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--sky); }
.presta-card .pest__ic { margin-bottom: 4px; }
.presta-card h3 { font-weight: 700; font-size: 24px; line-height: 1.2; color: var(--ink); }
.presta-card p { font-weight: 500; font-size: 17px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* ---- Fréquence d'intervention ---- */
.freq { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.freq-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px;
  box-shadow: var(--shadow-card);
}
.freq-ic { width: 64px; height: 64px; border-radius: var(--radius-md); background: var(--navy); display: grid; place-items: center; }
.freq-ic .icon { width: 30px; height: 30px; color: var(--sky); }
.freq-card h3 { font-weight: 700; font-size: 22px; line-height: 1.2; color: var(--ink); }
.freq-card p { font-weight: 500; font-size: 16px; line-height: 1.5; color: var(--muted); }

/* ---- Pricing : tarif unique mis en avant ---- */
.price-hero { max-width: 560px; margin: 56px auto 0; position: relative; z-index: 2; }
.price-hero .price-card { border-width: 2px; border-color: var(--sky); box-shadow: var(--shadow-card); padding: 44px 32px 32px; }
.price-tag {
  display: inline-flex; align-self: center; align-items: baseline; gap: 6px;
  margin-top: 8px; color: var(--ink);
}
.price-tag .amt { font-weight: 700; font-size: 64px; line-height: 1; }
.price-tag .unit { font-weight: 700; font-size: 24px; color: var(--muted-2); }
.price-hero .price-card__from { margin-top: 4px; }
.price-hero .price-card__feats { margin-top: 32px; }

/* ---- Engagements (4 colonnes) ---- */
.engage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 64px; }
.engage-card { display: flex; flex-direction: column; gap: 16px; }
.engage-ic { width: 60px; height: 60px; border-radius: var(--radius-md); background: var(--navy); display: grid; place-items: center; }
.engage-ic .icon { width: 28px; height: 28px; color: var(--sky); }
.engage-card h3 { font-weight: 700; font-size: 22px; line-height: 1.2; color: var(--ink); }
.engage-card p { font-weight: 500; font-size: 16px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* ---- Cross-nav: styles partagés dans styles.css ---- */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .presta { grid-template-columns: repeat(2, 1fr); }
  .engage { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .freq { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .locaux { gap: 12px; }
}
@media (max-width: 600px) {
  .presta { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .engage { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .locaux-chip span { font-size: 16px; }
  .price-tag .amt { font-size: 52px; }
}
