/* SnapCut — Light · Apple-inspired · Mobile-first */

:root {
  --bg: #fbfbfd;
  --bg-alt: #f5f5f7;
  --bg-card: #ffffff;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --text-light: #86868b;
  --border: #d2d2d7;
  --border-light: rgba(0, 0, 0, 0.06);
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --black: #1d1d1f;
  --success: #008009;
  --danger: #d70015;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-btn: 980px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  --header-h: 52px;
  --max-w: 980px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition: 0.25s var(--ease);

  /* Legacy aliases */
  --gold: var(--accent);
  --gold-bright: var(--accent-hover);
  --gold-dim: var(--accent);
  --gold-border: rgba(0, 113, 227, 0.25);
  --white: var(--text);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.display-title {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.display-title-sm { font-size: clamp(1.75rem, 4vw, 2.5rem); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.text-shine, .text-gradient { color: var(--text); background: none; -webkit-text-fill-color: unset; }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-desc, .lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 46ch;
  line-height: 1.5;
}

.section-head { margin-bottom: 2rem; max-width: 580px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-desc { margin-inline: auto; }

.section-label { display: inline-flex; align-items: center; gap: 0.5rem; }
.section-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--border);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: background var(--transition), opacity var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn:active { opacity: 0.85; }

.btn-gold, .btn-accent, .btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-gold:hover, .btn-accent:hover, .btn-primary:hover {
  background: var(--accent-hover);
}

.btn-glass, .btn-ghost, .btn-outline {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.btn-glass:hover, .btn-ghost:hover, .btn-outline:hover {
  background: rgba(0, 113, 227, 0.06);
}

.btn-dark {
  background: var(--text);
  color: #fff;
}

/* ── Cards ── */
.glass, .card, .bento-item, .timeline-item, .contact-card, .lead-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card { padding: 1.5rem; transition: box-shadow var(--transition); }
.card:hover { box-shadow: var(--shadow); }

.card-dark { background: var(--bg-alt); box-shadow: none; }

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1rem;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
}

.card-icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; font-weight: 600; }
.card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; }

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

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.site-header.scrolled { border-color: var(--border-light); }
body.menu-open .site-header { background: var(--bg); border-color: var(--border-light); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
}

.logo { display: flex; align-items: center; flex-shrink: 1; min-width: 0; max-width: 42vw; }
.logo-img { height: 28px; width: auto; max-width: 100%; object-fit: contain; }
.logo-img-lg { height: 56px; max-width: 180px; margin-bottom: 1rem; }

@media (min-width: 768px) {
  .logo { max-width: none; }
  .logo-img { height: 32px; max-width: 120px; }
}

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }

.nav-desktop a {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--text); }

.nav-cta { margin-left: 0.5rem; padding: 0.45rem 1rem !important; font-size: 0.8125rem !important; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; }
body.menu-open { overflow: hidden; }

.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 1rem;
  letter-spacing: -0.02em;
}

