:root {
  --green: #00e676;
  --green-dark: #00b248;
  --green-glow: rgba(0, 230, 118, 0.12);
  --green-glow-strong: rgba(0, 230, 118, 0.2);
  --lime: #aaff00;
  --bg: #060606;
  --surface: #0f0f0f;
  --surface-2: #151515;
  --border: #1e1e1e;
  --border-green: rgba(0, 230, 118, 0.3);
  --text: #ffffff;
  --text-muted: #777;
  --red: #ff4444;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); }
  50% { box-shadow: 0 0 24px 6px rgba(0,230,118,0.18); }
}

@keyframes shimmerBtn {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes rotateBg {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAV ─── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: rgba(6,6,6,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.3s, border-color 0.3s;
}

nav.scrolled {
  background: rgba(6,6,6,0.97);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-icon { display: none; }

.nav-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.nav-brand {
  display: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 4px; align-items: center; }

nav a {
  color: var(--text-muted);
  padding: 8px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

nav a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
}

nav a:not(.btn-nav):hover::after { transform: scaleX(1); }
nav a:hover { color: var(--text); }

nav a.btn-nav {
  background: var(--green);
  color: #000;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

nav a.btn-nav:hover {
  background: #1aff8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,230,118,0.3);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 110px 40px 100px;
  text-align: center;
  overflow: hidden;
  background: #070707;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(0,230,118,0.1) 0%, transparent 65%);
  pointer-events: none;
  transform: translateX(-50%);
  animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,230,118,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,0.08);
  border: 1px solid var(--border-green);
  color: var(--green);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.6s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: -2px;
  animation: fadeUp 0.6s 0.1s both;
}

.hero h1 .accent {
  color: var(--green);
  display: inline-block;
  position: relative;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeUp 0.6s 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s both;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  padding: 14px 34px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
  animation: shimmerBtn 0.6s linear;
}

.btn:hover {
  background: #1aff8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,230,118,0.35);
}

.btn:active { transform: translateY(0); }
.btn:disabled { background: #1a1a1a; color: #444; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--border-green);
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: var(--green-glow);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,230,118,0.15);
}

/* ─── SERVICES BAR ─── */
.services-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
  cursor: default;
}

.service-pill:last-child { border-right: none; }
.service-pill:hover { color: var(--green); background: var(--green-glow); }

.service-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--green);
}

/* ─── SECTION ─── */
.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-tag {
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ─── CARDS PRESTATIONS ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,230,118,0.08);
}

.card.featured {
  border-color: rgba(0,230,118,0.5);
  background: linear-gradient(145deg, #0a1812 0%, var(--surface) 100%);
  box-shadow: 0 0 40px rgba(0,230,118,0.07);
}

.card.featured:hover {
  box-shadow: 0 12px 50px rgba(0,230,118,0.15);
}

.card-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,230,118,0.4);
}

.card h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.card .price {
  font-size: 56px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -3px;
}

.card .price span { font-size: 26px; font-weight: 600; color: var(--green); margin-left: 2px; }

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card ul li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,230,118,0.15);
  border: 1px solid rgba(0,230,118,0.4);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%2300e676' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── WHY SECTION ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-item {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  cursor: default;
}

.why-item:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,230,118,0.07);
}

.why-item .icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s;
}

.why-item:hover .icon { transform: scale(1.15); }
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── RESERVATION PAGE ─── */
.reservation-wrapper {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 24px 80px;
}

.page-header { margin-bottom: 40px; }
.page-header h1 { font-size: 36px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 6px; }
.page-header p { color: var(--text-muted); font-size: 15px; }

.step-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.step-block.active { border-color: var(--border-green); }

.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-label h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
}

/* Flatpickr */
.flatpickr-input {
  background: var(--surface-2) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  padding: 13px 18px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: border-color 0.2s !important;
}

.flatpickr-input:focus {
  outline: none !important;
  border-color: var(--green) !important;
}

/* ─── SLOTS ─── */
#slots { display: flex; flex-wrap: wrap; gap: 10px; }

.slot {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
}

.available {
  background: rgba(0,230,118,0.06);
  border-color: var(--border-green);
  color: var(--green);
}

.available:hover, .available.selected {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(0,230,118,0.25);
}

