/* Modern White Paper Section Styles */
.white-paper-section {
  position: relative;
  padding: 5rem 0;
  background: #ffffff;
  overflow: hidden;
}

.white-paper-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: none;
  pointer-events: none;
}

.white-paper-hero {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.wp-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--care-inf-accent) 0%, #c9a136 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.wp-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--care-inf-primary-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.wp-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(26, 58, 95, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.white-paper-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.white-paper-content h3 {
  font-size: 1.75rem;
  color: var(--care-inf-primary-dark);
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.white-paper-content h4 {
  font-size: 1.25rem;
  color: var(--care-inf-primary-dark);
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.white-paper-content p {
  color: rgba(26, 58, 95, 0.8);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.white-paper-actions {
  margin-top: 2rem;
}

/* Sidebar Styles */
.wp-sidebar {
  position: sticky;
  top: 2rem;
}

.wp-pdf-card {
  background: #ffffff;
  border: 2px solid var(--care-inf-accent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.12);
  transition: all 0.3s ease;
}

.wp-pdf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.wp-pdf-preview {
  background: linear-gradient(135deg, #1a3a5f 0%, #0d1f39 100%);
  padding: 2.5rem;
  text-align: center;
}

.wp-pdf-preview svg {
  color: var(--care-inf-accent);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.wp-pdf-info {
  padding: 2rem;
}

.wp-pdf-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--care-inf-primary-dark);
  margin: 0 0 0.75rem;
}

.wp-pdf-info > p {
  color: rgba(26, 58, 95, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.wp-pdf-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.wp-pdf-features li {
  color: rgba(26, 58, 95, 0.8);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26, 58, 95, 0.08);
}

.wp-pdf-features li:last-child {
  border-bottom: none;
}

.wp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.wp-stat-item {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4f7 100%);
  border: 1px solid rgba(26, 58, 95, 0.1);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.wp-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--care-inf-accent);
  margin-bottom: 0.25rem;
}

.wp-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(26, 58, 95, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .white-paper-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .wp-sidebar {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .white-paper-section {
    padding: 3rem 0;
  }

  .white-paper-hero {
    margin-bottom: 2.5rem;
  }

  .wp-badge {
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
  }

  .wp-stats {
    grid-template-columns: 1fr;
  }
}
