/* ===== Reset & Base ===== */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
  background: #fff1f4;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid #0a66c2; outline-offset: 2px; }

:root{
  --brand:#e91e63;
  --brand-strong:#d81b60;
  --bg:#fff1f4;
  --card:#fff;
  --ink:#222;
  --muted:#666;
  --radius:12px;
  --shadow:0 4px 20px rgba(0,0,0,.06);
  --max:960px;
}

/* ===== Navigation ===== */
.topnav{
  position: sticky; top: 0; z-index: 5;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  padding: 10px 12px;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.topnav a{ padding: 8px 12px; border-radius: 8px; font-weight:600; }
.topnav a:hover, .topnav a:focus-visible{ background:#ffe3ec; }

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero .hero-media{
  position: absolute; inset: 0; z-index: 0;
}
.hero .hero-media img{
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.75);
}
.overlay{
  position: relative; z-index: 1;
  padding: 60px 20px; color: #fff;
}
.logo-top{
  position: absolute; top: 20px; left: 20px; z-index: 2;
  width: 150px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.25));
}
.call-button-top{
  position: absolute; top: 20px; right: 20px; z-index: 2;
  padding: 12px 20px; border-radius: 30px;
  background: var(--brand); color:#fff; font-weight:600;
  box-shadow: var(--shadow);
  transition: background .2s ease;
}
.call-button-top:hover, .call-button-top:focus-visible{ background: var(--brand-strong); }
.hero h1{ margin: 0; font-size: clamp(2rem, 5vw, 4rem); }
.hero p{ margin: 10px 0 0; font-size: clamp(1.1rem, 2.5vw, 1.8rem); }

/* ===== Layout ===== */
main{ background: var(--bg); }
section{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: var(--max);
  margin: 60px auto;
  padding: 60px 20px;
}
.about{ background: var(--bg); }
h2{
  margin: 0 0 20px;
  text-align: center;
  color: var(--brand);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
p{ margin: 0 0 14px; color: var(--ink); }
footer{
  text-align: center; color: var(--muted);
  padding: 40px 16px; font-size: .95rem;
}

/* ===== Carousel (Flickity) ===== */
.carousel{ margin-top: 20px; }
.carousel img{
  width: 100%; max-width: 1100px;
  border-radius: var(--radius);
  margin: 0 auto;
}
.flickity-page-dots .dot{ background: var(--brand); opacity:.4; }
.flickity-page-dots .dot.is-selected{ opacity:1; }

/* ===== Tarifs ===== */
/* Grille 3 x 2 fixe, responsive */
.pricing6{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
}
.price{
  background:#fff; border-radius:12px; box-shadow: var(--shadow);
  padding:20px; text-align:center;
}
.price h3{ margin:0 0 8px; font-size:1.15rem; }
.price .amount{ font-weight:800; font-size:1.35rem; color:var(--brand); margin:10px 0 12px; }
.price .features{
  list-style:none; padding:0; margin:0; color:#444; font-size:.98rem;
  display:grid; gap:8px;
}
.note-tarifs{ text-align:center; color:#666; font-size:.95rem; margin-top:16px; }

/* Responsive */
@media (max-width: 980px){
  .pricing6{ grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}
@media (max-width: 640px){
  .pricing6{ grid-template-columns: 1fr; }
}

/* ===== Avis ===== */
.testi{ display:grid; gap:16px; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); }
blockquote{
  margin:0; padding:20px; background:#fff; border-radius:12px; box-shadow: var(--shadow);
  font-style: italic;
}
blockquote footer{ margin-top:10px; font-style: normal; color:#555; }

/* ===== Contact ===== */
#contact a{ color: var(--brand); text-decoration: underline; }
#contact a:hover{ color: var(--brand-strong); }

form{
  display: grid; gap: 14px;
  max-width: 600px; margin: 20px auto 0;
}
label{ font-weight: 600; }
input, textarea, button{ font: inherit; }
input, textarea{
  padding: 12px 14px;
  border: 1px solid #ccc; border-radius: 8px;
  background: #fff8fb;
}
input:focus-visible, textarea:focus-visible{
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(233,30,99,.15);
}
textarea{ resize: vertical; min-height: 140px; }
button{
  padding: 12px 18px; border: 0; border-radius: 8px;
  background: var(--brand); color:#fff; font-weight:700; cursor: pointer;
  transition: transform .04s ease, background .2s ease;
}
button:hover{ background: var(--brand-strong); }
button:active{ transform: translateY(1px); }

/* ===== Social ===== */
.social{ margin-top: 20px; text-align: center; }
.social-btn{
  display: inline-block; margin: 0 8px; padding: 10px 16px;
  border-radius: 8px; color:#fff; font-weight:700;
}
.social-btn.fb{ background:#3b5998; }
.social-btn.ig{ background:#c32aa3; }
.social-btn:focus-visible{ box-shadow: 0 0 0 3px rgba(10,102,194,.25); }

/* ===== Responsive ===== */
@media (max-width: 768px){
  .logo-top{ width: 120px
                                                                                                                                                                                                                                                                                                                                