/* Scoped CSS for the landing page to prevent theme conflicts */
html {
  scroll-behavior: smooth;
}

.sd-landing-wrapper {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
}

.sd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sd-text-center {
  text-align: center;
}

/* Header & Footer */
.sd-landing-page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  background: #ffffff;
}

.sd-landing-page-header img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.sd-landing-page-site-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}

.sd-landing-page-footer {
  text-align: center;
  padding: 20px 16px;
  background: #ffffff;
  color: #475569;
  font-size: 0.95rem;
}

/* Hero Section */
.sd-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  text-align: center;
}

.sd-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.sd-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: #cbd5e1;
}

/* --- BUTTON STYLES --- */
.sd-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.sd-btn {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  cursor: pointer;
}

.sd-btn:hover {
  background-color: #1d4ed8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

.sd-btn-whatsapp {
  background-color: #25d366;
}

.sd-btn-whatsapp:hover {
  background-color: #1aa04c;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.sd-btn-ghost {
  background-color: transparent;
  border: 2px solid #cbd5e1;
  color: #ffffff;
}

.sd-btn-ghost:hover {
  background-color: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}

/* Features Section */
.sd-features {
  padding: 60px 0;
  background: white;
}

.sd-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sd-feature-card {
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sd-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.sd-feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0f172a;
}

/* Pricing Section */
.sd-pricing {
  padding: 80px 0;
}

.sd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.sd-pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sd-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 24px -1px rgba(0, 0, 0, 0.15),
    0 8px 12px -1px rgba(0, 0, 0, 0.1);
}

.sd-pricing-card.popular {
  border-color: #2563eb;
  position: relative;
}

.sd-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: bold;
}

.sd-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 20px 0;
}

.sd-price-original {
  font-size: 1.15rem;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 600;
}

.sd-price-discounted {
  font-size: 2.5rem;
  color: #0f172a;
  font-weight: 900;
  line-height: 1;
}

.sd-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.sd-features-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}

.sd-features-list li:before {
  content: "✓";
  color: #2563eb;
  font-weight: bold;
  margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sd-hero h1 {
    font-size: 2.2rem;
  }

  .sd-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0 auto;
  }

  .sd-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .sd-hero-buttons .sd-btn {
    width: 100%;
    box-sizing: border-box;
  }
}
