/* SOS Serrurier Paris — Design v4 · clair, éditorial, confiance */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --accent: #dc2626;
  --accent-dark: #b91c1c;
  --accent-soft: #fef2f2;
  --accent-ring: rgba(220, 38, 38, 0.18);
  --success: #16a34a;
  --gold: #eab308;
  --dark: #0c1222;
  --dark-soft: #1e293b;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Sora", "Inter", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 24px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.stars { color: var(--gold); letter-spacing: 1px; }
.link-strong { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.03em; }
h1 { font-size: clamp(2.125rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.0625rem; font-weight: 700; }
p { color: var(--ink-soft); }
.lead { font-size: 1.0625rem; line-height: 1.75; color: var(--muted); max-width: 520px; margin-top: 18px; }

.text-gradient { color: var(--accent); }

/* Sections */
.eyebrow {
  display: inline-block;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 12px;
}
.section-intro { max-width: 560px; margin-bottom: 40px; }
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro p { margin-top: 10px; font-size: 1rem; }
.section-band { padding: 80px 0; }
.section-band--white { background: var(--surface); }
.section-band--soft { background: var(--bg); }
.section-band--dark { background: var(--dark); color: #fff; }
.section-band--dark p { color: #94a3b8; }
.section-band--dark h2 { color: #fff; }

/* Icons */
.ico { width: 18px; height: 18px; flex-shrink: 0; }
.ico-lg { width: 22px; height: 22px; }
.ico-brand { width: 22px; height: 22px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  font-weight: 700; border-radius: 999px; padding: 14px 22px; border: 0; cursor: pointer;
  font-family: inherit; font-size: 0.9375rem; transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; display: flex; }
.btn-cta {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 14px var(--accent-ring);
}
.btn-cta:hover { background: var(--accent-dark); box-shadow: 0 8px 24px var(--accent-ring); }
.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover { background: var(--dark-soft); }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-phone {
  background: var(--accent); color: #fff; padding: 10px 18px; font-size: 0.875rem;
  box-shadow: 0 4px 12px var(--accent-ring);
}

/* Header */
.header-top {
  background: var(--dark); color: #94a3b8; font-size: 0.75rem; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-top-inner {
  max-width: var(--container); margin: 0 auto; padding: 8px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 24px;
}
.header-top-inner span { display: inline-flex; align-items: center; gap: 6px; }
.header-top a { color: #fff; font-weight: 800; }
.dot-live { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
@media (max-width: 767px) { .header-top { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: var(--dark); color: #fff;
}
.brand-text strong { font-family: var(--font-display); font-size: 1rem; font-weight: 800; display: block; }
.brand-text small { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 1px; display: block; }

.nav-desktop { display: none; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 12px; border-radius: 8px; font-size: 0.875rem; font-weight: 600;
  color: var(--ink-soft); background: none; border: 0; cursor: pointer; font-family: inherit;
}
.nav-link:hover { background: var(--surface-2); color: var(--ink); }
.nav-dropdown { position: relative; }
.nav-menu {
  position: absolute; top: calc(100% + 6px); left: 0; display: none; flex-direction: column;
  min-width: 260px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 6px; z-index: 300;
}
.nav-menu-wide { min-width: 280px; max-height: 65vh; overflow-y: auto; }
.nav-menu a { padding: 10px 12px; border-radius: 8px; font-size: 0.875rem; font-weight: 600; color: var(--ink-soft); }
.nav-menu a:hover { background: var(--surface-2); color: var(--ink); }
.nav-dropdown:hover .nav-menu { display: flex; }
.burger {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.mobile-menu {
  display: none; flex-direction: column; padding: 12px 24px 20px;
  border-top: 1px solid var(--line); background: #fff; max-height: 75vh; overflow-y: auto;
}
.mobile-menu a { padding: 11px 8px; border-radius: 8px; font-weight: 600; color: var(--ink-soft); }
.mobile-sub { padding: 14px 8px 4px; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; }
body.menu-open .mobile-menu { display: flex; }
@media (min-width: 1100px) { .nav-desktop { display: flex; } .burger { display: none; } }
@media (max-width: 1099px) { .btn-phone { display: none; } }

/* ===== HERO COVER (homepage) ===== */
.hero-cover {
  position: relative; min-height: clamp(520px, 72vh, 680px);
  display: flex; align-items: flex-end; color: #fff; overflow: hidden;
}
.hero-cover-bg { position: absolute; inset: 0; }
.hero-cover-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,18,34,0.92) 0%, rgba(12,18,34,0.75) 42%, rgba(12,18,34,0.35) 100%);
}
.hero-cover-content {
  position: relative; z-index: 1; padding: 48px 24px 64px; width: 100%; max-width: var(--container); margin: 0 auto;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 14px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; margin-bottom: 20px;
}
.hero-kicker .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(22,163,74,0.5); animation: ping 2s infinite;
}
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(22,163,74,0.5)} 70%{box-shadow:0 0 0 8px rgba(22,163,74,0)} 100%{box-shadow:0 0 0 0 rgba(22,163,74,0)} }

.hero-cover h1 { color: #fff; max-width: 640px; }
.hero-cover h1 em { font-style: normal; color: #fca5a5; }
.hero-cover .lead { color: #cbd5e1; max-width: 520px; }
.hero-cover .lead strong { color: #fff; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; align-items: center; }
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust-item strong { display: block; font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; color: #fff; }
.hero-trust-item span { font-size: 0.8125rem; color: #94a3b8; font-weight: 500; }

.hero-cover--page { min-height: clamp(420px, 58vh, 540px); align-items: flex-end; }
.hero-cover--page.hero-cover--compact { min-height: clamp(340px, 48vh, 420px); }
.hero-cover--page .hero-cover-content { padding: 32px 24px 52px; }
.hero-cover--page h1 em { font-style: normal; color: #fca5a5; }
.hero-cover-breadcrumb { margin-bottom: 16px; }
.hero-cover-breadcrumb .breadcrumb { margin-bottom: 0; color: rgba(255,255,255,0.55); }
.hero-cover-breadcrumb .breadcrumb a { color: rgba(255,255,255,0.55); }
.hero-cover-breadcrumb .breadcrumb a:hover { color: #fff; }
.hero-cover-breadcrumb .breadcrumb span { color: rgba(255,255,255,0.95); }

/* Pricing page */
.pricing-featured {
  display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .pricing-featured { grid-template-columns: repeat(4, 1fr); } }
.pricing-featured-item {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--dark); color: #fff; border-radius: var(--radius-lg);
  padding: 24px 20px; transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.pricing-featured-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-featured-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
.pricing-featured-item strong { font-family: var(--font-display); font-size: 1.625rem; font-weight: 800; color: #fca5a5; }
.pricing-featured-note { font-size: 0.75rem; color: #64748b; }

.pricing-layout { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .pricing-layout { grid-template-columns: 1fr 300px; } }
.pricing-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.pricing-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; display: flex; flex-direction: column; height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); border-color: #cbd5e1; }
.pricing-card-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.pricing-card-title h3 { font-size: 1rem; line-height: 1.35; margin-bottom: 4px; }
.pricing-card-title h3 a { color: var(--ink); }
.pricing-card-title h3 a:hover { color: var(--accent); }
.pricing-card-from { font-size: 0.8125rem; font-weight: 800; color: var(--accent); }
.pricing-card-lines { list-style: none; flex: 1; margin-bottom: 14px; }
.pricing-card-lines li {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.875rem;
}
.pricing-card-lines li:last-child { border-bottom: none; }
.pricing-line-label { color: var(--ink-soft); flex: 1; line-height: 1.45; }
.pricing-line-prices { text-align: right; flex-shrink: 0; }
.pricing-line-prices strong { display: block; font-weight: 800; color: var(--ink); }
.pricing-line-prices em { display: block; font-size: 0.75rem; font-style: normal; color: var(--muted); margin-top: 2px; }
.pricing-card-link { font-size: 0.8125rem; font-weight: 700; color: var(--accent); margin-top: auto; }
.pricing-aside-box {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg); padding: 28px; position: sticky; top: calc(var(--header-h) + 16px);
}
.pricing-aside-box h3 { margin: 8px 0 16px; font-size: 1.125rem; }
.pricing-aside-note { margin-top: 14px; font-size: 0.8125rem; color: var(--muted); line-height: 1.55; }
.prose.narrow { max-width: 720px; margin: 0 auto; }

/* ===== HERO GEO (pages arrondissements Paris) ===== */
.hero-geo {
  position: relative; min-height: clamp(480px, 68vh, 620px);
  display: flex; align-items: flex-end; color: #fff; overflow: hidden;
}
.hero-geo-bg { position: absolute; inset: 0; }
.hero-geo-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-geo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(12,18,34,0.94) 0%, rgba(12,18,34,0.82) 45%, rgba(12,18,34,0.55) 100%);
}
.hero-geo-inner {
  position: relative; z-index: 1; width: 100%;
  padding: 28px 24px 48px;
}
.hero-geo .breadcrumb { margin-bottom: 20px; color: rgba(255,255,255,0.55); }
.hero-geo .breadcrumb a { color: rgba(255,255,255,0.55); }
.hero-geo .breadcrumb a:hover { color: #fff; }
.hero-geo .breadcrumb span { color: rgba(255,255,255,0.95); }
.hero-geo-grid {
  display: grid; gap: 32px; align-items: end;
}
@media (min-width: 1024px) {
  .hero-geo-inner { padding: 36px 24px 56px; }
  .hero-geo-grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
}
.hero-geo h1 { color: #fff; max-width: 580px; font-size: clamp(2rem, 4.5vw, 3rem); }
.hero-geo h1 em { font-style: normal; color: #fca5a5; }
.hero-geo .lead { color: #cbd5e1; max-width: 520px; margin-top: 16px; }
.hero-geo-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-xl);
  padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-geo-card-head { margin-bottom: 18px; }
.hero-geo-card-eyebrow {
  display: block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); margin-bottom: 6px;
}
.hero-geo-card-head strong {
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; color: var(--ink);
}
.hero-geo-prices { list-style: none; margin-bottom: 20px; }
.hero-geo-prices li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; color: var(--ink-soft);
}
.hero-geo-prices li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-geo-prices li strong { color: var(--accent); font-weight: 800; font-size: 1rem; }
.hero-geo-card-note {
  margin-top: 14px; font-size: 0.8125rem; color: var(--muted); text-align: center; line-height: 1.5;
}

.local-bar {
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.local-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px;
}
.local-bar-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); flex-shrink: 0;
}
.local-bar-label .ico { color: var(--accent); }
.local-bar-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.local-bar-chips span {
  font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft);
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px;
}

.aside-box .check-list li strong { color: var(--ink); font-weight: 700; }

/* Legacy hero-home → same as cover inner */
.hero-home { position: relative; background: var(--dark); color: #fff; overflow: hidden; min-height: clamp(480px, 65vh, 620px); display: flex; align-items: flex-end; }
.hero-mesh { display: none; }
.hero-home-grid { position: relative; z-index: 1; width: 100%; max-width: var(--container); margin: 0 auto; padding: 48px 24px 56px; }
@media (min-width: 1024px) { .hero-home-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: end; padding: 56px 24px 64px; } }
.hero-home-copy h1 { color: #fff; margin-top: 16px; }
.hero-home-copy .lead { color: #cbd5e1; }
.hero-home-copy .lead strong { color: #fff; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px; border-radius: 999px; font-size: 0.8125rem; font-weight: 600; color: #e2e8f0;
}
.hero-pill .ico { width: 15px; height: 15px; opacity: 0.8; }
.hero-home-visual { position: relative; }
.visual-ring { display: none; }
.hero-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,0.15); }
.hero-frame .hero-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.float-badge {
  position: absolute; background: #fff; border-radius: var(--radius);
  padding: 10px 14px; box-shadow: var(--shadow);
}
.float-badge strong { display: block; font-family: var(--font-display); font-size: 1.125rem; font-weight: 800; color: var(--ink); }
.float-badge span { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.float-badge--time { bottom: 16px; left: -8px; }
.float-badge--rating { top: 16px; right: -8px; }
.float-badge--rating strong { color: var(--accent); }
.quick-panel { display: none; }
.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1px solid #fecaca;
  padding: 7px 14px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; color: var(--accent-dark);
}
.live-badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

/* Metrics */
.metrics-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: var(--container); margin: 0 auto; }
@media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric { padding: 24px 20px; text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .metric { border-bottom: none; } .metric:last-child { border-right: none; } }
@media (max-width: 767px) { .metric:nth-child(2n) { border-right: none; } .metric:nth-last-child(-n+2) { border-bottom: none; } }
.metric-icon {
  width: 36px; height: 36px; margin: 0 auto 8px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center;
}
.metric strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--ink); }
.metric span { font-size: 0.75rem; color: var(--muted); font-weight: 600; }

/* USP */
.bento { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .bento-usp { grid-template-columns: repeat(3, 1fr); } }
.bento-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: box-shadow 0.2s;
}
.bento-item:hover { box-shadow: var(--shadow); }
.bento-item--featured { display: none; }
.bento-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 16px;
}
.bento-item h3 { margin-bottom: 6px; }
.bento-item p { font-size: 0.9375rem; line-height: 1.65; }

/* Cards */
.service-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.2s var(--ease), box-shadow 0.2s;
  height: 100%;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cbd5e1; }
