/* ═══════════════════════════════════════════════════════════════
   datapanda — Landing Page Styles v2
   ═══════════════════════════════════════════════════════════════ */

:root {
  --lp-bg: #ffffff;
  --lp-bg-soft: #f8fafc;
  --lp-text: #0f172a;
  --lp-text-secondary: #475569;
  --lp-text-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-accent: #8b5cf6;
  /* Shared footer variables */
  --brd: #e2e8f0;
  --t:   #0f172a;
  --t2:  #475569;
  --t3:  #94a3b8;
  --p:   #8b5cf6;
  --lp-accent-2: #ec4899;
  --lp-grad-purple: linear-gradient(135deg, #8b5cf6, #6d28d9);
  --lp-grad-instagram: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  --lp-grad-text: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f97316 100%);
  --lp-radius: 14px;
  --lp-radius-lg: 22px;
  --lp-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --lp-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
}

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

.landing-body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lp-btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 12px; }
.lp-btn-primary {
  background: var(--lp-grad-purple);
  color: white;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.38);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.48);
}
.lp-btn-secondary {
  background: white;
  color: var(--lp-text);
  border-color: var(--lp-border);
}
.lp-btn-secondary:hover {
  border-color: var(--lp-accent);
  color: var(--lp-accent);
  transform: translateY(-1px);
}
.lp-btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.lp-btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.45);
}
.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text-secondary);
}
.lp-btn-ghost:hover { color: var(--lp-text); }

/* ─── Nav ───────────────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  height: 76px;
  position: relative;
  gap: 0;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--lp-text);
  text-decoration: none;
  flex-shrink: 0;
}
.lp-logo-icon {
  width: 34px; height: 34px;
  background: var(--lp-grad-instagram);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.lp-logo-icon svg { width: 18px; height: 18px; }

.lp-nav-links {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.lp-nav-links > a,
.lp-nav-links .lp-nav-dropdown-trigger {
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.lp-nav-links > a:hover,
.lp-nav-links .lp-nav-dropdown-trigger:hover { color: var(--lp-text); }

/* Dropdown */
.lp-nav-dropdown { position: relative; }
.lp-nav-dropdown-trigger { cursor: pointer; }
.lp-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px; /* köprü — hover kopmaz */
  min-width: 220px;
  z-index: 300;
}
.lp-nav-dropdown-menu-inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-nav-dropdown:hover .lp-nav-dropdown-menu { display: block; }
.lp-nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: background .12s;
  white-space: nowrap;
}
.lp-nav-dd-item:hover { background: #f1f5f9; color: #6d28d9; }
.lp-nav-dd-item svg { width: 15px; height: 15px; flex-shrink: 0; color: #8b5cf6; }

.lp-nav-actions { display: flex; gap: 8px; align-items: center; }

@media (max-width: 780px) {
  .lp-nav-links { display: none; }
}

/* ─── Hero (Dark) ───────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  background: #080818;
  overflow: hidden;
  padding: 72px 0 0;
}
.lp-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(139,92,246,0.22) 0%,
    rgba(236,72,153,0.12) 35%,
    transparent 70%);
  pointer-events: none;
}
.lp-hero-glow-2 {
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: flex-end;
}

.lp-hero-text {
  padding-bottom: 72px;
  color: white;
}

.lp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 24px;
}
.lp-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 8px rgba(139,92,246,0.8);
  animation: lpPulse 2s ease-in-out infinite;
}
@keyframes lpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.lp-hero-title {
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.025em;
  word-break: keep-all;
  margin-bottom: 22px;
  color: white;
}

.lp-grad-text {
  background: var(--lp-grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lp-hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.60);
  margin-bottom: 36px;
  max-width: 500px;
}
.lp-hero-sub strong { color: rgba(255,255,255,0.85); font-weight: 700; }

.lp-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.lp-hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-trust-check {
  width: 14px;
  height: 14px;
  color: #10b981;
}

/* ─── Hero screenshot (browser frame) ──────────────────────────── */
.lp-hero-screenshot {
  align-self: flex-end;
  position: relative;
}
.lp-hero-screenshot svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 -20px 60px rgba(139,92,246,0.20));
}

