/* Comitari — Cabinet RH premium */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --navy: #0c1a2e;
  --navy-mid: #152238;
  --navy-soft: #1e3350;
  --gold: #1a5fb4;
  --gold-light: #4a8fd4;
  --paper: #f5f6f8;
  --white: #ffffff;
  --muted: #5c6b7a;
  --line: #dde3ea;
  --serif: 'Libre Baskerville', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --nav: 96px;
  --radius: 10px;
  --shadow: 0 20px 50px -20px rgba(12, 26, 46, 0.18);
  --shadow-lift: 0 28px 60px -18px rgba(12, 26, 46, 0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em; line-height: 1.18; }

/* ── Navigation ── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 500;
  height: var(--nav);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  transition: background 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.is-solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(12, 26, 46, 0.04);
}
.nav:not(.is-solid) { color: var(--white); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo-wrap {
  display: flex; align-items: center;
  transition: transform 0.35s var(--ease);
}
.nav__logo-wrap:hover { transform: scale(1.03); }
.nav:not(.is-solid) .nav__logo-wrap {
  background: rgba(255,255,255,0.97);
  padding: 10px 16px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.nav__logo { height: 60px; width: auto; }
.nav__links { display: none; gap: 28px; font-size: 0.875rem; font-weight: 500; color: var(--muted); }
.nav__links a { position: relative; transition: color 0.25s; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }
.nav:not(.is-solid) .nav__links { color: rgba(255,255,255,0.88); }
.nav:not(.is-solid) .nav__links a:hover { color: var(--white); }
.nav__cta {
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 95, 180, 0.35);
}
.nav:not(.is-solid) .nav__cta { background: var(--white); color: var(--navy); }
.nav__burger { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 1px; transition: transform 0.3s; }

.drawer {
  position: fixed; inset: 0 auto 0 0; z-index: 600;
  width: min(340px, 90vw);
  background: var(--navy);
  color: var(--white);
  transform: translateX(-105%);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  padding: 28px 24px;
  visibility: hidden;
}
.drawer.open {
  transform: translateX(0);
  visibility: visible;
  box-shadow: var(--shadow-lift);
}
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer__head .nav__logo { height: 56px; filter: brightness(0) invert(1); }
.drawer__close { font-size: 1.75rem; color: rgba(255,255,255,0.6); line-height: 1; }
.drawer__links { display: flex; flex-direction: column; gap: 4px; }
.drawer__links a {
  padding: 14px 0; font-size: 1.125rem; font-family: var(--serif);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.25s, padding-left 0.25s;
}
.drawer__links a:hover { color: var(--gold-light); padding-left: 8px; }

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__logo { height: 72px; }
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: grid;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,95,180,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(30,51,80,0.9) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  right: -12%; bottom: -18%;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  background: url('/assets/logo_symbole_transparent.png') center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.14;
  z-index: 1;
  pointer-events: none;
  animation: floatSoft 9s ease-in-out infinite;
}

/* ── Filigrane logo (marque de fond) ── */
.watermark { position: relative; overflow: hidden; }
.watermark::before {
  content: '';
  position: absolute;
  right: -10%; top: 50%;
  width: min(55vw, 560px);
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(-8deg);
  background: url('/assets/logo_symbole_transparent.png') center/contain no-repeat;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}
.watermark > * { position: relative; z-index: 1; }
.watermark--light::before {
  filter: brightness(0) invert(1);
  opacity: 0.08;
}
.watermark--left::before {
  right: auto; left: -12%;
  transform: translateY(-50%) rotate(8deg);
}
.hero__inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav) + 48px) clamp(20px, 5vw, 64px) 72px;
  max-width: 740px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.8vw, 3.9rem);
  margin-bottom: 22px;
  max-width: 16ch;
  animation: fadeUp 0.9s var(--ease) both;
}
.hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.84);
  max-width: 46ch;
  margin-bottom: 32px;
  line-height: 1.75;
  animation: fadeUp 0.9s 0.1s var(--ease) both;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  animation: fadeUp 0.9s 0.18s var(--ease) both;
}
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  animation: fadeUp 1s 0.5s var(--ease) both;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
.hero__visual {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
  z-index: 1;
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  will-change: transform;
  animation: heroZoom 14s ease-out both;
  filter: contrast(1.06) brightness(0.76) saturate(0.92);
}
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--navy) 0%, transparent 35%),
    linear-gradient(0deg, var(--navy) 0%, transparent 28%),
    linear-gradient(90deg, rgba(12,26,46,0.55) 0%, transparent 50%);
}

