/* ═══════════════════════════════════════════════
   Deboucheurs 33 — Design System v2
   ═══════════════════════════════════════════════ */

:root {
  --blue-950: #041b3b;
  --blue-900: #083b7a;
  --blue-800: #0c4fa2;
  --blue-700: #1b69cc;
  --blue-500: #3b8bf5;
  --blue-100: #e8f2ff;
  --cyan-400: #22d3ee;
  --teal-500: #14b8a6;
  --green-500: #22c55e;
  --gold-400: #ffd15c;
  --gold-500: #f5b731;
  --red-500: #ef4444;
  --white: #ffffff;
  --ink-900: #14233a;
  --ink-700: #3d5170;
  --ink-500: #5e7a9e;
  --line: #d2e5ff;
  --shadow-sm: 0 4px 12px rgba(8,59,122,0.08);
  --shadow: 0 12px 32px rgba(8,59,122,0.1);
  --shadow-lg: 0 24px 56px rgba(4,27,59,0.18);
  --radius: 16px;
  --radius-lg: 22px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: #f8fbff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3 {
  margin: 0 0 0.7rem;
  line-height: 1.15;
  color: var(--blue-950);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }

p { margin: 0 0 1rem; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ═════════ NAVBAR ═════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(1.6);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(210,229,255,0.6);
  box-shadow: 0 1px 8px rgba(8,59,122,0.06);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-900);
  letter-spacing: -0.2px;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}
.menu a {
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-family: "Inter", "Segoe UI", sans-serif;
  transition: color 0.15s, background 0.15s;
}
.menu a:hover,
.menu a:focus-visible {
  color: var(--blue-800);
  background: rgba(12,79,162,0.06);
}

/* ═════════ HERO ═════════ */
.hero {
  position: relative;
  isolation: isolate;
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(155deg, rgba(13,74,152,0.72) 0%, rgba(8,59,122,0.75) 40%, rgba(4,27,59,0.78) 100%),
    url('img/hero-bg.jpg') center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  top: -320px; right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,105,204,0.25), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  bottom: -200px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,0.12), transparent 60%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.hero-content {
  position: relative;
  max-width: 640px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 600;
  font-size: 0.78rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  margin-bottom: 1.1rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.accent {
  color: var(--gold-400);
  font-weight: 700;
}

.accent-price {
  color: var(--gold-400);
  text-shadow: 0 2px 12px rgba(255,209,92,0.4), 0 2px 10px rgba(0,0,0,0.5);
}

.highlight {
  color: var(--blue-700);
  background: linear-gradient(135deg, #eef5ff, #dceaff);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
}
.hero-content > p {
  color: rgba(255,255,255,0.95);
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #fff 0%, #eef5ff 100%);
  color: var(--blue-900);
  box-shadow: 0 8px 24px rgba(4,27,59,0.25);
  border-color: rgba(255,255,255,0.9);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(4,27,59,0.35);
  background: #fff;
}

.btn-quote {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #f0f7ff;
  width: 100%;
  box-shadow: 0 6px 20px rgba(12,79,162,0.3);
  border: none;
}
.btn-quote:hover {
  box-shadow: 0 10px 28px rgba(12,79,162,0.45);
}

.btn-light {
  border-color: rgba(255,255,255,0.3);
  color: rgba(240,247,255,0.9);
  background: rgba(255,255,255,0.06);
}
.btn-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
}

/* ── Price card (hero) ── */
.price-card {
  position: relative;
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid rgba(205,227,255,0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 1.4rem;
  align-self: center;
  max-width: 380px;
}

.price-label {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef5ff, #dceaff);
  color: var(--blue-800);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-sub {
  margin: -0.3rem 0 0.8rem;
  font-size: 0.82rem;
  color: var(--ink-500);
  font-style: italic;
}

.price-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}
.price-list li {
  padding: 0.25rem 0;
  font-size: 0.85rem;
  color: var(--ink-700);
  position: relative;
  padding-left: 1.2rem;
}
.price-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 700;
}

.price-method {
  margin: 0 0 1rem;
  padding: 0.4rem 0.7rem;
  background: rgba(20,184,166,0.08);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-500);
  text-align: center;
}

.price-note {
  margin: 0.8rem 0 0;
  font-size: 0.72rem;
  color: var(--ink-500);
  line-height: 1.4;
}

/* ── Payment methods ── */
.payment-methods {
  margin: 1rem 0;
  padding: 0.8rem;
  background: linear-gradient(135deg, #f5faff, #eef5ff);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.payment-methods--tarifs {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  text-align: center;
}

.payment-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-800);
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-900);
  box-shadow: 0 2px 6px rgba(8,59,122,0.06);
}