/* ─── Stats bar ─────────────────────────────────────────────────── */
.lp-stats-bar {
  background: white;
  border-bottom: 1px solid var(--lp-border);
}
.lp-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 22px 40px;
  border-right: 1px solid var(--lp-border);
  text-align: center;
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-item strong {
  font-size: 26px;
  font-weight: 800;
  background: var(--lp-grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.lp-stat-item span {
  font-size: 13px;
  color: var(--lp-text-muted);
  font-weight: 500;
}
@media (max-width: 700px) {
  .lp-stat-item { padding: 16px 20px; border-right: none; border-bottom: 1px solid var(--lp-border); width: 50%; }
}

/* ─── Feature Showcase sections ─────────────────────────────────── */
.lp-showcase {
  padding: 100px 0;
}
.lp-showcase-alt {
  background: var(--lp-bg-soft);
}
.lp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lp-showcase-grid.lp-rev {
  direction: rtl;
}
.lp-showcase-grid.lp-rev > * {
  direction: ltr;
}

.lp-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.lp-showcase-badge svg { width: 13px; height: 13px; }

.lp-showcase-title {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  color: var(--lp-text);
}
.lp-showcase-desc {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--lp-text-secondary);
  margin-bottom: 28px;
}
.lp-showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.lp-showcase-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--lp-text-secondary);
  line-height: 1.45;
}
.lp-showcase-bullets li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(139,92,246,0.10);
  border: 1.5px solid rgba(139,92,246,0.25);
  display: flex;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
.lp-bullet-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.10);
  border: 1.5px solid rgba(16,185,129,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-bullet-check svg { width: 11px; height: 11px; color: #10b981; }

.lp-showcase-screen {
  position: relative;
}
.lp-showcase-screen svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 20px 50px rgba(15,23,42,0.14));
}

@media (max-width: 960px) {
  .lp-showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-showcase-grid.lp-rev { direction: ltr; }
  .lp-showcase { padding: 72px 0; }
}

/* ─── Section headers (general) ─────────────────────────────────── */
.lp-section { padding: 88px 0; }
.lp-section-alt { background: var(--lp-bg-soft); }

.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lp-accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.lp-eyebrow-icon { width: 14px; height: 14px; flex-shrink: 0; }
.lp-section-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.lp-section-sub {
  font-size: 17px;
  color: var(--lp-text-secondary);
  line-height: 1.6;
}

/* ─── Quick features grid ───────────────────────────────────────── */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-features-grid { grid-template-columns: 1fr; } }

.lp-feature-card {
  background: white;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 26px 22px;
  transition: all 0.25s ease;
}
.lp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: rgba(139,92,246,0.25);
}
.lp-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(15,23,42,0.10);
}
.lp-feature-icon svg { width: 22px; height: 22px; }
.lp-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lp-text);
}
.lp-feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text-secondary);
}

/* ─── Testimonials ──────────────────────────────────────────────── */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .lp-testimonials-grid { grid-template-columns: 1fr; } }

.lp-testimonial-card {
  background: white;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 26px;
  position: relative;
}
.lp-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.lp-testimonial-stars svg { width: 16px; height: 16px; fill: #f59e0b; color: #f59e0b; }
.lp-testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lp-text-secondary);
  margin-bottom: 22px;
  font-style: italic;
}
.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--lp-border);
  padding-top: 18px;
}
.lp-testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.lp-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-text);
  line-height: 1.2;
}
.lp-testimonial-role {
  font-size: 12px;
  color: var(--lp-text-muted);
  margin-top: 2px;
}