@media (min-width: 960px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; }
  .hero__visual { min-height: auto; }
  .hero__scroll { left: clamp(20px, 5vw, 64px); transform: none; align-items: flex-start; }
  .hero__visual::after {
    background:
      linear-gradient(90deg, var(--navy) 0%, rgba(12,26,46,0.35) 40%, transparent 70%),
      linear-gradient(0deg, rgba(12,26,46,0.25) 0%, transparent 30%);
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.14); }
  to { transform: scale(1.02); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes scrollLine {
  0% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: bottom; }
}

.btn-primary {
  padding: 15px 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 95, 180, 0.35);
}
.btn-outline-light {
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.btn-outline {
  padding: 14px 28px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s;
}
.btn-outline:hover { border-color: var(--gold); transform: translateY(-1px); }

/* ── Sections ── */
.section { padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px); }
.section--alt { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--white); }
.section__head { max-width: 640px; margin-bottom: clamp(36px, 6vw, 56px); }
.section__head h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 14px; }
.section__head p { color: var(--muted); font-size: 1rem; line-height: 1.7; }

/* ── Image band ── */
.media-band {
  display: grid; gap: 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.media-band__img { min-height: 280px; position: relative; overflow: hidden; }
.media-band__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) brightness(0.75);
  transition: transform 8s ease;
}
.media-band:hover .media-band__img img { transform: scale(1.05); }
.media-band__copy {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
}
.media-band__copy h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; max-width: 16ch; }
.media-band__copy p { color: rgba(255,255,255,0.75); max-width: 42ch; margin-bottom: 28px; line-height: 1.7; }
@media (min-width: 900px) {
  .media-band { grid-template-columns: 1fr 1fr; }
  .media-band__img { min-height: 420px; }
  .media-band--flip .media-band__img { order: 2; }
}

/* ── Risks ── */
.risks { display: grid; gap: 20px; }
@media (min-width: 768px) { .risks { grid-template-columns: repeat(3, 1fr); } }
.risk-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.risk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.risk-card .stat { font-family: var(--serif); font-size: 1.625rem; color: var(--gold); margin-bottom: 10px; }
.risk-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.risk-card p { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; }

/* ── Solutions ── */
.solutions { display: grid; gap: 20px; }
@media (min-width: 768px) { .solutions { grid-template-columns: repeat(2, 1fr); } }
.solution-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.solution-card__img { overflow: hidden; background: var(--navy-mid); }
.solution-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: contrast(1.04) brightness(0.88);
}
.solution-card:hover .solution-card__img img { transform: scale(1.06); }
.solution-card__body { padding: 28px 26px 32px; }
.solution-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.solution-card > .solution-card__body > p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 18px; line-height: 1.65; }
.solution-card ul { list-style: none; }
.solution-card li {
  font-size: 0.8125rem; color: var(--navy); padding: 7px 0;
  border-top: 1px solid var(--line);
}
.solution-card li::before { content: '→ '; color: var(--gold); font-weight: 600; }

/* ── Stats ── */
.stats-band {
  display: grid; gap: 32px; text-align: center;
  padding: 64px clamp(20px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(12,26,46,0.92), rgba(21,34,56,0.88)),
    url('/assets/images/yaounde_hero.png') center/cover;
  color: var(--white);
}
@media (min-width: 768px) { .stats-band { grid-template-columns: repeat(3, 1fr); } }
.stats-band .num {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  color: var(--gold-light);
  line-height: 1;
}
.stats-band .lbl {
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
  margin-top: 12px; max-width: 24ch; margin-inline: auto;
}

