/* ═══════════════════════════════════════════════════════════════
   WritexNova — Landing Page Upgrade v2.0
   landing.css — supplements style.css without breaking any existing styles
   Hero · CTAs · Benefits · How It Works · Social Proof · Final CTA
═══════════════════════════════════════════════════════════════ */

/* ── Section label pill ───────────────────────────────────────── */
.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(79,70,229,.08);
  color: var(--primary);
  border: 1px solid rgba(79,70,229,.18);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section .lp-section-label { display: block; text-align: center; width: fit-content; margin: 0 auto 14px; }

/* ══════════════════════════════════════════════════════════════
   HERO — Split layout
══════════════════════════════════════════════════════════════ */
.lp-hero {
  background: var(--grad-hero);
  padding: 24px 0 0;
  position: relative;
  overflow: hidden;
}
@media(min-width:768px) { .lp-hero { padding: 28px 0 0; } }

/* Background effects */
.lp-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.lp-blob {
  position: absolute; border-radius: 50%;
  filter: blur(72px); opacity: 0.45;
}
.lp-blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(124,58,237,.6) 0%, transparent 70%);
  top: -180px; right: -60px;
}
.lp-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,.4) 0%, transparent 70%);
  bottom: 60px; left: -80px;
}
.lp-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Hero inner layout */
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
  padding-bottom: 12px;
}
@media(min-width:1024px) {
  .lp-hero-inner {
    grid-template-columns: 1fr 1.85fr;
    gap: 40px;
    padding-bottom: 36px;
  }
}

/* ── Hero left: text ─────────────────────────────────────────── */
.lp-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 18px;
  width: fit-content;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
}
.lp-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,.8);
  animation: lp-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.lp-hero-h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: 18px;
}

.lp-gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 50%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* ── CTA buttons ────────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(79,70,229,.45), 0 2px 8px rgba(0,0,0,.2);
  letter-spacing: -.01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.lp-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  border-radius: inherit;
}
.lp-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,.55), 0 4px 12px rgba(0,0,0,.25);
  text-decoration: none !important;
  color: #fff;
}
.lp-btn-primary:active { transform: translateY(0); }
.lp-btn-xl { padding: 17px 36px; font-size: 1.08rem; }

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  text-decoration: none !important;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.lp-btn-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.55);
  text-decoration: none !important;
  color: #fff;
  transform: translateY(-1px);
}

.lp-btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255,255,255,.3);
  cursor: pointer;
  text-decoration: none !important;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(8px);
}
.lp-btn-ghost-white:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  text-decoration: none !important;
}

