/* ============================================
   NAIJAPLANET LANDING PAGE
   Bold, original, distinctly Nigerian
   ============================================ */

/* ---------- LANDING HEADER ---------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: var(--np-z-header);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--np-border);
  transition: background-color var(--np-dur-base) var(--np-ease-out);
}

[data-theme="dark"] .lp-header {
  background: rgba(10, 15, 22, 0.85);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--np-header-h);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--np-font-display);
  font-weight: var(--np-weight-extrabold);
  font-size: var(--np-text-xl);
  color: var(--np-text);
  letter-spacing: -0.02em;
}

.lp-logo:hover {
  color: var(--np-text);
}

.lp-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--np-gradient-brand);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--np-shadow-brand);
}

.lp-logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}

.lp-logo-mark::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  position: relative;
  z-index: 1;
}

.lp-logo-text-highlight {
  color: var(--np-primary);
}

.lp-nav {
  display: none;
  align-items: center;
  gap: var(--np-space-6);
}

@media (min-width: 900px) {
  .lp-nav {
    display: flex;
  }
}

.lp-nav-link {
  font-size: var(--np-text-sm);
  font-weight: var(--np-weight-medium);
  color: var(--np-text-secondary);
  padding: 8px 4px;
  position: relative;
  transition: color var(--np-dur-fast) var(--np-ease-out);
}

.lp-nav-link:hover {
  color: var(--np-primary);
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: var(--np-space-2);
}

.lp-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--np-surface-alt);
  color: var(--np-text);
  transition: background var(--np-dur-fast) var(--np-ease-out);
}

.lp-theme-toggle:hover {
  background: var(--np-surface-hover);
}

.lp-theme-toggle svg {
  width: 18px;
  height: 18px;
}

.lp-theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .lp-theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .lp-theme-toggle .icon-moon { display: block; }

.lp-menu-btn {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--np-surface-alt);
}

@media (min-width: 900px) {
  .lp-menu-btn {
    display: none;
  }
}

/* ---------- MOBILE DRAWER ---------- */
.lp-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--np-z-modal);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--np-dur-base) var(--np-ease-out),
              visibility var(--np-dur-base) var(--np-ease-out);
}

.lp-drawer.is-open {
  visibility: visible;
  opacity: 1;
}

.lp-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 42, 0.5);
  backdrop-filter: blur(4px);
}

.lp-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 85vw);
  background: var(--np-surface);
  padding: var(--np-space-6);
  transform: translateX(100%);
  transition: transform var(--np-dur-slow) var(--np-ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--np-space-4);
}

.lp-drawer.is-open .lp-drawer-panel {
  transform: translateX(0);
}

.lp-drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--np-surface-alt);
}

.lp-drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--np-space-2);
}

.lp-drawer-link {
  padding: 14px 16px;
  font-size: var(--np-text-base);
  font-weight: var(--np-weight-semibold);
  color: var(--np-text);
  border-radius: var(--np-radius-md);
  transition: background var(--np-dur-fast) var(--np-ease-out);
}

.lp-drawer-link:hover {
  background: var(--np-surface-alt);
  color: var(--np-primary);
}

.lp-drawer-cta {
  margin-top: var(--np-space-4);
}

/* ---------- HERO ---------- */
.lp-hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .lp-hero {
    padding: 100px 0 80px;
  }
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.lp-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--np-primary-light);
  top: -100px;
  right: -80px;
}

.lp-hero-orb-2 {
  width: 320px;
  height: 320px;
  background: var(--np-accent);
  bottom: -60px;
  left: -60px;
  opacity: 0.35;
}

.lp-hero-orb-3 {
  width: 260px;
  height: 260px;
  background: var(--np-gold);
  top: 40%;
  left: 45%;
  opacity: 0.25;
}

[data-theme="dark"] .lp-hero-orb {
  opacity: 0.35;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--np-space-10);
  align-items: center;
}

@media (min-width: 900px) {
  .lp-hero-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: var(--np-space-16);
  }
}

.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-full);
  font-size: var(--np-text-xs);
  font-weight: var(--np-weight-semibold);
  color: var(--np-text-secondary);
  margin-bottom: var(--np-space-5);
  box-shadow: var(--np-shadow-sm);
}