.nav-mobile a.active { color: var(--accent); }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* ── Hero ── */
.hero {
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  background: var(--bg);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 42ch;
  margin: 1rem 0 1.75rem;
  line-height: 1.5;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-actions-dual { flex-direction: column; align-items: stretch; }
.hero-actions-dual .btn { width: 100%; justify-content: center; }

@media (min-width: 480px) {
  .hero-actions-dual { flex-direction: row; align-items: center; }
  .hero-actions-dual .btn { width: auto; }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.metric-val {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.metric-lbl {
  font-size: 0.6875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-showcase {
  display: flex;
  justify-content: center;
  padding: 0;
}

.device-frame {
  width: min(220px, 60vw);
  padding: 8px;
  border-radius: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.device-screen {
  aspect-ratio: 9/19;
  border-radius: 26px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.device-logo { width: 50%; height: auto; object-fit: contain; }

@media (min-width: 900px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ── Sections ── */
section, .section { padding: 3.5rem 0; }

.section-alt, .section-deep, .section-dark {
  background: var(--bg-alt);
}

.section-header { text-align: center; margin-bottom: 2rem; }
.section-header .lead, .section-header .section-desc { margin-inline: auto; }
.section-cta { text-align: center; margin-top: 2rem; }

/* Bento */
.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.bento-item { padding: 1.5rem; }
.bento-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1rem;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
}

.bento-item h3 { font-size: 1.0625rem; margin-bottom: 0.35rem; font-weight: 600; }
.bento-item p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; }

@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 1; grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
}

/* Timeline / steps */
.timeline, .steps {
  display: grid;
  gap: 0.75rem;
}

.timeline-item, .step {
  padding: 1.25rem 1.5rem;
}

.timeline-index, .step-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.timeline-item h3, .step h3 { font-size: 1rem; margin-bottom: 0.25rem; font-weight: 600; }
.timeline-item p, .step p { color: var(--text-muted); font-size: 0.875rem; }

@media (min-width: 768px) {
  .timeline, .steps { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

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

.check-list { margin: 1.25rem 0 1.5rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

.split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: auto;
  border-radius: var(--radius);
}

.split-visual-logo { width: 40%; max-width: 140px; opacity: 0.9; }

@media (min-width: 900px) { .split-block { grid-template-columns: 1fr 1fr; } }

/* CTA */
.cta-panel, .cta-band {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.cta-panel p, .cta-band p {
  color: var(--text-muted);
  margin: 0.75rem 0 1.5rem;
  font-size: 1.0625rem;
}

.cta-panel .hero-actions-dual { justify-content: center; margin-bottom: 0; }

/* Feature rows */
.feature-row {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: var(--bg-alt);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-list li {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.feature-list li::before { content: "·"; color: var(--accent); flex-shrink: 0; }

.feature-visual {
  min-height: 200px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-icon { width: 48px; height: 48px; color: var(--accent); }
.feature-visual-glow { display: none; }

@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.reverse { direction: rtl; }
  .feature-row.reverse > * { direction: ltr; }
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin: 0.5rem 0;
}

.page-hero .lead { margin-inline: auto; }

/* FAQ */
.faq-list {
  max-width: 680px;
  margin-inline: auto;
  border-top: 1px solid var(--border-light);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.faq-question svg { flex-shrink: 0; color: var(--text-light); transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; }
.faq-answer a { color: var(--accent); }

/* Prose */
.prose { max-width: 680px; margin-inline: auto; padding: 2rem 0 3.5rem; }
.prose h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.prose h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 { font-size: 1.0625rem; margin: 1.25rem 0 0.35rem; }
.prose p, .prose li { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 0.65rem; line-height: 1.5; }
.prose ul { list-style: disc; padding-left: 1.25rem; }
.prose a { color: var(--accent); }
.prose .updated { font-size: 0.8125rem; color: var(--text-light); margin-bottom: 1.5rem; }

/* Forms */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 3.5rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; align-items: start; }
}

.contact-card, .lead-form-card { padding: 1.75rem; }

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  flex-shrink: 0;
}

.contact-card-icon svg { width: 16px; height: 16px; }
.contact-card p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 0.75rem; }
.contact-link { color: var(--accent); font-weight: 500; }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.form-alert--success { background: rgba(0, 128, 9, 0.08); color: var(--success); border: 1px solid rgba(0, 128, 9, 0.2); }
.form-alert--error { background: rgba(215, 0, 21, 0.06); color: var(--danger); border: 1px solid rgba(215, 0, 21, 0.15); }

.form-success { text-align: center; padding: 1.5rem 0; }
.form-success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(0, 128, 9, 0.1);
  color: var(--success);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.9375rem; }

.lead-form-card h2 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.lead-form-card .lead { margin-bottom: 1.5rem; font-size: 0.9375rem; }

/* Footer */
.site-footer {
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
}

.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand .logo-img { height: 28px; }

.logo-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-wordmark { display: inline-block; }
.footer-brand p { max-width: 26ch; line-height: 1.5; color: var(--text-light); }

.footer-col h4 {
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  padding: 0.2rem 0;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-light);
}

.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-links a:hover { color: var(--accent); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* Store badge */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1rem;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
}

.store-badge small { display: block; font-size: 0.625rem; opacity: 0.7; }

/* Subtle scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* Mobile spacing */
@media (max-width: 767px) {
  section, .section { padding: 2.5rem 0; }
  .section-head { margin-bottom: 1.25rem; }
  .hero { padding: calc(var(--header-h) + 1.5rem) 0 2rem; }
  .page-hero { padding: calc(var(--header-h) + 1.5rem) 0 1.5rem; }
  .contact-grid { padding: 1.5rem 0 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .lead-urgency-dot { animation: none; }
}

/* ── Lead coiffeur (Uber-style) ── */
.lead-hero {
  padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  background: var(--bg);
}

.lead-hero-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.lead-stat {
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin: 0.75rem 0 1rem;
}

.lead-stat-suffix {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.lead-headline {
  font-size: clamp(1.375rem, 4.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lead-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  margin-inline: auto;
  max-width: 38ch;
}

.lead-hero-cta { margin-bottom: 1.25rem; }

.lead-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

.lead-disclaimer {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--text-light);
  max-width: 42ch;
  margin-inline: auto;
}

/* ── Urgence / places limitées ── */
.lead-urgency-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.35);
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: #bf4800;
  text-align: left;
}

.lead-urgency-banner--form { margin-bottom: 1.5rem; }

.lead-urgency-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #ff3b30;
  animation: lead-urgency-pulse 1.8s ease infinite;
}

@keyframes lead-urgency-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(255, 59, 48, 0); }
}

.lead-slots-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.lead-slots-grid--featured {
  max-width: 720px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .lead-slots-grid--featured { grid-template-columns: repeat(3, 1fr); }
}

.lead-slot {
  padding: 1rem 1.125rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.lead-slot--low {
  border-color: rgba(255, 149, 0, 0.45);
  background: rgba(255, 149, 0, 0.04);
}

.lead-slot--critical {
  border-color: rgba(255, 59, 48, 0.45);
  background: rgba(255, 59, 48, 0.05);
}

.lead-slot-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.lead-slot-city {
  font-weight: 600;
  font-size: 0.9375rem;
}

.lead-slot-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.lead-slot-count strong {
  color: #bf4800;
  font-weight: 700;
}

.lead-slot--critical .lead-slot-count strong { color: #d70015; }

.lead-slot-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--border-light);
  overflow: hidden;
}

.lead-slot-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9500, #ff3b30);
}

