/* =========================================================
   DeadSpeedGuepe - Feuille de styles principale
   Charte : noir profond, jaune signal, rouge alerte
   ========================================================= */

/* --- Reset / base ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --c-black: #0e0e0e;
  --c-black-2: #1a1a1a;
  --c-yellow: #ffd60a;
  --c-yellow-dark: #f5b800;
  --c-red: #e63946;
  --c-red-dark: #c62836;
  --c-white: #ffffff;
  --c-cream: #fffdf5;
  --c-gray-100: #f6f6f6;
  --c-gray-200: #e6e6e6;
  --c-gray-500: #6b6b6b;
  --c-gray-700: #2c2c2c;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-h: 76px;
  --transition: 220ms cubic-bezier(.2, .7, .3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-gray-700);
  background: var(--c-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--c-black);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--c-red);
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--c-black);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

/* --- Layout helpers -------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--c-black);
  color: #d8d8d8;
}

.section--dark h2,
.section--dark h3 { color: var(--c-white); }

.section--cream {
  background: var(--c-cream);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-head h2 .accent {
  background: linear-gradient(180deg, transparent 60%, var(--c-yellow) 60%);
  padding: 0 0.15em;
}

.section-head p {
  color: var(--c-gray-500);
}

/* --- Boutons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--c-yellow);
  color: var(--c-black);
  box-shadow: 0 8px 20px rgba(255, 214, 10, 0.35);
}
.btn--primary:hover {
  background: var(--c-yellow-dark);
  color: var(--c-black);
  box-shadow: 0 12px 28px rgba(255, 214, 10, 0.5);
}

.btn--danger {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.35);
}
.btn--danger:hover {
  background: var(--c-red-dark);
  color: var(--c-white);
}

.btn--ghost {
  background: transparent;
  border-color: var(--c-black);
  color: var(--c-black);
}
.btn--ghost:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.btn--whatsapp:hover { background: #1ebe5b; color: #fff; }

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
}

/* --- Header ---------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-black);
  font-size: 1.05rem;
}

.nav__brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.nav__brand .accent { color: var(--c-red); }

.nav__list {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.nav__list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-gray-700);
  position: relative;
}

.nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--c-yellow);
  transition: width var(--transition);
}
.nav__list a:hover::after { width: 100%; }
.nav__list a:hover { color: var(--c-black); }

.nav__cta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--c-black);
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-black);
  position: relative;
  transition: var(--transition);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--c-black);
  transition: var(--transition);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --- Bandeau urgence ------------------------------------- */
.urgency-bar {
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.86rem;
  text-align: center;
  padding: 0.55rem 1rem;
}
.urgency-bar a {
  color: var(--c-yellow);
  font-weight: 600;
  text-decoration: underline;
}
.urgency-bar a:hover { color: #fff; }

/* --- Hero ------------------------------------------------ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 214, 10, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(230, 57, 70, 0.10), transparent 60%),
    linear-gradient(180deg, #fffbe9 0%, #fff 70%);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-gray-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}
.hero__pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.18);
}

.hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  text-wrap: balance;
}

@media (max-width: 480px) {
  .hero h1 br { display: none; }
}

.hero h1 .hl {
  background: linear-gradient(180deg, transparent 65%, var(--c-yellow) 65%);
  padding: 0 0.15em;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--c-gray-700);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.4rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--c-gray-500);
}
.hero__trust strong { color: var(--c-black); display: block; font-size: 1.1rem; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: var(--c-black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--c-yellow);
  opacity: 0.2;
}

.hero__card h3 {
  color: var(--c-yellow);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero__price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
}
.hero__price small {
  font-size: 1rem;
  font-weight: 500;
  color: #c8c8c8;
  display: block;
  margin-top: 0.2rem;
}

.hero__card ul { margin: 1.4rem 0; }
.hero__card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: #e3e3e3;
}
.hero__card li svg { flex-shrink: 0; color: var(--c-yellow); margin-top: 3px; }

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background: var(--c-red);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-md);
}

/* --- Avantages ------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  text-align: center;
  border: 1px solid var(--c-gray-200);
  transition: var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-yellow);
}

.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--c-yellow);
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature p {
  font-size: 0.92rem;
  color: var(--c-gray-500);
  margin: 0;
}

/* --- Services -------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--c-gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service:hover::before { transform: scaleX(1); }

.service__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fff5b8, var(--c-yellow));
  color: var(--c-black);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service h3 { margin-bottom: 0.7rem; }
.service p { color: var(--c-gray-500); }

.service ul {
  margin-top: 1rem;
}
.service ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.93rem;
  margin-bottom: 0.5rem;
}
.service ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px; height: 8px;
  background: var(--c-yellow);
  border-radius: 50%;
}

/* --- Identification -------------------------------------- */
.identif {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.identif__image {
  position: relative;
}
.identif__image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-gray-200);
  background: #fff;
  padding: 1rem;
}
.identif__image::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px dashed rgba(255, 214, 10, 0.6);
  border-radius: calc(var(--radius-md) + 16px);
  z-index: -1;
}

.identif__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.identif__list .item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--c-yellow);
  box-shadow: var(--shadow-sm);
}
.identif__list .item h4 {
  margin: 0 0 0.2rem;
  color: var(--c-black);
  font-size: 1rem;
}
.identif__list .item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-gray-500);
}
.identif__list .item--alert {
  border-left-color: var(--c-red);
}

