/* ════════════════════════════════
   LANDING PAGE
════════════════════════════════ */

/* ── Typographie landing ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;1,9..144,300&display=swap');

.lp-hero-title,
.lp-section-title,
.lp-cta-title {
  font-family: 'Fraunces', Georgia, serif;
}

/* ── Hero ── */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.lp-hero-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tc);
  margin-bottom: 1.25rem;
}

.lp-hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.lp-hero-title-accent {
  color: var(--tc);
  font-style: italic;
  font-weight: 300;
}

.lp-hero-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.lp-hero-note {
  font-size: 0.75rem;
  color: #bbb;
}

/* ── Boutons landing ── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--tc);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.lp-btn-primary:hover {
  background: #b85c3e;
  color: #fff;
  transform: translateY(-1px);
}

.lp-btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.lp-btn-ghost {
  font-size: 0.875rem;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}

.lp-btn-ghost:hover { color: #1a1a1a; }

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid #e0deda;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}

.lp-btn-outline:hover {
  border-color: #aaa;
  background: #faf9f7;
  color: #1a1a1a;
}

/* ── Mockup ── */
.lp-hero-visual {
  position: relative;
}

.lp-mockup {
  background: #fff;
  border: 1px solid #e0deda;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1;
}

.lp-mockup-bar {
  background: #f5f4f0;
  border-bottom: 1px solid #e0deda;
  padding: 0.6rem 0.85rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.lp-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0deda;
  display: block;
}

.lp-mockup-bar span:first-child { background: #f5c6c0; }
.lp-mockup-bar span:nth-child(2) { background: #fde8b0; }
.lp-mockup-bar span:nth-child(3) { background: #b8e6c8; }

.lp-mockup-body {
  padding: 1.25rem 1.5rem;
}

.lp-mockup-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 0.3rem;
}

.lp-mockup-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.lp-mockup-desc {
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.lp-mockup-divider {
  border: none;
  border-top: 1px solid #f0efeb;
  margin: 0.75rem 0;
}

.lp-mockup-section {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  padding-left: 0.5rem;
  border-left: 2px solid var(--tc);
  margin-bottom: 0.6rem;
}

.lp-mockup-expectation {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #f0efeb;
  background: #faf9f7;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #333;
}

.lp-exp-done {
  background: #f2faf5;
  border-color: #b8e6c8;
  color: #555;
}

.lp-exp-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3aac5d;
  color: #fff;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.lp-exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0deda;
  flex-shrink: 0;
}

.lp-exp-btn {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--tc);
  background: var(--tc-light);
  border: 1px solid var(--tc-border);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  flex-shrink: 0;
}

.lp-mockup-dropzone {
  border: 1.5px dashed #dddbd6;
  border-radius: 7px;
  padding: 0.85rem;
  text-align: center;
  color: #ccc;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.lp-mockup-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,105,74,0.12) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}

/* ── Proof ── */
.lp-proof {
  background: #fff;
  border-top: 1px solid #f0efeb;
  border-bottom: 1px solid #f0efeb;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lp-proof-label {
  font-size: 0.78rem;
  color: #bbb;
  font-weight: 500;
}

.lp-proof-avatars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
  object-fit: cover;
}

.lp-proof-avatar:first-child { margin-left: 0; }

.lp-proof-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  margin-left: 0.25rem;
}

/* ── Sections communes ── */
.lp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lp-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tc);
  display: block;
  margin-bottom: 0.75rem;
}

.lp-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-section-subtitle {
  font-size: 0.95rem;
  color: #888;
  margin-top: 0.6rem;
}

/* ── How it works ── */
.lp-how {
  background: #fff;
}

.lp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.lp-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.lp-step-connector {
  width: 60px;
  height: 1px;
  background: #e0deda;
  margin-top: 2rem;
  flex-shrink: 0;
  position: relative;
}

.lp-step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #e0deda;
  border-right: 1px solid #e0deda;
  transform: rotate(45deg);
}

.lp-step-number {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--tc);
  background: var(--tc-light);
  border: 1px solid var(--tc-border);
  border-radius: 99px;
  padding: 0.3rem 0.75rem;
}

.lp-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.lp-step-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* ── Features ── */
.lp-features {
  background: #f5f4f0;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feature {
  background: #fff;
  border: 1px solid #e0deda;
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-feature:hover {
  border-color: var(--tc-border);
  box-shadow: 0 4px 16px rgba(200,105,74,0.06);
}

.lp-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--tc-light);
  color: var(--tc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.lp-feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.lp-feature-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.65;
}

/* ── Pricing ── */
.lp-pricing {
  background: #fff;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

.lp-pricing-card {
  border: 1px solid #e0deda;
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.lp-pricing-featured {
  border-color: #1a1a1a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.lp-pricing-popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}

.lp-pricing-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
}

.lp-pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  font-family: 'Fraunces', Georgia, serif;
}

.lp-pricing-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #bbb;
  letter-spacing: 0;
  font-family: inherit;
}

.lp-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.lp-pricing-features li {
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-pricing-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233aac5d' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f2faf5;
}

.lp-pricing-features li.off {
  color: #ccc;
}

.lp-pricing-features li.off::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23ccc' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-color: #f5f4f0;
}

/* ── CTA final ── */
.lp-cta {
  background: #1a1a1a;
  padding: 5rem 2rem;
  text-align: center;
}

.lp-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lp-cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-cta-desc {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.lp-cta .lp-btn-primary {
  background: var(--tc);
}

.lp-cta .lp-btn-primary:hover {
  background: #b85c3e;
}

/* ── Footer ── */
.lp-footer {
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  padding: 1.5rem 2rem;
}

.lp-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-footer-brand {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.lp-footer-brand span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--tc);
  border-radius: 50%;
  margin-left: 1px;
  position: relative;
  top: -1px;
}

.lp-footer-copy {
  font-size: 0.75rem;
  color: #555;
}

.lp-footer-links {
  display: flex;
  gap: 1.25rem;
}

.lp-footer-links a {
  font-size: 0.78rem;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.lp-footer-links a:hover { color: #aaa; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .lp-hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }

  .lp-hero-visual { display: none; }
  .lp-hero-title { font-size: 2.2rem; }

  .lp-steps {
    flex-direction: column;
    align-items: center;
  }

  .lp-step-connector {
    width: 1px;
    height: 30px;
    margin: 0;
  }

  .lp-features-grid,
  .lp-pricing-grid {
    grid-template-columns: 1fr;
  }
}
