:root {
  --navy: #193862;
  --blue: #2758a5;
  --blue-dark: #1e4680;
  --sky: #67a6e4;
  --sky-light: #eaf3fc;
  --cream: #fbf6ee;
  --cream-deep: #f5ecdd;
  --warm: #67a6e4;
  --warm-dark: #2758a5;
  --gold: #c9a24a;
  --gold-light: #e2c581;
  --gold-dark: #a3822f;
  --near-black: #3a5578;
  --near-black-2: #4a6690;
  --ink: #2a2f3a;
  --ink-soft: #5a6270;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px rgba(25, 56, 98, 0.10);
  --shadow-card: 0 8px 22px rgba(25, 56, 98, 0.08);
  --font-serif: "Fraunces", "Georgia", "Iowan Old Style", serif;
  --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--warm-dark); }

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--warm);
  color: var(--navy);
}
.btn-primary:hover { background: var(--warm-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-ghost {
  background: var(--sky-light);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--sky); color: var(--white); }

.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-phone svg { flex-shrink: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(25, 56, 98, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}

.logo-img { height: 52px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-list a:hover { color: var(--warm); }
.nav-list a.active { color: var(--warm-dark); position: relative; }
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero editorial */
.hero-editorial {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(155deg, var(--near-black) 0%, var(--near-black-2) 55%, var(--near-black) 100%);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 18%, rgba(201, 162, 74, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 90%, rgba(103, 166, 228, 0.14) 0%, transparent 65%);
}
.hero-media-mark {
  position: absolute;
  top: 50%;
  left: 78%;
  width: 780px;
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  filter: brightness(0) invert(1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(14, 26, 43, 0.92) 0%, rgba(14, 26, 43, 0.55) 45%, rgba(14, 26, 43, 0.35) 100%);
}

.hero-editorial-inner {
  position: relative;
  z-index: 2;
  padding: 120px 24px 90px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  color: var(--warm-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
.eyebrow.center { display: block; text-align: center; }
.eyebrow-gold { color: var(--gold-light); }

.hero-editorial-title {
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 0.4em;
}

.hero-editorial-lead {
  font-size: 1.1rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-editorial-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0 0;
}

.hero-editorial-badges {
  position: relative;
  z-index: 2;
  padding: 22px 24px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-editorial-badges li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.hero-editorial-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.btn-gold {
  background: #b39a63;
  color: #22324a;
}
.btn-gold:hover { background: #c4ae7c; color: #22324a; }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); border-color: var(--white); }

/* Sections */
.section { padding: 130px 0; }
.section-alt { background: var(--cream-deep); }

.section-title {
  font-size: 2.2rem;
  max-width: 640px;
}
.section-title.center { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 22px;
}
.section-title.center::after { margin-left: auto; margin-right: auto; }

.section-lead {
  max-width: 620px;
  font-size: 1.05rem;
  margin-top: 28px;
}
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Editorial services */
.editorial-services { padding-bottom: 40px; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 24px;
  border-top: 1px solid rgba(25, 56, 98, 0.1);
}
.service-row:last-child { border-bottom: 1px solid rgba(25, 56, 98, 0.1); }

.service-row-reverse .service-media { order: 2; }
.service-row-reverse .service-content { order: 1; }

.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 40px;
}
.service-media-1 { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.service-media-2 { background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%); }
.service-media-3 { background: linear-gradient(135deg, var(--near-black-2) 0%, var(--navy) 100%); }

.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 26, 43, 0.55) 0%, transparent 45%);
}

.service-num {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.service-content { margin: 0 40px; }
.service-content h3 { font-size: 1.65rem; margin-bottom: 0.5em; }
.service-content p { font-size: 1.02rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-top: 8px;
}
.service-link:hover { color: var(--navy); }
.service-link span { transition: transform 0.15s ease; }
.service-link:hover span { transform: translateX(3px); }

/* Avance immediate */
.advance-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue-dark) 100%);
  color: var(--white);
}
.advance-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.advance-icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
}
.advance-section h2 { color: var(--white); margin-bottom: 10px; }
.advance-section p { color: rgba(255, 255, 255, 0.88); margin-bottom: 0; max-width: 780px; }
.advance-section strong { color: var(--warm); }

/* Pricing */
.pricing-block { margin-top: 44px; }
.pricing-heading {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 520px;
}

.pricing-table th, .pricing-table td {
  padding: 18px 22px;
  text-align: left;
}

.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.pricing-table thead th.highlight-col {
  background: var(--warm);
  color: var(--navy);
}

.pricing-table tbody tr:nth-child(even) { background: var(--sky-light); }

.pricing-table td.highlight-col {
  background: #dcebfa;
  color: var(--warm-dark);
  font-size: 1.05rem;
}

