/* Cabinet Steven Dubois — Landing conversion Ads */

:root {
  --bg: #0c0b0a;
  --bg-elevated: #161412;
  --bg-card: #1c1916;
  --border: rgba(201, 169, 98, 0.18);
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dim: rgba(201, 169, 98, 0.12);
  --text: #f5f2eb;
  --text-muted: #9a9488;
  --whatsapp: #25d366;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
  --sticky-h: calc(58px + env(safe-area-inset-bottom, 0px));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--bg);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a88b4a 100%);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.35);
}
.btn-primary:hover {
  color: var(--bg);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { color: #fff; filter: brightness(1.08); }

.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--text); }

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  font-size: 1.1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.logo-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
}
.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-desktop a:hover { color: var(--gold-light); }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.header-call-mobile {
  display: inline-flex;
  margin-left: auto;
  flex-shrink: 0;
  min-height: 44px;
  padding-inline: 1rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.is-open {
  display: flex;
}
.nav-mobile[hidden] {
  display: none !important;
}
.nav-mobile a {
  color: var(--text);
  padding: 0.5rem 0;
  font-weight: 500;
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 2rem) 0 3rem;
  min-height: min(90vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/hero-bg.jpg") center / cover no-repeat;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 14, 13, 0.94) 0%,
    rgba(15, 14, 13, 0.82) 42%,
    rgba(15, 14, 13, 0.55) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card--form {
  background: rgba(28, 26, 24, 0.92);
  border-color: rgba(201, 169, 98, 0.35);
  backdrop-filter: blur(10px);
}

.hero-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.hero-form-title {
  font-size: 1.45rem;
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

.hero-form .form-row {
  margin-bottom: 0.85rem;
}

.hero-form .form-row:last-of-type {
  margin-bottom: 1rem;
}

.hero-card-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-legal--compact {
  margin-top: 0.65rem;
  font-size: 0.7rem;
  text-align: center;
}

.form-success-msg {
  color: #6fcf97;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  text-align: center;
}

.form-success-msg[hidden] {
  display: none !important;
}

.form-error-msg {
  color: #f4a261;
  font-size: 0.88rem;
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.45;
}

.form-error-msg a {
  color: var(--gold);
  font-weight: 600;
}

.form-error-msg[hidden] {
  display: none !important;
}

/* Stats */
.stats-bar {
  padding: 2rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}

.stats-intro {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.8;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-elevated);
}

.section-seo {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.seo-content .section-header {
  max-width: 42rem;
}

.seo-text {
  max-width: 46rem;
  display: grid;
  gap: 1rem;
}

.seo-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.seo-text strong {
  color: var(--text);
  font-weight: 500;
}

.section-header {
  max-width: 36rem;
  margin-bottom: 3rem;
}
.section-header p:last-child {
  color: var(--text-muted);
  margin: 0;
}

/* Cards */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(201, 169, 98, 0.4);
  transform: translateY(-2px);
}

.card-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.card-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold);
}

/* Split / About */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-photo {
  margin: 0;
  width: min(320px, 100%);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-photo--work img {
  aspect-ratio: 16 / 10;
  object-position: center center;
}

.about-photo figcaption {
  margin-top: 1rem;
  text-align: center;
}

.about-photo figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
}

.about-photo figcaption span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  grid-row: span 2;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}

.steps h3 {
  margin: 0;
  font-size: 1.15rem;
  align-self: end;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  grid-column: 2;
}

