/* ==========================================================================
   LAVDIN PREMIUM LANDING PAGE STYLES
   Focus: Glassmorphism, Dark Mode, Vibrant Colors, Dynamic Micro-animations
   ========================================================================== */

body.is-landing-page {
  /* Premium Dark Mode Palette */
  --color-bg-base: #050505;
  --color-bg-surface: #0a0a0b;
  --color-bg-card: rgba(18, 18, 20, 0.6);
  --color-bg-glass: rgba(255, 255, 255, 0.03);

  /* Vibrant Accents */
  --color-accent-primary: #3b82f6;
  --color-accent-secondary: #1d4ed8;
  --color-accent-glow: rgba(59, 130, 246, 0.5);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  --gradient-text: linear-gradient(90deg, #ffffff, #a1a1aa);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);

  /* Typography & Layout */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Shadows & Transitions */
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-landing-page.light-theme {
  --color-bg-base: #ffffff;
  --color-bg-surface: #f8fafc;
  --color-bg-card: #ffffff;
}

/* ================== GLOBAL SETTINGS ================== */
html,
body {
  width: 100%;
  position: relative;
}

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Base Headings */
.lnd-h1,
.lnd-h2,
.lnd-step-num,
.lnd-price-tag,
.calc-card-title,
.lnd-final-cta-h {
  font-family: var(--font-heading);
}

/* ================== HERO SECTION ================== */
.lnd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 60%), #050505;
}

.lnd-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
  animation: bgPan 40s linear infinite;
}

@keyframes bgPan {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -50px -50px;
  }
}

.lnd-hero-container {
  z-index: 2;
}

.lnd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.lnd-badge .dot {
  width: 6px;
  height: 6px;
  background-color: #60a5fa;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(96, 165, 250, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }
}

.lnd-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.lnd-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.lnd-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Premium Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px rgba(59, 130, 246, 0.6);
  color: #fff;
}

.btn-premium:hover::after {
  opacity: 1;
  transform: scale(1);
}

.btn-outline-custom {
  background: transparent;
  color: #e4e4e7;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: #fff;
}

/* Search Trigger Mock */
.lnd-search-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(12px);
  border: var(--border-glass);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  max-width: 450px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-glass);
}

.lnd-search-trigger:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.trigger-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #71717a;
  font-size: 0.95rem;
  overflow: hidden;
}

.trigger-inner span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trigger-inner i {
  color: #3b82f6;
  flex-shrink: 0;
}

.trigger-hint {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  color: #a1a1aa;
}

/* ================== FLOATING MOCKUP ================== */
.lnd-mock {
  position: relative;
  background: rgba(20, 20, 25, 0.7);
  backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-12deg) rotateX(5deg) scale(0.95);
  transition: var(--transition-smooth);
  overflow: visible;
  padding-bottom: 20px;
}

.lnd-mock:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1) translateY(-10px);
  box-shadow: 0 50px 100px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lnd-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lnd-mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-dot-red {
  background: #ef4444;
}

.mock-dot-yellow {
  background: #f59e0b;
}

.mock-dot-green {
  background: #10b981;
}

.lnd-mock-url {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  margin-left: 10px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: #71717a;
  text-align: center;
}

.lnd-mock-body {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 16px;
  padding: 20px;
}

.lnd-mock-panel {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.lnd-mock-mini-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a1a1aa;
  margin-bottom: 12px;
  font-weight: 700;
}

.lnd-mock-result-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: 0.3s;
  border: 1px solid transparent;
}

