/* -------------------------------------------------
   GLOBAL PAGE WRAPPER
---------------------------------------------------*/
.primium-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  line-height: 1.55;
}

/* -------------------------------------------------
   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: 900px;
  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.08rem;
  max-width: 650px;
  margin: 0 auto 28px;
  color: #475569;
}

.primium-cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.primium-hero .note {
  color: #64748b;
  font-size: 0.9rem;
}

/* BUTTONS */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  border: 1px solid #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}
.btn-ghost:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* -------------------------------------------------
   BENEFITS GRID (SUMMARY CARDS)
---------------------------------------------------*/
.primium-benefits {
  padding: 64px 16px;
}

.primium-benefits > h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.benefit-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: 0.15s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  border-color: #cbd5e1;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card a {
  text-decoration: none;
  color: inherit;
}

.benefit-card p {
  color: #475569;
  font-size: 0.96rem;
}

/* -------------------------------------------------
   DETAILED BENEFIT SECTIONS
---------------------------------------------------*/
.primium-benefit-detail {
  padding: 10px 0 60px;
}

.benefit-detail-block {
  background: #ffffff;
  padding: 44px 16px;
  border-bottom: 1px solid #e2e8f0;
}

.benefit-detail-block:last-child {
  border-bottom: none;
}

.benefit-detail-content {
  max-width: 820px;
  margin: 0 auto;
}

.benefit-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.benefit-detail-content p {
  color: #475569;
  margin-bottom: 18px;
  font-size: 1rem;
}

.benefit-detail-content ul {
  margin-left: 20px;
  color: #334155;
}
.benefit-detail-content ul li {
  margin-bottom: 8px;
}

/* -------------------------------------------------
   USE CASES
---------------------------------------------------*/
.primium-usecases {
  padding: 64px 16px;
  background: #eef3ff69;
}

.primium-usecases > h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.9rem;
}

.usecase-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usecase-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.usecase-item h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}
.usecase-item p {
  font-size: 0.92rem;
  color: #475569;
}

/* -------------------------------------------------
   COMPARISON TABLE
---------------------------------------------------*/
.primium-comparison {
  padding: 70px 16px;
}

.comparison-inner {
  max-width: 900px;
  margin: 0 auto;
}

.comparison-inner h2 {
  text-align: center;
  margin-bottom: 26px;
  font-size: 1.9rem;
  font-weight: 700;
}

.comparison-table {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}
.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: #f1f5f9;
  font-weight: 600;
}

.comparison-row div {
  padding: 6px 4px;
  font-size: 0.95rem;
}

.comparison-row strong {
  color: #2563eb;
}

/* -------------------------------------------------
   FAQ SECTION
---------------------------------------------------*/
.primium-faq {
  padding: 70px 16px;
  background: #f8fafc;
}

.faq-inner {
  max-width: 850px;
  margin: 0 auto;
}

.faq-inner h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.faq-item p {
  color: #475569;
  font-size: 0.97rem;
}

/* -------------------------------------------------
   BOTTOM CTA
---------------------------------------------------*/
.primium-bottom-cta {
  padding: 64px 16px 80px;
  background: linear-gradient(135deg, #1e40af, #0f766e);
  color: #ffffff;
}

.bottom-cta-inner {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.bottom-cta-inner h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.bottom-cta-inner p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: #e0f2fe;
  font-size: 1rem;
}

.bottom-cta-inner .btn-primary {
  background: #ffffff;
  color: #1e3a8a;
  border: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.bottom-cta-inner .btn-primary:hover {
  background: #e2e8f0;
}

/* -------------------------------------------------
   RESPONSIVE RESPONSIVE RESPONSIVE
---------------------------------------------------*/

@media (max-width: 992px) {
  
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .benefit-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .primium-hero h1 {
    font-size: 2.1rem;
  }

  .primium-hero .subtitle {
    font-size: 1rem;
    max-width: 95%;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .comparison-header {
    display: none;
  }

  .comparison-row div:nth-child(1) {
    font-weight: 600;
    padding-bottom: 10px;
  }
}