.lp-hero-eyebrow-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--np-gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: var(--np-weight-black);
}

.lp-hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: var(--np-weight-black);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: var(--np-space-5);
}

.lp-hero-title .hl {
  background: var(--np-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-title .hl-warm {
  background: var(--np-gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: var(--np-leading-relaxed);
  color: var(--np-text-secondary);
  margin-bottom: var(--np-space-8);
  max-width: 560px;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--np-space-3);
  margin-bottom: var(--np-space-8);
}

.lp-hero-trust {
  display: flex;
  align-items: center;
  gap: var(--np-space-4);
  flex-wrap: wrap;
}

.lp-avatar-stack {
  display: flex;
}

.lp-avatar-stack img,
.lp-avatar-stack .lp-avatar-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--np-bg);
  margin-left: -10px;
  object-fit: cover;
  background: var(--np-gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--np-weight-bold);
  font-size: 13px;
}

.lp-avatar-stack :first-child {
  margin-left: 0;
}

.lp-trust-text {
  font-size: var(--np-text-sm);
  color: var(--np-text-secondary);
}

.lp-trust-text strong {
  color: var(--np-text);
  font-weight: var(--np-weight-bold);
}

/* Hero visual - image slot with distinctive composition */
.lp-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .lp-hero-visual {
    margin: 0 0 0 auto;
  }
}

.lp-hero-image-slot {
  position: absolute;
  border-radius: var(--np-radius-2xl);
  overflow: hidden;
  box-shadow: var(--np-shadow-xl);
  background: var(--np-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--np-text-muted);
  font-size: var(--np-text-xs);
  font-weight: var(--np-weight-semibold);
}

.lp-hero-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-image-1 {
  top: 0;
  left: 0;
  width: 62%;
  height: 72%;
  z-index: 2;
  transform: rotate(-3deg);
}

.lp-hero-image-2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 60%;
  z-index: 3;
  transform: rotate(4deg);
  border: 4px solid var(--np-bg);
}

.lp-hero-badge {
  position: absolute;
  z-index: 4;
  padding: 12px 16px;
  background: var(--np-surface);
  border-radius: var(--np-radius-lg);
  box-shadow: var(--np-shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--np-text-sm);
  font-weight: var(--np-weight-semibold);
}

.lp-hero-badge-1 {
  top: -8px;
  right: 5%;
  animation: lp-float 4s ease-in-out infinite;
}

.lp-hero-badge-2 {
  bottom: 12%;
  left: -8px;
  animation: lp-float 5s ease-in-out infinite reverse;
}

.lp-hero-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.lp-hero-badge-1 .lp-hero-badge-icon { background: var(--np-accent); }
.lp-hero-badge-2 .lp-hero-badge-icon { background: var(--np-primary); }

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- STATS BAR ---------- */
.lp-stats {
  padding: var(--np-space-8) 0;
  border-top: 1px solid var(--np-border);
  border-bottom: 1px solid var(--np-border);
  background: var(--np-surface);
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--np-space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .lp-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-stat-num {
  font-family: var(--np-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--np-weight-black);
  color: var(--np-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lp-stat-label {
  font-size: var(--np-text-xs);
  font-weight: var(--np-weight-semibold);
  color: var(--np-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--np-space-2);
}

/* ---------- SECTION BASE ---------- */
.lp-section {
  padding: 80px 0;
}

@media (min-width: 900px) {
  .lp-section {
    padding: 120px 0;
  }
}

.lp-section-alt {
  background: var(--np-surface);
}

.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--np-space-12);
}

.lp-section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-size: var(--np-text-xs);
  font-weight: var(--np-weight-bold);
  color: var(--np-primary-dark);
  background: var(--np-primary-soft);
  border-radius: var(--np-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--np-space-4);
}

.lp-section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--np-weight-black);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--np-space-4);
}

.lp-section-sub {
  font-size: var(--np-text-lg);
  color: var(--np-text-secondary);
  line-height: var(--np-leading-relaxed);
}

/* ---------- FEATURES ---------- */
.lp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--np-space-5);
}

