/* ============================================================
   S2EE — Light theme · Page compositions
   ============================================================ */

/* =================================================
   HERO — dense mobile, premium desktop
   ================================================= */
.hero {
  position: relative;
  padding-top: clamp(28px, 4vw, 72px);
  padding-bottom: clamp(32px, 4vw, 72px);
  background:
    radial-gradient(60% 50% at 100% 0%, var(--brand-wash), transparent 65%),
    radial-gradient(40% 60% at 0% 100%, var(--bg-warm), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
@media (min-width: 1020px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; }
}
.hero-visual { order: -1; }
@media (min-width: 1020px) { .hero-visual { order: 0; } }

.hero-badges {
  display: inline-flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
@media (min-width: 760px) { .hero-badges { gap: 8px; margin-bottom: 26px; } }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .02em;
  box-shadow: var(--sh-1);
}
.badge .ico { color: var(--brand-deep); display: inline-flex; }
.badge.brand { background: var(--brand-wash); border-color: var(--brand-soft); color: var(--brand-darker); }

.hero h1 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(2.6rem, 1rem + 5.6vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: .98;
  color: var(--ink);
}
.hero h1 em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-deep);
  letter-spacing: -0.025em;
}
.hero h1 .accent-bar {
  display: inline-block;
  position: relative;
  padding-right: 6px;
}
.hero h1 .accent-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 6px; bottom: 4px;
  height: 14px;
  background: var(--brand);
  opacity: .22;
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  margin: 18px 0 22px;
  font-size: var(--t-lead);
  color: var(--ink-2);
  max-width: 50ch;
  line-height: 1.5;
}
@media (min-width: 760px) { .hero-sub { margin: 26px 0 32px; line-height: 1.55; } }
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.hero-rating {
  display: inline-flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
@media (min-width: 760px) { .hero-rating { margin-top: 28px; padding-top: 28px; } }
.hero-rating .stars {
  display: inline-flex; gap: 2px;
  color: var(--brand-deep);
}
.hero-rating .meta {
  font-size: 0.86rem;
  color: var(--ink-2);
}
.hero-rating .meta strong { color: var(--ink); font-weight: 600; }
.hero-rating .avatars {
  display: inline-flex;
  margin-right: 6px;
}
.hero-rating .avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -8px;
  font-size: 11px;
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 600;
  box-shadow: var(--sh-1);
}
.av-1 { background: linear-gradient(135deg, #047857, #10b981); }
.av-2 { background: linear-gradient(135deg, #0e2638, #2b333d); }
.av-3 { background: linear-gradient(135deg, #b78c44, #d4a657); }
.av-4 { background: linear-gradient(135deg, #5b6573, #94a0ad); }

/* Hero visual side */
.hero-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--sh-3);
}
@media (min-width: 760px) { .hero-visual { aspect-ratio: 4/5; border-radius: var(--radius-xl); } }
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,20,24,0.35));
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: var(--sh-2);
}
.hero-card .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-card .value {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 4px;
}
.hero-card .value em { font-family: var(--f-italic); font-style: italic; color: var(--brand-deep); font-weight: 400; }
.hero-card-arrow {
  width: 44px; height: 44px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
}

.hero-overlay-pill {
  position: absolute;
  top: 22px; left: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.hero-overlay-pill::before {
  content: ""; width: 6px; height: 6px;
  background: var(--brand); border-radius: 50%;
}

/* =================================================
   CEE — Catalogue des fiches d'opérations standardisées
   ================================================= */
.cee-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .cee-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1020px) { .cee-grid { grid-template-columns: repeat(3, 1fr); } }

.cee-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
  box-shadow: var(--sh-1);
}
.cee-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.cee-code {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 11px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--brand-wash);
  border: 1px solid var(--brand-soft);
  color: var(--brand-darker);
  border-radius: 999px;
}
.cee-card h3 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
  margin: 6px 0 0;
}
.cee-card h3 em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-deep);
}
.cee-desc {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
}
.cee-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--brand-deep);
  border-bottom: 1px solid var(--brand-soft);
  padding-bottom: 3px;
  margin-top: auto;
  align-self: flex-start;
  transition: gap var(--dur-2) var(--ease), color var(--dur-1) var(--ease);
}
.cee-link:hover { gap: 10px; color: var(--brand-darker); border-color: var(--brand); }

