/* =====================================
   Saino LP Pro - Demo Site Styles
===================================== */

/* Sticky CTA */
.demo-sticky-cta {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 12px 0;
}

.demo-sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.demo-sticky-cta span {
  font-weight: 900;
  font-size: 14px;
}

.demo-sticky-cta a {
  background: #2563eb;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

/* Demo Cards */
.demo-premium-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.demo-premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.18);
  border-color: rgba(37, 99, 235, 0.35);
}

.demo-card-image {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #f1f5f9;
}

.demo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}

.demo-premium-card:hover .demo-card-image img {
  transform: scale(1.07);
  filter: brightness(1.05);
}

.demo-mini-badge {
  display: inline-block;
  width: fit-content;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.restaurant-badge {
  background: #f97316;
}

.demo-device-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.demo-device-tags span {
  font-size: 12px;
  font-weight: 900;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 6px 10px;
  border-radius: 999px;
}

.restaurant-device-tags span {
  color: #f97316;
  background: #fff7ed;
  border-color: #fed7aa;
}

.demo-rating {
  color: #f59e0b;
  font-weight: 800;
  margin-bottom: 10px;
}

.demo-rating span {
  color: #64748b;
  margin-left: 6px;
}

.demo-category {
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 30px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 800;
}

.restaurant-category {
  background: #ffedd5;
  color: #ea580c;
}

.demo-best-for {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 13px 15px;
  margin: 18px 0;
}

.demo-best-for strong {
  display: block;
  font-size: 12px;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 5px;
}

.demo-best-for span {
  display: block;
  font-size: 14px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.6;
}

.restaurant-best-for strong {
  color: #f97316;
}

.demo-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  min-height: 132px;
}

.demo-check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #0f172a;
  font-weight: 700;
}

.demo-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 900;
}

.restaurant-demo-card .demo-check-list li::before {
  color: #f97316;
}

.demo-buttons {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-buttons .pricing-btn,
.demo-buttons .demo-buy-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.demo-buy-btn {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: .3s;
}

.demo-buy-btn:hover {
  background: #000000;
}

.restaurant-btn {
  background: #f97316 !important;
}

.restaurant-btn:hover {
  background: #ea580c !important;
}

/* Buy Strip */
.demo-buy-strip {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  padding: 70px 0;
}

.demo-buy-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 42px;
}

.demo-buy-label {
  display: inline-block;
  background: rgba(255,255,255,.14);
  color: #ffffff;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.demo-buy-strip h2 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 12px;
}

.demo-buy-strip p {
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.8;
}

/* Proof */
.demo-proof {
  background: #ffffff;
}

.demo-proof .stat-card {
  border: 1px solid #dbeafe;
}

/* Mobile */
@media (max-width: 768px) {
  .demo-sticky-cta .container {
    flex-direction: column;
    text-align: center;
  }

  .demo-sticky-cta a {
    width: 100%;
    text-align: center;
  }

  .demo-card-image {
    height: 160px;
  }

  .demo-premium-card p,
  .demo-check-list {
    min-height: auto;
  }

  .demo-buy-strip-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .demo-buy-strip h2 {
    font-size: 26px;
  }

  .demo-buy-strip .hero-cta {
    width: 100%;
  }
}