/* ── Guarantees / trust ── */
.guarantees { max-width: 800px; }
.guarantee-row {
  display: grid; gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .guarantee-row { grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
}
.guarantee-row strong { font-size: 0.9375rem; color: var(--navy); }
.guarantee-row p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.trust-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-item h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.trust-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

.testimonial {
  max-width: 680px;
  padding: 40px 0 0;
  border-top: 3px solid var(--gold);
  margin-top: 48px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 20px;
}
.testimonial cite { font-style: normal; font-size: 0.875rem; color: var(--muted); font-weight: 500; }

/* ── Tools / cases cards ── */
.tool-cards, .cases-grid { display: grid; gap: 18px; }
@media (min-width: 768px) {
  .tool-cards { grid-template-columns: repeat(3, 1fr); max-width: 960px; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
.tool-card, .case-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.25s;
}
.tool-card:hover, .case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(26,95,180,0.45);
}
.tool-card { padding: 28px 24px; }
.tool-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.tool-card p { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.tool-card span { font-size: 0.8125rem; font-weight: 600; color: var(--gold); }

.case-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--navy-mid); }
.case-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.case-card:hover .case-card__img img { transform: scale(1.05); }
.case-card__body { padding: 24px; }
.case-card__sector { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.case-card h3 { font-size: 1.2rem; margin: 8px 0 10px; }
.case-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.case-metrics {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
}
.case-metrics div { min-width: 90px; }
.case-metrics strong { display: block; font-family: var(--serif); font-size: 1.125rem; color: var(--gold); }
.case-metrics span { font-size: 0.75rem; color: var(--muted); }

/* ── CTA ── */
.cta-block {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(80px, 12vw, 130px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(160deg, rgba(12,26,46,0.94), rgba(21,34,56,0.9)),
    url('/assets/img/hero-bg.png') center/cover;
  color: var(--white);
}
.cta-block::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: min(80vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: url('/assets/logo_symbole_transparent.png') center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.08;
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,0.72); max-width: 42ch; margin: 0 auto 32px; font-size: 0.9375rem; }
.cta-block .note { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 16px; }

/* ── Panel split ── */
.panel-split { display: grid; }
.panel-split__img { aspect-ratio: 16/10; overflow: hidden; background: var(--paper); }
.panel-split__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: contrast(1.04) brightness(0.9);
}
.panel-split:hover .panel-split__img img { transform: scale(1.04); }
.panel-split__text { padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 64px); max-width: 560px; }
.panel-split__text h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 14px; }
.panel-split__text .tagline { font-family: var(--serif); font-style: italic; color: var(--muted); margin-bottom: 20px; }
.panel-split__text p { color: var(--muted); margin-bottom: 14px; line-height: 1.7; font-size: 0.9375rem; }
.panel-split__proof {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.875rem; color: var(--muted); line-height: 1.65;
}
.panel-split__proof strong { color: var(--navy); }
@media (min-width: 960px) {
  .panel-split { grid-template-columns: 1fr 1fr; }
  .panel-split--flip .panel-split__img { order: 2; }
}