.cee-card--cta {
  background: linear-gradient(135deg, var(--brand-wash), var(--bg-warm));
  border-color: var(--brand-soft);
}
.cee-card--cta h3 { font-size: 1.2rem; }
.cee-link--strong {
  font-family: var(--f-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom-width: 2px;
}

/* =================================================
   COOKIE BANNER (RGPD)
   ================================================= */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-3);
  opacity: 0; transform: translateY(20px);
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
  max-width: 560px;
}
.cookie-banner.is-shown { opacity: 1; transform: none; }
.cookie-inner { padding: clamp(20px, 2.5vw, 28px); display: grid; gap: 16px; }
.cookie-text strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 6px; font-size: 1rem; }
.cookie-text p { margin: 0; font-size: 0.92rem; color: var(--ink-2); line-height: 1.5; }
.cookie-text a { color: var(--brand-deep); border-bottom: 1px solid var(--brand-soft); }
.cookie-options {
  display: grid; gap: 10px;
  border: 0; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.cookie-opt {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.45;
}
.cookie-opt input[type=checkbox] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-3);
  border-radius: 4px;
  background: var(--bg);
  position: relative; flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.cookie-opt input[type=checkbox]:disabled { background: var(--brand-wash); border-color: var(--brand); cursor: not-allowed; }
.cookie-opt input[type=checkbox]:checked,
.cookie-opt input[type=checkbox]:disabled {
  background: var(--brand); border-color: var(--brand);
}
.cookie-opt input[type=checkbox]:checked::after,
.cookie-opt input[type=checkbox]:disabled::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cookie-opt strong { color: var(--ink); font-weight: 600; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions .btn { flex: 1 1 auto; justify-content: center; min-height: 44px; }
@media (min-width: 480px) {
  .cookie-actions .btn { flex: 0 1 auto; }
}
@media (max-width: 480px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; border-radius: var(--radius); }
}

/* =================================================
   LEGAL PAGES (mentions, RGPD, cookies, CGV)
   ================================================= */
.legal-doc {
  max-width: 820px;
  margin-inline: auto;
  display: grid; gap: clamp(28px, 3vw, 44px);
}
.legal-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: var(--sh-1);
}
.legal-block h2 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 0.7vw, 1.6rem);
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-h3 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 22px 0 10px;
  letter-spacing: -0.012em;
}
.legal-block p { color: var(--ink-2); font-size: 0.98rem; line-height: 1.65; margin: 0 0 12px; }
.legal-block p strong { color: var(--ink); font-weight: 600; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--brand-deep); border-bottom: 1px solid var(--brand-soft); transition: border-color var(--dur-1) var(--ease); }
.legal-block a:hover { border-color: var(--brand); }
.legal-block code {
  font-family: var(--f-mono);
  font-size: 0.84em;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.legal-ul {
  list-style: none;
  padding: 0; margin: 0 0 14px;
  display: grid; gap: 10px;
}
.legal-ul li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.55;
}
.legal-ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--brand);
  background: var(--brand-wash);
  border-radius: 50%;
}
.legal-ul li strong { color: var(--ink); font-weight: 600; }

.legal-dl {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.legal-dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 540px) {
  .legal-dl > div { grid-template-columns: 200px 1fr; gap: 16px; align-items: baseline; }
}
.legal-dl dt {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.legal-dl dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
}
.legal-dl dd a { color: var(--brand-deep); border-bottom: 1px solid var(--brand-soft); }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 14px 0;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.legal-table th {
  background: var(--bg-soft);
  text-align: left;
  padding: 12px 14px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
}
.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-2);
}
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table tr td:first-child { color: var(--ink); font-weight: 500; }
@media (max-width: 640px) {
  .legal-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal-table thead, .legal-table tbody { min-width: 540px; }
}

.legal-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-mute);
  font-weight: 500;
  vertical-align: middle;
}
.legal-badge--ok { background: var(--brand-wash); border-color: var(--brand-soft); color: var(--brand-darker); }
.legal-badge--no { background: rgba(185,73,47,0.06); border-color: rgba(185,73,47,0.22); color: var(--danger); }

