/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #F9F8F5;
  --surface: #ECEAE4;
  --ink: #111111;
  --ink-soft: #444444;
  --ink-muted: #888888;
  --navy: #1B2D4F;
  --navy-dark: #0D1B2E;
  --crimson: #B8272A;
  --border: #DEDBD3;
  --border-soft: #ECEAE4;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', 'Courier New', monospace;

  --max-w: 1200px;
  --r: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ==============================
   LAYOUT
============================== */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 32px;
}

.section-pad { padding: 112px 0; }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

/* ==============================
   TYPOGRAPHY
============================== */
.t-display {
  font-family: var(--ff-display);
  font-size: clamp(56px, 7.5vw, 96px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.t-h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.t-h3 {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}

.t-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.t-eyebrow-light { color: rgba(255,255,255,0.45); }
.t-light { color: #fff; }
.t-muted { color: var(--ink-muted); }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r);
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
}
.btn:hover { opacity: 0.88; transform: translateY(-2px); }
.btn:active { transform: none; }

.btn-crimson { background: var(--crimson); color: #fff; }
.btn-crimson:hover { box-shadow: 0 6px 20px rgba(184,39,42,0.28); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--ink); opacity: 1; }
.btn-white { background: #fff; color: var(--navy); font-weight: 600; }
.btn-ghost-navy {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  width: 100%;
  justify-content: center;
  font-size: 14px;
}
.btn-ghost-navy:hover { border-color: rgba(255,255,255,0.45); color: #fff; opacity: 1; }

/* ==============================
   NAV
============================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,248,245,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-right: 48px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--crimson);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  flex: 1;
}

.nav-item { position: relative; }

.nav-item > a,
.nav-item > button {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  height: 68px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > button:hover { color: var(--ink); }
.nav-item > a.nav-plain { pointer-events: all; }

.nav-chev {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-item:hover .nav-chev { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 230px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--surface); }
.nav-dropdown a small {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-muted);
}

.nav-cta { margin-left: auto; flex-shrink: 0; }

/* ==============================
   PAGE HERO (interior pages)
============================== */
.page-hero {
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero-eyebrow { margin-bottom: 20px; }

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 36px;
}
.page-hero-breadcrumb a { color: var(--ink-muted); }
.page-hero-breadcrumb a:hover { color: var(--ink); }
.page-hero-breadcrumb span { color: var(--border); }

.page-hero-headline {
  margin-bottom: 24px;
  max-width: 700px;
}

.page-hero-body {
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
}

.page-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==============================
   HERO (homepage)
============================== */
.hero {
  padding: 104px 0 88px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow { margin-bottom: 32px; }
.hero-headline { margin-bottom: 28px; color: var(--ink); }

.hero-body {
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-soft);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-tel {
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--ink-muted);
}
.hero-tel a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.hero-tel a:hover { border-color: var(--ink); }

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.trust-item {
  padding-right: 20px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.trust-item:nth-child(even) {
  padding-right: 0;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

/* Hero panel */
.hero-panel {
  background: var(--navy);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(27,45,79,0.18);
}

.panel-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.panel-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.panel-row:last-of-type { border-bottom: none; }

.panel-row-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.panel-row-value {
  font-family: var(--ff-mono);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.panel-row-value.crimson { color: var(--crimson); }

.panel-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--ff-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}

/* ==============================
   CONSTAT STRIP
============================== */
.constat-strip {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

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

.constat-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.constat-item:last-child { border-right: none; }

.constat-number {
  font-family: var(--ff-mono);
  font-size: 44px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1;
  margin-bottom: 14px;
}

.constat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
}

/* ==============================
   PROOF
============================== */
.proof { padding: 80px 0; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.proof-quote {
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 32px;
}

.proof-quote blockquote {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.48;
  color: #fff;
  margin-bottom: 24px;
}

.proof-author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.proof-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2px;
}

.proof-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.proof-stat-number {
  font-family: var(--ff-mono);
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.proof-stat-number.crimson { color: var(--crimson); }

.proof-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ==============================
   SECTION HEADER
============================== */
.section-header { margin-bottom: 64px; }
.section-header .t-eyebrow { margin-bottom: 16px; }

/* ==============================
   PROBLEM / SOLUTION
============================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}

.problem-col {
  background: var(--paper);
  padding: 44px;
}
.problem-col:first-child { border-right: 1px solid var(--border); }
.bg-surface .problem-col { background: var(--surface); }

.problem-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.problem-items { display: flex; flex-direction: column; gap: 22px; }

.problem-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.problem-item::before {
  content: '✗';
  color: #C0392B;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.solution-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.solution-item::before {
  content: '✓';
  color: #2E7D32;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==============================
   CONTEXT
============================== */
.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.context-text {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.context-callout {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--crimson);
  border-left: 2px solid var(--crimson);
  padding-left: 20px;
  margin-top: 36px;
}

.context-box {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}
.bg-surface .context-box { background: var(--surface); }

.context-box-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.context-list { display: flex; flex-direction: column; gap: 16px; }

.context-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.context-list li::before {
  content: '→';
  color: var(--crimson);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==============================
   DIFFERENTIATORS
============================== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.diff-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.bg-surface .diff-card { background: var(--surface); }
.diff-card:hover { border-color: var(--navy); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.diff-icon {
  width: 38px;
  height: 38px;
  color: var(--navy);
  margin-bottom: 20px;
}
.diff-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diff-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.diff-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink-soft);
}

/* ==============================
   PROCESS
============================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(100% / 6 + 20px);
  right: calc(100% / 6 + 20px);
  height: 1px;
  background: var(--border);
}

.process-step { position: relative; }

.step-marker {
  width: 40px;
  height: 40px;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--ink-muted);
}
.bg-surface .step-marker { background: var(--surface); }

.step-time {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink-soft);
}

/* ==============================
   RESULTATS
============================== */
.resultats { padding: 96px 0; }

.resultats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  max-width: 760px;
}

.resultat-stat { flex: 1; }

.resultat-number {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
}
.resultat-number .accent { color: rgba(255,255,255,0.42); }

.resultat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 230px;
}

.resultat-divider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 60px;
}

.resultats-note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-top: 52px;
  font-style: italic;
}

/* ==============================
   FAQ
============================== */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}

.faq-chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform 0.24s;
}
.faq-item.open .faq-chev { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-body { max-height: 600px; }

.faq-body-inner {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-soft);
  padding-bottom: 24px;
}

