/* ══════════════════════════════════════════════════════════════════════
   Landing page EsthApp — design system moderne, gradients violets,
   typographie serif italique pour les titres en accord avec le logo.
   ══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --lp-violet: #4C1D95;
  --lp-violet-dark: #3B0764;
  --lp-violet-light: #F5F3FF;
  --lp-violet-accent: #A78BFA;
  --lp-text: #0f172a;
  --lp-text-muted: #64748b;
  --lp-bg: #ffffff;
  --lp-bg-soft: #fafafa;
  --lp-border: #e2e8f0;
  --lp-shadow: 0 1px 3px rgba(76, 29, 149, .04), 0 4px 24px rgba(76, 29, 149, .04);
  --lp-shadow-lg: 0 10px 40px rgba(76, 29, 149, .12);
}

* { box-sizing: border-box; }

.lp-body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
}

.lp-body h1, .lp-body h2, .lp-body h3, .lp-body h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0;
}

.lp-body p { margin: 0; }
.lp-body a { color: inherit; text-decoration: none; }

.lp-grad {
  background: linear-gradient(135deg, var(--lp-violet) 0%, var(--lp-violet-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ────────────────────── Boutons ────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.lp-btn--lg { padding: 16px 32px; font-size: 15px; border-radius: 14px; }
.lp-btn--full { width: 100%; justify-content: center; }
.lp-btn--primary {
  background: var(--lp-violet);
  color: #fff;
  box-shadow: 0 4px 14px rgba(76, 29, 149, .35);
}
.lp-btn--primary:hover {
  background: var(--lp-violet-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(76, 29, 149, .45);
}
.lp-btn--ghost {
  background: transparent;
  color: var(--lp-violet);
  border-color: var(--lp-border);
}
.lp-btn--ghost:hover {
  border-color: var(--lp-violet);
  background: var(--lp-violet-light);
}

/* ────────────────────── Nav ────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}
.lp-nav-brand img { height: 32px; display: block; }
.lp-nav-links {
  display: flex; gap: 32px; flex: 1; justify-content: center;
}
.lp-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--lp-text-muted);
  transition: color .15s;
}
.lp-nav-links a:hover { color: var(--lp-violet); }
.lp-nav-cta { display: flex; gap: 10px; }
.lp-nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; gap: 5px; justify-content: center;
}
.lp-nav-burger span {
  width: 22px; height: 2px; background: var(--lp-text);
  border-radius: 1px; display: block; margin: 0 auto;
}

@media (max-width: 900px) {
  .lp-nav { padding: 14px 20px; }
  .lp-nav-links, .lp-nav-cta {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; padding: 20px;
    border-bottom: 1px solid var(--lp-border);
  }
  .lp-nav-links.open, .lp-nav-cta.open { display: flex; }
  .lp-nav-cta.open { top: calc(100% + 200px); }
  .lp-nav-burger { display: flex; }
}

/* ────────────────────── Hero ────────────────────── */
.lp-hero {
  position: relative;
  padding: 90px 48px 140px;
  overflow: visible;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
/* Halo de fond sur toute la zone supérieure */
body.lp-body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 900px;
  background:
    radial-gradient(ellipse 800px 600px at 25% 25%, rgba(167, 139, 250, .22) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 35%, rgba(76, 29, 149, .15) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 50% 80%, rgba(139, 92, 246, .08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.lp-hero-bg { display: none; }
.lp-hero-content { position: relative; z-index: 1; }

.lp-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--lp-violet-light);
  color: var(--lp-violet);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(76, 29, 149, .15);
}
.lp-hero-title {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
}
.lp-hero-sub {
  font-size: 18px;
  color: var(--lp-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 560px;
}
.lp-hero-cta { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.lp-hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--lp-text-muted);
}

/* Mockup app */
.lp-hero-mockup {
  position: relative; z-index: 1;
  perspective: 1400px;
}
.lp-mockup-glow {
  position: absolute; top: 40%; left: 50%;
  width: 95%; height: 95%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at 30% 40%, rgba(167, 139, 250, .55) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(76, 29, 149, .35) 0%, transparent 60%);
  filter: blur(50px);
  z-index: -1;
}
.lp-mockup-window {
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 40px 80px -20px rgba(76, 29, 149, .35),
    0 20px 40px -10px rgba(0,0,0,.10),
    0 0 0 1px rgba(255,255,255,.6) inset;
  overflow: hidden;
  border: 1px solid rgba(76, 29, 149, .08);
  transform: rotateY(-8deg) rotateX(2deg) rotate(-1deg);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.lp-mockup-window:hover {
  transform: rotateY(-3deg) rotateX(0deg) rotate(0deg) scale(1.02);
}
.lp-mockup-tabs {
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  padding: 11px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-dot {
  width: 11px; height: 11px; border-radius: 50%;
  box-shadow: 0 1px 0 rgba(0,0,0,.08) inset;
}
.lp-dot:nth-child(1) { background: #ff6058; }
.lp-dot:nth-child(2) { background: #ffbe2f; }
.lp-dot:nth-child(3) { background: #28ca40; }
.lp-mockup-url {
  margin-left: 12px;
  background: #fff;
  padding: 5px 12px; border-radius: 6px;
  font-size: 11px; color: var(--lp-text-muted);
  font-family: 'SF Mono', Menlo, monospace;
  flex: 1;
  border: 1px solid var(--lp-border);
  display: flex; align-items: center;
}
.lp-mockup-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 340px;
}
.lp-mockup-side {
  background: #fafafa;
  padding: 16px 0;
  border-right: 1px solid var(--lp-border);
}
.lp-mockup-side-section {
  font-size: 10px;
  font-weight: 700;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 18px 12px;
}
.lp-mockup-side-item {
  padding: 9px 18px;
  font-size: 12.5px; font-weight: 500;
  color: var(--lp-text-muted);
  border-left: 2px solid transparent;
  display: flex; align-items: center; justify-content: space-between;
}
.lp-mockup-side-item.active {
  color: var(--lp-violet);
  background: var(--lp-violet-light);
  border-left-color: var(--lp-violet);
  font-weight: 600;
}
.lp-mockup-badge {
  background: var(--lp-violet);
  color: #fff;
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 100px;
  font-weight: 700;
}
.lp-mockup-badge--soft {
  background: var(--lp-violet-light);
  color: var(--lp-violet);
}
.lp-mockup-main {
  padding: 18px;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.lp-mockup-section-h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  font-size: 14px; font-weight: 700;
  color: var(--lp-text);
}
.lp-mockup-pill {
  background: var(--lp-violet);
  color: #fff;
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 600;
}
.lp-mockup-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.lp-mockup-card--draft { opacity: .92; }
.lp-mockup-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.lp-mockup-card-h {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 11px;
  color: var(--lp-violet);
  font-weight: 700;
}
.lp-mockup-card-row {
  display: flex; justify-content: space-between;
  font-size: 12px; padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}
.lp-mockup-card-row:last-of-type { border-bottom: none; }
.lp-mockup-amt { font-weight: 600; color: var(--lp-text); }
.lp-mockup-card-foot {
  display: flex; justify-content: space-between;
  margin-top: 8px; padding-top: 8px;
  border-top: 2px solid var(--lp-violet);
  font-size: 12px; color: var(--lp-text-muted);
}
.lp-mockup-card-foot strong { color: var(--lp-violet); font-size: 14px; }
.lp-mockup-card-status {
  padding: 4px 9px; border-radius: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .3px;
}
.lp-mockup-card-status.signed { background: #dcfce7; color: #15803d; }
.lp-mockup-card-status.sent { background: #fef3c7; color: #92400e; }

/* Téléphone signature flottant */
.lp-mockup-phone {
  position: absolute;
  bottom: -50px;
  right: -30px;
  width: 200px; height: 380px;
  background: #1f2937;
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    0 30px 60px rgba(0,0,0,.25),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transform: rotate(8deg);
  z-index: 2;
}
.lp-mockup-phone-screen {
  background: #fff;
  width: 100%; height: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.lp-mockup-phone-h {
  background: linear-gradient(135deg, var(--lp-violet) 0%, var(--lp-violet-dark) 100%);
  color: #fff;
  padding: 20px 16px 14px;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  text-align: center;
  letter-spacing: .5px;
}
.lp-mockup-phone-body {
  padding: 18px 16px;
  flex: 1;
  display: flex; flex-direction: column;
}
.lp-mockup-phone-title {
  font-size: 11px;
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.lp-mockup-phone-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--lp-violet);
  margin-bottom: 14px;
}
.lp-mockup-phone-sig {
  background: #fafafa;
  border: 1px dashed var(--lp-border);
  border-radius: 8px;
  height: 70px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.lp-mockup-phone-sig svg { width: 90%; height: 100%; }
.lp-mockup-phone-cta {
  background: var(--lp-violet);
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px; font-weight: 600;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .lp-mockup-phone { width: 170px; height: 340px; bottom: -30px; right: -10px; }
}
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; padding: 40px 20px 60px; }
  .lp-hero-mockup { display: none; }
}

/* ────────────────────── Stats ────────────────────── */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 48px;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-stat { text-align: center; }
.lp-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  background: linear-gradient(135deg, var(--lp-violet) 0%, var(--lp-violet-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.lp-stat-lbl {
  font-size: 13px;
  color: var(--lp-text-muted);
}
@media (max-width: 700px) {
  .lp-stats { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
}

/* ────────────────────── Sections ────────────────────── */
.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-violet);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.lp-section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.lp-section-head p {
  font-size: 17px;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

/* ────────────────────── Features ────────────────────── */
.lp-features {
  padding: 120px 48px;
  background: linear-gradient(180deg, #ffffff 0%, var(--lp-bg-soft) 100%);
  position: relative;
}
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-feat {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 36px 30px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.lp-feat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--feat-color, var(--lp-violet)) 0%, var(--feat-color-alt, var(--lp-violet-accent)) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.lp-feat:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 40px -10px rgba(76, 29, 149, .18);
}
.lp-feat:hover::before { opacity: 1; }
.lp-feat-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--feat-bg, var(--lp-violet-light));
  color: var(--feat-color, var(--lp-violet));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform .3s;
}
.lp-feat:hover .lp-feat-ico { transform: scale(1.08) rotate(-3deg); }
.lp-feat-ico svg { width: 26px; height: 26px; }
.lp-feat h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.lp-feat p { color: var(--lp-text-muted); font-size: 14.5px; line-height: 1.65; }

/* Variantes de couleurs (douces, dans la palette violet/rose) */
.lp-feat:nth-child(1) { --feat-color: #4C1D95; --feat-color-alt: #8B5CF6; --feat-bg: #F5F3FF; }
.lp-feat:nth-child(2) { --feat-color: #6D28D9; --feat-color-alt: #A78BFA; --feat-bg: #EEEAFE; }
.lp-feat:nth-child(3) { --feat-color: #BE185D; --feat-color-alt: #EC4899; --feat-bg: #FCE7F3; }
.lp-feat:nth-child(4) { --feat-color: #7C3AED; --feat-color-alt: #C4B5FD; --feat-bg: #F3F0FE; }
.lp-feat:nth-child(5) { --feat-color: #DB2777; --feat-color-alt: #F472B6; --feat-bg: #FBE7F0; }
.lp-feat:nth-child(6) { --feat-color: #5B21B6; --feat-color-alt: #818CF8; --feat-bg: #EEF0FE; }

@media (max-width: 1000px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .lp-features { padding: 60px 20px; }
  .lp-features-grid { grid-template-columns: 1fr; }
}

/* ────────────────────── Workflow ────────────────────── */
.lp-workflow { padding: 120px 48px; position: relative; }
.lp-flow {
  display: flex; align-items: stretch;
  gap: 4px; max-width: 1200px; margin: 0 auto;
  position: relative;
}
/* Ligne pointillée violette qui relie toutes les étapes */
.lp-flow::before {
  content: "";
  position: absolute;
  top: 56px; left: 8%; right: 8%;
  border-top: 2px dashed rgba(76, 29, 149, .25);
  z-index: 0;
}
.lp-flow-step {
  flex: 1;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.lp-flow-step:hover {
  transform: translateY(-4px);
  border-color: var(--lp-violet);
  box-shadow: 0 14px 28px -10px rgba(76, 29, 149, .15);
}
.lp-flow-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lp-violet) 0%, var(--lp-violet-accent) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px -2px rgba(76, 29, 149, .35);
}
.lp-flow-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 700;
  margin-bottom: 10px;
}
.lp-flow-step p { color: var(--lp-text-muted); font-size: 14px; line-height: 1.6; }
.lp-flow-arrow {
  align-self: center;
  color: var(--lp-violet-accent);
  font-size: 22px;
  font-weight: 400;
  z-index: 1;
  background: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px white;
}

@media (max-width: 1000px) {
  .lp-flow { flex-direction: column; }
  .lp-flow-arrow { transform: rotate(90deg); margin: 4px auto; }
}
@media (max-width: 700px) {
  .lp-workflow { padding: 60px 20px; }
}

/* ────────────────────── Pricing ────────────────────── */
.lp-pricing {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--lp-bg-soft) 0%, #ffffff 100%);
  position: relative;
}
.lp-pricing-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 100px;
  padding: 4px;
  margin-top: 24px;
}
.lp-toggle {
  padding: 8px 20px;
  border-radius: 100px;
  border: none; background: transparent;
  font-size: 14px; font-weight: 600;
  color: var(--lp-text-muted);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .15s;
}
.lp-toggle.active {
  background: var(--lp-violet);
  color: #fff;
}
.lp-toggle-badge {
  background: rgba(255,255,255,.25);
  padding: 2px 8px; border-radius: 100px;
  font-size: 11px;
}
.lp-toggle:not(.active) .lp-toggle-badge {
  background: var(--lp-violet-light);
  color: var(--lp-violet);
}

.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.lp-plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-plan h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 700;
  margin-bottom: 4px;
}
.lp-plan-tagline {
  color: var(--lp-text-muted); font-size: 13px; margin-bottom: 20px;
}
.lp-plan-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-plan-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--lp-violet);
  line-height: 1;
}
.lp-plan-currency { color: var(--lp-text-muted); font-size: 14px; font-weight: 500; }
.lp-plan-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.lp-plan-features li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 26px;
  position: relative;
  color: var(--lp-text);
}
.lp-plan-features li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--lp-violet);
  font-weight: 700;
}

.lp-plan--featured {
  border: 2px solid var(--lp-violet);
  box-shadow: 0 30px 60px -15px rgba(76, 29, 149, .35);
  transform: scale(1.04);
  background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
}
.lp-plan--featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--lp-violet) 0%, var(--lp-violet-accent) 50%, var(--lp-violet) 100%);
  z-index: -1;
  opacity: .15;
  filter: blur(20px);
}
.lp-plan--featured:hover { transform: scale(1.04) translateY(-4px); }
.lp-plan-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lp-violet) 0%, var(--lp-violet-accent) 100%);
  color: #fff;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(76, 29, 149, .3);
}

