/* Primium Page Layout */
.primium-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

/* Hero Section */
.primium-hero {
  padding: 80px 16px 64px;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f8fafc 55%, #eff6ff 100%);
  text-align: center;
}

.primium-hero-inner {
  max-width: 850px;
  margin: 0 auto;
}

.primium-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.primium-hero .subtitle {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
  color: #475569;
}

.primium-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.primium-hero .note {
  font-size: 0.9rem;
  color: #64748b;
}

/* Buttons (can reuse site-wide) */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 1px solid #1d4ed8;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.15);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.18);
}

.btn-ghost {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.btn-ghost:hover {
  background-color: #f1f5f9;
  border-color: #cbd5f5;
  transform: translateY(-1px);
}

/* Benefits Section */
.primium-benefits {
  padding: 56px 16px 40px;
}

.primium-benefits > h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid #e2e8f0;
  transition: transform 0.1s ease, box-shadow 0.1s ease, border-color 0.1s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border-color: #cbd5f5;
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

/* Use Cases Section */
.primium-usecases {
  padding: 40px 16px 56px;
  background-color: #e5edff1a;
}

.primium-usecases > h2 {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}

.usecase-grid {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.usecase-item {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.usecase-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.usecase-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

/* Bottom CTA Section */
.primium-bottom-cta {
  padding: 56px 16px 72px;
  background: linear-gradient(135deg, #1d4ed8, #0f766e);
  color: #ffffff;
}

.bottom-cta-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.bottom-cta-inner h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bottom-cta-inner p {
  font-size: 0.98rem;
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.7;
  color: #e0f2fe;
}

.bottom-cta-inner .btn-primary {
  background-color: #ffffff;
  color: #1d4ed8;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.bottom-cta-inner .btn-primary:hover {
  background-color: #e2e8f0;
  color: #1e3a8a;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .primium-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .benefit-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .primium-hero {
    padding-top: 64px;
  }

  .primium-hero h1 {
    font-size: 2rem;
  }

  .primium-hero .subtitle {
    font-size: 0.98rem;
  }

  .bottom-cta-inner h2 {
    font-size: 1.6rem;
  }
}