@media (min-width: 640px) {
  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-feature {
  padding: var(--np-space-8);
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-xl);
  position: relative;
  overflow: hidden;
  transition: transform var(--np-dur-base) var(--np-ease-out),
              box-shadow var(--np-dur-base) var(--np-ease-out),
              border-color var(--np-dur-base) var(--np-ease-out);
}

.lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--np-shadow-lg);
  border-color: transparent;
}

.lp-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--np-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--np-space-5);
  font-size: 26px;
  color: #fff;
}

.lp-feature-icon.c1 { background: var(--np-gradient-brand); }
.lp-feature-icon.c2 { background: var(--np-gradient-warm); }
.lp-feature-icon.c3 { background: var(--np-gradient-cool); }
.lp-feature-icon.c4 { background: linear-gradient(135deg, #A78BFA, #6366F1); }
.lp-feature-icon.c5 { background: linear-gradient(135deg, #EF4444, #F97316); }
.lp-feature-icon.c6 { background: linear-gradient(135deg, #14B8A6, #0EA5E9); }

.lp-feature-title {
  font-size: var(--np-text-xl);
  font-weight: var(--np-weight-bold);
  margin-bottom: var(--np-space-2);
}

.lp-feature-desc {
  font-size: var(--np-text-sm);
  color: var(--np-text-secondary);
  line-height: var(--np-leading-relaxed);
}

/* ---------- SHOWCASE (image + text alternating) ---------- */
.lp-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--np-space-10);
  align-items: center;
  margin-bottom: var(--np-space-16);
}

@media (min-width: 900px) {
  .lp-showcase {
    grid-template-columns: 1fr 1fr;
    gap: var(--np-space-16);
  }

  .lp-showcase.reverse .lp-showcase-visual {
    order: 2;
  }
}

.lp-showcase:last-child {
  margin-bottom: 0;
}

.lp-showcase-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--np-weight-black);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--np-space-4);
}

.lp-showcase-desc {
  font-size: var(--np-text-base);
  color: var(--np-text-secondary);
  line-height: var(--np-leading-relaxed);
  margin-bottom: var(--np-space-6);
}

.lp-showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--np-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--np-space-3);
}

.lp-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--np-space-3);
  font-size: var(--np-text-sm);
  color: var(--np-text);
}

.lp-showcase-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--np-primary-soft);
  color: var(--np-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230B7A4B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.lp-showcase-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--np-radius-2xl);
  overflow: hidden;
  background: var(--np-surface-alt);
  box-shadow: var(--np-shadow-lg);
}

.lp-showcase-image-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--np-text-muted);
  font-size: var(--np-text-sm);
  font-weight: var(--np-weight-semibold);
  background: var(--np-gradient-brand);
  color: rgba(255,255,255,0.85);
}

.lp-showcase-image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-showcase-visual.style-warm .lp-showcase-image-slot {
  background: var(--np-gradient-warm);
}

.lp-showcase-visual.style-cool .lp-showcase-image-slot {
  background: var(--np-gradient-cool);
}

/* ---------- AUDIENCES ---------- */
.lp-audiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--np-space-4);
}

@media (min-width: 640px) {
  .lp-audiences-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lp-audiences-grid { grid-template-columns: repeat(4, 1fr); }
}

.lp-audience {
  padding: var(--np-space-6);
  border-radius: var(--np-radius-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--np-dur-base) var(--np-ease-out);
}

.lp-audience:hover {
  transform: translateY(-4px);
}

.lp-audience.a1 { background: var(--np-gradient-brand); }
.lp-audience.a2 { background: var(--np-gradient-warm); }
.lp-audience.a3 { background: var(--np-gradient-cool); }
.lp-audience.a4 { background: linear-gradient(135deg, #7C3AED, #DB2777); }

.lp-audience::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.lp-audience-emoji {
  font-size: 36px;
  margin-bottom: var(--np-space-4);
  position: relative;
}

.lp-audience-title {
  font-size: var(--np-text-xl);
  font-weight: var(--np-weight-bold);
  margin-bottom: var(--np-space-2);
  position: relative;
}

.lp-audience-desc {
  font-size: var(--np-text-sm);
  opacity: 0.9;
  line-height: var(--np-leading-normal);
  position: relative;
}

/* ---------- TESTIMONIALS / VOICES ---------- */
.lp-voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--np-space-5);
}