.taken {
  background: var(--surface-2);
  border-color: var(--border);
  color: #333;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slots-placeholder { color: #444; font-size: 14px; }

/* ─── BOOKING FORM ─── */
#booking-form { display: none; }

.booking-summary {
  background: rgba(0,230,118,0.06);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-summary strong { color: var(--green); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.form-group label .required { color: var(--green); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  font-size: 15px;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #3a3a3a; }

.form-group select option { background: #111; }

/* TYPE SERVICE — radio custom */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.radio-card {
  position: relative;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
  text-align: center;
}

.radio-label .radio-icon { font-size: 22px; }

.radio-card input[type="radio"]:checked + .radio-label {
  border-color: var(--green);
  background: rgba(0,230,118,0.07);
  color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.1);
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.hidden { display: none !important; }

.field-hint {
  display: block;
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
  opacity: 0.8;
}

.plaque-input { text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  z-index: 999;
  max-width: 380px;
  pointer-events: none;
  line-height: 1.4;
}

.toast.show { opacity: 1; transform: translateY(0) scale(1); }
.toast-success { background: #081a0e; border: 1px solid var(--green); color: var(--green); }
.toast-error { background: #1f0a0a; border: 1px solid var(--red); color: #ff6666; }

/* ══════════════════════════════════════════════════════════════
   LOGIN PAGE
══════════════════════════════════════════════════════════════ */
.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,230,118,0.06) 0%, var(--bg) 55%);
}

.login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 24px;
  animation: fadeUp 0.5s both;
}

.login-box {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  justify-content: center;
}

.login-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-align: center;
}

.login-error {
  background: #1f0a0a;
  border: 1px solid rgba(255,68,68,0.4);
  color: #ff6666;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════════════════════════ */
.dash-body { background: #050505; }

.dash-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
}

.dash-nav-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-logout {
  background: transparent;
  border: 1px solid #252525;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-logout:hover { border-color: var(--red); color: var(--red); background: rgba(255,68,68,0.05); }

.dash-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-title {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.dash-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
  text-transform: capitalize;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.stat-card:hover { transform: translateY(-2px); }
.stat-card.stat-green { border-color: rgba(0,230,118,0.2); }
.stat-card.stat-orange { border-color: rgba(255,160,0,0.2); }
.stat-card.stat-blue { border-color: rgba(64,156,255,0.2); }
.stat-card.stat-red { border-color: rgba(255,68,68,0.2); }

.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Filtres */
.dash-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.filter-btn:hover { color: var(--text); border-color: #333; }

.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #000;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,230,118,0.2);
}

.date-filter {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.date-filter:focus { outline: none; border-color: var(--green); }

/* RDV Cards */
.rdv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.rdv-card:hover {
  border-color: #2a2a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.rdv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.rdv-datetime { display: flex; align-items: center; gap: 12px; }

.rdv-date {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.rdv-time {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  background: rgba(0,230,118,0.08);
  border: 1px solid var(--border-green);
  padding: 3px 10px;
  border-radius: 6px;
}

/* Status badges */
.status-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-green { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.25); }
.badge-orange { background: rgba(255,160,0,0.1); color: #ffa000; border: 1px solid rgba(255,160,0,0.25); }
.badge-blue { background: rgba(64,156,255,0.1); color: #409cff; border: 1px solid rgba(64,156,255,0.25); }
.badge-red { background: rgba(255,68,68,0.1); color: #ff6666; border: 1px solid rgba(255,68,68,0.25); }

/* Card body */
.rdv-card-body { padding: 16px 20px; }

.rdv-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 10px;
}

.rdv-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.rdv-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rdv-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.rdv-link:hover { color: var(--green); }

.rdv-service {
  font-size: 14px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 4px;
}

.rdv-type { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.rdv-plaque { font-size: 13px; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; }

.rdv-adresse {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  margin-top: 8px;
  border: 1px solid var(--border);
}

.rdv-meta {
  font-size: 11px;
  color: #3a3a3a;
  margin-top: 10px;
}

.rdv-duree {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(68,138,255,0.08);
  border: 1px solid rgba(68,138,255,0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #448aff;
}

.rdv-timer {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #00e676;
  font-variant-numeric: tabular-nums;
}

/* Actions */
.rdv-actions {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
  flex-wrap: wrap;
}

.btn-action {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s;
}

.btn-start { background: rgba(0,230,118,0.08); border-color: rgba(0,230,118,0.25); color: var(--green); }
.btn-start:hover { background: var(--green); color: #000; box-shadow: 0 2px 12px rgba(0,230,118,0.25); }

.btn-done { background: rgba(64,156,255,0.08); border-color: rgba(64,156,255,0.25); color: #409cff; }
.btn-done:hover { background: #409cff; color: #000; }

.btn-cancel { background: transparent; border-color: #2a2a2a; color: var(--text-muted); }
.btn-cancel:hover { border-color: #ffa000; color: #ffa000; }

.btn-delete { background: transparent; border-color: #1e1e1e; color: #333; }
.btn-delete:hover { border-color: var(--red); color: var(--red); }

.btn-danger { background: var(--red); color: #fff; border: none; }
.btn-danger:hover { background: #ff6666; }

/* États vides / loading */
.dash-loading, .dash-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.2s both;
}

.modal-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
  max-width: 400px;
  width: 90%;
  animation: fadeUp 0.25s both;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-box h3 { font-size: 18px; margin-bottom: 10px; }
.modal-box p { color: var(--text-muted); font-size: 14px; }

/* ══════════════════════════════════════════════════════════════
   TUNNEL RÉSERVATION
══════════════════════════════════════════════════════════════ */
.tunnel-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 24px 80px;
}

/* Barre de progression */
.tunnel-progress {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.ps-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
}

.ps-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.progress-step.active .ps-num {
  border-color: var(--green);
  background: var(--green);
  color: #000;
  box-shadow: 0 0 16px rgba(0,230,118,0.3);
}

.progress-step.active .ps-label { color: var(--green); }

.progress-step.done .ps-num {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #000;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.progress-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

/* Étapes */
.tunnel-step { display: none; }
.tunnel-step.active { display: block; animation: fadeUp 0.35s both; }

.step-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

/* Cards service */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.service-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  cursor: pointer;
  position: relative;
  transition: all 0.25s;
}

.service-card:hover, .service-card.selected {
  border-color: var(--green);
  background: linear-gradient(145deg, #0a1812 0%, var(--surface) 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,230,118,0.1);
}

.service-card.featured { border-color: rgba(0,230,118,0.4); }

.service-card-badge {
  position: absolute;
  top: -11px;
  left: 18px;
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0,230,118,0.35);
}

.service-card-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.service-card-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -3px;
}

.service-card-price span { font-size: 24px; color: var(--green); }

.service-card-list {
  list-style: none;
  margin-bottom: 14px;
}

.service-card-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
}

.service-card-list li::before { content: '✓ '; color: var(--green); font-weight: 700; }

.service-card-duration { font-size: 12px; color: #555; }

/* Calendrier */
.calendar-wrap { margin-bottom: 24px; }

/* Créneaux */
.slots-header {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

/* Navigation tunnel */
.tunnel-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Récap */
.recap-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.recap-row:last-child { border-bottom: none; }
.recap-row span { color: var(--text-muted); }
.recap-accent { color: var(--green); }
.recap-price { color: var(--lime); font-size: 18px; font-weight: 900; }

/* ══════════════════════════════════════════════════════════════
   PAGE CONFIRMATION
══════════════════════════════════════════════════════════════ */
.confirm-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
  padding: 40px 24px;
}

.confirm-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  animation: fadeUp 0.5s both;
}

.confirm-icon {
  width: 68px;
  height: 68px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #000;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(0,230,118,0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

.confirm-title { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.confirm-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 4px; }
.confirm-note { color: #444; font-size: 13px; margin-top: 4px; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   CA CARDS (dashboard)
══════════════════════════════════════════════════════════════ */
.ca-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.ca-card {
  background: linear-gradient(135deg, #0a1812 0%, var(--surface) 100%);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  padding: 20px;
}

.ca-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ca-num { font-size: 28px; font-weight: 900; color: var(--lime); }

/* Onglets dashboard */
.dash-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  background: rgba(10,10,10,0.8);
}

.dash-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
}

.dash-tab:hover { color: var(--text); }
.dash-tab.active { color: var(--green); border-bottom-color: var(--green); }

.devis-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Employés */
.employe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 14px;
}

.employe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.employe-card:hover { border-color: #2a2a2a; transform: translateY(-1px); }
.employe-card.inactive { opacity: 0.45; }

.employe-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,230,118,0.1);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  text-transform: uppercase;
}

.employe-info { flex: 1; }
.employe-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.employe-contact { display: flex; flex-direction: column; gap: 3px; margin-bottom: 8px; }
.employe-zones { display: flex; gap: 6px; flex-wrap: wrap; }
.zone-tag { background: rgba(0,230,118,0.07); border: 1px solid rgba(0,230,118,0.2); color: var(--green); font-size: 11px; padding: 2px 8px; border-radius: 4px; }

.employe-actions { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; flex-shrink: 0; }

.rdv-employe { font-size: 12px; color: var(--text-muted); background: var(--surface-2); padding: 3px 8px; border-radius: 4px; }
.rdv-montant { font-size: 13px; color: var(--lime); font-weight: 700; }
.rdv-notes { font-size: 12px; color: #555; font-style: italic; margin-top: 6px; }

.assign-select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}

.assign-select:focus { outline: none; border-color: var(--green); }

.btn-facture { background: rgba(64,156,255,0.07); border-color: rgba(64,156,255,0.25); color: #409cff; }
.btn-facture:hover { background: #409cff; color: #000; }
.badge-grey { background: rgba(100,100,100,0.08); color: #666; border: 1px solid #2a2a2a; }

/* ─── HERO TRUST BAR ─── */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.45s both;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.trust-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.5px;
}

.trust-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ─── HOW IT WORKS ─── */
.how-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.how-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.2s;
}

.how-step:hover { border-color: var(--border-green); transform: translateY(-3px); }

.how-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.how-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.how-arrow {
  font-size: 22px;
  color: var(--border);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ─── OPTION HIGHLIGHT (homepage) ─── */
.option-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 14px;
  padding: 20px 24px;
}

.option-highlight-icon { display: none; }

.option-highlight-body { flex: 1; }
.option-highlight-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.option-highlight-desc { font-size: 13px; color: var(--text-muted); }

.option-highlight-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.2s;
}

.review-card:hover { border-color: var(--border-green); transform: translateY(-3px); }

.review-stars { color: var(--lime); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,230,118,0.1);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

.review-name { font-size: 14px; font-weight: 700; }
.review-date { font-size: 12px; color: var(--text-muted); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, #081810 0%, #060606 100%);
  border-top: 1px solid rgba(0,230,118,0.15);
  border-bottom: 1px solid rgba(0,230,118,0.15);
  padding: 80px 40px;
  text-align: center;
}

.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: 36px; font-weight: 900; margin-bottom: 14px; letter-spacing: -0.5px; }
.cta-inner p { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; }

/* ─── OPTION CARDS (tunnel) ─── */
.option-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.option-card:hover { border-color: rgba(0,230,118,0.4); background: rgba(0,230,118,0.03); }

.option-card.selected {
  border-color: var(--green);
  background: rgba(0,230,118,0.05);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.08);
}

.option-highlight-icon { display: none; }

.option-card-body { flex: 1; }
.option-card-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.option-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.option-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.option-card-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.5px;
}

.option-card-price span { font-size: 14px; color: var(--green); }

.option-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}

.option-check.active {
  background: var(--green);
  border-color: var(--green);
  color: #000;
}

.option-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,230,118,0.06);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.option-total strong { font-size: 20px; font-weight: 900; color: var(--lime); }

/* ─── NEWSLETTER POPUP ─── */
.nl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(6px);
  padding: 24px;
  animation: fadeIn 0.3s both;
}

.nl-overlay.hidden { display: none; }

.nl-modal {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: fadeUp 0.3s both;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.nl-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nl-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }

.nl-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,230,118,0.1);
  border: 1px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}

.nl-title { font-size: 22px; font-weight: 800; margin-bottom: 10px; }

.nl-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.nl-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.nl-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 8px;
  transition: border-color 0.2s;
  font-family: inherit;
}

.nl-input:focus { outline: none; border-color: var(--green); }

.nl-btn {
  padding: 12px 22px !important;
  min-width: auto !important;
  flex-shrink: 0;
  border-radius: 8px !important;
}

.nl-legal { font-size: 11px; color: #444; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .rdv-info-grid { grid-template-columns: 1fr; }
  .how-arrow { display: none; }
  .how-grid { gap: 14px; }
  .how-step { max-width: 100%; }
}

@media (max-width: 640px) {
  nav { padding: 12px 20px; }
  .hero { padding: 70px 20px 60px; }
  .hero h1 { font-size: 40px; letter-spacing: -1px; }
  .section { padding: 56px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .step-block { padding: 22px 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-nav { padding: 12px 16px; }
  .dash-container { padding: 20px 16px 60px; }
  .dash-nav-label { display: none; }
  .service-pill { padding: 14px 18px; font-size: 11px; }
  .hero-trust { gap: 0; }
  .trust-item { padding: 0 16px; }
  .trust-sep { height: 24px; }
  .trust-num { font-size: 18px; }
  .cta-section { padding: 60px 20px; }
  .cta-inner h2 { font-size: 28px; }
  .nl-modal { padding: 36px 24px; }
  .nl-form { flex-direction: column; }
  .option-card { flex-wrap: wrap; }
  .option-highlight { flex-direction: column; text-align: center; }
}

/* ─── CATEGORY CARDS (tunnel step 1) ─── */
.category-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.category-card:hover {
  border-color: rgba(0,230,118,0.4);
  background: rgba(0,230,118,0.03);
  transform: translateX(4px);
}

.category-card.category-devis {
  border-style: dashed;
}

.category-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.category-card-body { flex: 1; }
.category-card-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.category-card-desc { font-size: 13px; color: var(--text-muted); }

.category-card-arrow {
  font-size: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.category-card:hover .category-card-arrow { transform: translateX(3px); }
