/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #7c3aed;
  --primary-lt:   #8b5cf6;
  --primary-glow: rgba(124,58,237,0.25);
  --accent:       #06b6d4;
  --accent-glow:  rgba(6,182,212,0.2);
  --bg:           #08081a;
  --bg-card:      #111128;
  --bg-card2:     #0e0e22;
  --border:       rgba(255,255,255,0.07);
  --border-hi:    rgba(124,58,237,0.4);
  --text:         #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;
  --radius:       14px;
  --radius-sm:    8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Utility ───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 99px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #34d399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary-lt); color: #a78bfa; background: rgba(124,58,237,0.06); }

/* ─── Nav ───────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  text-decoration: none; color: inherit;
}
.nav-logo span { color: #a78bfa; }
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); margin-left: 2px; display: inline-block; }

/* Animated Llumo logo */
.llumo-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.llumo-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: llumo-float 3s ease-in-out infinite, llumo-glow 3s ease-in-out infinite;
}
.llumo-eye {
  position: absolute;
  width: 15%;
  height: 15%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #bae6fd, #38bdf8 42%, #0284c7 72%, #075985);
  box-shadow: 0 0 6px rgba(14,165,233,0.65);
  animation: llumo-blink 4s ease-in-out infinite;
  transform-origin: center;
}
.llumo-eye::before {
  content: '';
  position: absolute;
  width: 52%;
  height: 52%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0369a1;
}
.llumo-eye::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 26% 26%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.9) 15%, transparent 15%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.55) 8%, transparent 8%);
  pointer-events: none;
}
.llumo-eye-left  { top: 40%; left: 32%; }
.llumo-eye-right { top: 40%; left: 53%; }
.llumo-smile {
  position: absolute;
  top: 53%; left: 45%;
  width: 10%; height: 8%;
  overflow: visible;
}

@keyframes llumo-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-3px) scale(1.05); }
}
@keyframes llumo-glow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(139,92,246,0.3)) drop-shadow(0 0 4px rgba(59,130,246,0.15)); }
  50%       { filter: drop-shadow(0 0 5px rgba(139,92,246,0.55)) drop-shadow(0 0 9px rgba(59,130,246,0.3)); }
}
@keyframes llumo-blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%            { transform: scaleY(0.05); }
}

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  padding: 7px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 9px 20px; font-size: 14px; }

/* ── Dropdown Nav ─────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav-chevron { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Outer wrapper — invisible, bridges the gap so hover doesn't break */
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  min-width: 260px;
  z-index: 1000;
}
.dropdown-menu.dropdown-wide {
  min-width: 540px;
  left: 0; transform: none;
}