.lp-hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.lp-hero-cta-group .lp-btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}
.lp-hero-cta-group .lp-btn-secondary {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Trust line */

/* ── Trust line scrolling marquee ── */
.lp-trust-marquee-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.lp-trust-marquee {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  animation: lp-marquee-scroll 8s linear infinite;
}
@keyframes lp-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lp-trust-line {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
.lp-trust-check {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.lp-trust-dot {
  color: rgba(255,255,255,.3);
  font-size: .9rem;
}

/* Stats row */
.lp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.lp-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #c4b5fd;
  letter-spacing: -.03em;
  line-height: 1;
}
.lp-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.lp-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
}

/* ── Hero right: product preview ──────────────────────────────── */
.lp-hero-preview {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.lp-preview-card {
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 8px 20px rgba(0,0,0,.2);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  animation: lp-float 6s ease-in-out infinite;
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
[data-theme="dark"] .lp-preview-card { background: #0f0f11; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 8px 20px rgba(0,0,0,.4); }

.lp-preview-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f5f5f4;
  border-bottom: 1px solid #e7e5e4;
  flex-wrap: wrap;
}
[data-theme="dark"] .lp-preview-toolbar { background: #18181b; border-color: rgba(255,255,255,.08); }

.lp-preview-dots { display: flex; gap: 6px; flex-shrink: 0; }
.lp-dot { width: 11px; height: 11px; border-radius: 50%; display: block; }
.lp-dot-red    { background: #ff5f57; }
.lp-dot-yellow { background: #ffbd2e; }
.lp-dot-green  { background: #28c840; }

.lp-preview-tabs {
  display: flex; gap: 4px; overflow-x: auto;
}
.lp-ptab {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  color: #57534e;
  white-space: nowrap;
  cursor: default;
}
[data-theme="dark"] .lp-ptab { color: #71717a; }
.lp-ptab-active {
  background: var(--primary);
  color: #fff !important;
}

.lp-preview-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-preview-label {
  font-size: .7rem;
  font-weight: 700;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lp-preview-input {
  background: #fafaf9;
  border: 1.5px solid #e7e5e4;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .8rem;
  color: #57534e;
  line-height: 1.5;
  font-family: 'DM Mono', monospace;
}
[data-theme="dark"] .lp-preview-input { background: #09090b; border-color: rgba(255,255,255,.1); color: #a1a1aa; }

.lp-preview-selects {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.lp-preview-select {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f0efee;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .74rem;
  font-weight: 600;
  color: #57534e;
  cursor: default;
}
[data-theme="dark"] .lp-preview-select { background: #18181b; border-color: rgba(255,255,255,.1); color: #a1a1aa; }

.lp-preview-generate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 11px;
  font-size: .85rem;
  font-weight: 700;
  cursor: default;
  box-shadow: 0 4px 14px rgba(79,70,229,.4);
}

.lp-preview-spinner {
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  flex-shrink: 0;
  transition: all .2s;
}
.lp-preview-spinner.lp-spinning {
  animation: lp-spin .75s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }

.lp-preview-output {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
[data-theme="dark"] .lp-preview-output { background: rgba(5,150,105,.08); border-color: rgba(5,150,105,.25); }

.lp-preview-output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-output-badge {
  background: rgba(5,150,105,.15);
  color: #059669;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: .7rem;
  font-weight: 700;
}
.lp-output-words {
  font-size: .7rem;
  color: #a8a29e;
  font-weight: 500;
}

.lp-preview-output-text {
  font-size: .775rem;
  color: #374151;
  line-height: 1.55;
}
[data-theme="dark"] .lp-preview-output-text { color: #d1d5db; }

.lp-preview-output-actions {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.lp-out-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #e7e5e4;
  background: #fff;
  color: #57534e;
  cursor: default;
  transition: all .15s;
}
[data-theme="dark"] .lp-out-btn { background: #18181b; border-color: rgba(255,255,255,.1); color: #a1a1aa; }
.lp-out-btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Floating badges */
.lp-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  min-width: 160px;
}
[data-theme="dark"] .lp-float-badge { background: #0f0f11; border-color: rgba(255,255,255,.1); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.lp-float-badge > span { font-size: 1.3rem; flex-shrink: 0; }
.lp-float-title { font-size: .66rem; color: #a8a29e; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.lp-float-val   { font-size: .82rem; font-weight: 700; color: #1c1917; }
[data-theme="dark"] .lp-float-val { color: #fafaf9; }

.lp-float-1 {
  bottom: 80px; left: -30px;
  animation: lp-float2 5s 1s ease-in-out infinite;
}
.lp-float-2 {
  top: 60px; right: -20px;
  animation: lp-float2 5.5s 0.5s ease-in-out infinite;
}
@media(max-width:1023px) {
  .lp-float-1, .lp-float-2 { display: none; }
}
@keyframes lp-float2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Model strip */
.lp-model-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1;
}
.lp-model-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,.82);
  font-size: .77rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all .18s;
}
.lp-model-chip:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   MID-PAGE CTA
══════════════════════════════════════════════════════════════ */
.lp-mid-cta {
  text-align: center;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — horizontal steps
══════════════════════════════════════════════════════════════ */
.lp-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
@media(min-width:768px) {
  .lp-steps {
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }
}

.lp-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.lp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,70,229,.2);
}

.lp-step-number {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--primary);
  background: rgba(79,70,229,.08);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 14px;
}

.lp-step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.lp-step:hover .lp-step-icon { transform: scale(1.15) rotate(-4deg); }

.lp-step h3 { margin-bottom: 10px; }
.lp-step p  { font-size: .88rem; line-height: 1.6; }

.lp-step-arrow {
  font-size: 1.8rem;
  color: var(--text-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
@media(max-width:767px) {
  .lp-step-arrow { transform: rotate(90deg); }
}

/* ══════════════════════════════════════════════════════════════
   BENEFITS GRID
══════════════════════════════════════════════════════════════ */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media(min-width:600px)  { .lp-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media(min-width:1024px) { .lp-benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.lp-benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.lp-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,70,229,.18);
}

.lp-benefit-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.lp-benefit-card:hover .lp-benefit-icon { transform: scale(1.12) rotate(-3deg); }

.lp-benefit-icon-blue   { background: rgba(37,99,235,.1);  }
.lp-benefit-icon-purple { background: rgba(124,58,237,.1); }
.lp-benefit-icon-green  { background: rgba(5,150,105,.1);  }
.lp-benefit-icon-amber  { background: rgba(217,119,6,.1);  }
.lp-benefit-icon-rose   { background: rgba(225,29,72,.1);  }
.lp-benefit-icon-indigo { background: rgba(79,70,229,.1);  }

.lp-benefit-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.lp-benefit-card p  { font-size: .875rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   SOCIAL PROOF STATS
══════════════════════════════════════════════════════════════ */
.lp-social-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
@media(min-width:640px) { .lp-social-stats { grid-template-columns: repeat(4, 1fr); } }

.lp-social-stat {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.lp-social-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.lp-social-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.lp-social-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Testimonials ─────────────────────────────────────────── */
.lp-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width:640px)  { .lp-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .lp-testimonials { grid-template-columns: repeat(3, 1fr); } }

.lp-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s;
}
.lp-testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.lp-testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.lp-testimonial p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-avatar-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.lp-avatar-green  { background: linear-gradient(135deg, #059669, #10b981); }

.lp-testimonial-name { font-size: .875rem; font-weight: 700; color: var(--text); }
.lp-testimonial-role { font-size: .74rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   FINAL CTA SECTION
══════════════════════════════════════════════════════════════ */
.lp-final-cta {
  background: var(--grad-hero);
  padding: 0;
  position: relative;
  overflow: hidden;
  text-align: left;
}
@media(max-width:768px) { .lp-final-cta { padding: 0; } }

.lp-final-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.lp-blob-cta1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.5) 0%, transparent 70%);
  top: -150px; left: -100px;
  filter: blur(60px); opacity: 0.5;
  position: absolute; border-radius: 50%;
}
.lp-blob-cta2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,.4) 0%, transparent 70%);
  bottom: -120px; right: -80px;
  filter: blur(60px); opacity: 0.5;
  position: absolute; border-radius: 50%;
}

.lp-final-cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

.lp-final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.lp-final-cta-h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.lp-final-cta-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.7);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.lp-final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
}

.lp-final-cta-btns .lp-btn-primary,
.lp-final-cta-btns .lp-btn-ghost-white {
  width: auto !important;
  min-width: unset !important;
  flex: 0 0 auto;
}

.lp-final-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.lp-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.lp-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE FIXES
══════════════════════════════════════════════════════════════ */
@media(max-width:1023px) {
  .lp-hero-inner { padding-bottom: 48px; }
  .lp-hero-text  { text-align: center; align-items: center; }
  .lp-hero-sub   { margin-left: auto; margin-right: auto; }
  .lp-hero-stats { justify-content: center; }
  .lp-hero-badge { margin-left: auto; margin-right: auto; }
  .lp-hero-h1    { text-align: center; }
  
/* ── Trust line scrolling marquee ── */
.lp-trust-marquee-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.lp-trust-marquee {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  animation: lp-marquee-scroll 8s linear infinite;
}
@keyframes lp-marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lp-trust-line { justify-content: center; }
  .lp-preview-card { max-width: 420px; }
}
@media(max-width:480px) {
  .lp-hero-cta-group { flex-direction: column; width: 100%; }
  .lp-btn-primary, .lp-btn-secondary { justify-content: center; }
  .lp-hero-stats { gap: 12px; }
  .lp-stat-divider { display: none; }
  .lp-preview-card { font-size: 90%; }
}

/* ══════════════════════════════════════════════════════════════
   HERO SPEED LINE
══════════════════════════════════════════════════════════════ */
.lp-hero-speed-line {
  display: inline-block;
  max-width: fit-content;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: 20px;
  letter-spacing: .01em;
  white-space: nowrap;
}
@media(max-width:1023px) { .lp-hero-speed-line { text-align: center; } }

/* ══════════════════════════════════════════════════════════════
   WHO IS IT FOR — cards use same tool-card style,
   just override grid to 4 cols on large screens
══════════════════════════════════════════════════════════════ */
.lp-who-grid {
  grid-template-columns: 1fr !important;
}
@media(min-width:600px)  { .lp-who-grid { grid-template-columns: repeat(2,1fr) !important; } }
@media(min-width:1024px) { .lp-who-grid { grid-template-columns: repeat(4,1fr) !important; } }

/* ══════════════════════════════════════════════════════════════
   PRICING PAGE — trust badges row
══════════════════════════════════════════════════════════════ */
.pricing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 28px 0 8px;
}
.pricing-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-xs);
  transition: all .18s;
}
.pricing-trust-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════════════════════════════════════
   UPGRADED FOOTER
══════════════════════════════════════════════════════════════ */
.lp-footer-upgraded {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.lp-footer-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -.02em;
}
.lp-footer-tagline {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}

.lp-footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.lp-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-xs);
}
.lp-footer-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(79,70,229,.05);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
}
.lp-footer-contact {
  background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(124,58,237,.06));
  border-color: rgba(79,70,229,.25);
  color: var(--primary);
}
.lp-footer-contact:hover {
  background: linear-gradient(135deg, rgba(79,70,229,.15), rgba(124,58,237,.1));
}

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.lp-footer-bottom p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
}
.lp-footer-trust {
  font-size: .75rem !important;
  color: var(--text-light) !important;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL MICRO UX — hover effects, smooth scroll
══════════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }

