/* ===== LANDING PAGE SHOWCASE ===== */

.lp-showcase-section {
  padding: 120px 8%;
  background: linear-gradient(
    180deg,
    rgba(255,140,0,0.04),
    transparent 60%
  );
  position: relative;
}

.lp-header {
  text-align: center;
  margin-bottom: 70px;
}

.lp-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 12px;
}

.lp-title span {
  color: #ff8c00;
}

.lp-sub {
  color: #cbd5e1;
  font-size: 1.05rem;
}

/* GRID */

.lp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */

.lp-card {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.lp-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* DEVICE MOCKUP STYLE */

.lp-mockup {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,140,0,0.2);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 40px rgba(255,140,0,0.15);
  transition: all 0.5s ease;
}

.lp-mockup img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* HOVER EFFECT */

.lp-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.8),
    0 0 60px rgba(255,140,0,0.35);
}

/* OVERLAY */

.lp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: all 0.4s ease;
}

.lp-mockup:hover .lp-overlay {
  opacity: 1;
}

/* BUTTON */

.lp-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255,140,0,0.4);
}

/* CAPTION */

.lp-caption {
  margin-top: 18px;
  color: #cbd5e1;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 900px) {
  .lp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lp-showcase-section {
    padding: 80px 5%;
  }
}