.price-main {
  margin: 0 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 3.4rem);
  line-height: 1;
  color: var(--blue-900);
  letter-spacing: -1px;
}
.price-currency {
  font-size: 0.45em;
  letter-spacing: 0;
  vertical-align: 0.15em;
  color: var(--ink-500);
}

.price-card-p {
  color: var(--ink-700);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

/* ═════════ SECTIONS ═════════ */
.section { padding: 5rem 0; }

.section-soft {
  background: linear-gradient(180deg, #f0f6ff 0%, #f7fbff 100%);
  border-top: 1px solid rgba(210,229,255,0.5);
  border-bottom: 1px solid rgba(210,229,255,0.5);
}

.section-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--blue-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.85rem;
  padding: 0.2rem 0.7rem;
  background: rgba(27,105,204,0.06);
  border-radius: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid rgba(210,229,255,0.7);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card-highlight {
  background: linear-gradient(160deg, #fff 0%, #f5faff 100%);
}
.contact-card {
  border-left: 4px solid var(--blue-700);
}

.list-clean {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.list-clean li {
  margin-bottom: 0.55rem;
  line-height: 1.5;
  color: var(--ink-700);
}

/* ═════════ VISUALS SECTION ═════════ */
.visuals {
  background: linear-gradient(180deg, #fff 0%, #f5faff 100%);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.visual-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(4,27,59,0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.visual-card:hover {
  box-shadow: 0 20px 48px rgba(4,27,59,0.16);
}

.visual-card-img {
  position: relative;
  overflow: hidden;
}

.visual-card img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.visual-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.2rem 0.65rem;
  background: rgba(4,27,59,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
}

.visual-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.visual-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: var(--blue-900);
  position: relative;
  padding-bottom: 0.6rem;
}
.visual-card-body h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  border-radius: 2px;
  transition: width 0.4s ease, background 0.4s ease;
}
.visual-card:hover .visual-card-body h3::after {
  width: 100%;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-400));
}
.visual-card-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.65;
}

/* ═════════ ZONE SECTION ═════════ */

/* ═════════ QUI SUIS-JE ═════════ */
.qui-layout {
  text-align: center;
  max-width: 900px;
}

.qui-text {
  margin-bottom: 2.5rem;
}

.qui-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.qui-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(4,27,59,0.08);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 3px solid var(--blue-500);
}
.qui-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(4,27,59,0.14);
}
.qui-card-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-500);
  margin: 0 0 0.6rem;
  letter-spacing: 1px;
}
.qui-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--blue-900);
}
.qui-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-700);
  line-height: 1.6;
}

/* ═════════ ZONE D'INTERVENTION ═════════ */
.zone-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.zone-list li {
  position: relative;
  padding-left: 0.2rem;
}

.zone-extra {
  margin-top: 1.2rem;
  padding: 0.75rem 1rem;
  background: #fff8e6;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 10px 10px 0;
  font-size: 0.88rem;
  color: var(--ink-700);
  line-height: 1.5;
}
.zone-extra strong {
  color: var(--ink-900);
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(205,227,255,0.7);
  background: var(--white);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-caption {
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  text-align: right;
  background: #f5faff;
  border-top: 1px solid #e4efff;
}
.map-caption a {
  color: var(--blue-700);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.map-caption a:hover {
  color: var(--blue-800);
  text-decoration: underline;
}

/* ═════════ TARIF SECTION ═════════ */
.tarif-note {
  color: var(--ink-700);
  font-size: 0.88rem;
  margin: 0 0 0.6rem;
  line-height: 1.55;
}

.tarif-focus {
  text-align: center;
  max-width: 700px;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.tarif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 960px;
  margin-inline: auto;
  align-items: start;
}

.tarif-premium {
  border-top: 4px solid var(--blue-700);
  padding: 2.2rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.tarif-premium::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(27,105,204,0.06), transparent 65%);
  pointer-events: none;
}

.tarif-badge {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 12px rgba(12,79,162,0.25);
}

.tarif-badge--option {
  background: linear-gradient(135deg, var(--teal-500), #0d9488);
  box-shadow: 0 4px 12px rgba(20,184,166,0.25);
}

.tarif-option {
  border-top: 4px solid var(--teal-500);
}

.tarif-camera {
  border-top: 4px solid #7c3aed;
}

.tarif-badge--camera {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}

.btn-outline-camera {
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
  width: 100%;
}
.btn-outline-camera:hover {
  background: rgba(124,58,237,0.08);
  box-shadow: 0 6px 20px rgba(124,58,237,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--teal-500);
  border: 2px solid var(--teal-500);
  width: 100%;
}
.btn-outline:hover {
  background: rgba(20,184,166,0.08);
  box-shadow: 0 6px 20px rgba(20,184,166,0.2);
}

.tarif-price-row {
  margin-bottom: 1.2rem;
}

.big-price {
  margin: 0.5rem 0 0.3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--blue-900);
  letter-spacing: -1px;
}

.big-price--small {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0;
}

.tarif-list {
  text-align: left;
  margin: 1.5rem auto;
  max-width: 460px;
  border-top: 1px solid #e4efff;
  padding-top: 1.2rem;
}
.tarif-list li {
  padding: 0.4rem 0;
  color: var(--ink-700);
  font-size: 0.93rem;
}
.tarif-list li:first-child {
  font-weight: 700;
  color: var(--ink-900);
}

/* ═════════ AGENDA SECTION ═════════ */
#agenda {
  background: linear-gradient(180deg, #f4f9ff 0%, #eaf2ff 100%);
  border-top: 1px solid rgba(210,229,255,0.5);
}

.agenda-card {
  padding: 1.4rem;
}

.agenda-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bdd7ff #f0f7ff;
}