/* ── Blog ── */
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.blog-filters button {
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.8125rem; background: var(--white); transition: all 0.25s;
}
.blog-filters button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.blog-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.blog-card__img { aspect-ratio: 16/9; background: var(--paper); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px; }
.blog-card__cat { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.blog-card h3 { font-size: 1.2rem; margin: 8px 0 12px; }
.blog-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.article-page { padding: calc(var(--nav) + 48px) clamp(20px, 5vw, 64px) 80px; max-width: 720px; margin: 0 auto; }
.article-page h1 { font-size: clamp(2rem, 5vw, 2.75rem); margin-bottom: 16px; }
.article-meta { font-size: 0.8125rem; color: var(--muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.article-body h2 { font-size: 1.375rem; margin: 36px 0 12px; }
.article-body h3 { font-size: 1.125rem; margin: 28px 0 10px; }
.article-body p, .article-body li { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.article-body ul { padding-left: 1.25rem; margin-bottom: 20px; }
.article-body strong { color: var(--navy); }

/* ── Forms ── */
.form-shell { max-width: 560px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line);
  border-radius: var(--radius); font: inherit; background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(26,95,180,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.btn-send {
  padding: 14px 32px; background: var(--navy); color: var(--white);
  font-weight: 600; font-size: 0.875rem; border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s;
}
.btn-send:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── Footer ── */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(26,95,180,0.18) 0%, transparent 55%),
    var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: clamp(56px, 8vw, 88px) clamp(20px, 5vw, 64px) 28px;
  font-size: 0.875rem;
}
.footer::before {
  content: '';
  position: absolute;
  right: -8%; bottom: -20%;
  width: min(48vw, 420px);
  aspect-ratio: 1;
  background: url('/assets/logo_symbole_transparent.png') center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.04;
  pointer-events: none;
}
.footer__top {
  position: relative;
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .footer__logo {
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer__brand p {
  max-width: 34ch;
  line-height: 1.7;
  font-size: 0.875rem;
}
.footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
.footer h4 {
  font-family: var(--serif);
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: rgba(255,255,255,0.55);
  transition: color 0.25s var(--ease);
}
.footer a:hover { color: var(--gold-light); }
.footer__bottom {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer__agency a {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.footer__agency a:hover { color: var(--white); }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: grid; place-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
  animation: pulseWa 2.8s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); animation: none; }
.wa-float svg { display: block; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ── Tool pages ── */
.tool-page {
  position: relative;
  padding: calc(var(--nav) + 48px) clamp(20px, 5vw, 64px) 80px;
  max-width: 680px; margin: 0 auto;
}
.tool-page::before {
  content: '';
  position: fixed;
  right: -14vw; bottom: -16vh;
  width: min(60vw, 640px);
  aspect-ratio: 1;
  background: url('/assets/logo_symbole_transparent.png') center/contain no-repeat;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}
.tool-page h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 12px; }
.tool-lead { color: var(--muted); margin-bottom: 24px; max-width: 48ch; font-size: 0.9375rem; }
.tool-note {
  padding: 20px 24px; margin-bottom: 36px;
  background: var(--paper); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.tool-note p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

.wizard-progress { height: 3px; background: var(--line); margin-bottom: 36px; border-radius: 2px; overflow: hidden; }
.wizard-progress__bar { height: 100%; background: var(--gold); width: 0%; transition: width 0.45s var(--ease); }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; animation: fadeUp 0.45s var(--ease); }
.wizard-step h2 { font-size: 1.25rem; margin-bottom: 20px; line-height: 1.35; }
.wizard-options { display: flex; flex-direction: column; gap: 10px; }
.wizard-opt {
  text-align: left; padding: 16px 18px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white); font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.wizard-opt:hover { border-color: var(--gold); background: rgba(26,95,180,0.04); transform: translateX(4px); }
.wizard-report {
  padding: 28px; background: var(--navy); color: var(--white);
  border-radius: var(--radius); margin-top: 24px;
  animation: fadeUp 0.5s var(--ease);
}
.wizard-report h3 { font-family: var(--serif); font-size: 1.375rem; margin-bottom: 16px; }
.wizard-report p { color: rgba(255,255,255,0.82); font-size: 0.9375rem; margin-bottom: 12px; }
.wizard-report .highlight { font-family: var(--serif); font-size: 1.75rem; color: var(--gold-light); margin: 16px 0; }

.legal-page {
  padding: calc(var(--nav) + 48px) clamp(20px, 5vw, 64px) 80px;
  max-width: 680px; margin: 0 auto;
}
.legal-page h1 { font-size: clamp(2rem, 5vw, 2.75rem); margin-bottom: 32px; }
.legal-page h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: var(--muted); margin-bottom: 12px; }

.toast {
  position: fixed; top: calc(var(--nav) + 12px); left: 50%;
  transform: translateX(-50%) translateY(-12px);
  padding: 12px 24px; background: var(--navy); color: var(--white);
  font-size: 0.8125rem; border-radius: var(--radius);
  opacity: 0; pointer-events: none; transition: 0.3s; z-index: 800;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.gated-landing {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav) + 48px) clamp(20px, 5vw, 64px) 80px; max-width: 640px; margin: 0 auto;
}
.gated-landing h1 { font-size: clamp(1.75rem, 4vw, 2.35rem); margin-bottom: 20px; }
.gated-landing .hook { font-family: var(--serif); font-style: italic; color: var(--muted); margin-bottom: 32px; line-height: 1.55; }
.gated-landing .result-box {
  margin-top: 28px; padding: 28px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 0.9375rem; color: var(--muted); line-height: 1.7; display: none;
}
.gated-landing .result-box.visible { display: block; animation: fadeUp 0.45s var(--ease); }
.calc-result {
  margin-top: 28px; padding: 24px; background: var(--paper);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; display: none;
}
.calc-result.visible { display: block; animation: fadeUp 0.4s var(--ease); }
.calc-result strong { display: block; font-family: var(--serif); font-size: 1.375rem; margin: 8px 0 16px; }

@media (min-width: 960px) {
  .footer__top {
    grid-template-columns: minmax(220px, 1.1fr) 2.4fr;
    gap: 64px;
    align-items: start;
  }
  .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field--full { grid-column: 1 / -1; }
}
@media (max-width: 959px) { .hide-mobile { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Contact split ── */
.contact-layout {
  display: grid; gap: 48px;
  max-width: 1100px;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
}
.contact-channel {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-channel:last-child { border-bottom: none; }
.contact-channel strong { display: block; margin-bottom: 4px; }
.contact-channel p { color: var(--muted); font-size: 0.875rem; margin-bottom: 8px; }
.contact-channel a { color: var(--navy); font-weight: 500; }
.contact-channel a:hover { color: var(--gold); }

/* ── FAQ ── */
.faq { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 0.9375rem; line-height: 1.65; }

/* ── Mid CTA / eval band ── */
.eval-band {
  display: grid; gap: 0;
  background: var(--paper);
  overflow: hidden;
}
.eval-band__copy {
  padding: clamp(48px, 8vw, 72px) clamp(20px, 5vw, 64px);
}
.eval-band__copy h2 { font-size: clamp(1.75rem, 4vw, 2.35rem); margin-bottom: 14px; max-width: 18ch; }
.eval-band__copy p { color: var(--muted); max-width: 42ch; margin-bottom: 24px; }
.eval-band__img { min-height: 240px; overflow: hidden; }
.eval-band__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
@media (min-width: 900px) {
  .eval-band { grid-template-columns: 1.1fr 0.9fr; }
  .eval-band__img { min-height: 100%; }
}

/* ── Service detail page ── */
.svc-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav) + 64px) clamp(20px, 5vw, 64px) 64px;
  background:
    linear-gradient(135deg, rgba(12,26,46,0.92), rgba(21,34,56,0.88)),
    url('/assets/img/hero-bg.png') center/cover;
  color: var(--white);
}
.svc-hero::before {
  content: '';
  position: absolute;
  right: -8%; top: 50%;
  width: min(50vw, 480px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url('/assets/logo_symbole_transparent.png') center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.09;
  pointer-events: none;
}
.svc-hero > * { position: relative; }
.svc-hero h1 { font-size: clamp(2rem, 5vw, 3rem); max-width: 18ch; margin-bottom: 18px; }
.svc-hero p { color: rgba(255,255,255,0.8); max-width: 52ch; line-height: 1.75; font-size: 1.0625rem; }
.svc-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-point {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.svc-point h3 { font-size: 1.125rem; margin-bottom: 10px; }
.svc-point p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }
.svc-steps { max-width: 720px; }
.svc-step {
  display: grid; gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .svc-step { grid-template-columns: 56px 1fr; gap: 24px; }
}
.svc-step__num {
  font-family: var(--serif); font-size: 1.75rem; color: var(--gold); line-height: 1;
}
.svc-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.svc-step p, .svc-step li { color: var(--muted); font-size: 0.9375rem; line-height: 1.65; }
.svc-step ul { padding-left: 1.1rem; margin-top: 10px; }

.page-404 {
  min-height: 70svh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: calc(var(--nav) + 48px) 24px 80px;
}
.page-404 .code {
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 9rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}

.stats-band .num[data-count] { font-variant-numeric: tabular-nums; }
.solution-card a.solution-card__link {
  display: inline-block; margin-top: 16px;
  font-size: 0.8125rem; font-weight: 600; color: var(--gold);
}
