/* Modern HIPAA Hero Section CSS */

.hipaa-hero-modern,
.hipaa-hero-modern * {
  box-sizing: border-box;
}

.hipaa-hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background-color: #050b14;
  font-family: 'Manrope', sans-serif;
  color: #fff;
}

.hipaa-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hipaa-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hipaa-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(5, 11, 20, 0.6) 100%);
  z-index: 1;
}

.hipaa-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
  opacity: 0.3;
}

.hipaa-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
}

.glow-1 {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 240, 255, 0.25);
}

.glow-2 {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: rgba(0, 102, 255, 0.25);
}

.hipaa-hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Content Styles */
.hipaa-hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hipaa-badge-wrapper {
  display: inline-flex;
}

.hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 30px;
  color: #00f0ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00f0ff;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.hipaa-title {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #00f0ff 50%, #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hipaa-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e2e8f0;
  max-width: 90%;
  margin: 0;
}

.hipaa-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn-hipaa-primary, .btn-hipaa-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-hipaa-primary {
  background: linear-gradient(135deg, #0066ff, #00f0ff);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.btn-hipaa-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.5);
  color: #fff;
}

.btn-hipaa-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-hipaa-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: #fff;
}

.hipaa-trust-metrics {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.metric strong, .metric i {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.metric i {
  color: #00f0ff;
  margin-bottom: 2px;
}

.metric span {
  font-size: 0.9rem;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Visual Styles */
.hipaa-hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-glass-panel {
  width: 100%;
  max-width: 480px;
  background: rgba(16, 23, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hipaa-hero-visual:hover .visual-glass-panel {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.panel-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-dots {
  display: flex;
  gap: 8px;
}

.mac-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mac-dots span:nth-child(1) { background: #ff5f56; }
.mac-dots span:nth-child(2) { background: #ffbd2e; }
.mac-dots span:nth-child(3) { background: #27c93f; }

.panel-title {
  margin-left: 20px;
  font-family: monospace;
  color: #e2e8f0;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.panel-body {
  padding: 30px;
  position: relative;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00f0ff;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  opacity: 0.5;
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

.data-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.data-row:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateX(5px);
}

.data-row i {
  font-size: 1.5rem;
  color: #0066ff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 8px;
}

.data-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.data-name {
  font-family: monospace;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.data-status {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.data-status.secure {
  color: #27c93f;
}

.shield-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: relative;
}

.shield-container i {
  font-size: 4rem;
  color: #00f0ff;
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
  animation: pulse-shield 2s infinite;
}

@keyframes pulse-shield {
  0% { transform: scale(0.95); filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.8)); }
  100% { transform: scale(0.95); filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3)); }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(16, 23, 38, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(15px);
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

.float-card i {
  color: #00f0ff;
  font-size: 1.2rem;
}

.float-card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.card-top-right {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.card-bottom-left {
  bottom: 15%;
  left: -10%;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Light Mode Overrides for consistency if the theme is toggled */
[data-theme="light"] .hipaa-hero-modern {
  background-color: #f8fafc;
  color: #0f172a;
}
[data-theme="light"] .hipaa-hero-overlay {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.8) 100%);
}
[data-theme="light"] .hipaa-hero-grid {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}
[data-theme="light"] .hipaa-title {
  color: #0f172a;
}
[data-theme="light"] .text-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #0066ff 50%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .hipaa-description {
  color: #475569;
}
[data-theme="light"] .metric strong {
  color: #0f172a;
}
[data-theme="light"] .metric span {
  color: #64748b;
}
[data-theme="light"] .btn-hipaa-secondary {
  color: #0f172a;
  border-color: #cbd5e1;
}
[data-theme="light"] .btn-hipaa-secondary:hover {
  background: #f1f5f9;
  color: #0f172a;
}
[data-theme="light"] .visual-glass-panel {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .panel-header {
  background: rgba(0, 0, 0, 0.05);
  border-bottom-color: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .data-row {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
[data-theme="light"] .data-row:hover {
  background: #fff;
  border-color: rgba(0, 102, 255, 0.2);
}
[data-theme="light"] .data-name {
  color: #334155;
}
[data-theme="light"] .float-card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 102, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .float-card span {
  color: #0f172a;
}
[data-theme="light"] .metric-divider {
  background: rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hipaa-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 40px;
  }
  
  .hipaa-hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hipaa-description {
    max-width: 100%;
  }
  
  .hipaa-actions {
    justify-content: center;
  }
  
  .hipaa-trust-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .card-top-right {
    right: 0;
    top: -20px;
  }
  
  .card-bottom-left {
    left: 0;
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .hipaa-hero-modern {
    padding: 100px 0 60px;
  }
  
  .hipaa-title {
    font-size: 2.2rem;
  }
  
  .btn-hipaa-primary, .btn-hipaa-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hipaa-actions {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
  
  .visual-glass-panel {
    transform: none !important;
  }
  
  .float-card {
    display: none;
  }
  
  .glow-1, .glow-2 {
    width: 300px;
    height: 300px;
  }
}

/* --- Creative Compliance Widget --- */
.creative-compliance-widget {
  position: relative;
  background: rgba(10, 16, 28, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0, 240, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.creative-compliance-widget:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-5px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.4);
}

.widget-glare {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
  z-index: 10;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: monospace;
  font-size: 0.95rem;
  color: #e2e8f0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pulse-indicator {
  width: 10px; height: 10px;
  background: #27c93f;
  border-radius: 50%;
  box-shadow: 0 0 10px #27c93f;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(39, 201, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 201, 63, 0); }
}

.widget-body {
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.core-shield {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 10px;
}

.core-shield i {
  font-size: 3.5rem;
  color: #00f0ff;
  z-index: 3;
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
}

.core-shield .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 80px; height: 80px;
  animation: ripple 3s linear infinite;
}

.ring-2 {
  width: 120px; height: 120px;
  animation: ripple 3s linear infinite 1.5s;
}

@keyframes ripple {
  0% { width: 60px; height: 60px; opacity: 1; }
  100% { width: 160px; height: 160px; opacity: 0; }
}

.compliance-nodes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.c-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: default;
}

.c-node:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateX(8px);
}

.c-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.15);
  color: #00f0ff;
  border-radius: 12px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.c-node:hover .c-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(0, 102, 255, 0.3);
}

.c-text strong {
  display: block;
  font-size: 1.1rem;
  color: #ffffff !important;
  margin-bottom: 4px;
}

.c-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #ffffff !important;
  line-height: 1.4;
  opacity: 0.9;
}

.widget-footer {
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.status-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #0066ff, #00f0ff);
  border-radius: 4px;
  transform-origin: left;
  animation: load-bar 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes load-bar {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.status-text {
  font-size: 0.85rem;
  color: #4ade80 !important;
  text-align: right;
  font-family: monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Light mode support */
[data-theme="light"] .creative-compliance-widget {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}
[data-theme="light"] .widget-header {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #000000 !important;
}
[data-theme="light"] .widget-header span {
  color: #000000 !important;
}
[data-theme="light"] .c-node {
  background: rgba(240, 246, 252, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}
[data-theme="light"] .c-node:hover {
  background: #ffffff !important;
  border-color: rgba(0, 102, 255, 0.4) !important;
}
[data-theme="light"] .c-text strong {
  color: #000000 !important;
}
[data-theme="light"] .c-text p {
  color: #1e293b !important;
  opacity: 1 !important;
}
[data-theme="light"] .widget-footer {
  background: rgba(0, 0, 0, 0.04) !important;
}
[data-theme="light"] .status-text {
  color: #166534 !important;
}

/* --- Creative Services 3x3 Grid --- */
.creative-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.creative-svc-card {
  position: relative;
  background: rgba(10, 16, 28, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.creative-svc-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 240, 255, 0.1);
  z-index: 2;
}

.svc-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.creative-svc-card:hover .svc-glow {
  opacity: 1;
  animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.svc-icon-box {
  width: 60px; height: 60px;
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00f0ff;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.creative-svc-card:hover .svc-icon-box {
  background: rgba(0, 102, 255, 0.4);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.svc-number {
  position: absolute;
  top: 30px; right: 30px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.creative-svc-card:hover .svc-number {
  color: rgba(0, 240, 255, 0.15);
  transform: scale(1.1);
}

.creative-svc-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 15px;
}

.creative-svc-card p {
  font-size: 0.95rem;
  color: #e2e8f0 !important;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .creative-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .creative-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Light mode support */
[data-theme="light"] .creative-svc-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}
[data-theme="light"] .creative-svc-card:hover {
  border-color: rgba(0, 102, 255, 0.3) !important;
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15) !important;
}
[data-theme="light"] .svc-number {
  color: rgba(0, 0, 0, 0.04) !important;
}
[data-theme="light"] .creative-svc-card:hover .svc-number {
  color: rgba(0, 102, 255, 0.1) !important;
}
[data-theme="light"] .creative-svc-card h3 {
  color: #000000 !important;
}
[data-theme="light"] .creative-svc-card p {
  color: #334155 !important;
}

/* --- Creative Tools Tags & Metrics Dashboard --- */
.creative-tools-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.c-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00f0ff;
  transition: all 0.3s ease;
}

.c-tag:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.creative-metrics-dashboard {
  background: rgba(13, 21, 32, 0.7);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0, 102, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.dashboard-header .mac-dots {
  display: flex;
  gap: 8px;
  margin-right: 15px;
}

.dashboard-header .mac-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dashboard-header .mac-dots span:nth-child(1) { background: #ff5f56; }
.dashboard-header .mac-dots span:nth-child(2) { background: #ffbd2e; }
.dashboard-header .mac-dots span:nth-child(3) { background: #27c93f; }

.dash-title {
  font-family: monospace;
  font-size: 0.9rem;
  color: #e2e8f0 !important;
  letter-spacing: 1px;
}

.dashboard-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.creative-metric-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-label i {
  color: #00f0ff;
  font-size: 1.1rem;
}

.m-value {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: #00f0ff !important;
}

.m-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.m-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0066ff, #00f0ff);
  border-radius: 10px;
  position: relative;
  animation: fill-bar 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes fill-bar {
  to { width: var(--fill-width); }
}

.m-bar-glow {
  position: absolute;
  top: 0; right: 0;
  width: 20px; height: 100%;
  background: #ffffff;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #00f0ff;
  opacity: 0.8;
}

.dashboard-footer {
  padding: 15px 30px;
  background: rgba(0, 102, 255, 0.1);
  border-top: 1px solid rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4ade80 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Light mode overrides */
[data-theme="light"] .c-tag {
  background: rgba(0, 102, 255, 0.05) !important;
  border-color: rgba(0, 102, 255, 0.2) !important;
  color: #0066ff !important;
}
[data-theme="light"] .c-tag:hover {
  background: rgba(0, 102, 255, 0.1) !important;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15) !important;
}
[data-theme="light"] .creative-metrics-dashboard {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}
[data-theme="light"] .dashboard-header {
  background: rgba(0, 0, 0, 0.05) !important;
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}
[data-theme="light"] .dash-title {
  color: #475569 !important;
}
[data-theme="light"] .m-label {
  color: #000000 !important;
}
[data-theme="light"] .m-label i {
  color: #0066ff !important;
}
[data-theme="light"] .m-value {
  color: #0066ff !important;
}
[data-theme="light"] .m-bar-container {
  background: rgba(0, 0, 0, 0.1) !important;
}
[data-theme="light"] .dashboard-footer {
  background: rgba(22, 163, 74, 0.1) !important;
  border-top-color: rgba(22, 163, 74, 0.2) !important;
  color: #166534 !important;
}

/* ==========================================================================
   HIPAA CREATIVE BIO-NODE
   ========================================================================== */

.hipaa-creative-node {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

/* Central Glowing Sphere */
.hipaa-bio-sphere {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.4), rgba(15, 23, 42, 0.8));
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.3), inset 0 0 30px rgba(0, 240, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: floatSphere 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* Medical Cross inside */
.hipaa-medical-cross {
  font-size: 5rem;
  color: #38bdf8;
  filter: drop-shadow(0 0 15px #38bdf8);
  animation: heartbeatPulse 1.5s infinite;
}

@keyframes heartbeatPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 15px #38bdf8); }
  15% { transform: scale(1.15); filter: drop-shadow(0 0 25px #00f0ff); }
  30% { transform: scale(1); filter: drop-shadow(0 0 15px #38bdf8); }
  45% { transform: scale(1.15); filter: drop-shadow(0 0 25px #00f0ff); }
  60% { transform: scale(1); filter: drop-shadow(0 0 15px #38bdf8); }
  100% { transform: scale(1); filter: drop-shadow(0 0 15px #38bdf8); }
}

@keyframes floatSphere {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateY(10deg); }
}

/* Orbiting Rings */
.hipaa-bio-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}

.hipaa-ring-1 {
  width: 350px; height: 350px;
  margin-top: -175px; margin-left: -175px;
  border-top-color: #38bdf8;
  border-bottom-color: #00f0ff;
  animation: rotateRing 15s linear infinite;
}

.hipaa-ring-2 {
  width: 450px; height: 450px;
  margin-top: -225px; margin-left: -225px;
  border-left-color: #c084fc;
  border-right-color: #38bdf8;
  animation: rotateRingReverse 20s linear infinite;
}

@keyframes rotateRing {
  0% { transform: rotateX(70deg) rotateZ(0deg); }
  100% { transform: rotateX(70deg) rotateZ(360deg); }
}

@keyframes rotateRingReverse {
  0% { transform: rotateY(60deg) rotateX(20deg) rotateZ(360deg); }
  100% { transform: rotateY(60deg) rotateX(20deg) rotateZ(0deg); }
}

/* Floating Bio-Cards */
.hipaa-bio-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 15px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: floatBioCard 4s ease-in-out infinite;
  z-index: 10;
}

.hipaa-bio-card i {
  font-size: 1.5rem;
  color: #00f0ff;
}

.hipaa-bio-text {
  display: flex;
  flex-direction: column;
}

.hipaa-bio-text strong {
  color: #fff;
  font-size: 0.95rem;
}

.hipaa-bio-text span {
  color: #38bdf8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bio-card-top {
  top: 10%; right: 0;
  animation-delay: 0s;
}

.bio-card-bottom {
  bottom: 10%; left: 0;
  animation-delay: 2s;
  border-color: #c084fc;
}
.bio-card-bottom i { color: #c084fc; }
.bio-card-bottom .hipaa-bio-text span { color: #c084fc; }

@keyframes floatBioCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hipaa-creative-node { transform: scale(0.8); height: 400px; }
}