/* All .btn get smooth hover lift */
.btn:not(:disabled):hover {
  text-decoration: none !important;
}

/* Card scale animation — applied to all card-hover */
.card-hover {
  transition: transform .28s cubic-bezier(.4,0,.2,1),
              box-shadow .28s cubic-bezier(.4,0,.2,1),
              border-color .28s cubic-bezier(.4,0,.2,1) !important;
}
.card-hover:hover {
  transform: translateY(-4px) scale(1.01) !important;
  box-shadow: 0 16px 48px rgba(28,25,23,.12) !important;
  border-color: rgba(79,70,229,.22) !important;
}

/* Plan cards in pricing */
.plan-card {
  transition: transform .28s cubic-bezier(.4,0,.2,1),
              box-shadow .28s cubic-bezier(.4,0,.2,1) !important;
}
.plan-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 56px rgba(28,25,23,.13) !important;
}

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES — privacy-policy / terms / refund-policy
══════════════════════════════════════════════════════════════ */
.legal-page {
  padding: 64px 0 96px;
  min-height: 70vh;
}
@media(max-width:768px) { .legal-page { padding: 40px 0 64px; } }

.legal-page .container {
  max-width: 800px;
}

/* Header */
.legal-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.legal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 10px;
}
.legal-header p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Important notice banner */
.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(220,38,38,.06);
  border: 1.5px solid rgba(220,38,38,.2);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 36px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
}
.legal-notice-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.legal-notice strong { color: #dc2626; }

/* Body */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each section */
.legal-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s;
}
.legal-section:hover { box-shadow: var(--shadow-sm); }
@media(max-width:640px) { .legal-section { padding: 20px 18px; } }

.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.01em;
}
.legal-section p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }

/* List */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 4px;
}
.legal-list li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Contact block */
.legal-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(79,70,229,.06);
  border: 1.5px solid rgba(79,70,229,.2);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  margin-top: 12px;
  font-size: .92rem;
  font-weight: 600;
}
.legal-contact span { font-size: 1.1rem; }
.legal-contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
.legal-contact a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   TOOL PLAN BADGES — shown on landing page tool cards
══════════════════════════════════════════════════════════════ */
.tool-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  width: fit-content;
}
.tool-plan-free  { background: rgba(5,150,105,.1);  color: #059669; border: 1px solid rgba(5,150,105,.2); }
.tool-plan-basic { background: rgba(37,99,235,.1);  color: #2563eb; border: 1px solid rgba(37,99,235,.2); }
.tool-plan-pro   { background: rgba(79,70,229,.1);  color: var(--primary); border: 1px solid rgba(79,70,229,.2); }

/* Hero badge — always centered */
.lp-hero-badge-center {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  font-size: .8rem;
  letter-spacing: .03em;
  text-align: center;
}

/* Testimonials — 3 col on large, wrap on small */
.lp-testimonials {
  display: grid;
  grid-template-columns: 1fr;
}
.lp-testimonials[style*="display:none"],
.lp-testimonials[style*="display: none"] {
  display: none !important;
}
@media(min-width:640px)  { .lp-testimonials:not([style*="display:none"]):not([style*="display: none"]) { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .lp-testimonials:not([style*="display:none"]):not([style*="display: none"]) { grid-template-columns: repeat(3,1fr); } }

/* Tier wrap tighter spacing when placed right after price */
.tier-wrap { margin-top: 6px !important; margin-bottom: 2px !important; }

/* ══════════════════════════════════════════════════════════════
   MORE TOOLS TOGGLE BUTTON
══════════════════════════════════════════════════════════════ */
.lp-more-tools-wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 8px;
}
.lp-more-tools-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 12px rgba(79,70,229,.12);
  letter-spacing: .01em;
}
.lp-more-tools-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,70,229,.3);
}