.td-title { display: block; font-weight: 600; color: var(--navy); }
.td-sub { display: block; font-size: 0.85rem; color: var(--ink-soft); }

.pricing-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Zone */
.zone-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.zone-text address { font-style: normal; color: var(--navy); font-weight: 600; margin-top: 10px; }
.zone-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

/* Zone address checker */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.zone-checker { max-width: 680px; margin: 0 auto; text-align: center; }
.zone-checker-form { display: flex; gap: 12px; align-items: flex-start; margin-top: 30px; text-align: left; }
.zone-checker-field { position: relative; flex: 1; }
.zone-checker-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e1d9c9;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
.zone-checker-field input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(103, 166, 228, 0.2); }
.zone-checker-form .btn { padding: 14px 26px; }
.zone-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 10;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e1d9c9;
}
.zone-suggestions li button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.zone-suggestions li button:hover,
.zone-suggestions li button:focus { background: var(--sky-light); outline: none; }
.zone-result { margin-top: 26px; min-height: 1px; }
.zone-result-box {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: left;
  background: var(--white);
  border: 1.5px solid #e1d9c9;
  box-shadow: var(--shadow-card);
}
.zone-result-box.is-yes { border-color: #2f7d4f; }
.zone-result-box.is-no { border-color: var(--gold); }
.zone-result-title { margin: 0 0 6px; font-family: var(--font-serif); font-size: 1.2rem; color: var(--navy); }
.zone-result-box.is-yes .zone-result-title { color: #2f7d4f; }
.zone-result-text { margin: 0; }
.zone-result-actions { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Features */
.features-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.02rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; margin-bottom: 0; }

/* Avis */
.avis-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.avis-text { max-width: 560px; }
.avis-text p { margin-bottom: 0; }

.google-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.google-rating-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.grb-stars {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 3px;
  line-height: 1;
}
.grb-stars-bg { color: rgba(25, 56, 98, 0.15); }
.grb-stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
}

.grb-score {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 6px;
}
.grb-outof { font-size: 1.1rem; color: var(--ink-soft); }

.grb-count { font-size: 0.85rem; color: var(--ink-soft); }

.grb-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-dark);
  margin-top: 6px;
}
.google-rating-badge:hover .grb-link { color: var(--navy); }

.testimonials-carousel { margin: 50px auto 0; max-width: 760px; }
.testimonials-track {
  position: relative;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track:focus-visible { outline: 2px solid var(--sky); outline-offset: 4px; border-radius: var(--radius-lg); }
.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 8px 6px 26px;
  display: flex;
}
.testimonial-slide .testimonial-card { width: 100%; display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 40px 44px; }
.testimonial-slide .testimonial-quote { font-size: 1.3rem; }
.testimonials-controls { display: flex; align-items: center; justify-content: center; gap: 18px; }
.tc-arrow {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--sky-light);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.tc-arrow:hover { background: var(--sky); color: var(--white); }
.tc-dots { display: flex; gap: 10px; }
.tc-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 56, 98, 0.22);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tc-dot[aria-current="true"] { background: var(--gold); transform: scale(1.25); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 18px;
}
.testimonial-author {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--warm-dark);
}
.testimonial-author span { font-weight: 400; color: var(--ink-soft); }

/* Devis */
.devis-section { background: var(--cream); }
.devis-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.devis-contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.devis-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
}
.devis-contact-list svg { color: var(--warm); flex-shrink: 0; }

.devis-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

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

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e1d9c9;
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(103, 166, 228, 0.2);
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-note.success { color: #2f7d4f; }
.form-note.error { color: #c0392b; }
.form-note .form-fallback { display: block; margin-top: 8px; color: var(--ink-soft); }
.form-note .form-fallback a { color: var(--blue); text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.85);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 80px 24px 48px;
}
.footer-logo-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.footer-logo { width: 42px; height: auto; margin: 0; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-family: var(--font-serif); font-size: 1.05rem; }
.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col p { color: rgba(255, 255, 255, 0.7); margin-bottom: 8px; font-size: 0.92rem; }
.footer-col a { color: rgba(255, 255, 255, 0.85); }
.footer-col a:hover { color: var(--gold-light); }
.footer-note { font-size: 0.8rem; color: rgba(255, 255, 255, 0.45); margin-top: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); }
.footer-legal-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-legal-links a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); }
.footer-legal-links a:hover { color: var(--gold-light); }

/* Page header (subpages) */
.page-header {
  position: relative;
  padding: 110px 0 70px;
  background: var(--near-black);
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 85% 20%, rgba(201, 162, 74, 0.16) 0%, transparent 60%);
}
.page-header .container { position: relative; }
.page-header-title { font-size: 2.6rem; color: var(--white); max-width: 640px; margin-bottom: 0; }
.page-header-lead { font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); max-width: 560px; margin-top: 16px; margin-bottom: 0; }

