/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  min-height: 48px;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); color: #fff; box-shadow: 0 8px 22px rgba(41,64,47,.28); }
.btn-wa { background: var(--wa-green); color: #fff; }
.btn-wa:hover { background: #1ebe57; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.28); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* CTA hero mobile : empile pleine largeur */
.cta-group { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) {
  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; }
}

/* Chips / tags */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* Cards stripe (impose LAY-5) */
.c-stripe {
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}
.c-stripe:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(34,42,36,.08);
}
.c-stripe h3 { color: var(--text); }
.c-stripe p { color: var(--text-2); }
.c-stripe .svc-num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.c-stripe .svc-icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Form */
.form-wrap {
  background: var(--surface);
  padding: 28px 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.field { margin-bottom: 18px; min-width: 0; }
.field label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  min-height: 44px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}
.modal-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: 32px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
}
.modal-box h2 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: var(--text);
}
.modal-box h3 {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 18px 0 6px;
  font-weight: 600;
}
.modal-box p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lb-image {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.4rem; font-weight: 300;
  transition: background .2s;
}
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }

/* Badge note Google hero */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.95);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  transition: transform .2s;
  max-width: 100%;
}
.hero-rating-badge:hover { transform: translateY(-2px); }
.hero-rating-badge strong { font-weight: 700; }
.hero-rating-badge .stars { display: inline-flex; gap: 1px; color: #F5A623; }
.hero-rating-badge svg { width: 16px; height: 16px; }
