/* SLV Contrôle — Corporate Steel
   Shared stylesheet for the site (Accueil, Prestations, À propos, FAQ)
   ------------------------------------------------------------------ */

:root {
  --navy: #0a2540;
  --navy-deep: #06182c;
  --ink: #1a2230;
  --steel: #5d6470;
  --steel-light: #8a93a1;
  --rule: #d9dde3;
  --rule-strong: #c1c8d2;
  --bg: #f5f7fa;
  --bg-soft: #eef1f5;
  --green: #1ea36b;
  --green-ink: #0e6a45;
  --green-soft: #e7f5ee;
  --white: #ffffff;

  --font-sans: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, monospace;

  --shadow-card: 0 1px 0 rgba(10, 37, 64, 0.04);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(40px, 5.2vw, 64px); line-height: 1.05; }
h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; }
h3 { font-size: 22px; line-height: 1.25; }
p  { margin: 0; }

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow.eyebrow-steel { color: var(--steel); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* Buttons --------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 22px;
  font: 600 15px/1 var(--font-sans); cursor: pointer; border-radius: 2px; border: 0;
  text-decoration: none; transition: background .15s, border-color .15s, color .15s; }
.btn svg { flex: 0 0 auto; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-ink); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); padding: 15px 22px; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); border: 1px solid var(--rule); padding: 15px 22px; }
.btn-light:hover { border-color: var(--navy); }