/* =================================================
   ELIGIBILITY MINI-FORM (Effy-style)
   Mobile : pas de margin-top négative (créerait bande blanche)
   Desktop : flotte sur le hero
   ================================================= */
.elig-strip {
  margin-top: 0;
  position: relative;
  z-index: 5;
  padding: 8px 0 30px;
}
@media (min-width: 1020px) {
  .elig-strip { margin-top: -50px; padding-top: 0; }
}
.elig-form {
  background: var(--bg-deep);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: var(--sh-3);
  display: grid;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.elig-form::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(21,199,91,0.22), transparent 60%);
  pointer-events: none;
}
.elig-head { position: relative; }
.elig-head h2 {
  font-family: var(--f-sans);
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 12px;
}
.elig-fields {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.4fr 1.4fr 1fr auto;
  align-items: end;
  position: relative;
}
@media (max-width: 980px) {
  .elig-fields { grid-template-columns: 1fr 1fr; }
  .elig-fields .btn { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .elig-fields { grid-template-columns: 1fr; }
}
.elig-field { display: grid; gap: 6px; }
.elig-field label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.elig-field input, .elig-field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 13px 16px;
  border-radius: 12px;
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.elig-field select option { color: var(--ink); }
.elig-field input::placeholder { color: rgba(255,255,255,0.4); }
.elig-field input:focus, .elig-field select:focus {
  border-color: var(--brand-bright);
  background: rgba(255,255,255,0.12);
}
.elig-form .btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.elig-form .btn-primary:hover { background: var(--brand-bright); border-color: var(--brand-bright); color: var(--ink); }

/* =================================================
   POURQUOI S2EE — 4 USPs
   ================================================= */
.why-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1020px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.why:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--sh-2); }
.why-ico {
  width: 52px; height: 52px;
  background: var(--brand-wash);
  border: 1px solid var(--brand-soft);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--brand-darker);
}
.why h3 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.why h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-deep); }
.why p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin: 0;
}

/* =================================================
   COVERAGE (geographic IDF)
   ================================================= */
.coverage {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}
@media (max-width: 880px) { .coverage { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .coverage { grid-template-columns: 1fr; } }
.cov-cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; align-items: baseline; gap: 16px;
  transition: border-color var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
.cov-cell:hover { border-color: var(--brand); background: rgba(21,199,91,0.05); }
.cov-cell.highlight {
  background: rgba(21,199,91,0.08);
  border-color: var(--brand);
}
.cov-num {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 2rem;
  color: var(--brand-bright);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cov-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(46,224,116,0.14);
  color: var(--brand-bright);
  flex-shrink: 0;
}
.cov-cell { align-items: center; }
.cov-name {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cov-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--brand);
  color: #052b15;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: .08em;
}

/* =================================================
   LOGO STRIP / TRUST PARTNERS
   ================================================= */
.logos {
  padding: clamp(40px, 4vw, 64px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}
.logos-inner {
  display: grid; gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .logos-inner { grid-template-columns: auto 1fr; align-items: center; gap: 60px; } }

.logos-label {
  font-family: var(--f-sans);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  max-width: 280px;
  line-height: 1.5;
}
.logos-label strong { color: var(--ink); font-weight: 600; }

.logos-row {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.logo-card {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--sh-1);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.logo-card .logo-mono {
  width: 26px; height: 26px;
  background: var(--brand-wash);
  border: 1px solid var(--brand-soft);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--brand-darker);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-card .sub {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 400;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* =================================================
   STATS BAR — mobile-first dense
   ================================================= */
.stats {
  padding: clamp(36px, 5vw, 72px) 0;
}
.stats-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
.stat {
  padding: 22px clamp(16px, 2vw, 36px);
  border-right: 1px solid var(--line);
}
@media (min-width: 760px) { .stat { padding: 30px clamp(20px, 2vw, 36px); } }
.stat:last-child { border-right: 0; }
@media (max-width: 880px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}
.stat .label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.stat .value {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(2.4rem, 1rem + 4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .value .unit {
  font-size: 0.4em;
  color: var(--brand-deep);
  font-weight: 400;
  font-family: var(--f-italic);
  font-style: italic;
}
.stat .desc {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--ink-mute);
  max-width: 28ch;
}

/* =================================================
   SECTION HEAD
   ================================================= */
.section-head {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: clamp(28px, 4vw, 60px);
}
@media (min-width: 760px) { .section-head { gap: 28px; } }
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 40px; }
}
.section-head h2 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(2rem, 1rem + 2.6vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-top: 16px;
}
.section-head h2 em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-deep);
}
.section-head .lead { color: var(--ink-2); }