.lnd-mock-result-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.lnd-mock-avatar {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mock-avatar-b {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.mock-avatar-f {
  background: linear-gradient(135deg, #10b981, #059669);
}

.lnd-mock-result-card strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.lnd-mock-result-card p {
  font-size: 0.7rem;
  color: #a1a1aa;
  margin: 0;
}

.lnd-mock-rating {
  color: #f59e0b;
  font-size: 0.7rem;
  margin-top: 4px;
}

.lnd-mock-map {
  height: 200px;
  background: #18181b;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lnd-mock-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.lnd-mock-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #3b82f6;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: bounce 2s infinite;
}

.lnd-mock-pin:nth-child(1) {
  top: 30%;
  left: 20%;
  animation-delay: 0.1s;
}

.lnd-mock-pin:nth-child(2) {
  top: 60%;
  left: 50%;
  animation-delay: 0.3s;
}

.lnd-mock-pin:nth-child(3) {
  top: 40%;
  left: 70%;
  animation-delay: 0.5s;
  background: #ef4444;
}

.lnd-mock-pin:nth-child(4) {
  top: 70%;
  left: 30%;
  animation-delay: 0.7s;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }

  50% {
    transform: rotate(-45deg) translateY(-5px);
  }
}

.lnd-mock-toast {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.lnd-mock-floating-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(30, 30, 35, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateZ(50px);
}

.lnd-mock-floating-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.lnd-mock-floating-stat span {
  font-size: 0.75rem;
  color: #a1a1aa;
  margin-top: 4px;
  display: block;
}

/* ================== TICKER ================== */
.lnd-ticker-wrap-top,
.ticker-wrap-bottom {
  background: rgba(15, 15, 18, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.lnd-ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scrollTicker 30s linear infinite;
  width: max-content;
}

.lnd-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d4d4d8;
}

.lnd-ticker-item i {
  color: #3b82f6;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ================== GENERAL SECTIONS ================== */
.lnd-section {
  padding: 100px 0;
  position: relative;
}

.lnd-light-section {
  background: var(--color-bg-base);
}

.lnd-features-bg {
  background: var(--color-bg-surface);
}

.lnd-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.lnd-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #fff;
}

.lnd-subtitle {
  font-size: 1.1rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* ================== CATALOG CARDS ================== */
.lnd-catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.lnd-catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-glow);
}

.lnd-catalog-card .card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.lnd-catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lnd-catalog-card:hover img {
  transform: scale(1.08);
}

.lnd-catalog-card .card-badges {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.lnd-catalog-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 11, 0.8) 100%);
  z-index: 1;
}

.lnd-catalog-card .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  color: #f4f4f5;
}