.agenda-day {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.6rem;
  align-items: start;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e8f1ff;
}
.agenda-day:last-child { border-bottom: none; }

.agenda-date {
  margin: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #edf4ff, #e0ecff);
  border: 1px solid #cee2ff;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-800);
  text-align: center;
  white-space: nowrap;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.slot-period {
  display: inline-block;
  width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue-700);
  padding: 0.15rem 0.55rem;
  background: linear-gradient(135deg, #e0ecff, #d0e2ff);
  border-radius: 6px;
  margin-bottom: 0.15rem;
}
.slot-period--gap {
  margin-top: 0.45rem;
}

.slot-btn {
  padding: 0.3rem 0.7rem;
  border-radius: 10px;
  border: 1.5px solid #22c55e;
  background: var(--white);
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  font-family: "Space Grotesk", sans-serif;
  position: relative;
}
.slot-btn:hover {
  background: #f0fdf4;
  border-color: #16a34a;
  box-shadow: 0 2px 8px rgba(22,163,74,0.15);
}
.slot-btn.is-selected {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  border-color: #15803d;
  box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}

/* Créneau en attente de validation (jaune) */
.slot-btn.slot-pending {
  background: var(--white);
  border-color: #f59e0b;
  color: #d97706;
  cursor: default;
}
.slot-btn.slot-pending:hover {
  background: #fffbeb;
  border-color: #d97706;
  box-shadow: 0 2px 8px rgba(245,158,11,0.15);
}

/* Créneau confirmé / réservé (rouge) */
.slot-btn.slot-booked {
  background: var(--white);
  border-color: #ef4444;
  color: #dc2626;
  cursor: default;
}
.slot-btn.slot-booked:hover {
  background: #fef2f2;
  border-color: #dc2626;
  box-shadow: 0 2px 8px rgba(239,68,68,0.15);
}

/* Légende agenda */
.agenda-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.agenda-legend-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--ink-500);
}
.agenda-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.agenda-legend-dot--free { background: #22c55e; }
.agenda-legend-dot--pending { background: #f59e0b; }
.agenda-legend-dot--booked { background: #ef4444; }

.agenda-loading {
  color: var(--ink-500);
  font-size: 0.9rem;
  padding: 1.5rem 0;
  text-align: center;
}

/* Messages confirmation/erreur formulaire */
.form-success {
  background: #dcfce7;
  color: #166534;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid #86efac;
}
.form-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid #fca5a5;
}

.agenda-note {
  font-size: 0.87rem;
  color: var(--ink-700);
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  background: rgba(12,79,162,0.04);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 10px 10px 0;
  line-height: 1.55;
}

.agenda-empty {
  color: var(--ink-500);
  font-size: 0.9rem;
  padding: 1.5rem 0;
  text-align: center;
}

/* ═════════ CONTACT SECTION ═════════ */
.contact-secondary {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 0.15rem;
}

.contact-phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-900);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.3rem;
}

.contact-mail {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 0.55rem;
}
.form label {
  font-weight: 600;
  color: var(--blue-950);
  font-size: 0.88rem;
  margin-top: 0.3rem;
}
.form input,
.form textarea {
  border: 1.5px solid #c5daff;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.93rem;
  background: #fdfdff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,139,245,0.12);
}
.form input[readonly] {
  background: #f0f6ff;
  color: var(--blue-900);
  font-weight: 600;
}
.form small {
  color: var(--ink-500);
  font-size: 0.8rem;
}

.form-hint {
  display: block;
  color: var(--ink-500);
  font-size: 0.8rem;
  margin-top: 0.15rem;
  margin-bottom: 0.3rem;
  line-height: 1.45;
}