/* =================================================
   SERVICES — zigzag with photos
   ================================================= */
.services-zig {
  display: grid; gap: clamp(36px, 5vw, 88px);
}
.zig {
  display: grid;
  gap: clamp(20px, 4vw, 60px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) { .zig { grid-template-columns: 1fr 1fr; } }

.zig.reverse .zig-text { order: 2; }
.zig.reverse .zig-media { order: 1; }
@media (max-width: 879px) { .zig.reverse .zig-text, .zig.reverse .zig-media { order: 0; } }

.zig-num {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: .08em;
  color: var(--brand-deep);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.zig-num::before { content: ""; width: 22px; height: 1.5px; background: var(--brand); }
.zig h3 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(1.7rem, 1rem + 1.8vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.zig h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-deep); }
.zig p {
  margin: 18px 0 22px;
  color: var(--ink-2);
  font-size: 1.04rem;
  line-height: 1.6;
  max-width: 50ch;
}
.zig-points {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: grid; gap: 10px;
}
.zig-points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.96rem; color: var(--ink);
}
.zig-points li svg {
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--brand-deep);
}
.zig-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--brand-deep);
  border-bottom: 1px solid var(--brand-deep);
  padding-bottom: 3px;
  transition: gap var(--dur-2) var(--ease);
}
.zig-link:hover { gap: 14px; }

.zig-media {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--sh-2);
}
@media (min-width: 760px) { .zig-media { border-radius: var(--radius-xl); box-shadow: var(--sh-3); } }
.zig-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.zig-media:hover img { transform: scale(1.06); }
.zig-media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(to top, rgba(13,20,24,0.18), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.zig-media:hover::after { opacity: 1; }
.zig-media .kpi {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-darker);
  backdrop-filter: blur(10px);
}
.zig-media .kpi::before { content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }

/* =================================================
   PROCESS — horizontal numbered steps
   ================================================= */
.process-steps {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 540px)  { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .process-steps { grid-template-columns: repeat(5, 1fr); gap: 18px; } }
.pstep {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
@media (min-width: 760px) { .pstep { padding: 22px 24px; gap: 14px; border-radius: var(--radius-lg); } }
.pstep:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--sh-2);
}
.pstep .pn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--brand-wash);
  border: 1px solid var(--brand-soft);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-darker);
}
.pstep h4 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink);
}
.pstep p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin: 0;
}

/* =================================================
   AUDIENCE SPLIT
   ================================================= */
.aud-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .aud-grid { gap: 22px; } }
@media (min-width: 880px) { .aud-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .aud-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.aud {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-1);
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.aud:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
}
.aud-photo {
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}
.aud-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.aud:hover .aud-photo img { transform: scale(1.06); }
.aud-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,20,24,0.0) 50%, rgba(13,20,24,0.4));
}
.aud-photo .tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.aud-photo .tag::before { content: ""; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }

.aud-body { padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 20px; flex: 1; }
.aud-body h3 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(1.6rem, 1rem + 1.6vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.aud-body h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-deep); }
.aud-body .lead { color: var(--ink-2); font-size: 1rem; }
.aud-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.aud-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem; color: var(--ink-2);
}
.aud-list li svg { flex: 0 0 18px; margin-top: 3px; color: var(--brand-deep); }
.aud-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.aud-foot a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand-deep); font-weight: 600;
  font-family: var(--f-sans);
  letter-spacing: 0;
  transition: gap var(--dur-2) var(--ease);
}
.aud-foot a:hover { gap: 12px; }

/* =================================================
   TESTIMONIALS
   ================================================= */