/* Inner box — the visible panel */
.dropdown-inner {
  background: #0f1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: dropFade 0.15s ease;
}
.dropdown-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  color: var(--text-muted); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover {
  background: rgba(255,255,255,0.06); color: var(--text);
}
.dropdown-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.dropdown-item-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.dropdown-item-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 120px 0 100px;
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800; line-height: 1.08; letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero p {
  font-size: 18px; color: var(--text-muted);
  max-width: 600px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-sub {
  margin-top: 20px; font-size: 13px; color: var(--text-dim);
}

.hero-visual {
  margin-top: 80px; position: relative;
  max-width: 960px; margin-left: auto; margin-right: auto;
}
.hero-visual-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.mockup-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-grid {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 16px; min-height: 320px;
}
.mockup-sidebar {
  background: rgba(255,255,255,0.03);
  border-radius: 10px; padding: 16px;
}
.mockup-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 4px;
  transition: all 0.15s;
}
.mockup-sidebar-item.active { background: rgba(124,58,237,0.15); color: #a78bfa; }
.mockup-sidebar-icon { width: 16px; height: 16px; border-radius: 4px; opacity: 0.6; }
.mockup-main {
  background: rgba(255,255,255,0.02);
  border-radius: 10px; padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.mockup-row { display: flex; align-items: center; gap: 12px; }
.mockup-task {
  flex: 1; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 14px;
  font-size: 12px; color: var(--text-muted);
}
.mockup-pill {
  padding: 4px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 600;
}
.pill-violet { background: rgba(124,58,237,0.2); color: #a78bfa; }
.pill-cyan   { background: rgba(6,182,212,0.2);  color: #67e8f9; }
.pill-green  { background: rgba(52,211,153,0.2);  color: #6ee7b7; }
.pill-amber  { background: rgba(251,191,36,0.2);  color: #fde68a; }

/* ─── Logos Strip ────────────────────────────────────────────────── */
.logos-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-strip p { text-align: center; font-size: 13px; color: var(--text-dim); margin-bottom: 28px; letter-spacing: 0.05em; text-transform: uppercase; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-item {
  font-size: 17px; font-weight: 700; color: var(--text-dim);
  letter-spacing: -0.5px; opacity: 0.5;
}

/* ─── Section Headers ────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  margin-top: 16px; margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ─── Features Platform ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.feature-tag {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 99px; background: rgba(255,255,255,0.05);
  color: var(--text-dim); border: 1px solid var(--border);
}

/* ─── Use Cases ──────────────────────────────────────────────────── */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.use-case-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.use-case-card:hover { border-color: rgba(6,182,212,0.35); box-shadow: 0 8px 32px rgba(6,182,212,0.08); }
.use-case-emoji { font-size: 36px; margin-bottom: 16px; }
.use-case-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.use-case-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.use-case-list { list-style: none; margin-top: 14px; }
.use-case-list li {
  font-size: 13px; color: var(--text-dim);
  padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.use-case-list li::before { content: '→'; color: var(--accent); font-size: 12px; }

/* ─── Stats Bar ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: 42px; font-weight: 800; letter-spacing: -1.5px; }
.stat-label  { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ─── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  margin: 0 24px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(6,182,212,0.1) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2), transparent 70%);
}
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-banner p  { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── Footer ─────────────────────────────────────────────────────── */
footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-muted); }

/* ─── Pricing Page ───────────────────────────────────────────────── */
.pricing-hero { padding: 80px 0 60px; text-align: center; }
.pricing-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -2px; margin: 16px 0; }
.pricing-hero p { font-size: 18px; color: var(--text-muted); max-width: 520px; margin: 0 auto 36px; }

.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 60px; }
.toggle-wrap span { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.toggle-wrap span.active { color: var(--text); }
.toggle {
  position: relative; width: 52px; height: 28px;
  background: var(--border); border-radius: 99px;
  cursor: pointer; transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.toggle.on { background: var(--primary); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: transform 0.2s;
}
.toggle.on .toggle-knob { transform: translateX(24px); }
.save-badge {
  background: rgba(52,211,153,0.15); color: #34d399;
  border: 1px solid rgba(52,211,153,0.3);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 99px;
  letter-spacing: 0.05em;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; align-items: start;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, rgba(124,58,237,0.12) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 0 1px var(--primary), 0 24px 48px rgba(124,58,237,0.2);
}
.plan-badge {
  display: inline-block; margin-bottom: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #a78bfa; background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 4px 12px; border-radius: 99px;
}
.plan-name { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5; min-height: 40px; }
.plan-price { margin-bottom: 28px; }
.price-amount { font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.price-period { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.price-custom { font-size: 32px; font-weight: 800; letter-spacing: -1px; }
.plan-cta { width: 100%; padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-bottom: 28px; }
.plan-cta-primary { background: var(--primary); color: #fff; border: none; box-shadow: 0 4px 16px rgba(124,58,237,0.4); }
.plan-cta-primary:hover { background: #6d28d9; box-shadow: 0 8px 24px rgba(124,58,237,0.55); }
.plan-cta-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.plan-cta-outline:hover { border-color: var(--primary-lt); color: #a78bfa; }

.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 16px; }
.plan-feature-list { list-style: none; flex: 1; }
.plan-feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text-muted); margin-bottom: 10px;
}
.check { color: #34d399; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.check-dim { color: var(--text-dim); font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.cross { color: #475569; font-size: 14px; flex-shrink: 0; margin-top: 2px; }

/* ─── Comparison Table ───────────────────────────────────────────── */
.compare-section { padding: 80px 0; }
.compare-section h2 { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; text-align: center; margin-bottom: 48px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table th.featured-col { color: #a78bfa; }
.compare-table td {
  padding: 14px 20px; font-size: 14px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .section-row td {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dim); background: rgba(255,255,255,0.02);
  padding: 10px 20px;
}
.compare-check, .compare-cross { display: inline-block; width: 22px; height: 22px; border-radius: 50%; line-height: 22px; font-size: 13px; font-weight: 700; }
.compare-check { background: rgba(34,197,94,0.15); color: #22c55e; }
.compare-check::after { content: '✓'; }
.compare-cross { background: rgba(239,68,68,0.1); color: #ef4444; }
.compare-cross::after { content: '✕'; }
.compare-text { font-size: 13px; font-weight: 600; color: var(--text); }
.compare-check { color: #34d399; font-size: 18px; }
.compare-cross { color: #334155; font-size: 16px; }
.compare-text  { color: var(--text); font-size: 13px; font-weight: 600; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-section h2 { font-size: 36px; font-weight: 800; letter-spacing: -1.5px; text-align: center; margin-bottom: 48px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px;
}
.faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.faq-item p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .mockup-grid  { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { letter-spacing: -1.5px; }
  .features-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── Lightbox ───────────────────────────────────────────────────── */
.lightbox-trigger { cursor: zoom-in; }
.lightbox-trigger:hover { opacity: 0.92; }

#llumo-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 24px;
}
#llumo-lightbox.open { display: flex; }
#llumo-lightbox img {
  max-width: 92vw; max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  animation: lbFadeIn 0.2s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
#llumo-lightbox-close {
  position: fixed; top: 20px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
#llumo-lightbox-close:hover { background: rgba(255,255,255,0.2); }