/* Extra tools grid fade-in */
.lp-extra-tools {
  margin-top: 16px !important;
}
@keyframes lp-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   WHO IS IT FOR — Premium Expandable Cards
══════════════════════════════════════════════════════════════ */
.wif-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}

/* Main card */
.wif-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-sm);
}
.wif-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.wif-card.wif-active { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* Color accents on active */
.wif-indigo.wif-active { border-color: rgba(79,70,229,.35); }
.wif-purple.wif-active { border-color: rgba(124,58,237,.35); }
.wif-green.wif-active  { border-color: rgba(5,150,105,.35); }
.wif-amber.wif-active  { border-color: rgba(217,119,6,.35); }

/* Card header row */
.wif-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  user-select: none;
}

/* Icon wrap */
.wif-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.wif-card:hover .wif-icon-wrap,
.wif-card.wif-active .wif-icon-wrap { transform: scale(1.1) rotate(-4deg); }

.wif-icon-indigo { background: rgba(79,70,229,.1); }
.wif-icon-purple { background: rgba(124,58,237,.1); }
.wif-icon-green  { background: rgba(5,150,105,.1); }
.wif-icon-amber  { background: rgba(217,119,6,.1); }

/* Header text */
.wif-header-text { flex: 1; }
.wif-header-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 3px;
  letter-spacing: -.015em;
}
.wif-header-text p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Chevron */
.wif-chevron {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform .25s cubic-bezier(.4,0,.2,1), color .2s;
  flex-shrink: 0;
}
.wif-chevron-up { color: var(--primary) !important; }

/* Expandable panel */
.wif-tools-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease, padding .3s ease;
  opacity: 0;
  padding: 0 24px;
  border-top: 1px solid transparent;
}
.wif-tools-panel.wif-open {
  max-height: 600px;
  opacity: 1;
  padding: 0 24px 24px;
  border-top-color: var(--border);
}

/* Tools grid inside panel */
.wif-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media(min-width:600px) { .wif-tools-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px) { .wif-tools-grid { grid-template-columns: repeat(3,1fr); } }

/* Individual tool row */
.wif-tool {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-2);
  text-decoration: none !important;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.wif-tool:hover {
  background: var(--bg-card);
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(79,70,229,.12);
  text-decoration: none !important;
}
.wif-tool-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.wif-tool-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.wif-tool-desc {
  font-size: .74rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.wif-tool-arrow {
  margin-left: auto;
  color: var(--text-light);
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .18s, color .18s;
}
.wif-tool:hover .wif-tool-arrow {
  transform: translateX(3px);
  color: var(--primary);
}

/* CTA button inside panel */
.wif-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 24px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  letter-spacing: -.01em;
  margin-top: 4px;
}
.wif-cta-btn:hover { transform: translateY(-2px); text-decoration: none !important; }