@media (min-width: 768px) {
  .lp-voices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lp-voices-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-voice {
  padding: var(--np-space-6);
  background: var(--np-surface);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-xl);
  position: relative;
}

.lp-voice-quote {
  font-size: var(--np-text-base);
  line-height: var(--np-leading-relaxed);
  color: var(--np-text);
  margin-bottom: var(--np-space-5);
}

.lp-voice-quote::before {
  content: '\201C';
  font-size: 48px;
  line-height: 1;
  color: var(--np-primary);
  font-family: var(--np-font-display);
  font-weight: var(--np-weight-black);
  display: block;
  margin-bottom: -8px;
}

.lp-voice-person {
  display: flex;
  align-items: center;
  gap: var(--np-space-3);
}

.lp-voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--np-gradient-warm);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--np-weight-bold);
}

.lp-voice-name {
  font-size: var(--np-text-sm);
  font-weight: var(--np-weight-bold);
  color: var(--np-text);
}

.lp-voice-role {
  font-size: var(--np-text-xs);
  color: var(--np-text-muted);
}

/* ---------- CTA BLOCK ---------- */
.lp-cta {
  padding: 80px 0;
}

.lp-cta-box {
  position: relative;
  padding: var(--np-space-12) var(--np-space-6);
  border-radius: var(--np-radius-2xl);
  background: var(--np-gradient-hero);
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--np-shadow-xl);
}

@media (min-width: 768px) {
  .lp-cta-box {
    padding: var(--np-space-16) var(--np-space-12);
  }
}

.lp-cta-box::before,
.lp-cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.lp-cta-box::before {
  width: 280px;
  height: 280px;
  background: var(--np-accent);
  top: -80px;
  left: -80px;
  opacity: 0.4;
}

.lp-cta-box::after {
  width: 260px;
  height: 260px;
  background: var(--np-gold);
  bottom: -80px;
  right: -60px;
  opacity: 0.4;
}

.lp-cta-title {
  position: relative;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--np-weight-black);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--np-space-4);
}

.lp-cta-sub {
  position: relative;
  font-size: var(--np-text-lg);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--np-space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta-actions {
  position: relative;
  display: flex;
  gap: var(--np-space-3);
  justify-content: center;
  flex-wrap: wrap;
}

.lp-cta .np-btn-primary {
  background: #fff;
  color: var(--np-primary-dark);
}

.lp-cta .np-btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

.lp-cta .np-btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.lp-cta .np-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

/* ---------- FOOTER ---------- */
.lp-footer {
  padding: 60px 0 30px;
  background: var(--np-surface);
  border-top: 1px solid var(--np-border);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--np-space-8);
  margin-bottom: var(--np-space-10);
}

@media (min-width: 640px) {
  .lp-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .lp-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.lp-footer-brand {
  max-width: 320px;
}

.lp-footer-tagline {
  margin-top: var(--np-space-4);
  font-size: var(--np-text-sm);
  color: var(--np-text-secondary);
  line-height: var(--np-leading-relaxed);
}

.lp-footer-col h4 {
  font-size: var(--np-text-sm);
  font-weight: var(--np-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--np-text);
  margin-bottom: var(--np-space-4);
}

.lp-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--np-space-2);
}

.lp-footer-links a {
  font-size: var(--np-text-sm);
  color: var(--np-text-secondary);
  transition: color var(--np-dur-fast) var(--np-ease-out);
}

.lp-footer-links a:hover {
  color: var(--np-primary);
}

.lp-footer-bottom {
  padding-top: var(--np-space-6);
  border-top: 1px solid var(--np-border);
  display: flex;
  flex-direction: column;
  gap: var(--np-space-3);
  align-items: center;
  justify-content: space-between;
  font-size: var(--np-text-xs);
  color: var(--np-text-muted);
}

@media (min-width: 640px) {
  .lp-footer-bottom {
    flex-direction: row;
  }
}

.lp-footer-socials {
  display: flex;
  gap: var(--np-space-2);
}

.lp-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--np-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--np-text);
  transition: background var(--np-dur-fast) var(--np-ease-out),
              color var(--np-dur-fast) var(--np-ease-out);
}

.lp-footer-socials a:hover {
  background: var(--np-primary);
  color: #fff;
}