/* --- Galerie / Sur le terrain ---------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  background: var(--c-black);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery a:hover img { transform: scale(1.07); }

.gallery a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.gallery a:hover::after { opacity: 1; }

.gallery a span {
  position: absolute;
  left: 1rem; bottom: 0.8rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery a:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* --- Tarifs ---------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--c-gray-200);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.price:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price--featured {
  background: var(--c-black);
  color: #fff;
  border-color: var(--c-black);
}
.price--featured h3 { color: #fff; }
.price--featured .price__amount { color: var(--c-yellow); }
.price--featured ul li { color: #d8d8d8; }
.price--featured .ribbon {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--c-yellow);
  color: var(--c-black);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price h3 { margin-bottom: 0.5rem; }

.price__amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-black);
  line-height: 1;
  margin: 0.5rem 0 0.2rem;
}
.price__amount sup {
  font-size: 1rem;
  vertical-align: super;
  margin-left: 0.2rem;
}

.price__sub {
  display: block;
  font-size: 0.85rem;
  color: var(--c-gray-500);
  margin-bottom: 1.2rem;
}
.price--featured .price__sub { color: #c2c2c2; }

.price ul {
  text-align: left;
  margin: 1rem 0 1.4rem;
}
.price ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}
.price ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-yellow);
  box-shadow: inset 0 0 0 3px var(--c-black);
}
.price--featured ul li::before { box-shadow: inset 0 0 0 3px var(--c-black); }

.pricing__note {
  text-align: center;
  margin-top: 2rem;
  color: var(--c-gray-500);
  font-size: 0.92rem;
}

/* --- Communes -------------------------------------------- */
.zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.zones__col {
  background: #1f1f1f;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid #2a2a2a;
}
.zones__col h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.zones__col h3 .badge {
  background: var(--c-yellow);
  color: var(--c-black);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
}
.zones__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.zones__list span {
  background: #2a2a2a;
  color: #f0f0f0;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
}

/* --- FAQ -------------------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--c-yellow);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--c-black);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--c-red);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq__item[open] summary::after {
  content: '−';
  transform: rotate(0deg);
}
.faq__item .faq__body {
  padding: 0 1.4rem 1.2rem;
  color: var(--c-gray-500);
  font-size: 0.96rem;
}
.faq__item .faq__body p:last-child { margin-bottom: 0; }

/* --- Contact --------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact__info {
  background: var(--c-black);
  color: #d8d8d8;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}
.contact__info::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 220px; height: 220px;
  background: var(--c-yellow);
  opacity: 0.1;
  border-radius: 50%;
}
.contact__info h3 { color: #fff; margin-bottom: 0.2rem; }
.contact__info p { color: #c8c8c8; }

.contact__list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.9rem;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
}
.contact__item .ic {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--c-yellow);
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact__item strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.contact__item a {
  color: var(--c-yellow);
}
.contact__item a:hover { color: #fff; }
.contact__item span { font-size: 0.92rem; }

.contact__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--c-gray-700);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--c-gray-200);
  border-radius: 10px;
  background: #fafafa;
  color: var(--c-black);
  transition: var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-yellow);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.25);
}
.field textarea { min-height: 130px; resize: vertical; }

.field--hp { display: none; }

.field--check { margin: 0.6rem 0 1rem; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--c-gray-500);
  line-height: 1.45;
  cursor: pointer;
}
.check input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--c-yellow);
  cursor: pointer;
}
.check a { color: var(--c-black); text-decoration: underline; }
.check a:hover { color: var(--c-red); }

.form__rgpd {
  font-size: 0.82rem;
  color: var(--c-gray-500);
  margin-top: 0.5rem;
}

.form__feedback {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}
.form__feedback--ok {
  display: block;
  background: #e8f8ee;
  color: #1f7a3e;
  border: 1px solid #b9e6c7;
}
.form__feedback--err {
  display: block;
  background: #fdeaec;
  color: #b3262f;
  border: 1px solid #f4c1c5;
}

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--c-black);
  color: #c8c8c8;
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer__brand img {
  width: 56px; height: 56px;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}
.footer__brand p { font-size: 0.92rem; line-height: 1.6; }
.footer__brand strong { color: #fff; display: block; font-size: 1.1rem; }

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.4rem; font-size: 0.92rem; }
.footer ul li a { color: #c8c8c8; }
.footer ul li a:hover { color: var(--c-yellow); }

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.footer__social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2a2a2a;
  color: #fff;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--c-yellow);
  color: var(--c-black);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #9a9a9a;
}
.footer__bottom a { color: #c8c8c8; }
.footer__bottom a:hover { color: var(--c-yellow); }

/* --- Bouton flottant WhatsApp ---------------------------- */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 80;
  transition: transform var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }
.fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Lightbox simple ------------------------------------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox button {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.35); }

/* --- Animations à l'apparition --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Page intérieure ------------------------------------- */
.page-intro {
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, #fffbe9 0%, #fff 100%);
  text-align: center;
}
.page-content {
  padding: 1rem 0 5rem;
}
.page-content .container {
  max-width: 820px;
}
.page-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

/* --- Cookie consent override ----------------------------- */
:root {
  --cc-btn-primary-bg: var(--c-yellow);
  --cc-btn-primary-color: var(--c-black);
  --cc-btn-primary-hover-bg: var(--c-yellow-dark);
  --cc-btn-primary-hover-color: var(--c-black);
}

/* =========================================================
   Media queries
   ========================================================= */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 1rem; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .identif { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .zones { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 3.5rem 0; }
  .nav__list,
  .nav__cta .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }

  /* Menu mobile slide-in */
  .nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 1rem 1.25rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform var(--transition);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav__list.is-open { display: flex; transform: translateY(0); }
  .nav__list a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 1.05rem;
  }
  .nav__list a::after { display: none; }
  .nav__list .btn { margin-top: 1rem; }

  .hero { padding: 2.5rem 0 3rem; }
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .fab-whatsapp { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (max-width: 460px) {
  .hero__price { font-size: 3rem; }
  .urgency-bar { font-size: 0.78rem; }
  .gallery { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