.testi-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testi-grid { gap: 22px; } }
@media (min-width: 720px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .testi-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testi {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.5vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.testi:hover { border-color: var(--brand); box-shadow: var(--sh-2); transform: translateY(-3px); }
.testi .stars { display: inline-flex; gap: 2px; color: var(--brand-deep); }
.testi blockquote {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.testi blockquote em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-deep);
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.94rem;
  font-family: var(--f-sans);
}
.testi-meta { display: grid; gap: 2px; }
.testi-name { font-weight: 600; font-size: 0.94rem; color: var(--ink); }
.testi-where {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: .03em;
}

/* =================================================
   PROOF GRID — engagements vérifiables (remplace testi)
   ================================================= */
.proof-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (min-width: 1100px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.proof {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.2vw, 30px);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.proof:hover { border-color: var(--brand); box-shadow: var(--sh-2); transform: translateY(-3px); }
.proof-ico {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-wash);
  color: var(--brand-deep);
  border: 1px solid var(--brand-soft);
}
.proof-title {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.proof-desc {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.proof-desc a {
  color: var(--brand-deep);
  border-bottom: 1px solid var(--brand-soft);
  transition: border-color var(--dur-1) var(--ease);
}
.proof-desc a:hover { border-bottom-color: var(--brand-deep); }
.proof-cta { margin-top: auto; padding-top: 6px; }
.proof--accent {
  background: var(--brand-wash);
  border-color: var(--brand-soft);
}
.proof--accent .proof-ico {
  background: #fff;
  color: var(--brand-deep);
  border-color: var(--brand-soft);
}
.proof-legal {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--bg-warm);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  color: var(--ink-mute);
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0;
}

/* =================================================
   HERO TRUST PILLS (remplace hero-rating)
   ================================================= */
.hero-trust {
  display: inline-flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
@media (min-width: 760px) { .hero-trust { margin-top: 28px; padding-top: 28px; gap: 10px; } }
.hero-trust .trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--ink-2);
  box-shadow: var(--sh-1);
}
.hero-trust .trust-pill svg { color: var(--brand-deep); flex-shrink: 0; }

/* =================================================
   AIDES — pricing transparency
   ================================================= */
.aides {
  background: var(--bg-deep);
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.aides::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 90% 10%, rgba(16,185,129,0.30), transparent 60%);
  pointer-events: none;
}
.aides-inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  padding: clamp(40px, 5vw, 80px);
  position: relative;
}
@media (min-width: 980px) { .aides-inner { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.aides h2 {
  font-family: var(--f-sans);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2rem, 1rem + 3vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 18px;
}
.aides h2 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-bright); }
.aides p { color: rgba(255,255,255,0.72); font-size: 1.04rem; max-width: 52ch; margin-bottom: 24px; }
.aides .btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.aides .btn-primary:hover { background: var(--brand-bright); border-color: var(--brand-bright); color: var(--ink); }

.aides-list {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 8px;
}
.aides-list .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.aides-list .row:last-child { border-bottom: 0; }
.aides-list .name {
  font-weight: 500;
  color: #fff;
  font-size: 0.96rem;
}
.aides-list .name .sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0;
}
.aides-list .amount {
  font-family: var(--f-sans);
  font-weight: 600;
  color: var(--brand-bright);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* =================================================
   FAQ
   ================================================= */
.faq-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .faq-grid { grid-template-columns: minmax(260px, 360px) 1fr; align-items: start; } }
.faq-list {
  display: grid; gap: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 16px;
  padding: 22px clamp(20px, 2vw, 28px);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  transition: background var(--dur-1) var(--ease);
}
.faq-q:hover { background: var(--bg-warm); }
.faq-q .qnum {
  font-family: var(--f-mono); font-size: 0.78rem;
  color: var(--brand-deep); font-weight: 500;
  min-width: 32px;
}
.faq-q .ico {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-wash);
  display: inline-grid; place-items: center;
  color: var(--brand-darker);
  transition: transform var(--dur-2) var(--ease), background var(--dur-1) var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-q .ico { background: var(--brand); color: #fff; transform: rotate(135deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.faq-a-inner {
  padding: 0 clamp(20px, 2vw, 28px) 24px clamp(56px, 5vw, 64px);
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.55;
}
.faq-a-inner strong { color: var(--ink); }
.faq-a-inner a { color: var(--brand-deep); border-bottom: 1px solid var(--brand-soft); }
.faq-item.is-open .faq-a { max-height: 600px; }

