/* =========================================
   LANDING.CSS — Public Marketing Page
   ========================================= */

/* ── Base overrides for landing page ── */
.lp-body {
  background: #FFFFFF;
  font-size: 1rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.lnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.lnav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  background: rgba(255, 255, 255, 0.97);
}

.lnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Brand */
.lnav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.lnav-brand-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(79,70,229,0.35);
  flex-shrink: 0;
}

.lnav-brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.lnav-brand-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1px;
}

/* Desktop links */
.lnav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.lnav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.lnav-link:hover {
  color: var(--text);
  background: var(--bg);
  text-decoration: none;
}

.lnav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* Actions */
.lnav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* Hamburger */
.lnav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease);
  margin-left: auto;
}

.lnav-hamburger:hover { background: var(--bg); }

.hamburger-line {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.lnav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lnav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lnav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.lnav-mobile {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  background: white;
  gap: 0.25rem;
}

.lnav-mobile.open { display: flex; }

.lnav-mobile-link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}

.lnav-mobile-link:hover {
  color: var(--text);
  background: var(--bg);
  text-decoration: none;
}

.lnav-mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0.75rem;
}

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */
.lp-section {
  padding: 6rem 1.5rem;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-container-narrow {
  max-width: 780px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero-section {
  padding: 10rem 1.5rem 6rem;
  background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
  overflow: hidden;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(79,70,229,0.2);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-heading {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-heading .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; font-weight: 700; color: white;
  margin-left: -8px;
  flex-shrink: 0;
}

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

.pa-1 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.pa-2 { background: linear-gradient(135deg, #0EA5E9, #2563EB); }
.pa-3 { background: linear-gradient(135deg, #10B981, #059669); }
.pa-4 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.pa-5 { background: linear-gradient(135deg, #EF4444, #DC2626); }

.proof-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-text strong {
  color: var(--text);
  font-weight: 700;
}

.proof-stars {
  color: #FBBF24;
  font-size: 0.75rem;
}

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

.mockup-window {
  background: #0F172A;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 25px 50px rgba(0,0,0,0.35),
    0 12px 24px rgba(0,0,0,0.2);
  animation: heroFloat 5s ease-in-out infinite;
  position: relative;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #1E293B;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.md-red    { background: #FF5F57; }
.md-yellow { background: #FFBD2E; }
.md-green  { background: #28C840; }

.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  height: 22px;
  margin: 0 0.5rem;
  display: flex; align-items: center; padding: 0 0.625rem;
  gap: 0.375rem;
}

.mockup-url-text { font-size: 0.625rem; color: #94A3B8; font-family: monospace; }

.mockup-body {
  display: flex;
  height: 320px;
}

.mockup-sidebar {
  width: 52px;
  background: #0F172A;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.875rem 0.5rem;
  gap: 0.5rem;
}

.ms-logo {
  width: 28px; height: 28px;
  background: var(--primary);
  border-radius: 7px;
  margin-bottom: 0.5rem;
}

.ms-item {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
}

.ms-item.ms-active { background: rgba(79,70,229,0.35); }
.ms-item.ms-active-bar {
  border-left: 2px solid var(--primary);
  border-radius: 0 7px 7px 0;
}

.mockup-main {
  flex: 1;
  background: #F8FAFC;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
}

.mm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mm-title { width: 80px; height: 10px; background: #CBD5E1; border-radius: 4px; }
.mm-btn { width: 60px; height: 24px; background: #4F46E5; border-radius: 6px; }

.mm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.mm-stat {
  background: white;
  border-radius: 8px;
  padding: 0.625rem;
  border: 1px solid #E2E8F0;
}

.mm-stat-val {
  height: 14px;
  border-radius: 3px;
  margin-bottom: 0.25rem;
  width: 60%;
}

.mm-stat-lbl {
  height: 8px;
  background: #E2E8F0;
  border-radius: 3px;
  width: 80%;
}

.mm-s1 .mm-stat-val { background: #4F46E5; }
.mm-s2 .mm-stat-val { background: #059669; }
.mm-s3 .mm-stat-val { background: #2563EB; }
.mm-s4 .mm-stat-val { background: #D97706; }

.mm-table-head {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.mm-th { flex: 1; height: 8px; background: #CBD5E1; border-radius: 3px; }

.mm-rows { display: flex; flex-direction: column; gap: 0.375rem; }

.mm-row {
  background: white;
  border-radius: 6px;
  height: 28px;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  gap: 0.5rem;
}

.mm-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mr-d1 { background: #4F46E5; }
.mr-d2 { background: #059669; }
.mr-d3 { background: #D97706; }

.mm-row-bar { flex: 1; height: 7px; background: #E2E8F0; border-radius: 3px; }

.mm-row-badge {
  width: 44px; height: 16px;
  border-radius: 99px;
}

.mr-b1 { background: #ECFDF5; }
.mr-b2 { background: #EEF2FF; }
.mr-b3 { background: #FFFBEB; }

/* Floating badges on hero mockup */
.mockup-float-1 {
  position: absolute;
  top: -16px; right: -24px;
  background: white;
  border-radius: 12px;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: float1 4s ease-in-out infinite;
}

.mockup-float-2 {
  position: absolute;
  bottom: 32px; left: -28px;
  background: white;
  border-radius: 12px;
  padding: 0.625rem 0.875rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: float2 4.5s ease-in-out infinite 0.5s;
}

.float-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-6px) rotate(-1deg); }
}

/* ══════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════ */
.trust-bar {
  padding: 2.5rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.01em;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 0.8; }

/* ══════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════ */
.features-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: #FAFBFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(79,70,229,0.2);
  box-shadow: 0 8px 32px rgba(79,70,229,0.1);
  transform: translateY(-3px);
  background: white;
}

.feature-card:hover::before { opacity: 1; }

.fc-indigo::before { background: linear-gradient(90deg, #4F46E5, #7C3AED); }
.fc-green::before  { background: linear-gradient(90deg, #059669, #10B981); }
.fc-blue::before   { background: linear-gradient(90deg, #2563EB, #0EA5E9); }
.fc-amber::before  { background: linear-gradient(90deg, #D97706, #FBBF24); }
.fc-rose::before   { background: linear-gradient(90deg, #DC2626, #F43F5E); }
.fc-teal::before   { background: linear-gradient(90deg, #0D9488, #10B981); }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.fi-indigo { background: var(--primary-light); color: var(--primary); }
.fi-green  { background: var(--success-bg); color: var(--success); }
.fi-blue   { background: var(--info-bg); color: var(--info); }
.fi-amber  { background: var(--warning-bg); color: var(--warning); }
.fi-rose   { background: #FFF1F2; color: #E11D48; }
.fi-teal   { background: #F0FDFA; color: #0D9488; }

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.how-section {
  background: #FAFBFF;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(16.666% + 36px); right: calc(16.666% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #7C3AED, var(--primary));
  z-index: 0;
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 1.375rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(79,70,229,0.35);
  letter-spacing: -0.02em;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(79,70,229,0.2);
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   STATS
   ══════════════════════════════════════════ */
.stats-section {
  background: #0F172A;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #A5B4FC 0%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #94A3B8;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials-section {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: #FAFBFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(79,70,229,0.1);
  transform: translateY(-4px);
  border-color: rgba(79,70,229,0.15);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  font-size: 1rem;
  color: #FBBF24;
}

.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9375rem; font-weight: 700; color: white;
  flex-shrink: 0;
}

.ta-1 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.ta-2 { background: linear-gradient(135deg, #059669, #10B981); }
.ta-3 { background: linear-gradient(135deg, #D97706, #FBBF24); }

.testimonial-name  { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.testimonial-title { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #312E81 0%, #4F46E5 50%, #7C3AED 100%);
  padding: 7rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.cta-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: #EEF2FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.cta-note span { display: flex; align-items: center; gap: 0.3rem; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.lp-footer {
  background: #0F172A;
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  width: 34px; height: 34px;
  background: var(--primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

.footer-brand-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(79,70,229,0.2);
  border-color: rgba(79,70,229,0.3);
  color: #818CF8;
  text-decoration: none;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: 0.8125rem;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover { color: #94A3B8; text-decoration: none; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: #475569;
}

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

.footer-legal a {
  font-size: 0.8125rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: #64748B; }

/* ══════════════════════════════════════════
   ANIMATIONS (Intersection Observer)
   ══════════════════════════════════════════ */
.lp-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-animate-delay-1 { transition-delay: 0.1s; }
.lp-animate-delay-2 { transition-delay: 0.2s; }
.lp-animate-delay-3 { transition-delay: 0.3s; }
.lp-animate-delay-4 { transition-delay: 0.4s; }
.lp-animate-delay-5 { transition-delay: 0.5s; }
.lp-animate-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .stat-item          { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lnav-links    { display: none; }
  .lnav-actions  { display: none; }
  .lnav-hamburger { display: flex; }

  .hero-section  { padding: 8rem 1.5rem 4rem; }
  .hero-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual   { order: -1; }
  .mockup-float-1, .mockup-float-2 { display: none; }
  .hero-heading  { font-size: 2.25rem; }

  .steps-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }

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

  .stats-grid    { grid-template-columns: repeat(2, 1fr); }

  .lp-section    { padding: 4rem 1.5rem; }

  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid    { grid-template-columns: 1fr; }
  .stat-item     { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .cta-buttons   { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}
