:root {
  --blue: #0046ba;
  --blue-dark: #082f78;
  --blue-soft: #eef4ff;
  --green: #008d1b;
  --green-dark: #07511d;
  --green-soft: #eaf7ed;
  --brown: #783900;
  --brown-soft: #f8efe6;
  --ink: #101820;
  --muted: #66717f;
  --line: #d9e2ef;
  --paper: #ffffff;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(8, 47, 120, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
}

.brand img,
.site-footer img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a,
.phone-link,
.nav-cta {
  text-decoration: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

.phone-link {
  color: var(--blue-dark);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 820px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.page-hero {
  padding: clamp(76px, 12vw, 132px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 78px);
  background: var(--blue-soft);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--blue-dark);
}

.page-hero .lead {
  color: #38475b;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 47, 120, 0.9), rgba(8, 47, 120, 0.58) 48%, rgba(8, 47, 120, 0.18));
}

.hero-content {
  width: min(760px, 100%);
  padding: 0 clamp(18px, 6vw, 72px) clamp(76px, 12vh, 124px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7e7ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: 4.7rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.price-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.price-card a {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
}

.button.danger {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}

.button.is-disabled,
.button:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.button.needs-route {
  color: #fff;
  background: #c24136;
  border-color: #c24136;
  box-shadow: 0 10px 24px rgba(194, 65, 54, 0.18);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.trust-strip span,
.price-card p,
.steps p,
.benefits p,
.blog-card p,
.news-card p,
.field-note,
.site-footer p,
.site-footer span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 10vw, 116px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1.6fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.steps,
.pricing-grid,
.benefits {
  display: grid;
  gap: 18px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.steps article,
.price-card,
.benefits article,
.summary-panel,
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(19, 32, 24, 0.07);
}

.steps article {
  padding: 26px;
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.pricing-section,
.booking-section {
  background: var(--soft);
}

.service-area {
  background: var(--soft);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-area-list span {
  padding: 10px 14px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(8, 47, 120, 0.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-intro {
  margin: 16px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-switch {
  background: var(--paper);
}

.photo-story {
  background: var(--blue-dark);
  color: var(--white);
}

.photo-story .eyebrow {
  color: #d8e8ff;
}

.photo-story .section-intro {
  color: #d8e0ec;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 16px;
}

.photo-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #071f50;
}

.photo-grid .photo-feature {
  grid-row: span 2;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(8, 47, 120, 0.82);
  border-radius: 8px;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.commercial-photos {
  background: var(--paper);
  color: var(--ink);
}

.commercial-photos .eyebrow {
  color: var(--brown);
}

.commercial-photos .section-intro {
  color: var(--muted);
}

.service-switch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.commercial-types .service-switch-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-tile {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(8, 47, 120, 0.07);
}

.service-tile.active {
  border-color: rgba(0, 70, 186, 0.38);
  box-shadow: inset 4px 0 0 var(--blue), 0 10px 30px rgba(8, 47, 120, 0.08);
}

.service-tile span {
  width: fit-content;
  padding: 5px 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-tile p {
  margin: 0;
  color: var(--muted);
}

.service-tile a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(0, 70, 186, 0.42);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.badge.economy {
  background: var(--blue);
}

.price-card strong {
  color: var(--blue);
  font-size: 2.2rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.image-band > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-band {
  background: var(--paper);
}

.benefits {
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.benefits article {
  padding: 20px;
}

.blog-section {
  background: var(--paper);
}

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

.blog-card,
.news-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(17, 25, 21, 0.07);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.blog-card span,
.news-source {
  width: fit-content;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card p,
.news-card p {
  margin: 0;
}

.blog-card a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.section-link {
  margin-top: 28px;
}

.news-section {
  background: var(--soft);
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
}

.news-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.news-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.news-card time {
  color: var(--muted);
  font-weight: 800;
}

.news-card a {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.commercial-hero .hero-media img {
  object-position: center 45%;
}

.commercial-intro {
  background: var(--paper);
}

.commercial-types {
  background: var(--blue-soft);
}

.commercial-summary p {
  margin-top: 0;
  color: var(--muted);
}

.commercial-summary ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding-left: 18px;
}

.commercial-form .contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 24px;
  align-items: start;
}

.compact-top {
  padding-top: clamp(44px, 7vw, 72px);
}

.article-index {
  background: var(--paper);
}

.article-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-toc a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(0, 70, 186, 0.16);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.article-list {
  display: grid;
  gap: 28px;
  background: var(--paper);
}

.longform-list {
  gap: 42px;
  background: var(--soft);
}

.longform-article {
  max-width: 1040px;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 47, 120, 0.08);
}

.article-header {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
  margin-bottom: 10px;
}

.article-header img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.longform-article h2 {
  font-size: 2.55rem;
}

.longform-article h3 {
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.longform-article p {
  max-width: 76ch;
  color: #354152;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 18px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-cta strong {
  color: var(--blue-dark);
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(17, 25, 21, 0.06);
}

.faq-grid h3 {
  color: var(--blue-dark);
}

.article-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-card:last-child {
  border-bottom: 0;
}

.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card a {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.form-panel,
.summary-panel {
  padding: clamp(20px, 3vw, 30px);
}

.form-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 900;
}

.form-progress-track {
  height: 8px;
  overflow: hidden;
  background: var(--blue-soft);
  border-radius: 999px;
}

.form-progress-track i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
  transition: width 0.25s ease;
}

fieldset {
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

fieldset:last-child {
  margin-bottom: 0;
}

legend {
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

.form-step legend {
  margin-bottom: 8px;
  font-size: 1.75rem;
  color: var(--blue-dark);
}

.step-kicker {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 750;
}

.form-step[hidden],
.saguenay-lookup[hidden] {
  display: none;
}

.form-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.form-step-actions .button {
  min-width: 150px;
}

.form-step-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cdd9d0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 70, 186, 0.18);
  border-color: var(--blue);
}

textarea {
  resize: vertical;
}

.plan-option {
  display: inline-flex;
  width: min(100%, 220px);
  align-items: center;
  gap: 10px;
  margin: 0 10px 10px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.plan-option:has(input:checked) {
  border-color: var(--blue);
  box-shadow: inset 4px 0 0 var(--blue);
}

.plan-option input {
  width: 18px;
  min-height: 18px;
}

.plan-option small {
  display: block;
  color: var(--muted);
}

.field-note {
  display: none;
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.field-note.is-visible {
  display: block;
}

.bins-grid,
.contact-grid,
.lookup-grid {
  display: grid;
  gap: 14px;
}

.bin-row {
  display: grid;
  grid-template-columns: 1fr 92px 1fr minmax(160px, 0.85fr);
  gap: 12px;
  align-items: end;
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.contact-grid .step-kicker,
.contact-grid legend {
  grid-column: 1 / -1;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 0;
}

.collection-lookup {
  padding: 20px;
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-help {
  margin: -4px 0 16px;
  color: var(--muted);
}

.saguenay-lookup {
  margin-top: 16px;
}

.lookup-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lookup-wide {
  grid-column: span 2;
}

.lookup-action {
  display: grid;
  align-content: end;
}

.lookup-action .button {
  width: 100%;
}

.collection-status {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 750;
}

.collection-status a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.collection-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.collection-results[hidden] {
  display: none;
}

.collection-results div {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.collection-results span,
.collection-results strong {
  display: block;
}

.collection-results span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.collection-results strong {
  margin-top: 4px;
  color: var(--blue-dark);
  line-height: 1.2;
}

.summary-panel {
  position: sticky;
  top: 94px;
}

.summary-panel h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.total dd,
.total dt {
  color: var(--blue);
  font-size: 1.22rem;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 10px;
  color: var(--brown);
  font-weight: 800;
}

.checkout-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.full {
  width: 100%;
  margin-top: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.site-footer .footer-admin-link {
  align-self: end;
  justify-self: end;
  color: #c9d9cf;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.72;
}

.site-footer p,
.site-footer span {
  color: #c9d9cf;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 14px;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .longform-article h2 {
    font-size: 2.2rem;
  }

  .form-step legend {
    font-size: 1.55rem;
  }

  .nav {
    grid-column: 1 / -1;
    justify-self: start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: start;
    flex-wrap: wrap;
  }

  .trust-strip,
  .steps,
  .pricing-grid,
  .benefits,
  .blog-grid,
  .photo-grid,
  .service-switch-grid,
  .commercial-types .service-switch-grid,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .image-band,
  .booking-form,
  .article-header,
  .faq-grid,
  .article-card {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-rows: auto;
  }

  .photo-grid .photo-feature {
    grid-row: auto;
  }

  .summary-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px 14px;
  }

  .brand img {
    height: 38px;
  }

  .nav {
    width: 100%;
    gap: 8px;
  }

  .nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    background: var(--soft);
    border-radius: 8px;
    font-size: 0.92rem;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-cta,
  .phone-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .phone-link {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 590px;
    align-items: end;
  }

  .hero-media img {
    object-position: center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(8, 47, 120, 0.72), rgba(8, 47, 120, 0.9));
  }

  .hero-content {
    padding-bottom: 54px;
  }

  .page-hero {
    padding: 54px 18px 42px;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .lead {
    font-size: 1.02rem;
  }

  .section {
    padding: 54px 18px;
  }

  .hero-actions,
  .form-step-actions,
  .article-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .price-card a,
  .form-step-actions .button {
    width: 100%;
  }

  .trust-strip,
  .steps,
  .pricing-grid,
  .benefits,
  .blog-grid,
  .photo-grid,
  .faq-grid,
  .service-switch-grid,
  .commercial-types .service-switch-grid,
  .site-footer,
  .contact-grid,
  .commercial-form .contact-grid,
  .lookup-grid,
  .collection-results {
    grid-template-columns: 1fr;
  }

  .bin-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .plan-option {
    width: 100%;
  }

  .lookup-wide {
    grid-column: auto;
  }

  .photo-grid figure {
    min-height: 235px;
  }

  .longform-article {
    padding: 22px 18px;
  }

  .article-header img,
  .blog-card img {
    aspect-ratio: 16 / 10;
  }

  .summary-panel dl div {
    align-items: start;
  }
}

.admin-body {
  background: #f4f8fb;
  color: #17313b;
}

.admin-shell {
  min-height: 100vh;
}

.admin-login {
  display: grid;
  gap: 18px;
  max-width: 460px;
  margin: 0 auto;
  padding: 10vh 20px 40px;
}

.admin-logo {
  width: 96px;
  border-radius: 8px;
}

.admin-login h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-login p {
  margin: 0;
  color: #526872;
}

.admin-login-form {
  display: grid;
  gap: 10px;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(13, 55, 74, 0.08);
}

.admin-app {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #dce8ef;
  margin: -22px -22px 0;
  padding: 16px 22px;
}

.admin-brand {
  margin-bottom: 6px;
}

.admin-brand img {
  width: 42px;
  height: 42px;
}

.admin-topbar p {
  margin: 0;
  color: #5d737c;
}

.admin-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-stats div {
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 16px;
}

.admin-stats span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b5d82;
}

.admin-stats small {
  color: #5d737c;
  font-weight: 700;
}

.admin-view-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  background: rgba(238, 245, 248, 0.92);
  border: 1px solid #dce8ef;
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.admin-view-nav button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #4f6570;
  font-weight: 900;
  cursor: pointer;
}

.admin-view-nav button.is-active {
  color: #fff;
  background: #0b5d82;
  border-color: #0b5d82;
}

.admin-global-status {
  min-height: 20px;
  margin: -4px 0 0;
}

.admin-view[hidden] {
  display: none !important;
}

.admin-controls {
  display: grid;
  grid-template-columns: 160px 170px minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 16px;
}

.admin-controls.route-planner {
  order: 30;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.owner-dashboard,
.notification-center,
.route-map-panel,
.planning-overview {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 16px;
}

.route-map-panel {
  order: 20;
}

.owner-dashboard-head,
.notification-head,
.route-map-head,
.planning-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.owner-dashboard-head div,
.notification-head div,
.route-map-head div,
.planning-overview-head div {
  display: grid;
  gap: 3px;
}

.owner-dashboard-head strong,
.notification-head strong,
.route-map-head strong,
.planning-overview-head strong {
  color: #0b5d82;
  font-size: 1.05rem;
}

.owner-dashboard-head span,
.notification-head span,
.route-map-head span,
.planning-overview-head span {
  color: #5d737c;
}

.owner-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.owner-dashboard-actions .button {
  min-height: 40px;
  padding: 10px 13px;
}

.owner-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.owner-dashboard-grid article {
  display: grid;
  gap: 5px;
  border: 1px solid #e3edf3;
  background: #f8fbfd;
  border-radius: 8px;
  padding: 12px;
}

.owner-dashboard-grid span,
.owner-dashboard-grid small {
  color: #5d737c;
  font-weight: 700;
}

.owner-dashboard-grid strong {
  color: #13202a;
  font-size: 1.5rem;
}

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

.sale-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.sale-card:hover {
  border-color: #0b5d82;
}

.sale-card-main,
.sale-card-side {
  display: grid;
  gap: 5px;
}

.sale-card-main small,
.sale-card-side small {
  color: #607680;
}

.sale-card-side {
  justify-items: end;
  flex: 0 0 auto;
}

.inline-route-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0b5d82;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

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

.team-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 14px;
  margin-top: 14px;
}

.team-list {
  display: grid;
  gap: 8px;
  align-content: start;
}

.team-member-card {
  display: grid;
  gap: 4px;
  text-align: left;
  border: 1px solid #e3edf3;
  border-radius: 8px;
  background: #f8fbfd;
  padding: 12px;
  cursor: pointer;
}

.team-member-card:hover {
  border-color: #0b5d82;
}

.team-member-card .job-pill {
  justify-self: start;
}

.team-member-card strong {
  color: #13202a;
}

.team-member-card small {
  color: #5d737c;
}

.team-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.team-form div {
  display: grid;
  gap: 7px;
}

.team-form label {
  font-weight: 800;
  font-size: 0.86rem;
}

.team-form .checkbox-line,
.team-actions,
#teamStatus {
  grid-column: 1 / -1;
}

.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notification-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #e3edf3;
  border-radius: 8px;
  padding: 12px;
  background: #f8fbfd;
}

.notification-item div:first-child {
  display: grid;
  gap: 3px;
}

.notification-item span {
  color: #0b5d82;
  font-weight: 900;
}

.notification-item strong {
  color: #13202a;
}

.notification-item small {
  color: #5d737c;
}

.notification-actions,
.route-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.notification-actions .button {
  min-height: 38px;
  padding: 9px 12px;
}

.route-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(260px, 0.8fr);
  gap: 12px;
}

.route-map-layout iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: #eef5f8;
}

.route-map-days {
  display: grid;
  gap: 8px;
  align-content: start;
}

.route-map-days button {
  display: grid;
  gap: 4px;
  text-align: left;
  border: 1px solid #e3edf3;
  border-radius: 8px;
  background: #f8fbfd;
  padding: 10px;
  cursor: pointer;
}

.route-map-days button.is-active {
  border-color: #0b5d82;
  box-shadow: 0 0 0 2px rgba(11, 93, 130, 0.12);
}

.route-map-days strong {
  color: #13202a;
}

.route-map-days span,
.route-map-days small {
  color: #5d737c;
}

.planner-criteria {
  order: 31;
  margin-top: -2px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.criteria-grid > div {
  display: grid;
  gap: 8px;
}

.criteria-grid span {
  color: #0b5d82;
  font-weight: 900;
}

.criteria-grid p {
  margin: 0;
  color: #5d737c;
  line-height: 1.5;
}

.planner-criteria > .button {
  margin-top: 14px;
}

.weekday-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.weekday-checks label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  color: #13202a;
  font-weight: 800;
  background: #f8fbfd;
}

.ai-dispatch-panel {
  order: 32;
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid #c7dcff;
  border-left: 5px solid #1f4fc3;
  border-radius: 8px;
  padding: 16px;
}

.ai-dispatch-panel h2,
.ai-dispatch-panel p {
  margin: 0;
}

.ai-dispatch-panel h2 {
  color: #0b5d82;
  font-size: 1.1rem;
}

.ai-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #edf4ff;
  color: #1f4fc3;
  font-weight: 900;
}

.ai-dispatch-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ai-dispatch-panel ul {
  margin: 0;
  padding-left: 20px;
}

.simulation-panel {
  order: 33;
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 16px;
}

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

.simulation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.simulation-head h2,
.simulation-head p {
  margin: 0;
}

.simulation-head h2 {
  color: #0b5d82;
  font-size: 1.15rem;
}

.simulation-days {
  display: grid;
  gap: 10px;
}

.simulation-day {
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: #f8fbfd;
}

.simulation-day header {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: start;
}

.simulation-day strong {
  color: #13202a;
}

.simulation-day small,
.simulation-day span {
  color: #5d737c;
}

.simulation-clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
}

.simulation-client {
  border: 1px solid #e3edf3;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.simulation-client label {
  display: grid;
  gap: 5px;
  margin-top: 5px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #5d737c;
}

.simulation-client select {
  min-height: 38px;
  border: 1px solid #cddde5;
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
}

.planning-unplanned {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #f0c9c9;
  border-radius: 8px;
  background: #fff7f7;
}

.planning-unplanned p {
  margin: 0;
  color: #7b3f3f;
}

.planning-overview {
  order: 25;
}

.planning-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
}

.planning-overview-grid article {
  display: grid;
  gap: 8px;
  align-content: start;
}

.planning-overview-grid h3 {
  margin: 0 0 4px;
  color: #10323e;
  font-size: 0.98rem;
}

.planning-overview-grid button {
  text-align: left;
  border: 1px solid #e3edf3;
  border-radius: 8px;
  background: #f8fbfd;
  padding: 10px;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.planning-overview-grid button:hover {
  border-color: #0b5d82;
}

.planning-overview-grid strong {
  color: #13202a;
}

.planning-overview-grid span {
  color: #5d737c;
  font-size: 0.88rem;
}

.admin-manual {
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 16px;
}

.admin-manual summary {
  cursor: pointer;
  font-weight: 900;
  color: #0b5d82;
}

/* Form plat de l'admin uniquement. Le form public porte aussi .booking-form
   et doit garder sa mise en page 2 colonnes (.form-panel + .summary-panel). */
.commercial-form:not(.booking-form) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.commercial-form:not(.booking-form) div {
  display: grid;
  gap: 7px;
}

.commercial-form:not(.booking-form) .wide {
  grid-column: span 2;
}

.admin-controls div,
.job-form div,
.complete-form,
.refund-form {
  display: grid;
  gap: 7px;
}

.admin-controls label,
.job-form label,
.complete-form label,
.refund-form label,
.admin-login-form label {
  font-weight: 800;
  font-size: 0.86rem;
}

.maps-link {
  justify-self: start;
  color: #0b5d82;
  font-weight: 800;
}

.route-summary {
  order: 10;
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 16px;
}

.route-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.route-summary-head strong {
  color: #0b5d82;
}

.route-summary-head span,
.route-summary p {
  color: #5d737c;
  margin: 0;
}

.route-day-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

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

.route-day-accordion {
  border: 1px solid #e1ebf1;
  border-radius: 8px;
  background: #f8fbfd;
  overflow: clip;
}

.route-day-accordion.is-selected {
  border-color: #0b5d82;
  box-shadow: 0 0 0 2px rgba(11, 93, 130, 0.12);
}

.route-day-accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.route-day-accordion summary::-webkit-details-marker {
  display: none;
}

.route-day-summary {
  display: grid;
  gap: 4px;
}

.route-day-summary strong {
  color: #10323e;
}

.route-day-summary small,
.route-day-open-label {
  color: #5d737c;
}

.route-day-open-label {
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 0.84rem;
}

.route-day-accordion[open] .route-day-open-label {
  color: #0b5d82;
}

.route-day-accordion .route-client-preview {
  padding: 0 14px 14px;
}

.route-day-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 14px 14px;
}

.route-day-card {
  display: grid;
  gap: 7px;
  border: 1px solid #e1ebf1;
  border-radius: 8px;
  padding: 12px;
  background: #f8fbfd;
  cursor: pointer;
  text-align: left;
}

.route-day-card.is-selected {
  border-color: #0b5d82;
  box-shadow: 0 0 0 2px rgba(11, 93, 130, 0.12);
}

.route-day-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.route-day-card span,
.route-day-card small {
  color: #5d737c;
}

.route-day-card a {
  color: #0b5d82;
  font-weight: 800;
}

.route-lock-badge {
  color: #7b4a00 !important;
  background: #fff2d9;
  border: 1px solid #f0d19a;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.76rem;
  font-weight: 900;
}

.route-dialog {
  width: min(920px, calc(100vw - 28px));
  max-height: min(820px, calc(100vh - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 24px 70px rgba(8, 31, 41, 0.28);
}

.route-dialog::backdrop {
  background: rgba(9, 30, 40, 0.46);
}

.route-dialog-shell {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
}

.route-dialog-head,
.route-dialog-actions,
.route-dialog-lock {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.route-dialog-head h2,
.route-dialog-head p {
  margin: 0;
}

.route-dialog-head h2 {
  color: #0b5d82;
}

.route-dialog-head span,
.route-dialog-head p,
.route-dialog-lock span {
  color: #5d737c;
}

.route-dialog-lock {
  align-items: center;
  background: #fff8e8;
  border: 1px solid #f0d19a;
  border-radius: 8px;
  padding: 10px;
}

.route-dialog-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.route-dialog-clients {
  display: grid;
  gap: 8px;
  overflow: auto;
  max-height: min(520px, calc(100vh - 300px));
  padding-right: 4px;
}

.route-dialog-client {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 10px;
  text-align: left;
  border: 1px solid #e3edf3;
  border-radius: 8px;
  background: #f8fbfd;
  padding: 11px;
  cursor: pointer;
}

.route-dialog-client:hover {
  border-color: #0b5d82;
}

.route-dialog-client span {
  display: grid;
  gap: 3px;
}

.route-dialog-client strong {
  color: #13202a;
}

.route-dialog-client small {
  color: #5d737c;
}

.route-client-preview {
  display: grid !important;
  gap: 8px !important;
}

.route-client-preview button {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 9px;
  border: 1px solid #e1ebf1;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.route-client-preview button:hover {
  border-color: #0b5d82;
}

.route-client-preview strong {
  color: #10323e;
}

.route-client-preview span {
  color: #607680;
  font-size: 0.82rem;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.jobs-list-head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.jobs-list-head h2 {
  margin: 0;
  color: #10323e;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.jobs-list-head p {
  margin: 0;
  color: #5d737c;
}

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

.job-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 14px;
  color: inherit;
  cursor: pointer;
}

.job-row:hover {
  border-color: #0b5d82;
}

.job-row-main,
.job-row-side {
  display: grid;
  gap: 5px;
}

.job-row-main small,
.job-row-side small {
  color: #607680;
}

.job-row-main .priority-note {
  color: #9a321d;
  font-weight: 800;
}

.job-row-side {
  justify-items: end;
  flex: 0 0 auto;
}

.job-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 5px 10px;
  font-style: normal;
  font-weight: 800;
  font-size: 0.78rem;
  background: #e6f0f5;
  color: #0b5d82;
}

.status-fait {
  background: #dff3e8;
  color: #1f6c3b;
}

.status-probleme,
.status-annule {
  background: #fae5df;
  color: #9a321d;
}

.status-en_route {
  background: #fff1c7;
  color: #7b5610;
}

.status-a_facturer {
  background: #e8e7ff;
  color: #3730a3;
}

.job-detail {
  position: sticky;
  top: 14px;
  display: grid;
  gap: 18px;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(13, 55, 74, 0.08);
}

.job-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.job-detail-header h2 {
  margin: 10px 0 4px;
  font-size: 1.45rem;
}

.job-detail-header p {
  margin: 0;
  color: #5d737c;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.job-form .full,
.job-meta .full {
  grid-column: 1 / -1;
}

.job-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #e6eef3;
}

.client-summary-card,
.client-info-card,
.visit-timeline {
  display: grid;
  gap: 10px;
}

.client-summary-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-summary-card > div,
.client-info-card > div {
  display: grid;
  gap: 5px;
  border: 1px solid #e3edf3;
  border-radius: 8px;
  background: #f8fbfd;
  padding: 12px;
}

.client-summary-card > div {
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 55, 74, 0.06);
}

.client-summary-card .needs-attention {
  border-color: #f2b8aa;
  background: #fff8f6;
}

.job-meta span {
  color: #5d737c;
  font-size: 0.82rem;
  font-weight: 800;
}

.job-meta strong {
  color: #13202a;
  line-height: 1.25;
}

.job-meta small {
  color: #607680;
}

.client-summary-card strong {
  color: #0b5d82;
  font-size: 1.08rem;
}

.visit-timeline {
  border: 1px solid #e3edf3;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.visit-timeline.has-missing-visits {
  border-color: #f2b8aa;
}

.visit-timeline > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 8px;
}

.visit-item {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 92px;
  padding: 10px;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  background: #f8fbfd;
  color: inherit;
  text-align: left;
}

button.visit-item {
  cursor: pointer;
}

button.visit-item:hover {
  border-color: #0b5d82;
}

.visit-item span {
  color: #0b5d82;
}

.visit-item strong {
  color: #10323e;
}

.visit-item small {
  color: #607680;
}

.visit-item.is-missing {
  border-style: dashed;
  background: #fff;
}

.complete-form {
  padding-top: 14px;
  border-top: 1px solid #e6eef3;
}

.complete-form h3 {
  margin: 0;
}

.refund-form {
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f3c7c3;
}

.refund-form h3,
.refund-form p {
  margin: 0;
}

.refund-form p {
  color: #7a4a45;
  font-size: 0.92rem;
}

.checkbox-line {
  display: flex !important;
  gap: 9px;
  align-items: center;
}

.route-body {
  margin: 0;
  min-height: 100vh;
  background: #eef4f7;
  color: #10323e;
  font-family: "Inter", system-ui, sans-serif;
}

.route-app {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 12px;
}

.route-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  background: rgba(238, 244, 247, 0.94);
  backdrop-filter: blur(12px);
}

.route-brand img {
  width: 84px;
  border-radius: 8px;
}

.route-topbar div {
  display: grid;
  gap: 2px;
}

.route-topbar span {
  color: #607680;
  font-size: 0.82rem;
  font-weight: 800;
}

.route-topbar strong {
  font-size: 1.1rem;
}

.route-empty,
.route-stop-card,
.route-complete-card {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(13, 55, 74, 0.08);
}

.route-workflow {
  display: grid;
  gap: 14px;
}

.route-stepper {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 8px;
}

.route-stepper button {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid #cddce4;
  border-radius: 999px;
  background: #fff;
  color: #0b5d82;
  font-weight: 900;
}

.route-stepper button.is-current {
  background: #0046ba;
  color: #fff;
}

.route-stepper button.is-done {
  border-color: #1f6c3b;
  background: #dff3e8;
  color: #1f6c3b;
}

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

.route-stop-head > strong {
  color: #0b5d82;
  font-size: 1.25rem;
}

.route-stop-card h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.route-stop-card p {
  margin: 0;
  color: #4f6570;
  font-size: 1.02rem;
  font-weight: 700;
}

.route-map-wrap {
  overflow: hidden;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: #dce8ef;
}

.route-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.route-stop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.route-stop-grid div {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid #e1ebf1;
  border-radius: 8px;
  background: #f8fbfd;
}

.route-stop-grid span,
.route-complete-card label {
  color: #607680;
  font-size: 0.82rem;
  font-weight: 900;
}

.route-stop-grid strong {
  font-size: 0.95rem;
}

.route-stop-grid a {
  color: #0b5d82;
}

.route-actions,
.route-bottom-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.route-complete-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.route-complete-card input,
.route-complete-card textarea {
  width: 100%;
}

.route-bottom-nav {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 700px) {
  .route-app {
    padding: 18px;
  }

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

  .route-actions {
    grid-template-columns: 1fr 1fr;
  }
}

.empty-state {
  background: #fff;
  border: 1px solid #dce8ef;
  border-radius: 8px;
  padding: 18px;
  color: #607680;
}

.form-status.is-error {
  color: #9a321d;
}

@media (max-width: 980px) {
  .admin-stats,
  .owner-dashboard-grid,
  .client-summary-card,
  .admin-controls,
  .admin-controls.route-planner,
  .criteria-grid,
  .commercial-form,
  .jobs-layout,
  .team-layout,
  .team-form,
  .route-map-layout,
  .planning-overview-grid,
  .route-dialog-client {
    grid-template-columns: 1fr;
  }

  .owner-dashboard-head,
  .notification-head,
  .route-map-head,
  .planning-overview-head,
  .simulation-head,
  .notification-item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .notification-actions,
  .route-map-actions,
  .simulation-actions,
  .route-dialog-actions {
    justify-content: stretch;
  }

  .notification-actions .button,
  .route-map-actions .button,
  .simulation-actions .button,
  .route-dialog-actions .button,
  .route-dialog-actions a {
    flex: 1 1 160px;
  }

  .commercial-form .wide {
    grid-column: auto;
  }

  .route-summary-head,
  .route-dialog-head,
  .route-dialog-lock,
  .sale-card,
  .route-day-card div {
    align-items: start;
    flex-direction: column;
  }

  .sale-card-side,
  .job-row-side {
    justify-items: start;
  }

  .job-detail {
    position: static;
  }
}

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

  .admin-topbar {
    margin: -14px -14px 0;
    padding: 14px;
    align-items: start;
    flex-direction: column;
  }

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

  .job-row,
  .job-detail-header {
    align-items: start;
    flex-direction: column;
  }

  .job-row-side {
    justify-items: start;
  }

  .job-form,
  .job-meta {
    grid-template-columns: 1fr;
  }
}

/* Bandeau d'avis (preuve sociale) */
.hero-rating {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.hero-rating .stars {
  color: #f5b301;
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.hero-rating a {
  color: inherit;
  text-decoration: none;
}

.hero-rating a:hover {
  text-decoration: underline;
}

/* Consentement (Loi 25) */
.consent-field .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
  cursor: pointer;
}

.consent-field input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* FAQ (pages-villes) */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list h3 {
  margin: 22px 0 6px;
  font-size: 1.05rem;
}

.faq-list p {
  margin: 0;
  color: #44515c;
}

/* ===================== Admin simplifié (2 onglets) ===================== */
.admin-topbar-2 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-topbar-2 .admin-search {
  flex: 1 1 280px;
  min-width: 220px;
}

.admin-topbar-2 .admin-search input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d3dbe3;
  border-radius: 10px;
  font-size: 0.95rem;
}

.admin-view-nav-2 {
  display: flex;
  gap: 8px;
}

/* Fiche client en tiroir flottant */
.job-detail-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(460px, 94vw);
  overflow-y: auto;
  background: #ffffff;
  box-shadow: -16px 0 40px rgba(13, 30, 45, 0.18);
  z-index: 60;
  padding: 22px 22px 60px;
  border-left: 1px solid #e2e8ef;
}

.job-detail-drawer[hidden] {
  display: none;
}

.job-advanced {
  border-top: 1px solid #eef2f6;
  margin-top: 14px;
  padding-top: 6px;
}

.job-advanced > summary {
  cursor: pointer;
  font-weight: 600;
  color: #0046ba;
  padding: 8px 0;
  list-style: none;
}

.job-advanced > summary::-webkit-details-marker { display: none; }
.job-advanced > summary::before { content: "▸ "; }
.job-advanced[open] > summary::before { content: "▾ "; }

.job-advanced-grid {
  display: grid;
  gap: 12px;
}

/* Panneau Réglages */
/* Réglages = page plein écran (au lieu d'un panneau en bas) */
.admin-settings {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow-y: auto;
  background: #f7f9fc;
  padding: 28px max(24px, 5vw) 64px;
}

.admin-settings[hidden] { display: none; }

.admin-settings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 18px;
  max-width: 920px;
}

.admin-settings > details {
  max-width: 920px;
  margin: 0 auto 16px;
}

.admin-settings .criteria-note {
  font-size: 0.85rem;
  color: #5a6672;
}

/* Section « à valider » (clients placés en forçant) */
.planning-forced {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #f0c36d;
  background: #fff8e8;
  border-radius: 12px;
}

.planning-forced .planning-forced-note {
  font-size: 0.85rem;
  color: #7a5b12;
  margin: 4px 0 10px;
}

.planning-forced p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.commercial-panel > summary {
  cursor: pointer;
  font-weight: 600;
  color: #0046ba;
  padding: 10px 0;
}

@media (max-width: 640px) {
  .job-detail-drawer {
    width: 100vw;
  }
  .admin-topbar-2 .admin-search {
    order: 3;
    flex-basis: 100%;
  }
}

/* Page de confirmation (merci.html) — calendrier de collecte */
.confirm-collectes {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 520px;
}
.confirm-collectes li {
  background: var(--soft, #f2f5fb);
  border-radius: 10px;
  padding: 10px 14px;
  text-transform: capitalize;
}
.confirm-warning {
  margin-top: 18px;
  padding: 12px 16px;
  border-left: 4px solid #d4761a;
  background: #fff6ec;
  border-radius: 8px;
  max-width: 560px;
}
.confirm-loading {
  opacity: 0.7;
}

/* Pages légales (confidentialité / conditions) */
.legal-page {
  background: var(--soft, #f2f5fb);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content section {
  margin-bottom: 26px;
}
.legal-content h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.legal-content h3 {
  margin: 18px 0 6px;
  font-size: 1.05rem;
}
.legal-content p,
.legal-content li {
  line-height: 1.65;
}
.legal-content ul {
  padding-left: 20px;
  margin: 8px 0;
}
.legal-content a {
  color: #0046ba;
}