/* ==============================
   AUDIT FORM
============================== */
.audit { padding: 104px 0; }

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.audit-left .t-eyebrow { margin-bottom: 20px; }

.audit-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  margin-bottom: 36px;
}

.audit-checklist { display: flex; flex-direction: column; gap: 14px; }

.audit-checklist li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.audit-checklist li::before {
  content: '✓';
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.audit-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 40px;
}

.form-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.form-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 32px;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.fgroup label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
}

.fgroup input,
.fgroup select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.fgroup input::placeholder { color: rgba(255,255,255,0.22); }
.fgroup input:focus,
.fgroup select:focus { border-color: rgba(255,255,255,0.35); }
.fgroup select option { background: var(--navy); }

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

.btn-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 15px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-top: 10px;
}

.form-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: rgba(255,255,255,0.18);
  font-size: 12px;
}
.form-or::before, .form-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.form-success {
  display: none;
  text-align: center;
  padding: 56px 20px;
}

.form-success-check {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
}

.form-success h3 {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}

/* ==============================
   BLOG
============================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-card:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.blog-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--crimson);
}

.blog-card-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.32;
  flex: 1;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.62;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.blog-featured {
  grid-column: span 2;
  background: var(--navy);
  border-color: transparent;
}
.blog-featured:hover { border-color: transparent; box-shadow: 0 8px 32px rgba(27,45,79,0.25); }
.blog-featured .blog-card-title { color: #fff; font-size: 26px; }
.blog-featured .blog-card-excerpt { color: rgba(255,255,255,0.48); }
.blog-featured .blog-card-tag { color: var(--crimson); }
.blog-featured .blog-card-meta { color: rgba(255,255,255,0.32); border-color: rgba(255,255,255,0.08); }

.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ==============================
   ABOUT (Qui sommes-nous)
============================== */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-value {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 36px;
  transition: border-color 0.2s;
}
.bg-surface .about-value { background: var(--surface); }
.about-value:hover { border-color: var(--navy); }