.lnd-catalog-card .card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.catalog-badge-web {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.catalog-badge-web {
  background: rgba(59, 130, 246, 0.8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.catalog-rating {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.catalog-rating .stars i {
  font-size: 0.9rem;
}

.lnd-catalog-card .card-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lnd-catalog-card .card-text {
  font-size: 0.9rem;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.lnd-catalog-card .card-text i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* ================== FEATURES / GLASS CARDS ================== */
.glass-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(16px);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.lnd-feat-icon {
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #60a5fa;
  margin-bottom: 24px;
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.lnd-feat-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.lnd-feat-desc {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.lnd-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4d4d8;
}

.chip-stat {
  color: #60a5fa;
  font-weight: 800;
}

/* ================== STEPS ================== */
.lnd-steps-bg {
  background: var(--color-bg-base);
}

.lnd-steps-track {
  position: relative;
}

.lnd-steps-track::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
  z-index: 0;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.lnd-step-num {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.glass-card-step {
  text-align: center;
}

/* ================== PRE KOHO & SIDE HUSTLE ================== */
.pre-koho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.lnd-cat-item {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: #e4e4e7;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lnd-cat-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.cat-icon-wrap {
  width: 32px;
  height: 32px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}

.lnd-side-hustle-box {
  background: var(--gradient-primary);
  padding: 40px;
  border-radius: var(--radius-xl);
  color: #fff;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lnd-side-hustle-box-bg {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: rotateSlow 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateSlow {
  100% {
    transform: rotate(360deg);
  }
}

.lnd-side-hustle-box-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.lnd-side-hustle-box-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.lnd-side-hustle-box-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.lnd-stats-row {
  justify-content: flex-start;
  margin-top: 24px;
}

.lnd-stat-chip {
  background: var(--color-bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  flex: 1;
  min-width: 110px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.lnd-stat-chip:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.lnd-stat-chip-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 4px;
}

.lnd-stat-chip-label {
  font-size: 0.75rem;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================== PRICING / WHY US ================== */
.lnd-why-bg {
  background: var(--color-bg-surface);
  position: relative;
  overflow: hidden;
}

.lnd-why-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
  border-radius: 50%;
}

.lnd-benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.lnd-benefit-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.04);
}

.lnd-benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.lnd-benefit-label {
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.lnd-benefit-text {
  font-size: 0.9rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.lnd-benefit-text strong {
  color: #e4e4e7;
}

/* Pricing Cards */
.plan-company-card {
  padding: 40px;
  position: relative;
  border-radius: var(--radius-xl);
}

.plan-company-card {
  border: 2px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2), inset 0 0 20px rgba(59, 130, 246, 0.05);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05), var(--color-bg-card));
}

.plan-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
  white-space: nowrap;
  z-index: 10;
}

.lnd-price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.lnd-price-tag sup {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-right: 4px;
  color: #60a5fa;
}

.lnd-price-tag sub {
  font-size: 1rem;
  align-self: flex-end;
  margin-bottom: 0.5rem;
  color: #a1a1aa;
  font-weight: 400;
}

.plan-desc {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin: 24px 0;
  line-height: 1.6;
}

.lnd-price-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  color: #e4e4e7;
}

.lnd-price-feature i {
  color: #3b82f6;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* ================== CALCULATOR ================== */
.lnd-calc-card {
  background: rgba(25, 25, 30, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: 100%;
  transition: 0.3s;
}

.with-lavdin {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.calc-badge {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.calc-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: #d4d4d8;
}

.calc-cost {
  font-weight: 700;
}

.calc-total {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.calc-vs {
  width: 60px;
  height: 60px;
  background: var(--color-bg-surface);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #60a5fa;
  font-size: 1.2rem;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.calc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-feat-pill {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.savings-counter-wrap {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-pill);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.savings-counter {
  font-size: 1.8rem;
  font-weight: 800;
  color: #60a5fa;
  margin: 0 8px;
}

/* ================== FAQ ================== */
.lnd-faq-item {
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.lnd-faq-item.open {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lnd-faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.lnd-faq-btn .icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  transition: 0.3s;
}

.lnd-faq-item.open .icon {
  transform: rotate(45deg);
  background: rgba(59, 130, 246, 0.2);
}

.lnd-faq-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.lnd-faq-item.open .lnd-faq-body {
  padding-bottom: 24px;
  max-height: 500px;
}

.lnd-faq-body p {
  margin: 0;
  color: #a1a1aa;
  line-height: 1.6;
}

/* ================== FINAL CTA ================== */
.lnd-final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%);
}

.lnd-final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.lnd-final-cta-h {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.final-cta-gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lnd-final-cta-sub {
  font-size: 1.15rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 40px;
}

.final-cta-btn {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
}

.lnd-final-cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.lnd-final-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #d4d4d8;
  font-weight: 600;
}

.lnd-final-cta-trust-item i {
  color: #10b981;
}

/* ================== ANIMATIONS & RESPONSIVE ================== */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible,
.reveal-up.active,
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ================== LIGHT MODE OVERRIDES ================== */

.lnd-light-section,
.lnd-steps-bg {
  background: #ffffff;
}

.lnd-features-bg {
  background: #f8fafc;
}

.lnd-why-bg {
  background: #f8fafc;
}

.lnd-why-bg::after {
  display: none;
}

.lnd-h2 {
  color: #0f172a;
}

.lnd-subtitle {
  color: #64748b;
}

/* Catalog */
.lnd-catalog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lnd-catalog-card .card-title {
  color: #0f172a;
}

.lnd-catalog-card .card-meta {
  border-top-color: #f1f5f9;
}

.lnd-catalog-card .card-text {
  color: #64748b;
}

.lnd-catalog-card .card-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.9) 100%);
}

.lnd-catalog-card .catalog-rating-value {
  color: #0f172a !important;
}

.lnd-catalog-card .catalog-rating-count {
  color: #64748b !important;
}

.lnd-catalog-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Features */
.glass-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.lnd-feat-title {
  color: #0f172a;
}

.lnd-feat-desc {
  color: #64748b;
}

.lnd-feat-chip {
  background: #f1f5f9;
  color: #334155;
}

/* Steps */

.lnd-step-title {
  color: #0f172a;
}

/* Pre Koho */
.lnd-cat-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
}

.lnd-cat-item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.lnd-stat-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.lnd-stat-chip-label {
  color: #64748b;
}

/* Pricing */
.lnd-benefit-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.lnd-benefit-item:hover {
  background: #f1f5f9;
}

.lnd-benefit-label {
  color: #0f172a;
}

.lnd-benefit-text {
  color: #64748b;
}

.lnd-benefit-text strong {
  color: #0f172a;
}

.plan-company-card {
  background: #ffffff;
}

.lnd-price-tag {
  color: #0f172a;
}

.lnd-price-tag sub {
  color: #64748b;
}

.plan-desc {
  color: #64748b;
}

.lnd-price-feature {
  border-bottom-color: #e2e8f0;
  color: #334155;
}

/* Calc */
.lnd-calc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.calc-card-title {
  color: #0f172a;
}

.calc-item {
  border-bottom-color: #e2e8f0;
  color: #334155;
}

.calc-total {
  background: #f1f5f9;
  color: #0f172a;
}

.calc-vs {
  background: #ffffff;
  border-color: #e2e8f0;
}

/* FAQ */
.lnd-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.lnd-faq-btn {
  color: #0f172a;
}

.lnd-faq-btn .icon {
  background: #f1f5f9;
}

.lnd-faq-body p {
  color: #64748b;
}

/* Ensure CTA remains dark */
.lnd-final-cta {
  background: #050505 radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%);
}

.lnd-final-cta .lnd-final-cta-h {
  color: #ffffff;
}

.lnd-final-cta .lnd-final-cta-sub {
  color: #a1a1aa;
}


@media (max-width: 991px) {
  .lnd-hero {
    padding: 120px 0 80px;
    text-align: center;
  }

  .lnd-btns {
    justify-content: center;
  }

  .lnd-search-trigger {
    margin: 0 auto 2.5rem;
  }

  .lnd-mock {
    margin-top: 60px;
    transform: scale(0.9) perspective(1000px) rotateX(5deg);
  }

  .lnd-mock:hover {
    transform: scale(0.95) perspective(1000px) rotateX(2deg);
  }

  .lnd-steps-track::after {
    display: none;
  }

  .pre-koho-grid {
    grid-template-columns: 1fr;
  }

  .calc-vs {
    display: none;
  }

  .lnd-price-tag {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .lnd-section {
    padding: 80px 0;
  }

  .lnd-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .btn-premium,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .lnd-hero-container {
    padding: 0 20px;
    transform: scale(0.95);
    transform-origin: top center;
  }

  .glass-card {
    padding: 24px;
  }

  .plan-company-card {
    padding: 24px;
  }

  .trigger-hint {
    display: none;
  }

  .lnd-search-trigger {
    padding: 12px 16px;
    width: 100%;
    max-width: 100%;
  }

  .lnd-mock {
    transform: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .lnd-mock:hover {
    transform: translateY(-5px);
  }

  .lnd-h1 {
    font-size: 2.2rem;
  }
}

/* ================== CUTTED SECTIONS (BOTTOM SHEET) ================== */
.lnd-cutted-section {
  position: relative;
  z-index: 10;
  overflow: hidden;
  background: var(--bg-dark) !important;
}

.lnd-slideup-pulltab {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-accent-primary);
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 15px;
}

.bouncing-arrow {
  animation: bounceUp 2s infinite;
}

@keyframes bounceUp {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* APK Specific Overrides */
body.is-landing-page .lnd-hero.is-apk-hero {
  min-height: calc(100dvh - 115px) !important;
}

@media (max-width: 991px) {
  body.is-landing-page .lnd-hero.is-apk-hero {
    padding-bottom: 20px;
  }
}