.service-card-top { padding: 22px 22px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.service-card-body { padding: 14px 22px 22px; flex: 1; }
.service-card-body p { font-size: 0.9375rem; line-height: 1.6; margin-top: 6px; color: var(--muted); }
.service-card-foot {
  padding: 14px 22px; border-top: 1px solid var(--line-soft); background: var(--bg);
  display: flex; justify-content: space-between; align-items: center;
}
.service-ico {
  width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--dark); color: #fff;
}
.service-tag {
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 9px; border-radius: 999px; background: var(--accent-soft); color: var(--accent);
}
.price-tag { font-weight: 800; font-size: 0.9375rem; color: var(--ink); }
.price-tag em { font-style: normal; font-weight: 500; color: var(--muted); font-size: 0.75rem; }
.arrow-link { font-size: 0.8125rem; font-weight: 700; color: var(--accent); }
.arrow { color: var(--accent); font-weight: 700; font-size: 0.8125rem; margin-top: 10px; display: inline-block; }

.cards-3 { display: grid; gap: 16px; grid-template-columns: 1fr; }
.cards-4 { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } .cards-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-4 { grid-template-columns: repeat(4, 1fr); } }

/* Process */
.process-timeline { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .process-timeline { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 24px 20px;
}
.process-step-num {
  width: 32px; height: 32px; border-radius: 10px; background: var(--accent);
  color: #fff; font-weight: 800; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.process-step h3 { color: #fff; margin-bottom: 6px; font-size: 1rem; }
.process-step p { color: #94a3b8; font-size: 0.875rem; line-height: 1.6; }

/* Reviews */
.reviews-section { padding: 80px 0; background: var(--surface); }
.review-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; height: 100%;
}
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--dark); color: #fff; font-weight: 800; font-size: 0.8125rem;
  display: flex; align-items: center; justify-content: center;
}
.review-meta strong { display: block; font-weight: 700; font-size: 0.9375rem; }
.review-meta span { font-size: 0.8125rem; color: var(--muted); }
.review-quote { font-size: 0.9375rem; line-height: 1.7; color: var(--ink-soft); }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }

