/* ============================================================
   landing.css — Landing page styles
   Remiasi theme-system.css kintamaisiais.
   Čia NĖRA jokių --bg-light, --text-dark ar kitų
   neegzistuojančių kintamųjų.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: background .3s, color .3s;
}

/* ── NAV ──────────────────────────────────────────────────── */

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-default);
  padding: 12px 0;
}

.landing-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -.5px;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-logo .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-indigo);
  box-shadow: 0 0 8px var(--accent-indigo);
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s;
}
.nav-link:hover { color: var(--accent-indigo); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme toggle */
.theme-panel-wrap { position: relative; }

.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .2s;
}
.theme-toggle-btn:hover {
  background: var(--accent-indigo);
  color: #fff;
  border-color: var(--accent-indigo);
}

.theme-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  z-index: 9999;
  min-width: 155px;
  animation: dropIn .15s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.theme-option {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: none;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  width: 100%;
  text-align: left;
  white-space: nowrap;
  transition: background .15s;
}
.theme-option:hover    { background: var(--bg-card-hover); }
.theme-option.active   { color: var(--accent-indigo); font-weight: 700; }

.theme-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--accent-indigo);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.nav-cta:hover {
  opacity: .88;
  box-shadow: 0 4px 14px rgba(99,102,241,.35);
}

/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-base);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(0deg,  transparent 24%, rgba(99,102,241,.04) 25%, rgba(99,102,241,.04) 26%, transparent 27%,
                            transparent 74%, rgba(99,102,241,.04) 75%, rgba(99,102,241,.04) 76%, transparent 77%),
    linear-gradient(90deg, transparent 24%, rgba(99,102,241,.04) 25%, rgba(99,102,241,.04) 26%, transparent 27%,
                            transparent 74%, rgba(99,102,241,.04) 75%, rgba(99,102,241,.04) 76%, transparent 77%);
  background-size: 50px 50px;
}

.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  animation: fadeUp .8s ease .2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-indigo);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(32px, 8vw, 72px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-indigo), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; }
.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-indigo);
  font-family: 'Space Grotesk', sans-serif;
}
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-default); }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-primary { background: var(--accent-indigo); color: #fff; }
.btn-primary:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(99,102,241,.3); }
.btn-secondary { background: transparent; color: var(--accent-indigo); border: 2px solid var(--accent-indigo); }
.btn-secondary:hover { background: rgba(99,102,241,.1); transform: translateY(-2px); }

/* ── HOW IT WORKS ─────────────────────────────────────────── */

.how-it-works {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.section-header p { font-size: 17px; color: var(--text-secondary); }

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 36px 28px;
  border-radius: 14px;
  text-align: center;
  transition: all .3s;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--accent-indigo); box-shadow: 0 12px 30px rgba(99,102,241,.12); }
.step-number { font-size: 44px; font-weight: 800; color: var(--accent-indigo); font-family: 'Space Grotesk', sans-serif; }
.step-icon { font-size: 36px; margin: 14px 0; }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── FEATURES ─────────────────────────────────────────────── */

.features {
  padding: 80px 20px;
  background: var(--bg-surface);
}
.features .section-header,
.features-grid { max-width: 1400px; margin-left: auto; margin-right: auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  border-radius: 14px;
  transition: all .3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--accent-indigo); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.feature-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── SERVICES SHOWCASE ────────────────────────────────────── */

.pricing {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 36px 28px;
  border-radius: 14px;
  transition: all .3s;
}
.service-showcase-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(99,102,241,.12); border-color: var(--accent-indigo); }
.service-icon { font-size: 30px; margin-bottom: 14px; }
.service-showcase-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.service-showcase-card .price { font-size: 17px; font-weight: 700; color: var(--accent-indigo); margin-bottom: 18px; }
.service-list { list-style: none; }
.service-list li {
  font-size: 14px;
  padding: 7px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.service-list li:last-child { border-bottom: none; }
.service-list i { color: var(--accent-green); }

/* ── CTA SECTION ──────────────────────────────────────────── */

.cta-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-purple) 100%);
  color: #fff;
}
.cta-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-content p { font-size: 17px; margin-bottom: 28px; opacity: .9; }

/* ── FOOTER ───────────────────────────────────────────────── */

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 20px 24px;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}
.footer-logo {
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.footer-logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-indigo); }
.footer-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all .2s;
}
.social-link:hover { background: var(--accent-indigo); color: #fff; border-color: var(--accent-indigo); transform: translateY(-2px); }
.footer-title { font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; color: var(--text-secondary); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-link:hover { color: var(--accent-indigo); }
.footer-text { font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-stats { gap: 16px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .steps-container,
  .features-grid { grid-template-columns: 1fr; }
}
