/* ═══════════════════════════════════════════
   LEAD MAGNETS — WebCaring
   Inclure dans chaque page : <link rel="stylesheet" href="lead-magnets.css">
   ═══════════════════════════════════════════ */

/* ── LM GLOBAL ── */
.lm-section {
  padding: 72px 5%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lm-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   LM #1 — KIT GOOGLE MAPS (PDF inline)
   Usage: dans articles + blog
   ───────────────────────────────────────── */
.lm1-block {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}

.lm1-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(216, 74, 0, 0.12);
  pointer-events: none;
}

.lm1-block::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 160px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.lm1-icon {
  width: 80px;
  height: 96px;
  background: linear-gradient(135deg, #D84A00 0%, #F5763A 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(216, 74, 0, 0.35);
  position: relative;
}

.lm1-icon::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.18);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-radius: 0 10px 0 0;
}

.lm1-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.lm1-icon-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.lm1-content .lm-badge {
  display: inline-block;
  background: rgba(216, 74, 0, 0.18);
  border: 1px solid rgba(216, 74, 0, 0.35);
  color: #F5763A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.lm1-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.lm1-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 22px;
}

.lm1-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
}

.lm1-form input {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  transition: border .2s, background .2s;
  outline: none;
}

.lm1-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.lm1-form input:focus {
  border-color: rgba(216, 74, 0, 0.6);
  background: rgba(255, 255, 255, 0.13);
}

.lm1-form button {
  background: linear-gradient(135deg, #D84A00 0%, #F05A10 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(216, 74, 0, 0.4);
}

.lm1-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(216, 74, 0, 0.55);
}

.lm1-trust {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
}

/* Success state LM1 */
.lm1-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.lm1-success-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.lm1-success h4 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.lm1-success p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* LM1 blog banner variant */
.lm1-blog-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0e2040 100%);
  border-radius: 20px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.lm1-blog-banner::before {
  content: '📋';
  position: absolute;
  right: 48%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  opacity: 0.06;
  pointer-events: none;
}

.lm1-blog-text .lm-badge {
  display: inline-block;
  background: rgba(216, 74, 0, 0.2);
  border: 1px solid rgba(216, 74, 0, 0.4);
  color: #F5763A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.lm1-blog-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.lm1-blog-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

.lm1-blog-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.lm1-blog-form input {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  transition: border .2s;
  outline: none;
}

.lm1-blog-form input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.lm1-blog-form input:focus {
  border-color: rgba(216, 74, 0, 0.5);
}

.lm1-blog-cta {
  background: linear-gradient(135deg, #D84A00, #F05A10);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  width: 100%;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(216, 74, 0, 0.4);
}

.lm1-blog-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(216, 74, 0, 0.5);
}

.lm1-blog-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.lm1-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.lm1-check-item::before {
  content: '✓';
  color: #D84A00;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lm1-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 18px;
  min-width: 220px;
}

.lm1-preview-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lm1-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  gap: 10px;
}

.lm1-preview-item:last-child {
  border-bottom: none;
}

.lm1-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lm1-pill.fast {
  background: rgba(40, 202, 65, 0.2);
  color: #28CA41;
}

.lm1-pill.medium {
  background: rgba(255, 183, 28, 0.2);
  color: #FFB71C;
}


/* ─────────────────────────────────────────
   LM #2 — SIMULATEUR DE CLIENTS PERDUS
   Usage: article calculateur + services
   ───────────────────────────────────────── */
.lm2-block {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin: 52px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
}

.lm2-header {
  background: linear-gradient(135deg, #fff8f5 0%, #fff4ef 100%);
  border-bottom: 1px solid var(--border-orange);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lm2-header-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #D84A00, #F05A10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lm2-header-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.lm2-header-text .lm-badge {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.lm2-header-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.lm2-body {
  padding: 36px;
}

/* Steps */
.lm2-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.lm2-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: all .3s;
}

.lm2-step-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.lm2-step-dot.done {
  background: #28CA41;
  border-color: #28CA41;
  color: white;
}

.lm2-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background .3s;
}

.lm2-step-line.done {
  background: #28CA41;
}