/* ─── Steps (how it works) ──────────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .lp-steps { grid-template-columns: 1fr; gap: 28px; }
  .lp-step-arrow { display: none !important; }
}
.lp-step {
  background: white;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
}
.lp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: rgba(139,92,246,0.25);
}
.lp-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--lp-grad-purple);
  color: white;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(139,92,246,0.40);
}
.lp-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-top: 8px;
}
.lp-step-icon svg { width: 36px; height: 36px; }
.lp-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.lp-step p { font-size: 14px; line-height: 1.55; color: var(--lp-text-secondary); }
.lp-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-accent);
  opacity: 0.45;
}

/* ─── Final CTA ─────────────────────────────────────────────────── */
.lp-cta { padding: 60px 0 100px; }
.lp-cta-box {
  background: #0a0a1a;
  border-radius: var(--lp-radius-lg);
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(139,92,246,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.lp-cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #c4b5fd, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  word-break: keep-all;
}
.lp-cta-box p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.lp-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.lp-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  position: relative;
  z-index: 1;
}

/* ─── Shared Footer (all pages) ──────────────────────────────────── */
.footer { border-top: 1px solid var(--brd); background: #ffffff; }
.footer-in { max-width: 1180px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand p { font-size: 13px; color: var(--t3); line-height: 1.6; margin: 12px 0 0; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--t); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col a { display: block; font-size: 13px; color: var(--t2); text-decoration: none; padding: 3px 0; }
.footer-col a:hover { color: var(--p); }
.footer-bot { max-width: 1180px; margin: 0 auto; padding: 18px 24px; border-top: 1px solid var(--brd); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--t3); }
@media (max-width: 768px) { .footer-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-in { grid-template-columns: 1fr; } }

/* ─── Footer ─────────────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  background: #ffffff;
}
.lp-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 44px;
  padding: 56px 24px 32px;
}
@media (max-width: 720px) {
  .lp-footer-inner { grid-template-columns: 1fr; }
}
.lp-footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--lp-text-muted);
  max-width: 260px;
  line-height: 1.6;
}
.lp-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 520px) {
  .lp-footer-cols { grid-template-columns: 1fr 1fr; }
}
.lp-footer-cols h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--lp-text);
}
.lp-footer-cols a {
  display: block;
  font-size: 13.5px;
  color: var(--lp-text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.lp-footer-cols a:hover { color: var(--lp-accent); }
.lp-footer-bottom {
  border-top: 1px solid var(--lp-border);
  padding: 20px 0;
  font-size: 12.5px;
  color: var(--lp-text-muted);
  text-align: center;
}
.lp-footer-bottom .lp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* Language selector — footer & nav */
.lp-lang-sel {
  appearance: none;
  -webkit-appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2394a3b8'/%3E%3C/svg%3E") no-repeat right 8px center;
  border: 1px solid var(--lp-border, #e2e8f0);
  padding: 5px 26px 5px 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-muted, #64748b);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.lp-lang-sel:hover { border-color: var(--lp-accent, #8b5cf6); }

/* ─── Misc utils ─────────────────────────────────────────────────── */
.lp-text-center { text-align: center; }
.lp-mt-4 { margin-top: 16px; }
.lp-link {
  color: var(--lp-accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  transition: gap 0.2s ease;
}
.lp-link:hover { gap: 8px; }
.lp-link svg { width: 15px; height: 15px; }

/* ═══════════════════════════════════════════════════════════════
   Landing v3 — Professional Redesign
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero v3 ────────────────────────────────────────────────── */
.lp-hero-v3 {
  background: linear-gradient(160deg, #09090f 0%, #0e0820 40%, #130a28 70%, #0a0a16 100%);
  padding: 110px 0 0;
  overflow: hidden;
  position: relative;
}
.lp-hero-v3::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.lp-hero-v3-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-hero-v3-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 24px;
}
.lp-hero-v3-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8b5cf6;
  animation: pulse2 2s infinite;
}
@keyframes pulse2 {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(139,92,246,0); }
}
.lp-hero-v3-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.025em;
  word-break: keep-all;
  margin-bottom: 22px;
}
.lp-hero-v3-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.lp-hero-v3-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lp-hero-v3-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.lp-hero-v3-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.lp-hero-v3-trust-item svg { color: #10b981; }

/* Hero browser frame */
.lp-hero-browser {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.lp-hero-browser-frame {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.lp-hero-browser-bar {
  background: #1a1a2e;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.lp-hero-browser-dots { display: flex; gap: 6px; }
.lp-hero-browser-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.lp-hero-browser-url {
  flex: 1;
  background: #0d0d1e;
  border-radius: 6px;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  max-width: 360px;
  margin: 0 auto;
}
.lp-hero-browser-url,
.lp-hero-browser-url span {
  font-size: 11px;
  color: #4a4a7a;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.lp-hero-browser-fade {
  position: absolute;
  bottom: 0;
  left: 24px; right: 24px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #09090f);
  pointer-events: none;
}

/* ─── Logo Bar ───────────────────────────────────────────────── */
.lp-logo-bar {
  background: white;
  border-bottom: 1px solid var(--lp-border);
  padding: 20px 0;
}
.lp-logo-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.lp-logo-bar-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-logo-bar-agencies {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.lp-agency-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
}
.lp-agency-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

/* ─── Stats Bar v2 ───────────────────────────────────────────── */
.lp-stats-v2 {
  background: #f8fafc;
  border-bottom: 1px solid var(--lp-border);
  padding: 32px 0;
}
.lp-stats-v2-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lp-stat-v2 {
  padding: 0 32px;
  border-right: 1px solid var(--lp-border);
  text-align: center;
}
.lp-stat-v2:first-child { padding-left: 0; }
.lp-stat-v2:last-child { border-right: none; }
.lp-stat-v2-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--lp-grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}
.lp-stat-v2-label {
  font-size: 13px;
  color: var(--lp-text-muted);
  font-weight: 500;
}

/* ─── Showcase v3 ────────────────────────────────────────────── */
.lp-sc {
  padding: 100px 0;
}
.lp-sc-alt { background: #f8fafc; }
.lp-sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-sc-grid-rev { direction: rtl; }
.lp-sc-grid-rev > * { direction: ltr; }
.lp-sc-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
  background: rgba(139,92,246,0.08);
  color: #7c3aed;
  border: 1px solid rgba(139,92,246,0.18);
}
.lp-sc-tag svg { width: 13px; height: 13px; }
.lp-sc-h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--lp-text);
  margin-bottom: 16px;
}
.lp-sc-p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-text-secondary);
  margin-bottom: 28px;
}
.lp-sc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.lp-sc-bullets li,
li.lp-sc-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--lp-text-secondary);
  line-height: 1.5;
  list-style: none;
}
/* When .lp-sc-check is the <li> itself */
li.lp-sc-check::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(139,92,246,0.1);
  color: #8b5cf6;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