/* Pill + Chip ----------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green);
}
.pill::before {
  content: ""; width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(30, 163, 107, 0.18);
}

/* Top utility bar ------------------------------------------------- */
.utility {
  background: var(--navy-deep);
  color: #aab4c2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.utility .container { padding-top: 10px; padding-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center; }
.utility .utility-right { display: flex; gap: 24px; }

/* Utility bar — mobile ticker */
.utility-ticker { display: none; }
@media (max-width: 720px) {
  .utility .container { display: none; }
  .utility-ticker {
    display: block;
    overflow: hidden;
    padding: 10px 20px;
    position: relative;
  }
  .utility-ticker-track {
    display: flex;
    transition: transform .4s ease;
  }
  .utility-ticker-slide {
    flex: 0 0 100vw;
    width: 100vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
}
.utility .utility-mail { color: #fff; }

/* Header / Nav ---------------------------------------------------- */
.site-header { background: #fff; border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; }
.site-header .container { padding-top: 20px; padding-bottom: 20px; display: flex; align-items: center; gap: 40px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: -0.01em; }
.brand-name span { color: var(--steel); font-weight: 500; }

.site-nav { display: flex; gap: 32px; margin-left: 24px; }
.site-nav a { font-size: 15px; font-weight: 500; color: var(--ink); padding-bottom: 4px; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--navy); }
.site-nav a.active { font-weight: 600; color: var(--navy); border-bottom-color: var(--green); }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.header-phone { text-align: right; }
.header-phone-label { font-size: 11px; color: var(--steel); text-transform: uppercase; letter-spacing: 0.06em; }
.header-phone-number { font-size: 20px; font-weight: 700; color: var(--navy); display: block; margin-top: 2px; }

/* Sections / generic --------------------------------------------- */
section { position: relative; }
.section-padding { padding: 120px 0; }
.section-padding-sm { padding: 80px 0; }
.section-rule-top { border-top: 1px solid var(--rule); }
.section-rule-bottom { border-bottom: 1px solid var(--rule); }
.bg-white { background: #fff; }
.bg-soft { background: var(--bg); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy-deep { background: var(--navy-deep); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy-deep h2, .bg-navy-deep h3 { color: #fff; }

.section-head { margin-bottom: 64px; max-width: 880px; }
.section-head .eyebrow { display: block; margin-bottom: 20px; }
.section-head p { color: var(--steel); font-size: 17px; margin-top: 20px; max-width: 640px; }

/* Striped placeholder -------------------------------------------- */
.placeholder {
  background: repeating-linear-gradient(135deg, #e2e7ed 0 10px, #d4dae2 10px 20px);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.placeholder .placeholder-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  background: rgba(255, 255, 255, 0.9); padding: 6px 10px;
  border: 1px solid rgba(10, 37, 64, 0.18);
}
.placeholder-soft {
  background: repeating-linear-gradient(135deg, #eef1f5 0 10px, #e3e8ee 10px 20px);
}

/* Hero (per page) ------------------------------------------------ */
.hero { padding: 96px 0 88px; background: var(--bg); position: relative; overflow: hidden; }
.hero .container { display: grid; gap: 64px; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .alt { color: var(--steel); }
.hero p.lead { font-size: 19px; color: var(--steel); max-width: 540px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--rule); display: flex; gap: 40px; flex-wrap: wrap; }
.hero-trust .item .mono { color: var(--steel); }
.hero-trust .item .value { font-size: 14px; color: var(--navy); margin-top: 6px; font-weight: 600; }

/* Footer --------------------------------------------------------- */
.site-footer { background: #fff; border-top: 1px solid var(--rule); padding: 64px 0 32px; }
.site-footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.site-footer .footer-brand p { color: var(--steel); font-size: 14px; max-width: 340px; margin-top: 20px; }
.site-footer .footer-col h4 { font-size: 14px; color: var(--navy); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.site-footer .footer-col a { display: block; color: var(--steel); font-size: 14px; padding: 6px 0; }
.site-footer .footer-col a:hover { color: var(--navy); }
.site-footer .footer-bottom { padding-top: 24px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--steel); }
.site-footer .footer-bottom .mono { font-size: 11px; color: var(--steel-light); }

/* Service cards / grid (used on home + prestations) -------------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--rule); background: #fff; }
.service-card { padding: 36px 32px; background: #fff; min-height: 220px; }
.service-card:not(:nth-child(3n)) { border-right: 1px solid var(--rule); }
.service-card:nth-child(-n+3) { border-bottom: 1px solid var(--rule); }
.service-card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.service-card-num { font-family: var(--font-mono); font-size: 11px; color: var(--steel); }
.service-card-code { font-family: var(--font-mono); font-size: 11px; color: var(--steel);
  background: var(--bg); padding: 4px 8px; border: 1px solid var(--rule); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--steel); font-size: 14.5px; line-height: 1.55; }
.service-card-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-size: 14px; font-weight: 600; }

/* Promise strip --------------------------------------------------- */
.promise-strip { background: var(--navy); color: #fff; }
.promise-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; }
.promise-strip .item { padding: 48px 32px; display: flex; gap: 24px; align-items: flex-start; }
.promise-strip .item + .item { border-left: 1px solid #1d3654; }
.promise-strip .num { font-size: 56px; font-weight: 700; color: var(--green); line-height: 1; font-feature-settings: "tnum"; }
.promise-strip .label { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.promise-strip .sub { font-size: 14px; color: #aab4c2; }

/* Method (3-step) ------------------------------------------------ */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.method-step .step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
  padding-bottom: 18px; border-bottom: 2px solid var(--navy); }
.method-step .step-num { font-family: var(--font-mono); font-size: 14px; color: var(--navy); font-weight: 600; }
.method-step h3 { font-size: 26px; margin-bottom: 14px; }
.method-step p { color: var(--steel); font-size: 15.5px; line-height: 1.6; }

/* FAQ ------------------------------------------------------------- */
.faq-item { border-top: 1px solid var(--rule); padding: 0; }
.faq-item:first-child { border-top: 2px solid var(--navy); }
.faq-question { display: flex; align-items: flex-start; gap: 24px; padding: 28px 0;
  cursor: pointer; user-select: none; background: transparent; border: 0; width: 100%;
  text-align: left; font: inherit; color: inherit; }
.faq-question .num { font-family: var(--font-mono); font-size: 12px; color: var(--steel); padding-top: 4px; }
.faq-question h3 { font-size: 19px; flex: 1; margin: 0; }
.faq-question .toggle { width: 20px; height: 20px; position: relative; flex: 0 0 auto; margin-top: 4px; }
.faq-question .toggle::before, .faq-question .toggle::after {
  content: ""; position: absolute; background: var(--steel); transition: transform .25s; }
.faq-question .toggle::before { left: 0; right: 0; top: 9px; height: 2px; }
.faq-question .toggle::after  { top: 0; bottom: 0; left: 9px; width: 2px; }
.faq-item.open .faq-question .toggle::after { transform: scaleY(0); }
.faq-item.open .faq-question .toggle::before { background: var(--navy); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 480px; padding: 0 0 28px 56px; }
.faq-answer p { color: var(--steel); font-size: 15px; line-height: 1.65; max-width: 760px; }
.faq-answer p + p { margin-top: 12px; }

/* CTA Phone block ------------------------------------------------- */
.cta-phone { background: var(--navy-deep); color: #fff; padding: 96px 0; overflow: hidden; }
.cta-phone .container { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.cta-phone h2 { color: #fff; margin-bottom: 20px; font-size: 48px; }
.cta-phone p { font-size: 18px; color: #aab4c2; max-width: 560px; }
.cta-phone .phone-card { border: 1px solid #1d3654; padding: 40px; min-width: 360px; text-align: center; }
.cta-phone .phone-number { font-size: 44px; font-weight: 700; color: #fff; display: block;
  margin: 16px 0 24px; letter-spacing: 0.02em; }
.cta-phone .btn-primary { width: 100%; justify-content: center; }

/* Page heading (smaller hero for inner pages) -------------------- */
.page-head { background: var(--bg); padding: 80px 0 56px; border-bottom: 1px solid var(--rule); }
.page-head .breadcrumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.page-head .breadcrumb a { color: var(--steel); }
.page-head .breadcrumb a:hover { color: var(--navy); }
.page-head .breadcrumb .sep { color: var(--rule-strong); }
.page-head h1 { font-size: clamp(36px, 4.4vw, 56px); max-width: 880px; }
.page-head p.intro { font-size: 18px; color: var(--steel); max-width: 720px; margin-top: 20px; }

/* Helpers --------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2-narrow { display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: center; }
.split-text { display: grid; grid-template-columns: 380px 1fr; gap: 96px; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
.check-row { display: flex; gap: 12px; align-items: flex-start; }
.check-mark { width: 22px; height: 22px; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 2px; }
.check-row .k { font-weight: 600; color: var(--navy); font-size: 15px; }
.check-row .v { font-size: 14px; color: var(--steel); }

/* Hero grid ------------------------------------------------------- */
.hero-grid { display: grid; grid-template-columns: 1fr 520px; align-items: center; gap: 64px; }
.hero-visual { position: relative; }
.hero-img { width: 100%; height: 520px; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; left: -32px; bottom: 32px;
  background: #fff; border: 1px solid var(--rule);
  padding: 20px 24px; width: 260px;
}
.hero-badge-label { color: var(--green); display: block; }
.hero-badge-sub { font-size: 14px; color: var(--steel); margin-top: 10px; }
.hero-badge-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-top: 4px; }
.hero-badge-footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; font-size: 13px; }
.hero-badge-footer-text { color: var(--steel); }
.hero-badge-footer-tag { color: var(--green); }

/* Section head split ---------------------------------------------- */
.section-head-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; max-width: none; }
.section-head-aside { max-width: 380px; color: var(--steel); font-size: 16px; }

/* Utility classes ------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }
.max-480 { max-width: 480px; }
.max-640 { max-width: 640px; }
.max-520 { max-width: 520px; }
.max-760 { max-width: 760px; }
.text-navy { color: var(--navy); }
.text-white { color: #fff; }
.body-lg { color: var(--steel); font-size: 17px; line-height: 1.65; }
.body-muted { color: #aab4c2; }
.section-lead { color: var(--steel); font-size: 16px; }
.cover-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.checks-start { align-content: start; }
.eyebrow-light { color: #aab4c2; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.mono-green { color: var(--green); }
.footer-logo { width: 40px; height: 40px; }
.footer-brand-name { font-size: 18px; }

/* Responsive ------------------------------------------------------ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .hero .container, .hero-grid, .grid-2, .grid-2-narrow, .split-text { grid-template-columns: 1fr; gap: 48px; }
  .section-head-split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head-aside { max-width: 100%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:not(:nth-child(3n)) { border-right: 1px solid var(--rule); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card { border-bottom: 1px solid var(--rule); }
  .method-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-phone .container { grid-template-columns: 1fr; }
  .cta-phone .phone-card { min-width: 0; }
  .promise-strip .container { grid-template-columns: 1fr; }
  .promise-strip .item + .item { border-left: 0; border-top: 1px solid #1d3654; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero-badge { position: static; width: 100%; margin-top: 16px; left: auto; }
  .hero-img { height: 260px; }
  .cover-img { height: 280px; }
  .utility .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .utility .utility-right { gap: 12px; flex-wrap: wrap; }
  .utility .utility-mail { display: none; }
  .site-header .container { flex-wrap: wrap; gap: 12px; padding-top: 14px; padding-bottom: 14px; }
  .site-nav { order: 4; width: 100%; margin-left: 0; gap: 0; overflow-x: auto; display: flex; }
  .site-nav a { padding: 8px 12px; border-bottom: 0; font-size: 14px; white-space: nowrap; flex-shrink: 0; }
  .header-right .header-phone { display: none; }
  .header-right { margin-left: auto; }
  .section-padding { padding: 56px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 1px solid var(--rule); }
  .checks { grid-template-columns: 1fr; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero-trust { gap: 24px; margin-top: 36px; padding-top: 24px; }
  .hero-trust .item .value { font-size: 13px; }
  .promise-strip .num { font-size: 40px; }
  .promise-strip .item { padding: 32px 20px; gap: 16px; }
  .split-text { grid-template-columns: 1fr; gap: 40px; }
  .grid-2-narrow { grid-template-columns: 1fr; gap: 40px; }
  .cta-phone { padding: 64px 0; }
  .cta-phone h2 { font-size: 30px; }
  .cta-phone .phone-card { padding: 24px; min-width: 0; width: 100%; }
  .cta-phone .phone-number { font-size: 28px; }
  .cta-phone p { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero p.lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .method-grid { gap: 24px; }
}

/* =================================================================
   Prestations
   ================================================================= */

.prestation-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.prestation-layout-reverse { grid-template-columns: 480px 1fr; }
.prestation-layout-reverse .prestation-content { order: 2; }
.prestation-layout-reverse .prestation-visual  { order: 1; }

.prestation-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.prestation-code {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  background: var(--bg-soft);
  padding: 5px 10px;
  border: 1px solid var(--rule);
}

.prestation-content h2 { margin-bottom: 20px; }
.prestation-intro { font-size: 17px; color: var(--steel); line-height: 1.65; max-width: 560px; margin-bottom: 40px; }

.prestation-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--rule);
}
.bg-white .prestation-details { background: var(--bg); }

.detail-block h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--navy);
}
.detail-list { list-style: none; margin: 0; padding: 0; }
.detail-list li {
  font-size: 14px;
  color: var(--steel);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  line-height: 1.45;
}
.detail-list li:last-child { border-bottom: 0; }
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--green);
}

.prestation-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.reg-tag { font-size: 14px; color: var(--steel); display: flex; gap: 8px; align-items: center; }
.reg-tag .mono { color: var(--steel-light); }

.prestation-visual img { width: 100%; height: 480px; object-fit: cover; display: block; }

.rapport-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.rapport-features { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.rapport-feature { display: flex; gap: 20px; align-items: flex-start; }
.rapport-icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 163, 107, 0.12);
  border: 1px solid rgba(30, 163, 107, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--green);
}
.rapport-feature-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.rapport-feature-sub { font-size: 14px; color: #aab4c2; line-height: 1.5; }

/* =================================================================
   À propos
   ================================================================= */

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-top: 40px;
}
.about-stat { padding: 24px 20px; text-align: center; }
.about-stat + .about-stat { border-left: 1px solid var(--rule); }
.about-stat-value { font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; font-feature-settings: "tnum"; }
.about-stat-label { font-size: 12px; color: var(--steel); line-height: 1.4; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--rule); }
.value-card { padding: 40px 32px; border-right: 1px solid var(--rule); }
.value-card:last-child { border-right: 0; }
.value-num { color: var(--green); font-size: 11px; margin-bottom: 20px; display: block; }
.value-card h3 { font-size: 20px; margin-bottom: 14px; }
.value-card p { color: var(--steel); font-size: 14.5px; line-height: 1.6; }

.zone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--rule); background: #fff; }
.zone-card { padding: 40px 32px; border-right: 1px solid var(--rule); }
.zone-card:last-child { border-right: 0; }
.zone-card-primary { background: var(--navy); }
.zone-card-primary h3 { color: #fff; }
.zone-card-primary p { color: #aab4c2; }
.zone-card-primary .zone-card-label { color: var(--green); }
.zone-card-primary .zone-cities li { color: #d0d8e4; border-bottom-color: #1d3654; }
.zone-card-primary .zone-cities li .mono { color: #6a8aaa; }
.zone-card-contact { background: var(--bg); }
.zone-card-label { font-size: 10px; letter-spacing: 0.1em; color: var(--steel-light); text-transform: uppercase; display: block; margin-bottom: 12px; }
.zone-card h3 { font-size: 22px; margin-bottom: 14px; }
.zone-card p { font-size: 14.5px; color: var(--steel); line-height: 1.6; margin-bottom: 20px; }
.zone-cities { list-style: none; margin: 0; padding: 0; }
.zone-cities li {
  font-size: 14px;
  color: var(--steel);
  padding: 7px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zone-cities li:last-child { border-bottom: 0; }

.guarantees-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--rule); }
.contact-info-item { padding: 24px 28px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.contact-info-item:nth-child(2n) { border-right: 0; }
.contact-info-item:nth-last-child(-n+2) { border-bottom: 0; }
.contact-info-label { display: block; color: var(--steel-light); font-size: 10px; letter-spacing: 0.1em; margin-bottom: 8px; }
.contact-info-value { font-size: 17px; font-weight: 600; color: var(--navy); display: block; line-height: 1.4; text-decoration: none; }
a.contact-info-value:hover { color: var(--green); }

/* =================================================================
   FAQ
   ================================================================= */

.faq-page-layout { display: grid; grid-template-columns: 240px 1fr; gap: 80px; align-items: start; }

.faq-sidebar { position: sticky; top: 96px; }
.faq-nav { display: flex; flex-direction: column; border: 1px solid var(--rule); background: #fff; margin-bottom: 24px; }
.faq-nav-item {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--steel);
  border-bottom: 1px solid var(--rule);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.faq-nav-item:last-child { border-bottom: 0; }
.faq-nav-item:hover { color: var(--navy); background: var(--bg); }
.faq-nav-item.active { color: var(--navy); font-weight: 600; border-left: 3px solid var(--green); background: var(--bg); }

.faq-sidebar-cta { padding: 20px; border: 1px solid var(--rule); background: #fff; text-align: center; }
.faq-sidebar-cta p { font-size: 13px; color: var(--steel); margin-bottom: 14px; line-height: 1.4; }

.faq-content { display: flex; flex-direction: column; gap: 56px; }
.faq-group-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

.still-questions { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-strip { border: 1px solid var(--rule); display: flex; }
.contact-strip-item { flex: 1; padding: 32px; display: flex; flex-direction: column; gap: 6px; }
.contact-strip-divider { width: 1px; background: var(--rule); flex: 0 0 auto; }
.contact-strip-label { font-size: 10px; letter-spacing: 0.1em; color: var(--steel-light); text-transform: uppercase; }
.contact-strip-value { font-size: 18px; font-weight: 700; color: var(--navy); text-decoration: none; }
a.contact-strip-value:hover { color: var(--green); }
.contact-strip-sub { font-size: 13px; color: var(--steel); }

/* =================================================================
   Responsive — pages intérieures
   ================================================================= */

@media (max-width: 1100px) {
  .prestation-layout,
  .prestation-layout-reverse { grid-template-columns: 1fr; gap: 48px; }
  .prestation-layout-reverse .prestation-content { order: 1; }
  .prestation-layout-reverse .prestation-visual  { order: 2; }
  .rapport-block { grid-template-columns: 1fr; gap: 48px; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: 0; }
  .value-card:nth-child(1), .value-card:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .zone-grid { grid-template-columns: 1fr; }
  .zone-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .guarantees-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

  .faq-page-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .faq-nav { flex-direction: row; flex-wrap: wrap; }
  .faq-nav-item { flex: 1 1 auto; border-bottom: 0; border-right: 1px solid var(--rule); text-align: center; }
  .faq-nav-item:last-child { border-right: 0; }
  .faq-nav-item.active { border-left: 0; border-bottom: 3px solid var(--green); }
  .still-questions { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  .prestation-details { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
  .prestation-visual img { height: 280px; }

  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat + .about-stat { border-left: 0; border-top: 1px solid var(--rule); }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-item { border-right: 0; }
  .contact-info-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .contact-info-item:last-child { border-bottom: 0; }

  .faq-nav { flex-direction: column; }
  .faq-nav-item { border-right: 0; border-bottom: 1px solid var(--rule); text-align: left; }
  .faq-nav-item.active { border-left: 3px solid var(--green); border-bottom: 1px solid var(--rule); }
  .contact-strip { flex-direction: column; }
  .contact-strip-divider { width: auto; height: 1px; }
}
