/*
  FixBNB website stylesheet
  Version: 2.3.0
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');

:root {
  --bg: #f2f5fb;
  --surface: #ffffff;
  --surface-2: #e9f0f7;
  --ink: #0b1f3b;
  --muted: #526279;
  --primary: #0f3d75;
  --primary-2: #1559b0;
  --accent: #18a39b;
  --accent-2: #20c7ba;
  --border: #d5e1ee;
  --shadow: 0 22px 50px rgba(7, 25, 52, 0.14);
  --shadow-soft: 0 12px 30px rgba(7, 25, 52, 0.08);
  --radius: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.container {
  width: min(var(--container), calc(100% - 28px));
  max-width: var(--container);
  margin: 0 auto;
}


.topbar {
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(20, 184, 166, 0.25);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 31, 59, 0.08);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand-logo { width: 220px; max-width: 100%; height: auto; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; }
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

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

.nav-account {
  margin-left: clamp(12px, 2vw, 28px);
}
.nav-menu .nav-btn {
  color: var(--ink);
  font-weight: 700;
  border: 1px solid rgba(11, 31, 59, 0.16);
  border-radius: 10px;
  padding: 10px 16px;
  background: #fff;
  transition: 0.2s ease;
}
.nav-menu .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.nav-menu .nav-btn-account {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #082226;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(11, 31, 59, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07202f;
  box-shadow: 0 14px 32px rgba(11, 31, 59, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(11, 31, 59, 0.28); }
.btn-secondary { background: #fff; color: var(--primary); border-color: var(--border); }

.inline-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.section { padding: 84px 0; }
.section-head { margin-bottom: 32px; max-width: 780px; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); margin: 0 0 12px; }
.section-head p { color: var(--muted); margin: 0; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.card h3 { margin-top: 0; font-size: 1.2rem; }
.card p { color: var(--muted); }
.feature-card { border-top: 3px solid rgba(24, 163, 155, 0.4); }

.hero-structured {
  padding: 96px 0 78px;
  background:
    radial-gradient(circle at 15% 10%, rgba(32, 199, 186, 0.16), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(15, 61, 117, 0.18), transparent 50%),
    linear-gradient(180deg, #ffffff, #f2f5fb);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  gap: 36px;
  align-items: center;
}
.hero-left, .hero-right { min-width: 0; }
.hero-right { display: flex; justify-content: flex-end; }
.hero-badge-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(15, 61, 117, 0.08);
  color: var(--primary);
  border: 1px solid rgba(15, 61, 117, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.hero-tag {
  background: rgba(24, 163, 155, 0.14);
  color: #0b5a57;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.85rem;
}
.hero-title {
  margin: 16px 0 18px;
  max-width: 22ch;
  width: 100%;
  display: grid;
  row-gap: 12px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero-title .line,
.hero-title .line-lower,
.hero-title .ampersand {
  display: block;
  white-space: nowrap;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2.05rem, 3.35vw, 3.2rem);
  font-weight: 620;
  line-height: 1.02;
  color: var(--ink);
}
.hero-title .ampersand {
  transform: none;
}
.hero p { font-size: 1.05rem; color: var(--muted); }
.hero-points { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.hero-points li { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow-soft); }

.dashboard-hero {
  width: min(100%, 460px);
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 59, 0.08);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 16px;
}

.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dash-head strong { display: block; }
.dash-head span { color: var(--muted); font-size: 0.92rem; }
.status-pill { background: rgba(24, 163, 155, 0.12); color: #0b5a57; padding: 6px 12px; border-radius: 999px; font-weight: 700; font-size: 0.82rem; }

.dash-list { display: grid; gap: 10px; }
.dash-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: #fff; }
.dash-row span { color: var(--muted); font-size: 0.9rem; }
.dash-status { border-radius: 999px; padding: 6px 12px; font-size: 0.82rem; font-weight: 700; }
.dash-status.warn { background: rgba(255, 179, 0, 0.18); color: #7a5200; }
.dash-status.alert { background: rgba(220, 64, 64, 0.16); color: #7b1d1d; }
.dash-status.done { background: rgba(24, 163, 155, 0.18); color: #0b5a57; }
.dash-footer { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 0.88rem; }
.linkish { color: var(--primary); font-weight: 700; }

.timeline { display: grid; gap: 12px; }
.timeline-item { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.dot {
  inline-size: 12px;
  aspect-ratio: 1;
  block-size: auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin-top: 6px;
}

.band { background: linear-gradient(135deg, #0f3d75, #144b93); color: #fff; }
.band .section-head p, .band p { color: rgba(255,255,255,0.92); }
.band .card { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.16); }
.band .card p { color: rgba(255,255,255,0.88); }

.step-card { position: relative; padding-top: 44px; }
.step-index {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
}

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }

.check-list, .feature-list { list-style: none; padding: 0; margin: 16px 0 0; }
.check-list li, .feature-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); }
.check-list li:last-child, .feature-list li:last-child { border-bottom: 0; }

.panel {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
}
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.panel-head span { color: var(--muted); font-size: 0.9rem; }

.dashboard-fake {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.dashboard-fake-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-fake-header strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #102743;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: break-word;
}

.dashboard-fake-subtitle {
  display: block;
  margin-top: 4px;
  color: #58708b;
  font-size: 0.84rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.dashboard-fake-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-live-badge,
.dashboard-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.dashboard-live-badge {
  background: rgba(31, 181, 106, 0.14);
  color: #13824f;
}

.dashboard-action-btn,
.dashboard-submit-btn,
.dashboard-light-btn {
  border: 0;
  border-radius: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dashboard-action-btn,
.dashboard-submit-btn {
  background: linear-gradient(135deg, #0f4aa2, #1c7de0);
  color: #ffffff;
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(28, 125, 224, 0.22);
  white-space: nowrap;
}

.dashboard-action-btn:hover,
.dashboard-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(28, 125, 224, 0.28);
}

.dashboard-fake-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.dashboard-fake-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 18px;
  min-width: 0;
}

.dashboard-fake-grid,
.dashboard-fake-lower,
.dashboard-side-card,
.dashboard-card,
.dashboard-card-top,
.dashboard-side-head {
  min-width: 0;
}

.dashboard-fake-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-card,
.dashboard-side-card {
  background: #ffffff;
  border: 1px solid #d9e5f2;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.dashboard-card:hover,
.dashboard-side-card:hover {
  transform: translateY(-3px);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 18px 0 0 18px;
  background: #24ad6f;
}

.dashboard-card.status-attention::before {
  background: #f39a2d;
}

.dashboard-card-top,
.dashboard-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-card h3,
.dashboard-side-head h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #133151;
  word-break: normal;
  overflow-wrap: break-word;
}

.dashboard-side-head span {
  color: #6b8097;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.dashboard-status-badge.ok {
  background: rgba(31, 181, 106, 0.12);
  color: #168352;
}

.dashboard-status-badge.attention {
  background: rgba(243, 154, 45, 0.16);
  color: #b76b11;
}

.dashboard-value {
  margin: 12px 0 6px;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 600;
  color: #0d2542;
  word-break: normal;
  overflow-wrap: break-word;
}

.dashboard-meta,
.dashboard-form-text {
  margin: 0;
  color: #60758c;
  font-size: 0.84rem;
  line-height: 1.45;
  word-break: normal;
  overflow-wrap: break-word;
}

.dashboard-events-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dashboard-events-list li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid #e3ebf3;
  min-width: 0;
}

.dashboard-events-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dashboard-events-list span {
  color: #0f4aa2;
  font-size: 0.78rem;
  font-weight: 600;
}

.dashboard-events-list p {
  margin: 0;
  color: #31506f;
  font-size: 0.84rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.dashboard-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.dashboard-form label {
  color: #274867;
  font-size: 0.82rem;
  font-weight: 600;
}

.dashboard-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid #d5e1ee;
  border-radius: 14px;
  padding: 10px 12px;
  background: #f8fbff;
  color: #133151;
  font: inherit;
  overflow: hidden;
}

@media (max-width: 1180px) {
  .dashboard-fake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .dashboard-fake-lower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dashboard-fake {
    padding: 20px;
  }

  .dashboard-fake-header {
    flex-direction: column;
  }

  .dashboard-fake-header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .dashboard-fake-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-fake-lower {
    grid-template-columns: 1fr;
  }
}

.soft { background: var(--surface-2); }
#fonctionnalites .grid-3 { gap: 16px; }
.tech-card { border-left: 3px solid rgba(15, 61, 117, 0.35); }
.tech-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 44px minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.tech-card-wide .icon,
.tech-card-wide h3,
.tech-card-wide p {
  margin: 0;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15,61,117,0.12), rgba(32,199,186,0.20));
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.zones-grid span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.zones-grid span::before {
  content: "🏠";
  font-size: 0.95rem;
  line-height: 1;
}

.cta-box {
  border-radius: 22px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(15,61,117,0.96), rgba(23,79,149,0.96));
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: center;
}
.cta-box p { color: rgba(255,255,255,0.9); }

.site-footer {
  background: #0b1f3b;
  color: rgba(255,255,255,0.88);
  padding: 52px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 26px;
  text-align: center;
}
.site-footer h3, .site-footer h4 { color: #fff; margin-top: 0; }
.site-footer a { color: rgba(255,255,255,0.88); }
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid, .split, .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .tech-card-wide { grid-template-columns: 1fr; }
  .tech-card-wide .icon { margin-bottom: 12px; }
}

@media (max-width: 980px) {
  .brand-logo { width: 180px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 0; right: 0; top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 16px 24px;
    box-shadow: var(--shadow-soft);
  }
  .nav-menu.open { display: flex; }
  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav-account {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .topbar .container { flex-direction: column; }
  .hero-structured { padding: 56px 0 40px; }
  .hero-grid { gap: 24px; }
  .hero-title {
    max-width: none;
    margin: 14px 0 14px;
    row-gap: 8px;
  }
  .hero-title .line,
  .hero-title .line-lower,
  .hero-title .ampersand {
    font-size: clamp(1.85rem, 6.5vw, 2.7rem);
    white-space: normal;
    font-weight: 620;
    color: var(--ink);
  }
  .hero-title .ampersand {
    transform: none;
  }
  .hero p { font-size: 1rem; }
  .section { padding: 56px 0; }
  .card { padding: 20px; }
  .dash-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .btn { width: 100%; }
  .inline-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-head h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}

/* Premium Refinement v2.4 */