/* Questions */
.lm2-question {
  display: none;
}

.lm2-question.active {
  display: block;
}

.lm2-q-label {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.35;
}

.lm2-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lm2-option {
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.lm2-option:hover {
  border-color: var(--orange);
  background: var(--orange-dim);
  color: var(--text);
}

.lm2-option.selected {
  border-color: var(--orange);
  background: var(--orange-dim);
  color: var(--orange);
  font-weight: 600;
}

.lm2-option-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.lm2-option.selected .lm2-option-val {
  color: var(--orange);
}

.lm2-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.lm2-btn-next {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  margin-left: auto;
  transition: transform .15s, box-shadow .15s;
}

.lm2-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(216, 74, 0, 0.35);
}

.lm2-btn-next:disabled {
  background: var(--bg3);
  color: var(--text-faint);
  cursor: default;
  box-shadow: none;
  transform: none;
}

/* Result */
.lm2-result {
  display: none;
}

.lm2-result.active {
  display: block;
}

.lm2-result-card {
  background: linear-gradient(135deg, #fff8f5 0%, var(--bg2) 100%);
  border: 2px solid var(--border-orange);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
  text-align: center;
}

.lm2-result-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.lm2-result-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.lm2-result-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.lm2-result-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.lm2-bd-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.lm2-bd-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.lm2-bd-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 4px;
  line-height: 1.4;
}

.lm2-gate-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.lm2-gate-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
}

.lm2-gate-form input {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border .2s;
}

.lm2-gate-form input:focus {
  border-color: var(--orange);
  background: white;
}

.lm2-gate-form button {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}

.lm2-gate-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(216, 74, 0, 0.35);
}

.lm2-trust-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-faint);
}

/* LM2 dans section standalone */
.lm2-section {
  padding: 72px 5%;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lm2-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.lm2-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.lm2-section-header .lm-badge {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.lm2-section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.lm2-section-header h2 em {
  font-style: normal;
  color: var(--orange);
}

.lm2-section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────
   LM #3 — AUDIT FLASH FICHE GOOGLE
   Usage: index.html + services.html
   ───────────────────────────────────────── */
.lm3-section {
  padding: 80px 5%;
  background: white;
  border-top: 1px solid var(--border);
}

.lm3-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lm3-left .lm-badge {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.lm3-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.lm3-left h2 em {
  font-style: normal;
  color: var(--orange);
}

.lm3-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.lm3-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lm3-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lm3-promise-icon {
  width: 32px;
  height: 32px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.lm3-promise-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 6px;
}

.lm3-promise-text strong {
  color: var(--text);
}

.lm3-right {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.lm3-right-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.lm3-right-sub {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.lm3-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lm3-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lm3-form input {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border .2s, box-shadow .2s;
  width: 100%;
}

.lm3-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(216, 74, 0, 0.08);
}

.lm3-form input::placeholder {
  color: var(--text-faint);
}

.lm3-form button {
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(216, 74, 0, 0.3);
  text-align: center;
}

.lm3-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(216, 74, 0, 0.45);
}

.lm3-trust {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 4px;
}

/* Success state LM3 */
.lm3-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.lm3-success-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.lm3-success h4 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.lm3-success p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lm1-block {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }

  .lm1-icon {
    display: none;
  }

  .lm1-form {
    grid-template-columns: 1fr;
  }

  .lm1-blog-banner {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }

  .lm1-blog-banner::before {
    display: none;
  }

  .lm1-blog-form {
    grid-template-columns: 1fr;
  }

  .lm1-preview {
    display: none;
  }

  .lm2-options {
    grid-template-columns: 1fr;
  }

  .lm2-gate-form {
    grid-template-columns: 1fr;
  }

  .lm2-result-breakdown {
    grid-template-columns: repeat(3, 1fr);
  }

  .lm3-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lm3-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .lm2-result-breakdown {
    grid-template-columns: 1fr;
  }

  .lm2-header {
    padding: 20px 24px;
  }

  .lm2-body {
    padding: 24px;
  }

  .lm3-right {
    padding: 28px 22px;
  }
}