/* =================================================
   PAGE HEAD (sub-pages)
   ================================================= */
.page-head {
  padding: clamp(56px, 7vw, 110px) 0 clamp(40px, 5vw, 80px);
  background:
    radial-gradient(50% 50% at 90% 0%, var(--brand-wash), transparent 65%),
    var(--bg-warm);
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(2.4rem, 1rem + 5vw, 5rem);
  letter-spacing: -0.04em; line-height: 1;
  margin: 18px 0 24px;
  color: var(--ink);
}
.page-head h1 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-deep); }
.page-head .lead { font-size: var(--t-lead); color: var(--ink-2); }

/* =================================================
   SERVICE DETAIL anchors
   ================================================= */
.svc-anchor-nav {
  position: sticky; top: 78px;
  z-index: 30;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin: 0 calc(-1 * var(--gutter));
  padding: 12px var(--gutter);
}
.svc-anchor-nav-inner {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin-inline: auto;
}
.svc-anchor-nav a {
  padding: 8px 16px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.svc-anchor-nav a:hover, .svc-anchor-nav a.is-active {
  color: var(--brand-darker);
  border-color: var(--brand);
  background: var(--brand-wash);
}

.svc-detail {
  padding-block: clamp(60px, 6vw, 110px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 130px;
}
.svc-detail:nth-child(odd) { background: var(--bg-warm); }
.svc-detail-grid {
  display: grid; gap: clamp(28px, 4vw, 64px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) { .svc-detail-grid { grid-template-columns: 1fr 1fr; } }
.svc-detail h2 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(1.8rem, 1rem + 2.4vw, 2.8rem);
  letter-spacing: -0.035em; line-height: 1;
  margin-top: 18px;
  color: var(--ink);
}
.svc-detail h2 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-deep); }
.svc-detail .body { color: var(--ink-2); font-size: 1.02rem; line-height: 1.65; max-width: 56ch; margin-top: 24px; }
.svc-detail .body p + p { margin-top: 14px; }
.svc-detail .body strong { color: var(--ink); font-weight: 600; }

.svc-attrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.svc-attrs dt {
  font-family: var(--f-mono); font-size: 0.7rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 6px;
  font-weight: 500;
}
.svc-attrs dd { margin: 0; font-size: 0.96rem; color: var(--ink); font-weight: 500; }

.svc-list {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 12px;
}
.svc-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.96rem; color: var(--ink-2);
}
.svc-list li svg { flex: 0 0 20px; margin-top: 2px; color: var(--brand-deep); }

.svc-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--sh-3);
  position: relative;
}
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-photo .badge-overlay {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brand-darker);
  backdrop-filter: blur(10px);
}

/* =================================================
   PROJECT GALLERY (realisations)
   ================================================= */
.gallery {
  display: grid; gap: 22px;
  grid-template-columns: repeat(12, 1fr);
}
.gcard {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  isolation: isolate;
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
  box-shadow: var(--sh-1);
}
.gcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.gcard.g-7 { grid-column: span 7; aspect-ratio: 16/10; }
.gcard.g-5 { grid-column: span 5; aspect-ratio: 4/3; }
.gcard.g-4 { grid-column: span 4; aspect-ratio: 4/3; }
.gcard.g-6 { grid-column: span 6; aspect-ratio: 5/3; }
.gcard.g-12 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 900px) {
  .gcard.g-7, .gcard.g-5, .gcard.g-4, .gcard.g-6, .gcard.g-12 {
    grid-column: span 12; aspect-ratio: 4/3;
  }
}
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.16,1,.3,1); }
.gcard:hover img { transform: scale(1.08); }
.gcard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,20,24,0.0) 40%, rgba(13,20,24,0.6));
}
.gcard-meta {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  display: flex; align-items: end; justify-content: space-between; gap: 14px;
  z-index: 2; color: #fff;
}
.gcard-info { display: grid; gap: 4px; }
.gcard-info .tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.gcard-info .title {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.35rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.gcard-arrow {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.gcard:hover .gcard-arrow { background: var(--brand); color: #fff; transform: rotate(-45deg); }

/* =================================================
   CONTACT page
   ================================================= */
.contact-shell { padding-block: clamp(56px, 6vw, 110px); }
.contact-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

.contact-intro h1 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(2.2rem, 1rem + 4vw, 4rem);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 20px;
  color: var(--ink);
}
.contact-intro h1 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-deep); }
.contact-intro .lead { margin-bottom: 32px; max-width: 42ch; color: var(--ink-2); }