.about-value-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--crimson);
  margin-bottom: 20px;
  display: block;
}

.about-value-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-value-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.68;
}

/* ==============================
   SERVICE HIGHLIGHT ROWS
============================== */
.service-rows {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.bg-surface .service-row { background: var(--surface); }

.service-row-content {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
}

.service-row-stat {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-stat-num {
  font-family: var(--ff-display);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.service-row-stat-label {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}

.service-row-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-row-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.68;
}

/* CTA BAND */
.cta-band {
  padding: 88px 0;
  text-align: center;
}

.cta-band .t-h2 { margin-bottom: 20px; }

.cta-band-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
}

/* ==============================
   FOOTER
============================== */
.footer { padding: 72px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--crimson);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
  line-height: 1.68;
  margin-bottom: 18px;
}

.footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-email:hover { color: #fff; }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

.footer-linkedin {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.22);
  transition: color 0.15s;
}
.footer-linkedin:hover { color: #0A66C2; }

/* ==============================
   SCROLL REVEAL
============================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ==============================
   MOBILE NAV BURGER
============================== */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: rgba(17,17,17,0.05);
  border: 1.5px solid rgba(17,17,17,0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nav-burger:hover {
  background: rgba(17,17,17,0.1);
  border-color: rgba(17,17,17,0.5);
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s, opacity 0.2s;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
}
.nav.open .nav-mobile { display: block; }

.nav-mobile-group {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-group:last-of-type { border-bottom: none; padding-bottom: 0; }

.nav-mobile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.nav-mobile .nav-mobile-link {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-sizing: border-box;
}
.nav-mobile .nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile .nav-mobile-link:hover { color: var(--ink); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-featured { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 0;
  }
  .panel-label, .panel-footer { display: none; }
  .panel-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 18px 20px;
  }
  .panel-row:nth-child(2),
  .panel-row:nth-child(4) { border-right: 1px solid rgba(255,255,255,0.06); }
  .panel-row:nth-child(4) { border-bottom: none; }
  .panel-row-label { font-size: 11px; }
  .panel-row-value { font-size: 19px; }
  .proof-grid { grid-template-columns: 1fr; gap: 52px; }
  .proof-stats { flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .context-grid { grid-template-columns: 1fr; gap: 44px; }
  .diff-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-step {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border);
  }
  .process-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .audit-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-values { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-content { border-right: none; border-bottom: 1px solid var(--border); }
  .constat-grid { grid-template-columns: 1fr; }
  .constat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .constat-item:last-child { border-bottom: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 72px 0 60px; min-height: auto; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(even) { padding-left: 14px; }
  .section-pad { padding: 72px 0; }
  .proof { padding: 60px 0; }
  .resultats { padding: 72px 0; }
  .resultats-grid { flex-direction: column; gap: 44px; max-width: 100%; }
  .resultat-divider { width: 100%; height: 1px; margin: 0; }
  .audit { padding: 72px 0; }
  .page-hero-ctas { flex-direction: column; }
  .container { padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .faq-body { transition: none; max-height: none; overflow: visible; }
  .faq-item:not(.open) .faq-body { max-height: 0; overflow: hidden; }
  .faq-chev { transition: none; }
  .nav-chev { transition: none; }
}