.lead-slots-footnote {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1.25rem;
}

.lead-form-urgency {
  margin-top: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 149, 0, 0.4);
  background: rgba(255, 149, 0, 0.08);
}

.lead-form-urgency.lead-slot--low {
  border-color: rgba(255, 149, 0, 0.45);
  background: rgba(255, 149, 0, 0.08);
}

.lead-form-urgency.lead-slot--critical {
  border-color: rgba(255, 59, 48, 0.45);
  background: rgba(255, 59, 48, 0.06);
}

.lead-form-urgency-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #bf4800;
  margin-bottom: 0.25rem;
}

.lead-form-urgency.lead-slot--critical .lead-form-urgency-title { color: #d70015; }

.lead-form-urgency-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.0625rem;
  width: 100%;
  max-width: 360px;
}

.lead-pillars {
  display: grid;
  gap: 1rem;
}

.lead-pillar {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.lead-pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
}

.lead-pillar-icon svg { width: 22px; height: 22px; }

.lead-pillar h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.lead-pillar p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.lead-steps {
  display: grid;
  gap: 1rem;
}

.lead-step {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.lead-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lead-step h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.25rem; }
.lead-step p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.5; }

.lead-earn {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.lead-earn-card {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.lead-earn-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.lead-earn-amount {
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lead-earn-detail {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.lead-quote blockquote {
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
}

.lead-quote p {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
}

.lead-quote footer {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.lead-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 0.875rem 1.25rem calc(0.875rem + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 251, 253, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.lead-sticky-cta .btn { max-width: 480px; margin-inline: auto; }

.page-lead-coiffeur { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }

.page-lead-coiffeur .site-footer { padding-bottom: 1rem; }

@media (min-width: 480px) {
  .btn-lg { width: auto; min-width: 280px; }
}

@media (min-width: 640px) {
  .lead-slots-grid:not(.lead-slots-grid--featured) { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .lead-pillars { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .lead-steps { grid-template-columns: repeat(3, 1fr); }
  .lead-earn { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
  .lead-earn-card { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

@media (min-width: 900px) {
  .lead-sticky-cta { display: none; }
  .page-lead-coiffeur { padding-bottom: 0; }

  .lead-hero { padding: calc(var(--header-h) + 3.5rem) 0 4rem; }

  .lead-hero-inner {
    max-width: var(--max-w);
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(0, 1.4fr);
    gap: 3rem 4rem;
    align-items: end;
    text-align: left;
  }

  .lead-hero-inner .lead-urgency-banner {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .lead-hero-inner .eyebrow { grid-column: 1 / -1; grid-row: 2; }
  .lead-stat { grid-column: 1; grid-row: 3 / 5; margin: 0; font-size: 4.5rem; align-self: center; }
  .lead-headline { grid-column: 2; grid-row: 3; margin-bottom: 0.75rem; font-size: 1.75rem; }
  .lead-sub { grid-column: 2; grid-row: 4; margin-bottom: 0; max-width: none; }
  .lead-hero-cta { grid-column: 2; grid-row: 5; margin-top: 1.75rem; margin-bottom: 0; }
  .lead-disclaimer { grid-column: 1 / -1; margin-top: 2rem; margin-inline: 0; max-width: none; text-align: left; }

  .lead-hero-cta .btn-lg { width: auto; }
  .page-lead-coiffeur .section-head { max-width: 520px; }
  .page-lead-coiffeur .cta-panel .btn-lg { width: auto; min-width: 260px; }
  .lead-slots-grid { grid-template-columns: repeat(3, 1fr); }
}