.contact-promises {
  display: grid; gap: 14px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.contact-promise {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.96rem; color: var(--ink-2);
}
.contact-promise svg { flex: 0 0 22px; color: var(--brand-deep); margin-top: 2px; }
.contact-promise strong { color: var(--ink); display: block; margin-bottom: 2px; }

.contact-info { display: grid; gap: 18px; padding-top: 4px; }
.contact-info dt {
  font-family: var(--f-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-mute); font-weight: 500;
}
.contact-info dd { margin: 4px 0 0; color: var(--ink); font-weight: 500; }
.contact-info a { color: var(--brand-deep); border-bottom: 1px solid var(--brand-soft); }
.contact-info a:hover { border-color: var(--brand); }

.form {
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--sh-2);
  display: grid; gap: 20px;
}
.form .row2 { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form .row2 { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--f-sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 48px;
  font: inherit;
  font-size: 16px; /* prevents iOS zoom-on-focus */
  outline: none;
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.field textarea { min-height: 140px; }
.elig-field input, .elig-field select { font-size: 16px; min-height: 48px; }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-tint);
}
.field .help { font-size: 0.8rem; color: var(--ink-mute); }
.field.err input, .field.err textarea, .field.err select { border-color: var(--danger); }
.field .err-msg { display: none; color: var(--danger); font-size: 0.84rem; }
.field.err .err-msg { display: block; }
.consent {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.84rem; color: var(--ink-2); line-height: 1.5;
}
.consent input[type=checkbox] {
  appearance: none;
  width: 20px; height: 20px;
  border: 1px solid var(--line-3);
  border-radius: 5px;
  background: var(--bg);
  position: relative; flex-shrink: 0;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.consent input[type=checkbox]:checked {
  background: var(--brand); border-color: var(--brand);
}
.consent input[type=checkbox]:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.segmented {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  background: var(--bg-warm); border: 1px solid var(--line-2);
  border-radius: 12px; overflow: hidden;
}
.segmented label {
  text-align: center; padding: 13px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
  border-right: 1px solid var(--line-2);
}
.segmented label:last-child { border-right: 0; }
.segmented input { display: none; }
.segmented input:checked + span { color: #fff; background: var(--brand); }
.segmented label span { display: block; padding: 12px 6px; margin: -13px -10px; transition: inherit; }

.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-actions .help { font-family: var(--f-mono); font-size: 0.72rem; color: var(--ink-mute); }

.flash {
  padding: 16px 18px; border-radius: 12px;
  border: 1px solid var(--brand-soft);
  background: var(--brand-wash); color: var(--ink);
  display: flex; gap: 14px; align-items: flex-start;
}
.flash .ok-ico { color: var(--brand-deep); flex-shrink: 0; }
.flash.err { border-color: rgba(185,73,47,0.3); background: rgba(185,73,47,0.08); }
.flash.err .ok-ico { color: var(--danger); }

/* =================================================
   GENERIC method-tile (Method/Mentions pages)
   ================================================= */
.tile-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(12, 1fr);
}
.mtile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--sh-1);
  transition: border-color var(--dur-2) var(--ease);
}
.mtile:hover { border-color: var(--brand); }
.mtile.m-7 { grid-column: span 7; }
.mtile.m-5 { grid-column: span 5; }
.mtile.m-6 { grid-column: span 6; }
.mtile.m-12 { grid-column: span 12; }
@media (max-width: 880px) { .mtile { grid-column: span 12 !important; } }
.mtile .label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--brand-deep);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.mtile h3 {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(1.4rem, 1rem + 1.2vw, 1.9rem);
  letter-spacing: -0.025em; line-height: 1.1;
  color: var(--ink);
}
.mtile h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--brand-deep); }
.mtile p { color: var(--ink-2); font-size: 0.96rem; line-height: 1.55; }
.mtile p strong { color: var(--ink); font-weight: 600; }
.mtile p a { color: var(--brand-deep); border-bottom: 1px solid var(--brand-soft); }