/* Legal pages */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.2em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.6em; }
.legal-content p, .legal-content li { color: var(--ink-soft); line-height: 1.7; }
.legal-content ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal-content li { margin-bottom: 0.4em; }
.legal-content a { color: var(--warm-dark); text-decoration: underline; }
.legal-content strong { color: var(--navy); }
.legal-updated { font-size: 0.85rem; color: var(--ink-soft); margin-top: 3em; padding-top: 1.5em; border-top: 1px solid rgba(25,56,98,0.1); }

/* Homepage prestations preview */
.preview-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.preview-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.preview-card-icon.icon-navy { background: var(--navy); }
.preview-card-icon.icon-mid { background: var(--blue); }
.preview-card-icon.icon-light { background: var(--sky); }
.preview-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.preview-card p { font-size: 0.94rem; margin-bottom: 14px; }
.preview-card .service-link { font-size: 0.9rem; }

.preview-footer { text-align: center; margin-top: 44px; }

/* Closing CTA band */
.cta-band {
  background: linear-gradient(120deg, #243751 0%, #304667 100%);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .section-title::after { margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

.service-row { scroll-margin-top: 90px; }

/* Responsive */
@media (max-width: 960px) {
  .hero-editorial-title { font-size: 2.6rem; }
  .service-row { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
  .service-row-reverse .service-media, .service-row-reverse .service-content { order: initial; }
  .service-media, .service-content { margin: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .zone-inner { grid-template-columns: 1fr; }
  .zone-checker-form { flex-direction: column; align-items: stretch; }
  .zone-checker-form .btn { width: 100%; }
  .devis-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .header-inner { padding: 16px 28px; position: relative; }
  .logo-img { height: 46px; }
  .nav-toggle { display: flex; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); box-shadow: var(--shadow-card); display: none; z-index: 60; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 0; padding: 10px 24px 20px; }
  .nav-list li { border-bottom: 1px solid rgba(25,56,98,0.08); }
  .nav-list a { display: block; padding: 14px 0; }
  .header-actions .btn-phone { display: none; }
  .header-actions { gap: 12px; }
  .header-actions .btn-primary { padding: 10px 16px; font-size: 0.85rem; }
  .hero-editorial { min-height: 82vh; }
  .hero-editorial-inner { padding-top: 56px; text-align: center; }
  .hero-editorial-title { font-size: 2rem; margin-left: auto; margin-right: auto; }
  .hero-editorial-lead { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-editorial-cta { justify-content: center; }
  .hero-editorial-badges { justify-content: center; text-align: center; }
  .hero-media-mark { width: 480px; left: 60%; }
  .service-num { font-size: 3rem; }
  .avis-inner { flex-direction: column; text-align: center; }
  .avis-text { max-width: 100%; }
  .testimonial-slide .testimonial-card { padding: 30px 24px; }
  .testimonial-slide .testimonial-quote { font-size: 1.1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .devis-form { padding: 26px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal-links { justify-content: center; flex-wrap: nowrap; gap: 0; }
  .footer-legal-links li { display: flex; align-items: center; }
  .footer-legal-links li:not(:last-child)::after { content: "·"; margin: 0 8px; color: rgba(255, 255, 255, 0.25); }
  .footer-legal-links a { font-size: 0.72rem; color: rgba(255, 255, 255, 0.3); white-space: nowrap; }
  .section { padding: 60px 0; }
  .page-header { padding: 90px 0 50px; text-align: center; }
  .page-header-title { font-size: 2rem; margin-left: auto; margin-right: auto; }
  .page-header-lead { margin-left: auto; margin-right: auto; }
  .preview-grid { grid-template-columns: 1fr; }
  .table-wrap { overflow: hidden; border-radius: 18px; }
  .pricing-table { min-width: 0; width: 100%; table-layout: fixed; }
  .pricing-table th, .pricing-table td { padding: 14px 10px; font-size: 0.85rem; line-height: 1.35; overflow-wrap: break-word; }
  .pricing-table th:first-child, .pricing-table td:first-child { width: 40%; padding-left: 16px; }
  .pricing-table th:nth-child(2), .pricing-table td:nth-child(2) { width: 29%; }
  .pricing-table th:nth-child(3), .pricing-table td:nth-child(3) { width: 31%; padding-right: 14px; }
  .pricing-table td:nth-child(2), .pricing-table td:nth-child(3) { white-space: nowrap; }
  .pricing-table thead th { font-size: 0.75rem; letter-spacing: 0; white-space: normal; }
  .pricing-table td.highlight-col { font-size: 0.85rem; }
  .pricing-table td.highlight-col strong { font-weight: 700; }
  .td-title { font-size: 0.85rem; }
  .td-sub { font-size: 0.75rem; }
}