/* Photos */
.photo-gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .photo-gallery { grid-template-columns: repeat(4, 1fr); } }
.photo-figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.photo-figure img { width: 100%; height: 100%; object-fit: cover; }
.photo-cap { display: none; }
.content-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-sm { width: 100%; aspect-ratio: 16/10; max-height: 320px; object-fit: cover; border-radius: var(--radius-lg); }

/* Tables */
.pricing-showcase { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 32px; }
.table-wrap { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.table-wrap.narrow { max-width: 680px; margin: 0 auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
thead { background: var(--dark); color: #fff; }
thead th { font-weight: 600; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 18px; }
th, td { padding: 13px 18px; text-align: left; }
th:nth-child(2), th:nth-child(3), td:nth-child(2), td:nth-child(3) { text-align: right; }
tbody tr { border-top: 1px solid var(--line); }
tbody tr:hover { background: var(--bg); }
td a { font-weight: 600; color: var(--ink); }
td a:hover { color: var(--accent); }

/* Zones */
.zones-section { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chips-left { justify-content: flex-start; }
.chips a, .chip-static {
  padding: 9px 16px; border-radius: 999px; font-size: 0.8125rem; font-weight: 600;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft);
  transition: all 0.15s;
}
.chips a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* CTA */
.cta-premium {
  background: var(--dark); border-radius: var(--radius-xl); padding: 48px 32px;
  display: grid; gap: 24px; align-items: center;
}
@media (min-width: 768px) { .cta-premium { grid-template-columns: 1.2fr auto; padding: 48px 40px; } }
.cta-premium h2 { color: #fff; font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
.cta-premium p { color: #94a3b8; margin-top: 8px; font-size: 1rem; }
.cta-premium-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-premium-foot { font-size: 0.8125rem; color: #64748b; margin-top: 12px; }
.cta-premium::before { display: none; }

/* Page head (inner pages) */
.page-head, .page-hero-premium {
  background: var(--surface); border-bottom: 1px solid var(--line); padding: 0;
}
.page-head .hero-inner-grid, .page-hero-premium .hero-inner-grid {
  padding: 32px 24px 40px; max-width: var(--container); margin: 0 auto;
}
.page-head .hero-inner-main, .page-hero-premium .hero-inner-main {
  display: grid; gap: 32px; align-items: center;
}
@media (min-width: 1024px) {
  .page-head .hero-inner-main, .page-hero-premium .hero-inner-main { grid-template-columns: 1.15fr 0.85fr; }
  .page-head .hero-inner-grid, .page-hero-premium .hero-inner-grid { padding: 40px 24px 48px; }
}
.page-hero-premium--compact .hero-inner-main { grid-template-columns: 1fr; max-width: 720px; }
.page-head h1, .page-hero-premium h1 { color: var(--ink); margin-top: 12px; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.page-head .lead, .page-hero-premium .lead { color: var(--muted); max-width: 560px; }
.page-hero-premium .hero-mesh { display: none; }
.page-hero-premium .live-badge { margin-bottom: 8px; }
.page-hero-premium .hero-inner-copy { min-width: 0; }
.page-hero-premium .hero-inner-visual { position: relative; min-width: 0; }
.page-hero-premium .hero-frame {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.page-hero-premium .float-badge--time { left: 12px; bottom: 12px; }
.page-hero-premium .float-badge--rating { right: 12px; top: 12px; }
.page-hero-premium .hero-pill {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.page-hero-premium .hero-pill .ico { opacity: 1; color: var(--accent); flex-shrink: 0; }
.page-hero-premium h1 { text-wrap: balance; }
.page-hero-premium .lead { margin-top: 14px; line-height: 1.65; }
.page-hero-premium .hero-cta-row { margin-top: 22px; gap: 14px; }
.page-hero-premium .hero-pills { margin-top: 18px; gap: 10px; }
.page-hero-premium .hero-pill { white-space: nowrap; gap: 8px; padding: 9px 15px; }
.live-badge { flex-wrap: wrap; line-height: 1.45; max-width: 100%; }
.page-hero-premium + .metrics-strip { border-top: 1px solid var(--line); }
.page-hero-premium:has(+ .metrics-strip) { border-bottom: none; }
.metric strong { font-size: clamp(0.875rem, 1.8vw, 1rem); }
.hero-frame--inner { position: relative; }
.hero-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--dark); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.hero-ico--lg { width: 52px; height: 52px; }
.hero-note-inline { color: var(--muted); font-size: 0.9375rem; font-weight: 600; }
.hero-note-inline strong { color: var(--accent); font-weight: 800; }

.hero-price-panel {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.hero-price-panel h2 { color: var(--muted); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-weight: 700; }
.hero-price-panel ul { list-style: none; }
.hero-price-panel li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.hero-price-panel li:last-child { border-bottom: none; }
.hero-price-panel li strong { color: var(--accent); font-weight: 800; }
.hero-price-panel small { display: block; margin-top: 12px; color: var(--muted); font-size: 0.8125rem; }

.breadcrumb { font-size: 0.8125rem; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--ink-soft); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; background: var(--accent-soft); color: var(--accent-dark); border: 1px solid #fecaca; }

/* Content blocks */
.two-col { display: grid; gap: 32px; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.content-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 32px;
}
.content-panel .section-intro { margin-bottom: 20px; text-align: left; }
.content-panel .section-intro h2 { font-size: 1.375rem; }
.prose h2 { margin-bottom: 12px; }
.prose h3 { margin: 20px 0 10px; }
.prose p { margin-bottom: 14px; line-height: 1.75; }
.prose.narrow { max-width: 680px; margin: 0 auto; }
.aside-box {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; position: sticky; top: calc(var(--header-h) + 16px);
}
.aside-box--premium { border-left: 3px solid var(--accent); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.check-list li { padding-left: 22px; position: relative; font-size: 0.9375rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.check-list.two { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.process-inline { display: grid; gap: 10px; }
.process-step-inline {
  display: flex; gap: 14px; padding: 16px 18px; background: var(--bg);
  border-radius: var(--radius); border: 1px solid var(--line);
}
.process-step-inline p { margin: 4px 0 0; font-size: 0.9375rem; color: var(--muted); }
.process-step-inline strong { font-size: 0.9375rem; color: var(--ink); }
.process-row { display: flex; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 8px; background: var(--surface); }
.process-row .step-n { width: 28px; height: 28px; border-radius: 8px; background: var(--dark); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 22px; background: var(--surface); border: 0; cursor: pointer;
  font-family: inherit; font-size: 0.9375rem; font-weight: 700; color: var(--ink); text-align: left;
}
.faq-q:hover { background: var(--bg); }
.faq-item.open .faq-q { background: var(--accent-soft); color: var(--accent-dark); }
.faq-ico { color: var(--accent); transition: transform 0.2s; }
.faq-item.open .faq-ico { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 18px; color: var(--ink-soft); line-height: 1.7; font-size: 0.9375rem; }
.faq-item.open .faq-a { display: block; }

/* Misc */
.section-head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.card-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.steps-section { background: var(--dark); padding: 80px 0; }
.page-hero { background: var(--surface); border-bottom: 1px solid var(--line); padding: 40px 0; color: var(--ink); }
.page-hero::before { display: none; }
.page-hero h1 { color: var(--ink); }
.page-hero .lead { color: var(--muted); }
.page-hero-grid { display: grid; gap: 28px; }
@media (min-width: 1024px) { .page-hero-grid { grid-template-columns: 1.5fr 1fr; align-items: center; } }
.price-box { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.price-box h2 { color: var(--muted); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.price-box ul { list-style: none; }
.price-box li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.price-box small { display: block; margin-top: 10px; color: var(--muted); font-size: 0.8125rem; }

.tarif-block { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; background: var(--surface); }
.tarif-head { padding: 14px 20px; background: var(--bg); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.info-box { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; max-width: 720px; margin: 28px auto 0; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; background: var(--dark); color: #fff; border-radius: var(--radius-xl); padding: 28px; text-align: center; max-width: 720px; margin: 40px auto 0; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats strong { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; }
.stats span { font-size: 0.75rem; color: #94a3b8; }

.contact-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.contact-row { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-row:hover { border-color: var(--accent); }
.contact-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.contact-row small { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 700; }
.contact-row strong { font-size: 1rem; font-weight: 700; color: var(--ink); }
.form-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.form-box label { display: flex; flex-direction: column; gap: 6px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.form-box input, .form-box textarea { border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; font-family: inherit; font-size: 1rem; }
.form-box input:focus, .form-box textarea:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-box form { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.quote-box { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: calc(var(--header-h) + 16px); }

.phone-cta-strip { background: var(--dark); color: #fff; padding: 20px 0; }
.phone-cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.phone-cta-inner .small { color: #94a3b8; }

.scenario-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .scenario-grid { grid-template-columns: repeat(2, 1fr); } }
.scenario-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.scenario-card h3 { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 8px; font-weight: 700; }
.scenario-card p { font-size: 0.9375rem; line-height: 1.65; color: var(--ink-soft); }
.search-hint { margin-top: 20px; padding: 12px 16px; background: var(--bg); border-radius: var(--radius); border-left: 3px solid var(--accent); font-size: 0.875rem; }
.content-links { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }

.cta-banner { background: var(--dark); border-radius: var(--radius-xl); padding: 40px 28px; text-align: center; color: #fff; }
.cta-banner h2 { color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.rating-line { display: flex; gap: 8px; justify-content: center; align-items: center; margin-bottom: 8px; }
.steps-list { margin: 12px 0 0 1.25rem; color: var(--ink-soft); }
.trustbar { display: none; }

/* Footer */
.site-footer { background: var(--dark); color: #94a3b8; }
.footer-grid { display: grid; gap: 32px; padding: 56px 24px 40px; max-width: var(--container); margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.brand-footer { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 14px; }
.site-footer p { font-size: 0.875rem; line-height: 1.7; color: #64748b; margin-top: 6px; }
.footer-contact { margin-top: 16px; line-height: 1.9; font-size: 0.875rem; }
.footer-contact strong { color: #94a3b8; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.06em; min-width: 4.5rem; display: inline-block; }
.site-footer h4 { color: #e2e8f0; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 700; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a { font-size: 0.875rem; color: #64748b; }
.site-footer ul a:hover { color: #fff; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: #475569; margin: 0; }
.site-footer::before { display: none; }

/* Mobile callbar */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--dark); color: #fff; padding: 14px 20px;
  border-top: 2px solid var(--accent); box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-callbar .callbar-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; }
.mobile-callbar strong { font-size: 1.0625rem; font-weight: 800; }
@media (min-width: 768px) { .mobile-callbar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 64px; } .float-badge--time { left: 6px; } .float-badge--rating { right: 6px; } .hero-note-inline { width: 100%; } }

/* WhatsApp flottant */
.whatsapp-float {
  position: fixed; right: 16px; bottom: 76px; z-index: 310;
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55); }
.whatsapp-float svg { width: 28px; height: 28px; }
@media (min-width: 768px) { .whatsapp-float { bottom: 24px; } }
