/* ==========================================================================
   VELIXO LANDING PAGE STYLES
   ========================================================================== */

:root {
  --lp-bg: #ffffff;
  --lp-text: #0f172a;
  --lp-muted: #64748b;
  --lp-primary: #3b82f6;
  --lp-accent: #6366f1;
  --lp-glass: rgba(0, 0, 0, 0.02);
  --lp-border: rgba(0, 0, 0, 0.08);
}

body.landing-page {
  background-color: var(--lp-bg);
  color: var(--lp-text);
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */
.lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid transparent;
}

.lp-navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--lp-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lp-navbar .text-white {
  color: var(--lp-text) !important;
}

.lp-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--lp-text);
}

.lp-logo span {
  color: var(--lp-primary);
}

/* HERO SECTION */
.hero-landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-landing h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -3px;
}

.hero-landing h1 span {
  display: block;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-landing p {
  font-size: 22px;
  color: var(--lp-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.lp-btn {
  padding: 16px 36px;
  border-radius: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-primary-lp {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary-lp:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.6);
  color: #fff;
}

.btn-outline-lp {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
  margin-left: 15px;
}

.btn-outline-lp:hover {
  background: var(--lp-text);
  color: #fff;
  border-color: var(--lp-text);
}

/* DEMO BOXES */
.demo-section {
  padding: 120px 0;
  background: #f8fafc;
}

.demo-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--lp-border);
  transition: all 0.5s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.demo-card:hover {
  transform: translateY(-15px);
  border-color: var(--lp-primary);
  box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

.demo-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: salmon;
}

.demo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.demo-card:hover img {
  transform: scale(1.05);
}

.demo-info {
  padding: 40px;
}

.demo-info h4 {
  color: var(--lp-text);
  font-weight: 800;
  margin-bottom: 12px;
}

.demo-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--lp-primary);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

/* FEATURES */
.features-section {
  padding: 120px 0;
}

.feature-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--lp-border);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.feature-box h5 {
  color: var(--lp-text);
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--lp-primary);
  margin-bottom: 24px;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  padding: 100px 40px;
  border-radius: 48px;
  text-align: center;
  position: relative;
  margin-bottom: -100px;
  z-index: 10;
  color: #fff;
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-landing {
    text-align: center;
  }
  .hero-landing p {
    margin: 0 auto 40px;
  }
}