body {
  font-family: "Inter", "Manrope", "Segoe UI", sans-serif;
  line-height: 1.72;
  color: #112746;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  text-wrap: balance;
}

.section {
  padding: 96px 0;
}

.section-key {
  padding-top: 108px;
  padding-bottom: 108px;
}

.section-sub {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 740;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .section-head-nowrap-desktop {
    max-width: none;
  }

  .section-head-nowrap-desktop h2,
  .section-head-nowrap-desktop p {
    white-space: nowrap;
  }
}

.section-sub .section-head h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
}

.hero-structured {
  padding: 112px 0 90px;
  background:
    radial-gradient(1000px 480px at 0% 0%, rgba(32, 199, 186, 0.22), transparent 60%),
    radial-gradient(900px 460px at 100% 0%, rgba(15, 61, 117, 0.22), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #eef3fa 100%);
}

.hero-title {
  row-gap: 14px;
  max-width: 24ch;
}

.hero-title .line,
.hero-title .line-lower,
.hero-title .ampersand {
  font-size: clamp(2.15rem, 3.5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  color: #455f7e;
  max-width: 62ch;
}

.btn {
  min-height: 50px;
  border-radius: 14px;
  font-size: 0.98rem;
  font-weight: 700;
}

.btn-primary {
  box-shadow: 0 16px 34px rgba(16, 67, 127, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(16, 67, 127, 0.34);
}

.btn-secondary {
  background: #ffffff;
  border-color: #cfdceb;
}

.card {
  background: #ffffff;
  border: 1px solid #d6e3f0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(8, 32, 66, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(8, 32, 66, 0.14);
  border-color: rgba(21, 89, 176, 0.26);
}

.icon {
  inline-size: clamp(40px, 5vw, 48px);
  aspect-ratio: 1;
  min-inline-size: 40px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.dashboard-hero,
.panel,
.cta-box {
  box-shadow: 0 24px 54px rgba(8, 32, 66, 0.16);
}

main > section {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 620ms ease forwards;
}

main > section:nth-of-type(2) { animation-delay: 90ms; }
main > section:nth-of-type(3) { animation-delay: 130ms; }
main > section:nth-of-type(4) { animation-delay: 170ms; }
main > section:nth-of-type(5) { animation-delay: 210ms; }
main > section:nth-of-type(6) { animation-delay: 250ms; }
main > section:nth-of-type(7) { animation-delay: 290ms; }
main > section:nth-of-type(8) { animation-delay: 330ms; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .section,
  .section-key,
  .section-sub {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-structured {
    padding: 88px 0 60px;
  }
}

@media (max-width: 640px) {
  .section,
  .section-key,
  .section-sub {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 6.3vw, 2.1rem);
  }

  .hero-structured {
    padding: 64px 0 44px;
  }

  .hero-title {
    row-gap: 10px;
  }

  .hero-title .line,
  .hero-title .line-lower,
  .hero-title .ampersand {
    font-size: clamp(1.75rem, 7.3vw, 2.45rem);
    white-space: normal;
  }

  .btn {
    min-height: 48px;
  }

  .card {
    padding: 22px;
    border-radius: 14px;
  }

  .dashboard-hero {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Visual Polish v2.4.1 */
.hero-left {
  padding-right: 6px;
}

.hero-right {
  padding-left: 6px;
}

.hero-badge-row {
  margin-bottom: 10px;
}

.hero-title {
  margin: 12px 0 20px;
  max-width: 26ch;
}

.hero p {
  color: #3d5775;
  line-height: 1.68;
}

.section-head p {
  max-width: 58ch;
  font-size: 1.02rem;
  color: #4a6481;
}

@media (min-width: 1024px) {
  .services-hero-head {
    max-width: none;
  }

  .services-hero-head p {
    max-width: 92ch;
  }
}

.card p {
  line-height: 1.66;
}

.dashboard-hero {
  padding: 24px 24px 22px;
}

.dash-row {
  padding: 13px 15px;
}

.cta-box .inline-actions {
  align-items: flex-start;
}

@media (max-width: 980px) {
  .hero-left,
  .hero-right {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .section-head p {
    font-size: 0.98rem;
  }

  .dashboard-hero {
    padding: 18px;
  }
}

/* Noise Monitoring Section v1 */
.noise-section {
  background:
    radial-gradient(760px 340px at 8% 0%, rgba(15, 61, 117, 0.11), transparent 62%),
    radial-gradient(620px 280px at 92% 100%, rgba(32, 199, 186, 0.12), transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
}

.noise-head {
  max-width: 860px;
}

.noise-head .badge {
  margin-bottom: 14px;
}

.noise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.noise-benefits-card {
  background: rgba(255, 255, 255, 0.9);
}

.noise-benefits {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.noise-benefits li {
  border: 1px solid #d7e4f2;
  border-radius: 12px;
  padding: 11px 13px;
  color: #3f5977;
  background: #ffffff;
  font-weight: 600;
}

.noise-dashboard {
  background: #ffffff;
  border: 1px solid rgba(11, 31, 59, 0.1);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(8, 32, 66, 0.16);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.noise-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.noise-dashboard-head span {
  color: #4a6481;
  font-size: 0.92rem;
}

.noise-kpi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.noise-kpi-item {
  border: 1px solid #d6e3f0;
  border-radius: 12px;
  background: #fbfdff;
  padding: 11px 12px;
  display: grid;
  gap: 3px;
}

.noise-kpi-item span {
  color: #607892;
  font-size: 0.82rem;
}

.noise-kpi-item strong {
  font-size: 0.94rem;
  color: #0f2b4a;
}

.noise-action {
  border-radius: 12px;
  border: 1px solid #d8e4f2;
  background: linear-gradient(135deg, rgba(15, 61, 117, 0.07), rgba(32, 199, 186, 0.11));
  padding: 12px 14px;
  display: grid;
  gap: 4px;
}

.noise-action span {
  color: #516a86;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.noise-action strong {
  color: #123253;
  font-size: 0.94rem;
}

.noise-history {
  border: 1px solid #d6e3f0;
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
}

.noise-history-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.noise-history-head span {
  color: #5f7891;
  font-size: 0.83rem;
}

.noise-history-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #e2eaf4;
  padding-top: 10px;
  margin-top: 10px;
  color: #3e5875;
  font-size: 0.89rem;
}

.noise-state {
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.noise-state.normal {
  background: rgba(24, 163, 155, 0.18);
  color: #0b5a57;
}

.noise-state.vigilance {
  background: rgba(255, 186, 0, 0.2);
  color: #7a5200;
}

.noise-state.alert {
  background: rgba(220, 64, 64, 0.15);
  color: #7b1d1d;
}

.noise-argument {
  margin-top: 22px;
}

.noise-argument p {
  margin-bottom: 0;
}

.noise-reassurance {
  margin-top: 18px;
  background: #ffffff;
  border: 1px solid #d6e3f0;
  border-left: 4px solid #18a39b;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 10px 24px rgba(8, 32, 66, 0.08);
}

.noise-reassurance h3 {
  margin: 0 0 8px;
  font-size: 1.07rem;
}

.noise-reassurance ul {
  margin: 0;
  padding-left: 18px;
  color: #425d7b;
}

.noise-actions {
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .noise-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .noise-dashboard {
    padding: 18px;
  }

  .noise-kpi {
    grid-template-columns: 1fr;
  }

  .noise-history-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .noise-reassurance {
    padding: 16px;
  }
}

/* Noise meter image insertion */
.noise-device-figure {
  margin: 0 0 16px;
  border: 1px solid #d6e3f0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 32, 66, 0.1);
}

.noise-device-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.noise-device-figure figcaption {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.84rem;
  color: #4f6884;
  border-top: 1px solid #e1e9f3;
}

/* Hero Image Integration v1 */
.hero-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.6vw, 72px);
  align-items: stretch;
}

.hero-text {
  position: relative;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    radial-gradient(420px 180px at 0% 0%, rgba(32, 199, 186, 0.1), transparent 70%);
  border: 1px solid rgba(214, 227, 240, 0.9);
  box-shadow: 0 16px 36px rgba(8, 32, 66, 0.09);
  backdrop-filter: blur(2px);
}

.hero-image {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-visual-wrap {
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 227, 240, 0.92);
  box-shadow:
    0 18px 44px rgba(10, 34, 67, 0.2),
    0 8px 20px rgba(15, 61, 117, 0.12);
  transform: translateY(6px) scale(1.02);
  opacity: 0.97;
  animation: heroVisualIn 860ms ease forwards, heroVisualFloat 5.8s ease-in-out 1.1s infinite;
  transition: transform 280ms ease, box-shadow 280ms ease, opacity 280ms ease;
}

.hero-visual-wrap:hover {
  transform: translateY(0) scale(1.03);
  opacity: 1;
  box-shadow:
    0 24px 52px rgba(10, 34, 67, 0.25),
    0 10px 24px rgba(15, 61, 117, 0.16);
}

.hero-visual {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(1);
  }
  to {
    opacity: 0.97;
    transform: translateY(6px) scale(1.02);
  }
}

@keyframes heroVisualFloat {
  0%, 100% {
    transform: translateY(6px) scale(1.02);
  }
  50% {
    transform: translateY(0) scale(1.025);
  }
}

@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-image {
    justify-content: center;
    width: 100%;
  }

  .hero-visual-wrap-supervision {
    margin: 0 auto;
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .hero-text {
    padding: 16px;
  }

  .hero-visual-wrap-supervision {
    width: min(100%, 420px);
    transform: translateY(2px) scale(1.01);
    animation: heroVisualIn 760ms ease forwards;
  }

  .hero-visual-wrap-supervision:hover {
    transform: translateY(0) scale(1.01);
  }
}


@media (max-width: 768px) {
  .hero-image {
    justify-content: center;
  }

  .hero-visual-wrap-supervision {
    width: 100%;
    max-width: 100%;
    margin: 14px auto 20px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(214, 227, 240, 0.95);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(10, 34, 67, 0.14);
    overflow: hidden;
    transform: none;
    opacity: 1;
    animation: heroVisualIn 680ms ease forwards;
  }

  .hero-visual-wrap-supervision:hover {
    transform: none;
    box-shadow: 0 16px 34px rgba(10, 34, 67, 0.14);
  }

  .hero-visual-wrap-supervision .hero-visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
  }
}

/* Client Monitoring Dashboard v1.0 */
.client-monitoring.section {
  padding: 44px 0 72px;
}

.client-monitoring {
  --ok: #198754;
  --ok-bg: #e9f8ef;
  --warn: #bb6d00;
  --warn-bg: #fff4e4;
  --alert: #c1322a;
  --alert-bg: #fdecea;
}

.client-monitoring .auth-forms {
  max-width: 520px;
  margin: 0 auto;
}

.client-monitoring .auth-note {
  margin-bottom: 16px;
  color: #47617f;
}

.client-monitoring .auth-form {
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(8, 32, 66, 0.09);
  padding: 26px;
}

.client-monitoring .auth-form h2 {
  margin: 0 0 18px;
}

.client-monitoring .form-group {
  margin-bottom: 14px;
}

.client-monitoring .form-group label {
  display: block;
  margin-bottom: 6px;
  color: #1c3554;
  font-weight: 600;
}

.client-monitoring .form-group input,
.client-monitoring .form-group textarea,
.client-monitoring .form-group select {
  width: 100%;
  border: 1px solid #cfdceb;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: #0f2847;
  background: #fff;
}

.client-monitoring .form-group textarea {
  resize: vertical;
}

.client-monitoring .alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid transparent;
}

.client-monitoring .alert-error {
  background: #fde8ea;
  border-color: #f6c8ce;
  color: #8f1d24;
}

.client-monitoring .alert-success {
  background: #e8f8ec;
  border-color: #c4ebcf;
  color: #146b34;
}

.monitor-dashboard {
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: 22px;
}

.monitor-sidebar {
  background: linear-gradient(180deg, #0f3d75 0%, #0e325f 100%);
  border-radius: 20px;
  padding: 20px 16px;
  color: #fff;
  box-shadow: 0 20px 44px rgba(8, 32, 66, 0.2);
  min-height: 780px;
  display: flex;
  flex-direction: column;
}

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

.monitor-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c6b9, #1d8fd6);
  font-size: 0.86rem;
  font-weight: 800;
  color: #04263a;
}

.monitor-brand strong {
  display: block;
  font-size: 0.98rem;
}

.monitor-brand span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.monitor-nav {
  display: grid;
  gap: 8px;
}

.monitor-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.monitor-nav a:hover,
.monitor-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.monitor-sidebar-footer {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.monitor-sidebar-footer p {
  margin: 6px 2px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.monitor-sidebar-footer .btn {
  width: 100%;
  min-height: 42px;
}

.monitor-main {
  display: grid;
  gap: 16px;
}

.monitor-header {
  background: #fff;
  border: 1px solid #d6e4f1;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(8, 32, 66, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.monitor-property {
  margin: 0;
  font-size: 0.9rem;
  color: #45607d;
  font-weight: 600;
}

.monitor-header h1 {
  margin: 4px 0 8px;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.monitor-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.monitor-meta-item {
  font-size: 0.9rem;
  color: #3f5b7b;
}

.monitor-pill {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.monitor-online {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #17683d;
  background: #e9f8ef;
  border: 1px solid #caebd8;
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 700;
  font-size: 0.83rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24b463;
  box-shadow: 0 0 0 rgba(36, 180, 99, 0.55);
  animation: monitorPulse 1.5s infinite;
}

@keyframes monitorPulse {
  0% { box-shadow: 0 0 0 0 rgba(36, 180, 99, 0.58); }
  70% { box-shadow: 0 0 0 8px rgba(36, 180, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 180, 99, 0); }
}

.monitor-global-status {
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid;
  background: #fff;
}

.monitor-global-title {
  margin: 0;
  color: #516d8a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.monitor-global-value {
  margin: 4px 0 2px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.monitor-global-message {
  margin: 0;
  font-weight: 600;
}

.monitor-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
}

.sensor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sensor-card {
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(8, 32, 66, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sensor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(8, 32, 66, 0.12);
}

.sensor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sensor-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: #0f3f76;
  background: linear-gradient(135deg, rgba(17, 102, 190, 0.16), rgba(35, 200, 183, 0.22));
  border: 1px solid rgba(14, 75, 143, 0.2);
}

.sensor-card h2 {
  margin: 12px 0 6px;
  font-size: 1rem;
}

.sensor-value {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0b2d4f;
}

.sensor-message {
  margin: 3px 0 12px;
  color: #486380;
  font-weight: 600;
}

.sensor-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #5a7593;
  font-size: 0.84rem;
}

.sensor-inline-note {
  color: #3d5d81;
  font-weight: 600;
}

.sensor-actions {
  display: inline-flex;
  gap: 6px;
}

.sensor-toggle {
  border: 1px solid #bfd1e4;
  background: #fff;
  color: #264464;
  border-radius: 9px;
  font-weight: 700;
  min-width: 44px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 160ms ease;
}

.sensor-toggle.is-on {
  color: #fff;
  background: #1674d0;
  border-color: #1674d0;
}

.sensor-badge {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid;
}

.is-ok {
  color: var(--ok);
  background: var(--ok-bg);
  border-color: #b8e7cb;
}

.is-warn {
  color: var(--warn);
  background: var(--warn-bg);
  border-color: #f0d1ad;
}

.is-alert {
  color: var(--alert);
  background: var(--alert-bg);
  border-color: #efbeb8;
}

.monitor-sidepanels {
  display: grid;
  gap: 14px;
  align-content: start;
}

.monitor-panel {
  background: #fff;
  border: 1px solid #d7e4f2;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(8, 32, 66, 0.08);
}

.monitor-panel h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.events-list,
.mini-interventions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.events-list li,
.mini-interventions li {
  border: 1px solid #d8e4f0;
  border-radius: 12px;
  padding: 10px;
  background: #f9fcff;
}

.events-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  align-items: start;
}

.events-list li span {
  font-weight: 800;
  color: #0f4279;
  font-size: 0.88rem;
}

.events-list li p,
.mini-interventions p {
  margin: 0;
  color: #486482;
  font-size: 0.88rem;
}

.mini-interventions li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.empty-state {
  margin: 0;
  color: #557391;
}

@media (max-width: 1180px) {
  .monitor-layout {
    grid-template-columns: 1fr;
  }

  .monitor-sidepanels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .monitor-sidepanels .monitor-panel:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .monitor-dashboard {
    grid-template-columns: 1fr;
  }

  .monitor-sidebar {
    min-height: auto;
    padding: 16px;
  }

  .monitor-nav {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .monitor-sidebar-footer {
    margin-top: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .monitor-sidebar-footer form,
  .monitor-sidebar-footer .btn {
    width: 100%;
  }

  .monitor-sidebar-footer p {
    grid-column: 1 / -1;
  }

  .sensor-grid {
    grid-template-columns: 1fr;
  }

  .monitor-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .client-monitoring.section {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .monitor-nav {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
  }

  .monitor-header,
  .monitor-global-status,
  .sensor-card,
  .monitor-panel {
    border-radius: 14px;
  }

  .monitor-sidepanels {
    grid-template-columns: 1fr;
  }

  .sensor-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .monitor-sidebar-footer {
    grid-template-columns: 1fr;
  }
}
/* ================================
   VERSION 1.1.0 - Mentions légales FixBNB
================================ */

/* Container principal */
.section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8fafc, #eef2f7);
}

/* Titre */
.section-head h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-head p {
  color: #64748b;
  font-size: 16px;
}

/* Card principale */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 5px 15px;
  margin-top: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

/* Effet léger */
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Titres sections */
.card h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0f172a;
  border-left: 4px solid #22c55e;
  padding-left: 10px;
}

/* Paragraphes */
.card p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin: 6px 0;
}

/* Mise en valeur */
.card strong {
  color: #0f172a;
  font-weight: 600;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #0f3d75, #18a39b);
  color: #cbd5f5;
  font-size: 14px;
  padding: 10px 0;
}

.topbar a {
  color: #ffffff;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: linear-gradient(90deg, #0f3d75, #18a39b);
  color: #94a3b8;
  padding: 30px 20px;
  margin-top: 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* ================================
   RESPONSIVE MOBILE
================================ */

@media (max-width: 768px) {

  .section {
    padding: 40px 15px;
  }

  .section-head h1 {
    font-size: 26px;
  }

  .card {
    padding: 20px;
    border-radius: 12px;
  }

  .card h2 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .site-footer {
    padding: 24px 16px;
    margin-top: 40px;
  }

  .footer-grid {
    gap: 18px;
  }

  .site-footer h3,
  .site-footer h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .site-footer p,
  .site-footer a,
  .footer-bottom {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* Fix visibilité section "Interventions multi-techniques" */
.section.band {
  background: linear-gradient(135deg, #0f3d75, #144b93);
  color: #fff;
}

.section.band .section-head h2,
.section.band .section-head p {
  color: #fff;
}

.section.band .card {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.section.band .card h3,
.section.band .card p {
  color: rgba(255, 255, 255, 0.92);
}

/* Hero visual integration v3.0 */
.hero-container {
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 20px 22px 22px;
  border-radius: 18px;
}

.hero-text::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(214, 227, 240, 0.85);
  box-shadow: 0 16px 32px rgba(8, 32, 66, 0.08);
  backdrop-filter: blur(2px);
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-visual-card {
  margin: 0;
  width: min(100%, 640px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 56px rgba(10, 36, 74, 0.24);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 244, 252, 0.85));
  transform: translateY(0) scale(1.02);
  opacity: 0.96;
  animation: heroVisualIn 760ms ease-out 120ms both, heroFloat 7s ease-in-out 1.1s infinite;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-visual-card:hover {
  transform: translateY(-6px) scale(1.024);
  box-shadow: 0 34px 64px rgba(10, 36, 74, 0.28);
}

.hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(1);
  }
  to {
    opacity: 0.96;
    transform: translateY(0) scale(1.02);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) scale(1.02);
  }
  50% {
    transform: translateY(-7px) scale(1.02);
  }
}

@media (max-width: 1080px) {
  .hero-image {
    justify-content: center;
  }

  .hero-visual-card {
    width: min(100%, 720px);
  }
}

@media (max-width: 640px) {
  .hero-text {
    padding: 14px;
  }

  .hero-text::before {
    border-radius: 14px;
  }

  .hero-visual-card {
    width: min(100%, 460px);
    transform: translateY(0) scale(1);
    animation: heroVisualIn 600ms ease-out both;
  }

  .hero-visual-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-card {
    animation: none !important;
    transform: none;
  }

  .hero-visual-card:hover {
    transform: none;
  }
}

/* Hero supervision image override */
.hero-visual-wrap-supervision.hero-visual-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 56px rgba(10, 36, 74, 0.24);
  transform: translateY(0) scale(1.02);
  opacity: 0.96;
  transition: transform 260ms ease, box-shadow 260ms ease, opacity 260ms ease;
  animation: heroVisualIn 760ms ease-out 120ms both, heroFloat 7s ease-in-out 1.1s infinite;
}

.hero-visual-wrap-supervision.hero-visual-card:hover {
  transform: translateY(-6px) scale(1.024);
  box-shadow: 0 34px 64px rgba(10, 36, 74, 0.28);
}

.hero-visual-wrap-supervision.hero-visual-card .hero-visual {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
}

@media (max-width: 640px) {
  .hero-visual-wrap-supervision.hero-visual-card {
    width: min(100%, 460px);
    transform: translateY(0) scale(1);
    animation: heroVisualIn 600ms ease-out both;
  }

  .hero-visual-wrap-supervision.hero-visual-card:hover {
    transform: translateY(-3px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-wrap-supervision.hero-visual-card {
    animation: none !important;
    transform: none;
  }

  .hero-visual-wrap-supervision.hero-visual-card:hover {
    transform: none;
  }
}

/* Noise dB service section */
.noise-db-section {
  background:
    radial-gradient(860px 360px at 8% 0%, rgba(16, 72, 140, 0.12), transparent 60%),
    radial-gradient(660px 300px at 94% 100%, rgba(32, 199, 186, 0.1), transparent 62%),
    linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.noise-db-head {
  max-width: 100%;
  padding-top: 10px;
}

.noise-db-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.noise-db-head h2,
.noise-db-head p {
  max-width: 100%;
}

.noise-db-head p {
  max-width: 92ch;
}

.noise-db-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.noise-db-main {
  margin-top: 0;
}

.noise-db-main h3 {
  margin-bottom: 12px;
}

.noise-db-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.noise-db-list li {
  border: 1px solid #d4e2f0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #ffffff;
  color: #355172;
  font-weight: 600;
}

.noise-db-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.noise-db-visual {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d6e3f0;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(8, 32, 66, 0.14);
}

.noise-db-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.noise-db-reassure {
  background: #ffffff;
  border: 1px solid #d7e4f1;
  border-left: 4px solid #18a39b;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(8, 32, 66, 0.08);
}

.noise-db-reassure h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.noise-db-reassure p {
  margin: 0 0 14px;
  color: #415d7d;
}

@media (max-width: 1080px) {
  .noise-db-grid {
    grid-template-columns: 1fr;
  }

  .noise-db-side {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .noise-db-reassure {
    padding: 16px;
  }

  .noise-db-list li {
    font-size: 0.95rem;
  }
}

.hero.hero-structured .hero-container {
  display: block;
}

.hero.hero-structured .hero-text.hero-left {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-right: 0;
}

.hero.hero-structured .hero-title {
  width: 100%;
  max-width: 100%;
  margin-bottom: 26px;
}

.hero.hero-structured p {
  width: 100%;
  max-width: 100%;
  line-height: 1.78;
}

.hero.hero-structured .inline-actions {
  margin-top: 28px;
}

.hero-media-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.hero-media-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 227, 240, 0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(8, 32, 66, 0.1);
}

.hero-media-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f4f8fc;
}

.hero-media-card-dashboard img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: linear-gradient(180deg, #f6f9fd 0%, #eef4fb 100%);
  padding: 10px;
}

.hero-media-card-schema img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.hero-media-card figcaption {
  padding: 12px 14px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #23415f;
}

.hero-media-card-full img {
  object-fit: contain;
  background: #ffffff;
}

.hero.hero-structured .hero-points {
  margin-top: 42px;
}

@media (max-width: 640px) {
  .hero-media-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }
}

/* Contact page */
.contact-hero-head {
  max-width: 820px;
}

.contact-hero-head h1 {
  margin-bottom: 14px;
}

.contact-hero-points {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-hero-points li {
  background: #ffffff;
  border: 1px solid #d8e4f1;
  border-radius: 999px;
  padding: 10px 14px;
  color: #1b3b5b;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(8, 32, 66, 0.06);
}

.contact-grid {
  align-items: start;
}

.form-card,
.contact-info-card,
.contact-demo-card {
  margin-top: 0;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(8, 32, 66, 0.08);
}

.contact-form-intro {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-group {
  display: grid;
  gap: 8px;
}

.contact-form-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-group label,
.contact-form-split label {
  display: block;
  color: #173452;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdbeb;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: #102743;
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1c7de0;
  box-shadow: 0 0 0 4px rgba(28, 125, 224, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-alert {
  border-radius: 14px;
  padding: 13px 15px;
  font-weight: 600;
}

/* Pricing page */
.page-hero {
  padding: 20px 0 5px;
  background:
    radial-gradient(860px 380px at 0% 0%, rgba(32, 199, 186, 0.16), transparent 60%),
    radial-gradient(840px 360px at 100% 0%, rgba(15, 61, 117, 0.18), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: #4c6684;
  font-size: 0.92rem;
  font-weight: 600;
}

.breadcrumbs a {
  color: #0f4aa2;
}

.service-list,
.pricing-list,
.pricing-points,
.positioning-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-card h2 {
  margin-top: 0;
  padding-left: 0;
  border-left: 0;
}

.service-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card-title .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.service-benefit-card h3 {
  margin-top: 0;
}

.service-list li,
.pricing-list li,
.pricing-points li,
.positioning-points li {
  position: relative;
  padding-left: 28px;
}

.service-list li::before,
.pricing-list li::before,
.pricing-points li::before,
.positioning-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a8c85;
  font-weight: 800;
}

.table-like {
  display: grid;
  gap: 10px;
}

.table-like .row {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(0, 1.5fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d8e4f1;
  background: #fbfdff;
}

.nav-menu .nav-btn[aria-current="page"],
.nav-menu .nav-btn.is-active {
  background: linear-gradient(135deg, rgba(15, 61, 117, 0.08), rgba(32, 199, 186, 0.14));
  border-color: rgba(15, 61, 117, 0.18);
  color: #0f3d75;
  box-shadow: 0 12px 26px rgba(8, 32, 66, 0.08);
}

.pricing-hero {
  position: relative;
}

.pricing-hero .section-head {
  max-width: 840px;
}

.pricing-hero-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(214, 227, 240, 0.95);
  color: #0f3d75;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(8, 32, 66, 0.08);
}

.pricing-hero-copy::before {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(24, 163, 155, 0.14);
  color: #0c665f;
  font-size: 0.95rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 30px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 61, 117, 0.1), transparent 65%);
}

.pricing-card-essential {
  border-top: 4px solid rgba(24, 163, 155, 0.68);
}

.pricing-card-serenity {
  border-top: 4px solid rgba(21, 89, 176, 0.72);
  box-shadow: 0 24px 52px rgba(8, 32, 66, 0.14);
}

.pricing-card-head,
.pricing-card-foot {
  position: relative;
  z-index: 1;
}

.pricing-card-head {
  margin-bottom: 24px;
}

.pricing-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card-essential .pricing-plan-badge {
  background: rgba(24, 163, 155, 0.12);
  color: #0f6d66;
}

.pricing-card-serenity .pricing-plan-badge {
  background: rgba(21, 89, 176, 0.12);
  color: #0f4aa2;
}

.pricing-card h2 {
  margin: 0 0 6px;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
}

.pricing-card-subtitle {
  margin: 0 0 18px;
  color: #3d6584;
  font-weight: 700;
}

.pricing-card-objective {
  margin: 0;
  color: #4d6681;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 24px 0 18px;
}

.pricing-price {
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 0.95;
  color: #0b1f3b;
}

.pricing-price-note {
  color: #607890;
  font-weight: 600;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.pricing-note,
.pricing-target,
.pricing-highlight {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 16px;
}

.pricing-note {
  background: #f2faf9;
  border: 1px solid rgba(24, 163, 155, 0.18);
}

.pricing-target {
  background: #f7fafe;
  border: 1px solid rgba(15, 61, 117, 0.1);
  color: #31506f;
}

.pricing-highlight {
  background: linear-gradient(135deg, #0f3d75, #1654a2);
  border: 1px solid rgba(15, 61, 117, 0.28);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 61, 117, 0.18);
}

.pricing-note strong,
.pricing-target strong,
.pricing-highlight strong {
  display: block;
  margin-bottom: 4px;
}

.pricing-card-foot {
  margin-top: 22px;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.option-card {
  display: grid;
  gap: 14px;
}

.option-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.option-card .icon {
  margin-bottom: 0;
}

.option-card h3,
.premium-service-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.option-price,
.premium-service-price {
  font-family: "Sora", "Inter", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  color: #0f3d75;
  white-space: nowrap;
}

.option-card p,
.premium-service-card p {
  margin: 0;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-service-card {
  display: grid;
  gap: 12px;
}

.pricing-positioning {
  background:
    radial-gradient(800px 320px at 0% 50%, rgba(32, 199, 186, 0.14), transparent 60%),
    linear-gradient(135deg, #0c2445, #123d74);
  color: #ffffff;
}

.pricing-positioning .section-head,
.pricing-positioning .section-head p,
.pricing-positioning .positioning-points li {
  color: rgba(255, 255, 255, 0.92);
}

.positioning-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.positioning-statement {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.positioning-points {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(3, 16, 34, 0.2);
}

.pricing-final-cta .cta-box {
  background:
    radial-gradient(440px 200px at 10% 10%, rgba(32, 199, 186, 0.26), transparent 60%),
    linear-gradient(135deg, rgba(15, 61, 117, 0.98), rgba(18, 82, 153, 0.96));
}

@media (max-width: 1080px) {
  .pricing-grid,
  .pricing-options-grid,
  .premium-services-grid,
  .positioning-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 72px 0 40px;
  }

  .pricing-hero-copy {
    display: flex;
    border-radius: 18px;
    padding: 14px 16px;
  }

  .pricing-card {
    padding: 22px;
  }

  .pricing-price-row,
  .option-card-top,
  .table-like .row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pricing-price-row {
    gap: 6px;
  }

  .table-like .row {
    gap: 8px;
  }
}

.contact-form-alert-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
}

.contact-form-alert-success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.contact-form-note,
.contact-form-login {
  margin: 0;
  font-size: 0.94rem;
}

.contact-form-note {
  color: #48627e;
}

.contact-form-login a {
  font-weight: 700;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-info-list {
  display: grid;
  gap: 16px;
}

.contact-info-list p {
  margin: 0;
  padding: 14px 16px;
  background: #f8fbff;
  border: 1px solid #dbe7f2;
  border-radius: 16px;
}

.contact-info-list strong,
.contact-info-list a,
.contact-info-list span {
  display: block;
}

.contact-info-list strong {
  margin-bottom: 6px;
}

.contact-info-list a {
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-demo-card .btn {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .contact-form-split {
    grid-template-columns: 1fr;
  }

  .contact-hero-points {
    flex-direction: column;
    align-items: flex-start;
  }
}
