/* Premium Add-ons Section - Glassmorphism & Blue Theme */

.premium-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .premium-addons-grid {
    grid-template-columns: 1fr;
  }
}

.addon-card {
  background: rgba(23, 37, 84, 0.4);
  /* Darker blue background */
  border: 1px solid rgba(59, 130, 246, 0.2);
  /* Blue border */
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.addon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.addon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.2);
}

.addon-card:hover::before {
  opacity: 1;
}

/* Header Section */
.addon-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.addon-icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3b82f6;
  /* Blue icon */
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.addon-card:hover .addon-icon-box {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  /* Blue glow */
}

.addon-title-group h3 {
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.addon-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  /* Lighter blue text */
  border: 1px solid rgba(59, 130, 246, 0.3);
  text-transform: uppercase;
}

.badge-purple {
  background: rgba(147, 51, 234, 0.15);
  /* Keep purple as strictly secondary or change to dark blue if preferred, but distinct is good */
  color: #c084fc;
  border-color: rgba(147, 51, 234, 0.3);
}

/* Description & List */
.addon-desc {
  color: #cbd5e1;
  /* Lighter slate text */
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  /* Pushes content to match heights if needed */
}

.addon-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.addon-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
  /* Blue checkmarks */
  font-weight: bold;
}

.addon-list li strong {
  color: #fff;
  font-weight: 500;
}

/* Reports Section overrides and additions */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .reports-grid {
    grid-template-columns: 1fr;
  }
}

.report-card {
  background: rgba(23, 37, 84, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.report-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.2);
}

.report-icon-box {
  width: 48px;
  height: 48px;
  background: #3b82f6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.report-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.report-subtitle {
  color: #94a3b8;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
}

.report-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  width: fit-content;
  max-width: 100%;
  text-align: left;
  display: inline-block;
}

.report-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.report-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
  /* White bullet */
  font-weight: bold;
}

.best-for-text {
  text-align: center;
  margin-top: 2rem;
  color: #94a3b8;
  font-size: 1rem;
}

.best-for-text strong {
  color: #fff;
  margin-right: 0.5rem;
}