/* ====================================================================
   PRICING.CSS — Virar Stationery Pricing Page
   Unified with homepage visual language: warm, light backgrounds,
   navy accents, yellow highlights. Uses site design tokens exclusively.
   ==================================================================== */

.sp-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sp-header-back {
  color: var(--navy, #0f2c59);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.sp-header-back:hover {
  opacity: 0.7;
}

.sp-header-title {
  font-family: var(--font-display, "Sora", sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy, #0f2c59);
}

/* ── Hero Section — light, warm, matching homepage ── */
.pricing-hero {
  background: linear-gradient(180deg, var(--bg, #f8f9fa) 0%, #fff 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 210, 31, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pricingAuraDrift 12s ease-in-out infinite alternate;
}

.pricing-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 210, 31, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes pricingAuraDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.15); }
}

.pricing-kicker {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  border: none;
  border-radius: var(--radius-pill);
  padding: 6px 22px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pricing-hero h1 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.pricing-subtitle {
  color: var(--muted);
  font-size: var(--text-lg);
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Pricing Grid ── */
.pricing-grid {
  padding: 72px 0 56px;
  background: var(--bg);
}

/* ── Category Cards ── */
.pricing-category-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition:
    transform var(--duration-base) var(--ease-premium),
    box-shadow var(--duration-base) var(--ease-premium),
    border-color var(--duration-base) var(--ease-premium);
}

.pricing-category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(244, 210, 31, 0.5);
}

/* ── Highlighted Card Enhancement ── */
.pricing-category-card.is-highlighted {
  border: 2px solid var(--yellow, #f4d21f);
  box-shadow: 0 10px 30px rgba(244, 210, 31, 0.15);
  transform: scale(1.02);
}

.pricing-category-card.is-highlighted:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 24px 48px rgba(244, 210, 31, 0.25);
}

/* Card header — sleek, modern gradient */
.pricing-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2, #081e43) 100%);
  color: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid rgba(244, 210, 31, 0.4);
}

.pricing-category-card.is-highlighted .pricing-card-header {
  border-bottom-color: var(--yellow);
}

/* Subtle shimmer on card headers */
.pricing-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 210, 31, 0.08) 50%, transparent 100%);
  transition: left 0.6s var(--ease-premium);
}

.pricing-category-card:hover .pricing-card-header::after {
  left: 100%;
}

.pc-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 210, 31, 0.15);
  border-radius: 12px;
  font-size: 1.25rem;
  color: var(--yellow);
  transition: transform var(--duration-fast) ease, background-color var(--duration-fast) ease;
}

.pricing-category-card:hover .pc-icon {
  transform: scale(1.1) rotate(2deg);
  background: rgba(244, 210, 31, 0.25);
}

.pc-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.pc-badge {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
}

.pc-badge-highlight {
  background: var(--yellow);
  color: var(--navy);
}

/* ── Pricing Table ── */
.pricing-card-body {
  padding: 12px 24px 24px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table tbody td {
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0;
}

.pricing-table tbody tr:first-child td {
  padding-top: 12px;
}

.price-value {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
  font-size: 1.05rem;
}

/* ── Disclaimer Note ── */
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: var(--text-sm);
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-8);
  line-height: 1.7;
}

/* ── WhatsApp CTA Section ── */
.pricing-cta {
  text-align: center;
  padding: 56px 0 72px;
  background: var(--bg);
}

.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
  transition:
    transform var(--duration-fast) ease,
    box-shadow var(--duration-fast) ease;
  position: relative;
  overflow: hidden;
}

.pricing-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.pricing-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.pricing-cta-btn:hover::before {
  left: 100%;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .pricing-hero {
    padding: 64px 0 48px;
  }
  .pricing-grid {
    padding: 52px 0 40px;
  }
}

@media (max-width: 575.98px) {
  .pricing-hero {
    padding: 48px 0 36px;
  }
  .pricing-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .pricing-grid {
    padding: 36px 0 28px;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 10px 14px;
    font-size: var(--text-xs);
  }
  .price-value {
    font-size: var(--text-sm);
  }
  .pricing-card-header {
    padding: 16px 18px;
    gap: 10px;
  }
  .pricing-card-header i {
    width: 34px;
    height: 34px;
    font-size: var(--text-lg);
    border-radius: 8px;
  }
  .pricing-cta {
    padding: 36px 0 48px;
  }
  .pricing-cta-btn {
    font-size: var(--text-sm);
    padding: 14px 28px;
  }
  .pricing-note {
    font-size: var(--text-xs);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-hero::before {
    animation: none;
  }
  .pricing-category-card:hover .pricing-card-header::after,
  .pricing-cta-btn::before {
    transition: none;
  }
}