/* When .lp-sc-check is a child element inside <li> */
.lp-sc-check:not(li) {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(139,92,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-sc-check svg { width: 11px; height: 11px; color: #8b5cf6; }
.lp-sc-screen {
  position: relative;
}
.lp-sc-screen svg {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
}
.lp-sc-screen-glow {
  position: absolute;
  inset: -20px;
  border-radius: 24px;
  pointer-events: none;
  z-index: -1;
}

/* ─── Features Grid v2 ───────────────────────────────────────── */
.lp-feat-section {
  padding: 100px 0;
  background: #09090f;
}
.lp-feat-eyebrow {
  text-align: center;
  margin-bottom: 56px;
}
.lp-feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #c4b5fd;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-feat-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 14px;
}
.lp-feat-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.lp-feat-card-v2 {
  background: #0d0d1e;
  padding: 32px 28px;
  transition: background 0.2s;
}
.lp-feat-card-v2:hover { background: #121228; }
.lp-feat-icon-v2 {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.lp-feat-icon-v2 svg { width: 20px; height: 20px; color: white; }
.lp-feat-card-v2 h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.lp-feat-card-v2 p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

/* ─── Testimonials v2 ────────────────────────────────────────── */
.lp-testi-section {
  padding: 100px 0;
  background: white;
}
.lp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.lp-testi-card-v2 {
  background: #f8fafc;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-testi-card-v2:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.lp-testi-stars-v2 {
  display: flex;
  gap: 3px;
}
.lp-testi-stars-v2 svg {
  width: 15px; height: 15px;
  fill: #f59e0b;
  stroke: none;
}
.lp-testi-quote-v2 {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--lp-text-secondary);
  flex: 1;
}
.lp-testi-quote-v2 strong { color: var(--lp-text); font-weight: 600; }
.lp-testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.lp-testi-name { font-size: 14px; font-weight: 700; color: var(--lp-text); }
.lp-testi-role { font-size: 12.5px; color: var(--lp-text-muted); }

/* ─── How It Works v2 ────────────────────────────────────────── */
.lp-how-section {
  padding: 100px 0;
  background: #f8fafc;
}
.lp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}
.lp-how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(to right, #8b5cf6, #ec4899);
  opacity: 0.3;
}
.lp-how-step {
  text-align: center;
  position: relative;
}
.lp-how-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
}
.lp-how-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 10px;
}
.lp-how-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--lp-text-secondary);
}