.cta-band {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cta-band p {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.section-trust {
  padding: 0 0 2rem;
}

.trust-band {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.trust-band-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--gold);
}

.trust-band-text {
  margin: 0;
  max-width: 42rem;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.testimonial footer {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.testimonial-loc {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 2.5rem;
}

.faq-aside {
  color: var(--text-muted);
  margin-bottom: 1.25rem !important;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.25rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.section-contact {
  padding-bottom: calc(5rem + var(--sticky-h));
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.contact-hours {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-form h3 {
  margin-bottom: 0.35rem;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-legal {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-legal {
  max-width: 42rem;
  margin-inline: auto !important;
  font-size: 0.75rem !important;
  line-height: 1.5;
  opacity: 0.85;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.site-footer nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.85rem;
  margin: 0.75rem 0 0.5rem;
}

.footer-legal-nav a {
  font-size: 0.68rem !important;
  color: var(--text-muted) !important;
  opacity: 0.75;
  letter-spacing: 0.01em;
}

.footer-legal-nav a:hover {
  opacity: 1;
  color: var(--gold-light) !important;
}

/* Pages légales */
.legal-page .sticky-cta { display: none; }

.legal-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.legal-header a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.legal-content {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.legal-content h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer {
  padding: 1.5rem 0 2rem;
}

.legal-footer .footer-legal {
  margin-top: 0.5rem;
}

@media (max-width: 899px) {
  .legal-content {
    padding: 2rem 0 2.5rem;
  }
}

/* Sticky CTA mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  min-height: var(--sticky-h);
  background: rgba(12, 11, 10, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.5rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
  gap: 0.5rem;
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: filter 0.15s;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}

.sticky-call {
  background: linear-gradient(135deg, var(--gold) 0%, #a88b4a 100%);
  color: var(--bg);
}
.sticky-wa {
  background: var(--whatsapp);
  color: #fff;
}

/* Mobile — touch & conversion */
@media (max-width: 899px) {
  :root {
    --header-h: 58px;
    --urgency-h: 40px;
  }

  .container {
    width: min(1120px, 100% - 1.25rem);
  }

  .header-inner {
    min-height: var(--header-h);
    height: var(--header-h);
    gap: 0.5rem;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .logo-text strong {
    font-size: 0.92rem;
  }

  .logo-text span {
    font-size: 0.62rem;
  }

  .header-call-mobile {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    min-height: 40px;
  }

  .urgency-bar {
    justify-content: space-between;
    padding-inline: 0.65rem;
  }

  .urgency-bar__detail {
    display: none;
  }

  .urgency-bar__text {
    justify-content: flex-start;
    text-align: left;
    font-size: 0.72rem;
  }

  .urgency-pulse {
    animation: none;
    box-shadow: none;
  }

  h1 {
    font-size: clamp(1.75rem, 8.2vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  h1 em {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.92em;
  }

  .hero {
    padding-top: calc(var(--header-h) + var(--urgency-h) + env(safe-area-inset-top, 0px) + 0.85rem);
    min-height: auto;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-badges {
    margin-bottom: 0.85rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.35rem;
  }

  .stat-num {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .stats-intro {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 52px;
  }

  .trust-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .btn {
    min-height: 48px;
  }

  .btn-lg {
    min-height: 52px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .coverage-block {
    margin-top: 2rem;
    padding: 1.15rem 1rem;
  }

  .coverage-label {
    font-size: 1.05rem;
  }

  .coverage-grid li {
    min-height: 2.35rem;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .faq-item summary {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .urgency-pulse {
    animation: none;
  }
}

@media (max-width: 380px) {
  .logo-text span {
    display: none;
  }
}

/* Responsive */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
  .header-call-mobile { display: none; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3rem;
  }

  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }

  .sticky-cta { display: none; }
  .section-contact { padding-bottom: 5rem; }
}

@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps li { flex-direction: column; text-align: center; }
  .step-num { grid-row: auto; margin-bottom: 0.5rem; }
  .steps h3, .steps p { grid-column: auto; }
}

/* ——— Suisse · Urgence · Paiement · Portrait ——— */

:root {
  --urgency-h: 44px;
}

.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: var(--urgency-h);
  padding: 0.45rem 0.75rem;
  padding-top: max(0.45rem, env(safe-area-inset-top, 0px));
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--bg);
  background: linear-gradient(135deg, #b8944a 0%, var(--gold-light) 50%, #b8944a 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.urgency-bar__text {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  line-height: 1.25;
  text-align: center;
}

.urgency-bar__sep {
  opacity: 0.55;
}

.urgency-bar__call {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  background: rgba(12, 11, 10, 0.22);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.urgency-bar__call:hover {
  color: var(--bg);
  background: rgba(12, 11, 10, 0.35);
}

.urgency-pulse {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5);
  animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(192, 57, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}

.site-header--offset {
  top: var(--urgency-h);
}

html {
  scroll-padding-top: calc(var(--header-h) + var(--urgency-h) + 16px);
}

.hero {
  padding-top: calc(var(--header-h) + var(--urgency-h) + env(safe-area-inset-top, 0px) + 1.5rem);
}

/* Hero badges (mobile-friendly) */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
}

h1 {
  text-wrap: balance;
}

.hero-card-label--urgent {
  color: #e74c3c;
  font-weight: 700;
  animation: none;
  letter-spacing: 0.06em;
}

.cta-strip {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 1.25rem 0;
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-band--compact {
  margin-top: 2rem;
  text-align: center;
}

.cantons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.canton-tag {
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.canton-tag--highlight {
  color: var(--gold-light);
  border-color: var(--gold);
  background: var(--gold-dim);
}

/* Coverage — villes / cantons premium */
.coverage-block {
  margin-top: 2.5rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(28, 25, 22, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.coverage-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.coverage-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.coverage-label {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.coverage-sub {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  background: rgba(12, 11, 10, 0.45);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 10px;
}

.coverage-grid__all {
  grid-column: 1 / -1;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  background: var(--gold-dim);
  border-color: rgba(201, 169, 98, 0.28);
}

@media (min-width: 560px) {
  .coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coverage-grid__all {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .coverage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-visual--text {
  display: flex;
  align-items: center;
}

/* Pourquoi Steven — portrait stratégique */
.pourquoi-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.pourquoi-intro {
  text-align: center;
}

.pourquoi-intro h2 {
  margin-bottom: 0;
}

.pourquoi-photo {
  margin: 0 auto;
  max-width: 340px;
  width: 100%;
}

.pourquoi-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pourquoi-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.about-quote--inline {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}

.about-quote--inline p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}

.pourquoi-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .pourquoi-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .pourquoi-layout {
    grid-template-columns: 0.92fr 1.08fr;
    grid-template-areas:
      "intro intro"
      "photo body";
    gap: 2rem 3rem;
  }

  .pourquoi-intro {
    grid-area: intro;
    text-align: left;
    max-width: 40rem;
  }

  .pourquoi-photo {
    grid-area: photo;
    max-width: none;
    margin: 0;
    position: sticky;
    top: calc(var(--header-h) + var(--urgency-h) + 1.5rem);
  }

  .pourquoi-body {
    grid-area: body;
  }
}

@media (max-width: 899px) {
  .pourquoi-photo {
    max-width: min(300px, 78vw);
  }
}

.section-payment {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.payment-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
}

.payment-card {
  padding: 1.75rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.payment-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.payment-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.payment-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-portrait {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.portrait-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .portrait-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }
}

.portrait-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.portrait-photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.portrait-lead {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.portrait-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .portrait-cta { flex-direction: row; flex-wrap: wrap; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-contact {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--text);
  font-weight: 500;
}

.footer-copy {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.form-success-msg {
  color: #4caf50;
  font-weight: 600;
  margin-top: 1rem;
}