.wif-cta-indigo { background: rgba(79,70,229,.1);  color: #4f46e5; border: 1.5px solid rgba(79,70,229,.25); }
.wif-cta-indigo:hover { background: #4f46e5; color: #fff; box-shadow: 0 6px 20px rgba(79,70,229,.35); }

.wif-cta-purple { background: rgba(124,58,237,.1); color: #7c3aed; border: 1.5px solid rgba(124,58,237,.25); }
.wif-cta-purple:hover { background: #7c3aed; color: #fff; box-shadow: 0 6px 20px rgba(124,58,237,.35); }

.wif-cta-green { background: rgba(5,150,105,.1);  color: #059669; border: 1.5px solid rgba(5,150,105,.25); }
.wif-cta-green:hover { background: #059669; color: #fff; box-shadow: 0 6px 20px rgba(5,150,105,.35); }

.wif-cta-amber { background: rgba(217,119,6,.1);  color: #d97706; border: 1.5px solid rgba(217,119,6,.25); }
.wif-cta-amber:hover { background: #d97706; color: #fff; box-shadow: 0 6px 20px rgba(217,119,6,.35); }

/* Plan tease tools line */
.plan-tease-tools {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

/* Force hero badge always center on all screen sizes */
.lp-hero-text .lp-hero-badge-center {
  align-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media(min-width:1024px) {
  .lp-hero-text .lp-hero-badge-center {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Reviews extra — hidden by default, shown on toggle */
#reviewsExtra { display: none !important; }
#reviewsExtra.reviews-visible { display: grid !important; }

/* ── Utility classes from inline style cleanup ─────────────────── */
.lp-hero-badge-wrap {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 0;
}
.lp-mt-20 { margin-top: 20px; }
.plan-tease .btn { margin-top: 12px; }
.lp-footer-top-center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.lp-footer-links-center { justify-content: center; }

/* Avatar color variants */
.avatar-indigo  { background: linear-gradient(135deg,#4f46e5,#7c3aed); }
.avatar-purple  { background: linear-gradient(135deg,#7c3aed,#a855f7); }
.avatar-green   { background: linear-gradient(135deg,#059669,#10b981); }
.avatar-amber   { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.avatar-blue    { background: linear-gradient(135deg,#2563eb,#06b6d4); }
.avatar-rose    { background: linear-gradient(135deg,#e11d48,#f43f5e); }
.avatar-cyan    { background: linear-gradient(135deg,#0891b2,#0e7490); }
.avatar-orange  { background: linear-gradient(135deg,#d97706,#b45309); }
.avatar-violet  { background: linear-gradient(135deg,#7c3aed,#4f46e5); }

/* ══════════════════════════════════════════════════════════════
   MOBILE HORIZONTAL ALIGNMENT FIX (max-width: 768px)
   Fixes hero section right-shift after login on mobile.
   Desktop view is completely unchanged.
══════════════════════════════════════════════════════════════ */

/* Root-level fix — stops any element from causing horizontal scroll */
body {
  overflow-x: clip !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  /* Hero section — fully contained */
  .lp-hero {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  /* Hero background blobs — clip them */
  .lp-hero-bg {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Both hero containers — centered, no overflow */
  .lp-hero-badge-wrap,
  .lp-hero-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* Hero text — prevent overflow from long words/gradient text */
  .lp-hero-text,
  .lp-hero-h1,
  .lp-gradient-text,
  .lp-hero-sub,
  .lp-hero-cta-group,
  .lp-trust-line,
  .lp-hero-stats,
  .lp-hero-speed-line {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  /* Gradient text specifically — stop it from extending right */
  .lp-gradient-text {
    display: inline !important;
    white-space: normal !important;
  }

  /* Nav — fully contained */
  .nav {
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  /* Nav right area — don't let it push layout */
  .nav-right {
    flex-shrink: 0 !important;
    min-width: 0 !important;
  }

  /* Profile dropdown — always fixed under navbar on mobile */
  .profile-dropdown,
  .profile-dropdown.open {
    position: fixed !important;
    top: 72px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
    width: min(320px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 90px) !important;
    min-width: 200px !important;
    overflow-y: auto !important;
    z-index: 999999 !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  /* Preview card — no animation, contained */
  .lp-hero-preview {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .lp-preview-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    animation: none !important;
  }

  /* CTA buttons — full width, no overflow */
  .lp-btn-primary,
  .lp-btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   GLASSMORPHISM HERO PREVIEW CARD — Portfolio Style
   Inspired by premium SaaS product cards
══════════════════════════════════════════════════════════════ */

/* ── Glass card container ─────────────────────────────────── */
.lp-glass-card {
  background: rgba(15,12,35,.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.28),
    0 2px 8px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  z-index: 2;
  animation: lp-card-float 5s ease-in-out infinite;
}

@keyframes lp-card-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Inner shimmer line at top */
.lp-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* ── Glass toolbar ────────────────────────────────────────── */
.lp-glass-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 10px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.lp-glass-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.lp-gtab {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  padding: 6px 13px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none !important;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.lp-gtab:hover {
  background: rgba(124,58,237,.25);
  border-color: rgba(124,58,237,.4);
  color: #fff;
}

.lp-gtab-active {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  font-weight: 700;
}

/* ── Glass body ───────────────────────────────────────────── */
.lp-glass-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-glass-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.45);
}

.lp-glass-input {
  font-size: .82rem;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.5;
}

.lp-glass-selects {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lp-glass-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  padding: 4px 10px;
}

/* ── Generate button ──────────────────────────────────────── */
.lp-glass-generate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(79,70,229,.4);
  transition: all .2s;
}
.lp-glass-generate-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(79,70,229,.5); }

.lp-spinning-slow {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Output area ──────────────────────────────────────────── */
.lp-glass-output {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 12px;
}

.lp-glass-output-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.lp-glass-badge {
  background: rgba(16,185,129,.2);
  border: 1px solid rgba(16,185,129,.35);
  color: #6ee7b7;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}

.lp-glass-wordcount {
  font-size: .7rem;
  color: rgba(255,255,255,0.4);
}

.lp-glass-output-text {
  font-size: .78rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  margin-bottom: 10px;
}

.lp-glass-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lp-glass-action-btn {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 7px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all .2s;
}
.lp-glass-action-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }

.lp-glass-action-primary {
  background: rgba(79,70,229,.3) !important;
  border-color: rgba(79,70,229,.5) !important;
  color: #c7d2fe !important;
}
.lp-glass-action-primary:hover { background: rgba(79,70,229,.5) !important; }

/* ── Floating glass badges ────────────────────────────────── */
.lp-float-glass {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 10;
  white-space: nowrap;
  animation: lp-float-bob 4s ease-in-out infinite;
}

.lp-float-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: 14px 14px 0 0;
}

@keyframes lp-float-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

.lp-float-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

.lp-float-glass .lp-float-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,0.5);
}

.lp-float-glass .lp-float-val {
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
}

/* Hero tool buttons — natural flow below preview */
.lp-hero-tool-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-right: 4px;
}

.lp-hero-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20,16,40,.88);
  border: 1px solid rgba(124,58,237,.35);
  border-radius: 20px;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(79,70,229,.25);
  transition: all .18s ease;
  white-space: nowrap;
}

.lp-hero-tool-btn:hover {
  background: rgba(124,58,237,.4);
  border-color: rgba(124,58,237,.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
  color: #fff !important;
}

@media(max-width:768px) {
  .lp-hero-tool-btns { display: none; }
}

.lp-float-g1 {
  top: 10px;
  right: -10px;
  animation-delay: 0s;
}
.lp-tool-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: flex-start;
}

.lp-tool-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,16,40,.75);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 7px 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  text-decoration: none !important;
  transition: all .18s ease;
  white-space: nowrap;
}

.lp-tool-badge:hover {
  background: rgba(124,58,237,.3);
  border-color: rgba(124,58,237,.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124,58,237,.3);
}

.lp-tool-badge span {
  font-size: 1rem;
}

@media(max-width:768px) {
  .lp-tool-badges { display: none; }
}
.lp-float-g3 {
  bottom: -16px;
  right: 8px;
  animation-delay: 2.4s;
}

/* ── Mobile adjustments ───────────────────────────────────── */
@media (max-width: 768px) {
  .lp-glass-card {
    animation: none;
  }
  .lp-float-glass {
    display: none;
  }
  .lp-glass-tabs {
    display: none;
  }
}
/* ── Watch How It Works — black filled circle, white play arrow ── */
.watch-play-icon {
  flex-shrink: 0;
}
.watch-play-icon circle {
  fill: #000000 !important;
  stroke: none !important;
}
.watch-play-icon path {
  fill: #ffffff !important;
}

[data-theme="dark"] .watch-play-icon circle {
  fill: #000000 !important;
  stroke: none !important;
}
[data-theme="dark"] .watch-play-icon path {
  fill: #ffffff !important;
}
/* ── Benefit line marquee (inside speed-line box) ── */
.lp-benefit-marquee {
  display: inline;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
/* ══════════════════════════════════════════════════════════════
   HIGHLIGHT SECTION — JustDone style feature cards
══════════════════════════════════════════════════════════════ */
.lp-highlight-section {
  padding: 80px 0;
  background: var(--bg);
}

.lp-highlight-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lp-highlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 60px;
  box-shadow: 0 4px 24px rgba(79,70,229,.06);
  overflow: hidden;
}

@media(max-width:768px) {
  .lp-highlight-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 32px;
  }
  .lp-highlight-right-first { order: -1; }
}

.lp-highlight-card-alt .lp-highlight-left {
  order: 2;
}
.lp-highlight-card-alt .lp-highlight-right {
  order: 1;
}

@media(max-width:768px) {
  .lp-highlight-card-alt .lp-highlight-left { order: 2; }
  .lp-highlight-card-alt .lp-highlight-right { order: 1; }
}

.lp-highlight-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-highlight-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.lp-highlight-desc {
  font-size: .98rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
}

.lp-highlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none !important;
  width: fit-content;
  transition: all .18s ease;
  box-shadow: 0 4px 16px rgba(79,70,229,.3);
}

.lp-highlight-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,.4);
  color: #fff;
  text-decoration: none !important;
}

/* Mockup card */
.lp-highlight-mockup {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.lp-hm-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-hm-badge {
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.lp-hm-badge-red {
  background: rgba(239,68,68,.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,.2);
}

.lp-hm-badge-orange {
  background: rgba(245,158,11,.1);
  color: #d97706;
  border: 1px solid rgba(245,158,11,.2);
}

.lp-hm-sub {
  font-size: .78rem;
  color: var(--text-muted);
}

.lp-hm-body {
  padding: 18px;
}

.lp-hm-text {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.lp-hm-highlight-red {
  background: rgba(239,68,68,.12);
  border-bottom: 2px solid rgba(239,68,68,.5);
  color: var(--text);
  padding: 1px 0;
}

.lp-hm-highlight-orange {
  background: rgba(245,158,11,.1);
  border-bottom: 2px solid rgba(245,158,11,.5);
  color: var(--text);
  padding: 1px 0;
}

.lp-hm-normal {
  color: var(--text-muted);
}

.lp-hm-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.lp-hm-btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .83rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .18s ease;
}

.lp-hm-btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lp-hm-btn-primary {
  background: var(--primary);
  color: #fff;
  font-size: .83rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all .18s ease;
}

.lp-hm-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none !important;
}

/* Dark mode */
[data-theme="dark"] .lp-highlight-card {
  background: var(--bg-card);
  border-color: rgba(255,255,255,.07);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

[data-theme="dark"] .lp-highlight-mockup {
  background: var(--bg-2);
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

/* ══════════════════════════════════════════════════════════════
   SAVE TIME SECTION — JustDone style
══════════════════════════════════════════════════════════════ */
.lp-savetime-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 75%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.lp-savetime-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.lp-savetime-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -.03em;
  margin-bottom: 56px;
  position: relative;
}

.lp-savetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

@media(max-width:768px) {
  .lp-savetime-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Right mockup (now on right side) */
.lp-savetime-left {
  order: 2;
}

/* Left text (now on left) */
.lp-savetime-right {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-savetime-mockup {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 48px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lp-st-stats-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-st-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 140px;
}

.lp-st-stat-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  text-align: center;
  line-height: 1.5;
  max-width: 140px;
}

/* Tool chips */
.lp-st-tools-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.lp-st-tool-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* Benefit text — white on dark bg */
.lp-st-benefit {
  padding: 18px 0;
}

.lp-st-benefit h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.lp-st-benefit p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 14px;
}

.lp-st-line {
  height: 2px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
}

.lp-st-line-active {
  background: linear-gradient(90deg, #818cf8, #38bdf8);
  width: 60%;
}

/* Dark mode — already dark so minimal change */
[data-theme="dark"] .lp-savetime-section {
  background: linear-gradient(135deg, #06040f 0%, #0f0a2a 40%, #180a35 75%, #0c1a4d 100%);
}

/* ── Save Time Mockup — JustDone floating cards style ─────── */
.lp-st-main-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-st-main-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp-st-icon {
  font-size: 1.4rem;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 8px;
  flex-shrink: 0;
}

.lp-st-main-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.lp-st-main-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

.lp-st-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none !important;
  width: fit-content;
  transition: all .18s ease;
  box-shadow: 0 4px 16px rgba(16,185,129,.4);
}

.lp-st-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,.5);
  color: #fff;
  text-decoration: none !important;
}

/* Floating stat chips 2x2 grid */
.lp-st-float-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-st-float-chip {
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}

.lp-st-chip-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.lp-st-chip-label {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

.lp-st-chip-green  { background: rgba(16,185,129,.2); border-color: rgba(16,185,129,.3); }
.lp-st-chip-blue   { background: rgba(59,130,246,.2);  border-color: rgba(59,130,246,.3); }
.lp-st-chip-purple { background: rgba(124,58,237,.25); border-color: rgba(124,58,237,.35);}
.lp-st-chip-orange { background: rgba(249,115,22,.2);  border-color: rgba(249,115,22,.3); }

/* ── Final CTA Split Layout ───────────────────────────────── */
.lp-final-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

@media(max-width:768px) {
  .lp-final-cta-split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 56px 0;
  }
  .lp-final-cta-btns { justify-content: center; }
  .lp-final-trust { justify-content: center; }
}

.lp-final-cta-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

@media(max-width:768px) {
  .lp-final-cta-left { align-items: center; }
}

/* Right rings mockup */
.lp-fcta-mockup {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 40px 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
}

.lp-fcta-rings-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-fcta-ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 140px;
}

.lp-fcta-ring-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-align: center;
  line-height: 1.5;
  max-width: 150px;
}

/* ── Final CTA rings upgrade ───────────────────────────────── */
.lp-fcta-mockup {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(124,58,237,.4);
  border-radius: 24px;
  padding: 40px 28px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(124,58,237,.2),
    0 8px 48px rgba(79,70,229,.35),
    0 2px 8px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition: box-shadow .3s ease, border-color .3s ease;
  cursor: default;
}

.lp-fcta-mockup:hover {
  border-color: rgba(124,58,237,.7);
  box-shadow:
    0 0 0 1px rgba(124,58,237,.4),
    0 12px 60px rgba(79,70,229,.5),
    0 4px 12px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.1);
}

.lp-fcta-rings-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-fcta-ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 120px;
}

.lp-fcta-svg-wrap {
  filter: drop-shadow(0 0 12px rgba(124,58,237,.3));
  transition: filter .3s ease;
}

.lp-fcta-ring-card:hover .lp-fcta-svg-wrap {
  filter: drop-shadow(0 0 20px rgba(124,58,237,.6));
}

.lp-fcta-ring-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.4;
  max-width: 130px;
}

.lp-fcta-trust-text {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  letter-spacing: .01em;
}

/* Ring animation keyframes */
@keyframes lp-ring-fill-orange {
  from { stroke-dasharray: 0 352; }
  to   { stroke-dasharray: 264 352; }
}
@keyframes lp-ring-fill-blue {
  from { stroke-dasharray: 0 352; }
  to   { stroke-dasharray: 310 352; }
}
@keyframes lp-ring-fill-green {
  from { stroke-dasharray: 0 352; }
  to   { stroke-dasharray: 345 352; }
}

.lp-ring-orange {
  animation: lp-ring-fill-orange 1.6s cubic-bezier(.22,1,.36,1) .3s both;
}
.lp-ring-blue {
  animation: lp-ring-fill-blue 1.6s cubic-bezier(.22,1,.36,1) .5s both;
}
.lp-ring-green {
  animation: lp-ring-fill-green 1.6s cubic-bezier(.22,1,.36,1) .7s both;
}

/* 3-column rings on desktop */
@media(min-width:640px) {
  .lp-fcta-rings-row { flex-wrap: nowrap; }
}

/* ── Preview Sidebar — ZeroGPT style ──────────────────────── */
.lp-preview-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 16px 6px;
  border-right: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.18);
  min-width: 52px;
  width: 52px;
}

.lp-sidebar-top,
.lp-sidebar-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lp-sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.25rem;
  text-decoration: none !important;
  transition: background .15s ease, transform .15s ease;
  cursor: pointer;
  background: transparent;
}

.lp-sidebar-icon:hover {
  background: rgba(255,255,255,.15);
  transform: scale(1.1);
}

/* Footer tool icons */
.lp-footer-tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background .15s ease;
  background: transparent;
}

.lp-footer-tool-icon:hover {
  background: rgba(255,255,255,.15);
}

/* ── Output box — keep green in light mode ─────────────────── */
.lp-glass-output {
  background: #f0fdf4 !important;
  border: 1.5px solid #bbf7d0 !important;
  border-radius: 10px;
  padding: 12px;
}

[data-theme="dark"] .lp-glass-output {
  background: rgba(16,185,129,.08) !important;
  border-color: rgba(16,185,129,.2) !important;
}

/* ── Dark mode hover fix — no bright white ─────────────────── */
[data-theme="dark"] .lp-glass-chip:hover,
[data-theme="dark"] .lp-glass-action-btn:hover,
[data-theme="dark"] .lp-gtab:hover {
  background: rgba(255,255,255,.12) !important;
}

[data-theme="dark"] .lp-glass-input {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.85) !important;
}

[data-theme="dark"] .lp-glass-body { background: transparent !important; }
[data-theme="dark"] .lp-glass-toolbar { background: rgba(255,255,255,.04) !important; border-bottom-color: rgba(255,255,255,.08) !important; }

/* ── Glass card bottom tool tabs ──────────────────────────── */
.lp-glass-bottom-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 140px 18px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
}

.lp-gtab-bottom {
  font-size: .83rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  padding: 7px 14px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  text-decoration: none !important;
  transition: all .18s ease !important;
  cursor: pointer;
}

.lp-gtab-bottom:hover {
  background: rgba(124,58,237,.25) !important;
  border-color: rgba(124,58,237,.4) !important;
  color: #fff !important;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATED HERO BACKGROUND
══════════════════════════════════════════════════════════════ */
.lp-hero {
  animation: lp-bg-shift 15s ease infinite;
  background-size: 200% 200%;
}

@keyframes lp-bg-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* .lp-hero-bg uses CSS variable from theme */
.lp-hero-bg {
  background-size: 400% 400%;
  animation: lp-bg-shift 10s ease infinite;
}

/* ── Generate Now button — shine + gradient animation ──────── */
.lp-glass-generate-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed, #4f46e5, #7c3aed) !important;
  background-size: 200% 200% !important;
  animation: lp-btn-gradient 3s ease infinite !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}

@keyframes lp-btn-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Shine sweep effect */
.lp-glass-generate-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform: skewX(-20deg);
  animation: lp-btn-shine 3s ease infinite;
}

@keyframes lp-btn-shine {
  0%   { left: -75%; }
  50%  { left: 125%; }
  100% { left: 125%; }
}

.lp-glass-generate-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(124,58,237,.6) !important;
}

/* ── Bottom tabs — gradient border ────────────────────────── */
.lp-gtab-bottom {
  position: relative;
  background: rgba(255,255,255,.06) !important;
  border: 1.5px solid transparent !important;
  background-clip: padding-box !important;
}

.lp-gtab-bottom::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(124,58,237,.5), rgba(79,70,229,.3), rgba(124,58,237,.5));
  background-size: 200% 200%;
  animation: lp-border-shift 4s ease infinite;
  z-index: -1;
}

@keyframes lp-border-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ══════════════════════════════════════════════════════════════
   OVERALL SCORE SECTION — JustDone style
══════════════════════════════════════════════════════════════ */
.lp-score-section {
  padding: 64px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.lp-score-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.lp-score-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-score-icon {
  font-size: 2rem;
}

.lp-score-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}

.lp-score-stars {
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #f59e0b;
}

.lp-score-total {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.lp-score-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 12px 0;
}

.lp-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lp-score-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.lp-score-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.lp-score-trustpilot {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  font-size: .88rem;
  color: var(--text-muted);
}

.lp-score-tp-label {
  background: #00b67a;
  color: #fff;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: .85rem;
}

.lp-score-tp-stars {
  color: #00b67a;
  font-size: 1rem;
  letter-spacing: 1px;
}

[data-theme="dark"] .lp-score-section {
  background: var(--bg);
  border-color: rgba(255,255,255,.06);
}

/* ── Hero compact score card ───────────────────────────────── */
.lp-hero-score-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 12px 16px;
  margin-top: 12px;
  backdrop-filter: blur(12px);
  max-width: 420px;
}

.lp-hero-score-stars {
  font-size: .95rem;
  letter-spacing: 1px;
}

.lp-hero-score-text {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}

.lp-hero-score-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* ── Hero vertical score card (right of preview box) ──────── */
.lp-hero-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 16px 12px;
  backdrop-filter: blur(16px);
  min-width: 110px;
  flex-shrink: 0;
  text-align: center;
}

.lp-hero-score-stars {
  font-size: .75rem;
  letter-spacing: 1px;
}

.lp-hero-score-overall {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.lp-hero-score-overall span {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
}

.lp-hero-score-label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.lp-hero-score-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.1);
}

.lp-hero-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  width: 100%;
}

.lp-hero-score-n {
  font-size: .95rem;
  font-weight: 800;
  color: var(--primary);
  color: #a78bfa;
}

.lp-hero-score-item span:last-child {
  font-size: .68rem;
  color: rgba(255,255,255,.5);
}

.lp-hero-score-excellent {
  font-size: .78rem;
  font-weight: 700;
  color: #4ade80;
}

.lp-hero-score-reviews {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
}

@media(max-width:768px) {
  .lp-hero-score-card { display: none; }

  /* Bottom tool buttons — wrap side by side on mobile */
  .lp-glass-bottom-tabs {
    padding: 12px 12px 14px 12px !important;
    gap: 6px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }

  .lp-gtab-bottom {
    font-size: .75rem !important;
    padding: 6px 11px !important;
    flex-shrink: 0 !important;
  }
}

/* ── Dark mode bottom tabs background fix ──────────────────── */
[data-theme="dark"] .lp-glass-bottom-tabs {
  background: transparent;
  border-top-color: rgba(255,255,255,.08);
}

[data-theme="dark"] .lp-gtab-bottom {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.1) !important;
}

/* Dark mode glass chip background */
[data-theme="dark"] .lp-glass-chip {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.85) !important;
}

/* Dark mode glass selects area */
[data-theme="dark"] .lp-glass-selects {
  background: transparent !important;
}

/* ── Dark mode glass card full fix ────────────────────────── */
[data-theme="dark"] .lp-glass-card {
  background: rgba(15,12,35,0.92) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: rgba(255,255,255,.08) !important;
  box-shadow: none !important;
}

[data-theme="dark"] .lp-glass-body {
  background: transparent !important;
}

[data-theme="dark"] .lp-glass-selects,
[data-theme="dark"] .lp-glass-actions,
[data-theme="dark"] .lp-glass-bottom-tabs {
  background: transparent !important;
}

[data-theme="dark"] .lp-glass-action-btn {
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.85) !important;
  border-color: rgba(255,255,255,.1) !important;
}