/* ─── Team/Trust bar ─────────────────────────────────────────── */
.lp-team-bar {
  background: white;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 28px 0;
}
.lp-team-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-team-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--lp-text-secondary);
  font-weight: 500;
}
.lp-team-item svg {
  color: var(--lp-accent);
  width: 18px; height: 18px;
}

/* ─── CTA v2 ─────────────────────────────────────────────────── */
.lp-cta-v2 {
  padding: 100px 0;
  background: #09090f;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-v2::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.lp-cta-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #6ee7b7;
  margin-bottom: 24px;
}
.lp-cta-v2 h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.lp-cta-v2 p {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.lp-cta-v2-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lp-cta-v2-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .lp-sc-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-sc-grid-rev { direction: ltr; }
  .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-testi-grid { grid-template-columns: 1fr 1fr; }
  .lp-stats-v2-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lp-stat-v2 { border-right: none; border-bottom: 1px solid var(--lp-border); padding: 16px; }
  .lp-how-steps { grid-template-columns: 1fr; }
  .lp-how-steps::before { display: none; }
}
@media (max-width: 640px) {
  .lp-feat-grid { grid-template-columns: 1fr; }
  .lp-testi-grid { grid-template-columns: 1fr; }
  .lp-hero-v3-title { font-size: 28px; letter-spacing: -0.02em; }
  .lp-hero-v3-sub { font-size: 16px; }
  .lp-hero-title { font-size: 28px; }
  .lp-section-title { font-size: 27px; }
  .lp-showcase-title { font-size: 25px; }
  .lp-logo-bar-agencies { gap: 16px; }
  .lp-sc { padding: 64px 0; }
}

/* ─── Footer socials / extras ────────────────────────────────── */
.lp-footer-tagline {
  font-size: 13.5px;
  color: var(--lp-text-muted);
  line-height: 1.65;
  max-width: 260px;
  margin-top: 10px;
}
.lp-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.lp-footer-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--lp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-text-muted);
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.lp-footer-socials a:hover { color: var(--lp-accent); border-color: var(--lp-accent); }
.lp-footer-socials a svg { width: 15px; height: 15px; flex-shrink: 0; }
.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 32px;
}
@media (max-width: 900px) {
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .lp-footer-grid { grid-template-columns: 1fr; }
}
.lp-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--lp-text);
  margin-bottom: 12px;
}
.lp-footer-col ul { list-style: none; }
.lp-footer-col ul li a {
  display: block;
  font-size: 13.5px;
  color: var(--lp-text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.lp-footer-col ul li a:hover { color: var(--lp-accent); }
.lp-footer-meta {
  font-size: 12.5px;
  color: var(--lp-text-muted);
}
/* Footer brand column */
.lp-footer-brand { }
.lp-footer-brand .lp-logo { margin-bottom: 10px; }
/* Stats bar + team bar inner containers */
.lp-stats-v2-inner,
.lp-team-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