.form .btn-primary {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(12,79,162,0.25);
  padding: 0.82rem 1.5rem;
}
.form .btn-primary:hover {
  box-shadow: 0 10px 28px rgba(12,79,162,0.4);
}

/* ═════════ FOOTER ═════════ */
.footer {
  background: linear-gradient(180deg, #051d3f, #041530);
  color: #c5d8f0;
  padding: 1.5rem 0;
  font-size: 0.88rem;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer a {
  color: #c5d8f0;
  text-decoration: none;
  transition: color 0.15s;
}
.footer a:hover { color: #fff; }
.footer p { margin: 0; }

.footer-links {
  display: flex;
  gap: 1.2rem;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Hamburger button ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 110;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ═════════ RESPONSIVE ═════════ */
@media (max-width: 980px) {
  .two-col,
  .hero-layout,
  .zone-layout {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tarif-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .qui-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .price-card { max-width: 100%; }

  .map-card iframe { height: 260px; }

  .menu { gap: 0.2rem; }

  .hero { padding: 4rem 0 3.5rem; }
  .section { padding: 3.8rem 0; }

  .tarif-premium { padding: 1.5rem; }
}

@media (max-width: 680px) {
  .burger {
    display: flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.6rem 0;
    min-height: auto;
  }

  .nav-wrap nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-wrap nav.menu-open {
    max-height: 300px;
  }

  .menu {
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 0;
  }
  .menu a {
    display: block;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    font-size: 0.92rem;
  }
  .menu a:hover {
    background: rgba(12,79,162,0.06);
  }

  .hero { padding: 3.5rem 0 2.8rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero-content > p { font-size: 0.92rem; }
  .section { padding: 3rem 0; }

  .agenda-day {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .contact-phone { font-size: 1.1rem; }

  .price-card { padding: 1.3rem; }
  .tarif-premium { padding: 1.2rem 1rem; }

  .tarif-grid { margin-top: 1.2rem; }

  .payment-icons {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
  .payment-badge { width: 100%; justify-content: center; }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
    padding: 0 0.5rem;
  }
  .footer-wrap p {
    font-size: 0.78rem;
    word-break: break-word;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 0.8rem;
  }
  .footer-links a { font-size: 0.78rem; }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .btn-quote { font-size: 0.88rem; padding: 0.7rem 1rem; }

  .form input,
  .form textarea {
    font-size: 16px; /* prevents iOS zoom */
  }

  .container {
    width: calc(100% - 1.5rem);
  }

  .big-price { font-size: 2.2rem; }
  .price-main { font-size: 2.4rem; }
}

/* ── Prestation cards (form) ── */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 1.5rem 0;
}

.form-fieldset legend {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-900);
  margin-bottom: 0.75rem;
}

.prestation-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.prestation-card {
  display: block;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.prestation-card:hover {
  border-color: var(--blue-500);
}

.prestation-card input[type="checkbox"] {
  display: none;
}

.prestation-card-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  padding-right: 2.2rem;
}

.prestation-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--blue-100);
}

.prestation-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.prestation-info strong {
  font-size: 0.92rem;
  color: var(--ink-900);
}

.prestation-info em {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-500);
}

/* Checked states */
.prestation-card:has(input:checked)::after {
  content: '✓';
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.prestation-card--blue input:checked ~ .prestation-card-inner .prestation-info em {
  color: var(--blue-700);
}
.prestation-card--blue:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--blue-100);
}
.prestation-card--blue:has(input:checked)::after {
  color: var(--blue-700);
}

.prestation-card--teal input:checked ~ .prestation-card-inner .prestation-info em {
  color: var(--teal-500);
}
.prestation-card--teal:has(input:checked) {
  border-color: var(--teal-500);
  background: #f0fdf9;
}
.prestation-card--teal:has(input:checked)::after {
  color: var(--teal-500);
}

.prestation-card--purple input:checked ~ .prestation-card-inner .prestation-info em {
  color: #7c3aed;
}
.prestation-card--purple:has(input:checked) {
  border-color: #7c3aed;
  background: #f5f3ff;
}
.prestation-card--purple:has(input:checked)::after {
  color: #7c3aed;
}

/* ── RGPD consent ── */
.rgpd-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-500);
  line-height: 1.4;
  cursor: pointer;
}

.rgpd-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.rgpd-consent a {
  color: var(--blue-700);
  text-decoration: underline;
}

/* ── Legal pages ── */
.legal-page {
  padding-top: 6rem;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--blue-900);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  color: var(--blue-800);
  margin: 1.8rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-700);
}

.legal-content ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.legal-content a {
  color: var(--blue-700);
}

.legal-update {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--ink-500);
  font-style: italic;
}