.lp-pricing-foot {
  text-align: center;
  color: var(--lp-text-muted);
  font-size: 13px;
  max-width: 600px;
  margin: 40px auto 0;
}

@media (max-width: 1000px) {
  .lp-plans { grid-template-columns: 1fr; }
  .lp-plan--featured { transform: none; }
}
@media (max-width: 700px) {
  .lp-pricing { padding: 60px 20px; }
}

/* ────────────────────── FAQ ────────────────────── */
.lp-faq { padding: 120px 48px; background: var(--lp-bg-soft); }
.lp-faq-list { max-width: 760px; margin: 0 auto; }
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.lp-faq-item[open] {
  border-color: var(--lp-violet);
  box-shadow: 0 6px 20px -8px rgba(76, 29, 149, .15);
}
.lp-faq-item summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .15s;
}
.lp-faq-item summary:hover { background: var(--lp-violet-light); }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--lp-violet);
  transition: transform .2s;
  font-weight: 300;
}
.lp-faq-item[open] summary::after { transform: rotate(45deg); }
.lp-faq-item p {
  padding: 0 22px 22px;
  color: var(--lp-text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
@media (max-width: 700px) { .lp-faq { padding: 60px 20px; } }

/* ────────────────────── CTA Final ────────────────────── */
.lp-cta-final {
  padding: 60px 48px 100px;
}
.lp-cta-card {
  max-width: 1080px; margin: 0 auto;
  background: linear-gradient(135deg, var(--lp-violet) 0%, var(--lp-violet-dark) 100%);
  border-radius: 28px;
  padding: 90px 48px;
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(76, 29, 149, .45);
}
.lp-cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(167, 139, 250, .5) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, .25) 0%, transparent 45%);
}
.lp-cta-card::after {
  content: "";
  position: absolute;
  top: -50%; left: -10%; width: 120%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.05) 50%, transparent 70%);
  pointer-events: none;
}
.lp-cta-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  position: relative;
}
.lp-cta-card p {
  font-size: 17px;
  opacity: .9;
  margin-bottom: 32px;
  position: relative;
}
.lp-cta-card .lp-btn {
  background: #fff; color: var(--lp-violet);
  position: relative;
}
.lp-cta-card .lp-btn:hover {
  background: var(--lp-violet-light);
  transform: translateY(-1px);
}

/* ────────────────────── Footer ────────────────────── */
.lp-footer {
  background: linear-gradient(180deg, #1a1033 0%, #0d0820 100%);
  color: #c4b5fd;
  padding: 72px 48px 32px;
  position: relative;
  overflow: hidden;
}
.lp-footer::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, .15) 0%, transparent 60%);
  pointer-events: none;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.lp-footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}
.lp-footer-col a {
  display: block;
  font-size: 14px;
  color: #a89cca;
  padding: 4px 0;
  transition: color .15s;
}
.lp-footer-col a:hover { color: #fff; }
.lp-footer-col p { font-size: 14px; color: #a89cca; line-height: 1.65; }
.lp-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 12px;
  color: #8b7fae;
  position: relative;
}
@media (max-width: 800px) {
  .lp-footer { padding: 48px 20px 24px; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ────────────────────── Animations scroll-triggered ────────────────── */
.lp-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.lp-fade-in.lp-visible {
  opacity: 1;
  transform: translateY(0);
}
