.mt-10 {
  margin-top: calc(var(--spacing) * 10);
}

.mt-20 {
  margin-top: calc(var(--spacing) * 20);
}

.mt-30 {
  margin-top: calc(var(--spacing) * 30);
}

.mt-40 {
  margin-top: calc(var(--spacing) * 40);
}

.mt-50 {
  margin-top: calc(var(--spacing) * 50);
}

.logo-brandline {
  display: flex;
  margin-top: -5px;
  font-size: 10px;
}

.person-designation {
  display: block;
  font-size: small;
  opacity: 0.7;
  margin-top: -5px;
  margin-bottom: 15px;
}

.bg-white {
  background: #fff;
}

.yt-bg-video {
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  border-bottom: 1px solid #417ca6;
}

/* Sticky Header Styles */

.sticky-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
  transition: all 0.3s ease;
}

.sticky-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.95),
    rgba(2, 6, 23, 0.85)
  );
  z-index: -1;
  pointer-events: none;
}

.sticky-header-inner {
  position: relative;
  z-index: 1;
}

/* Mega menu styles - pure CSS implementation */

/* Alpine.js x-cloak */
[x-cloak] {
  display: none !important;
}

.header-nav-link-active {
  position: relative;
  color: #c485ff !important;
  padding: 3px 7px;
}

.header-nav-link-active::before {
  content: "";
  position: absolute;
  inset: -0.1rem -0.4rem;
  border-radius: 9999px;
  background: conic-gradient(
    rgba(148, 163, 184, 0.3),
    rgba(129, 140, 248, 0.9),
    rgba(168, 85, 247, 0.9),
    rgba(129, 140, 248, 0.9),
    rgba(148, 163, 184, 0.3)
  );
  opacity: 0.9;
  z-index: -2;
}

.header-nav-link-active::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: 1px;
  border-radius: inherit;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.85);
  z-index: -1;
}

.header-nav-link-active .mega-menu-chevron {
  color: #a855f7;
}

/* Mega menu container */
.mega-menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 40;
  pointer-events: none;
}

.sticky-header .mega-menu-container {
  pointer-events: auto;
}

/* Mega menu base */
.mega-menu {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: none;
  pointer-events: auto;
}

.mega-menu[x-show] {
  display: block;
}

/* Mega menu inner container */
.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .mega-menu-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .mega-menu-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Mega menu grid */
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem;
  align-items: start;
}

/* Mega menu columns */
.mega-menu-col {
  display: flex;
  flex-direction: column;
}

.mega-menu-col-4 {
  grid-column: span 4;
}

.mega-menu-col-3 {
  grid-column: span 3;
}

.mega-menu-col-5 {
  grid-column: span 5;
}

.mega-menu-col-7 {
  grid-column: span 7;
}

.mega-menu-col-10 {
  grid-column: span 10;
}

.mega-menu-col-2 {
  grid-column: span 2;
}

/* Mega menu heading */
.mega-menu-heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  margin-top: 0;
  line-height: 1.2;
}

.text-uppercase {
  text-transform: uppercase;
}

/* Mega menu list */
.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Mega menu item */
.mega-menu-item {
  margin: 0;
}

/* Mega menu link */
.mega-menu-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mega-menu-link:hover .mega-menu-title {
  color: #9333ea;
}

/* Mega menu link with icon (products & services) */
.mega-menu-link-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

/* Service link with icon and text on same line */
.mega-menu-service-inline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-menu-service-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.mega-menu-service-inline .mega-menu-link-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0;
  flex-shrink: 0;
}

.mega-menu-service-inline .mega-menu-title {
  margin-bottom: 0;
  flex: 1;
  line-height: 1.4;
}

.mega-menu-service-inline .mega-menu-desc {
  margin-top: 0;
  padding-left: 2.125rem;
}

.mega-menu-link-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-color: #f8fafc;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.mega-menu-link:hover .mega-menu-link-icon {
  background-color: #f1f5f9;
  transform: scale(1.05);
}

.mega-menu-link-icon i {
  font-size: 1.125rem;
  color: #9333ea;
  transition: color 0.2s ease;
}

.mega-menu-link:hover .mega-menu-link-icon i {
  color: #7c3aed;
}

.mega-menu-link-content {
  flex: 1;
  min-width: 0;
}

/* Mega menu service link (services with hover background) */
.mega-menu-service-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.mega-menu-service-link:hover {
  background-color: #f8fafc;
  border-color: #e2e8f0;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mega-menu-service-link .mega-menu-title {
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.mega-menu-service-link .mega-menu-desc {
  margin-bottom: 0;
  line-height: 1.4;
}

/* Service link with icon - adjust icon color */
.mega-menu-service-link .mega-menu-link-icon i {
  color: #6366f1;
}

.mega-menu-service-link:hover .mega-menu-link-icon i {
  color: #9333ea;
}

/* Adjust spacing for service links in list */
.mega-menu-solutions-grid .mega-menu-list .mega-menu-item {
  margin-bottom: 0.5rem;
}

.mega-menu-solutions-grid .mega-menu-list .mega-menu-item:last-child {
  margin-bottom: 0;
}

/* Mega menu title */
.mega-menu-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0f172a;
  transition: color 0.2s ease;
  margin-bottom: 0.375rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.mega-menu-title-with-icon {
  display: inline-flex;
  align-items: center;
}

/* Mega menu description */
.mega-menu-desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 400;
}

/* Mega menu external icon */
.mega-menu-external-icon {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  opacity: 0.6;
}

/* Mega menu solutions grid (2 columns) */
.mega-menu-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Mega menu solutions grid (4 columns) */
.mega-menu-4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .mega-menu-4col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .mega-menu-solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mega-menu-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mega menu featured box */
.mega-menu-featured {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Mega menu featured header */
.mega-menu-featured-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* Mega menu featured icon */
.mega-menu-featured-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.mega-menu-featured-icon i {
  font-size: 1.5rem;
  color: #334155;
}

/* Mega menu featured content */
.mega-menu-featured-content {
  flex: 1;
}

/* Mega menu featured title */
.mega-menu-featured-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.2;
}

/* Mega menu featured description */
.mega-menu-featured-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.625;
  margin: 0;
}

/* Mega menu featured inline link */
.mega-menu-featured-link-inline {
  color: #0f172a;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mega-menu-featured-link-inline:hover {
  color: #9333ea;
}

/* Mega menu featured button */
.mega-menu-featured-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  background-color: white;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.mega-menu-featured-btn:hover {
  background-color: #f8fafc;
  border-color: #94a3b8;
}

/* Mega menu featured divider */
.mega-menu-featured-divider {
  padding-top: 1.5rem;
  border-top: 1px solid #fde68a;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Mega menu featured link */
.mega-menu-featured-link {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
  justify-content: space-between;
}

.mega-menu-featured-link:hover {
  color: #0f172a;
}

.mega-menu-featured-link i {
  font-size: 0.75rem;
  margin-left: auto;
}

/* Mega menu chevron */
.mega-menu-chevron {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.mega-menu-chevron-open {
  transform: rotate(180deg);
}

/* Mega menu transitions */
.mega-menu-enter {
  transition: all 0.2s ease-out;
}

.mega-menu-enter-start {
  opacity: 0;
  transform: translateY(-8px);
}

.mega-menu-enter-end {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-leave {
  transition: all 0.15s ease-in;
}

.mega-menu-leave-start {
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-leave-end {
  opacity: 0;
  transform: translateY(-8px);
}

/* Footer CTA section */
.footer-cta-section {
  position: relative;
}

.footer-cta-section .rounded-3xl {
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.footer-cta-section .bg-slate-800\/50 {
  background-color: rgba(30, 41, 59, 0.5);
}

.footer-cta-section .border-slate-700\/50 {
  border-color: rgba(51, 65, 85, 0.5);
}

.person-block p {
  font-size: 12px;
  margin-bottom: 4px;
}

/* Footer - Aerospike design */
.footer-aerospike {
  background: linear-gradient(to bottom, #0a0e1a, #050810, #0a0e1a);
  color: white;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 0 2rem;
  }
}

/* Main footer content */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    padding: 5rem 0 6rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    gap: 4rem;
  }
}

/* Brand section */
.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 3;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 280px;
}

/* Footer columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .footer-column {
    grid-column: span 3;
  }
}

.footer-contact {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-contact {
    grid-column: span 3;
  }
}

/* Footer headings */
.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.25rem;
  margin-top: 0;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
}

.footer-links a:hover {
  opacity: 0.75;
}

.footer-external-icon {
  font-size: 0.625rem;
  margin-left: 0.375rem;
  opacity: 0.6;
}

/* Footer subsection (integrations, support) */
.footer-subsection {
  margin-top: 2.5rem;
}

/* Contact section */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.footer-contact-item {
  font-size: 0.875rem;
  font-weight: 400;
  color: white;
  text-decoration: none;
  line-height: 1.6;
  display: block;
}

.footer-contact-item:hover {
  opacity: 0.75;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  background-color: rgba(10, 14, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.footer-contact-btn:hover {
  background-color: rgba(10, 14, 26, 1);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Bottom section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 1.5rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

/* Social icons (in brand section) */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-social-icon i {
  font-size: 1rem;
}

/* Legal links */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Copyright */
.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* Compliance BIS card styles */
.compliance-bis-card {
  margin-top: 1.5rem;
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1.5rem;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
}

.compliance-bis-card::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: -12rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 30;
  filter: blur(100px);
}

.compliance-bis-card:hover::before {
  opacity: 0.2;
}

.compliance-bis-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
  background: radial-gradient(
    250px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(148, 163, 184, 0.1),
    transparent
  );
}

.compliance-bis-card:hover::after {
  opacity: 1;
}

.compliance-bis-card-inner {
  position: relative;
  background: #0f172a;
  border-radius: inherit;
  padding: 2rem;
  z-index: 20;
  overflow: hidden;
}

@media (min-width: 768px) {
  .compliance-bis-card-inner {
    padding: 3rem;
  }
}

.compliance-bis-gradient {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  pointer-events: none;
  z-index: -10;
  width: 50%;
  aspect-ratio: 1 / 1;
}

.compliance-bis-gradient-blur {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  background: #a855f7;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.compliance-bis-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.compliance-bis-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.15),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.compliance-bis-card:hover .compliance-bis-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.25),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.5);
  transform: scale(1.05);
}

.compliance-bis-icon-wrapper i {
  font-size: 1.75rem;
  color: #a855f7;
  transition: all 0.3s ease;
}

.compliance-bis-card:hover .compliance-bis-icon-wrapper i {
  color: #c084fc;
  transform: scale(1.1);
}

.compliance-bis-title-wrapper {
  flex: 1;
  min-width: 0;
}

.compliance-bis-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .compliance-bis-title {
    font-size: 1.5rem;
  }
}

.compliance-bis-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 0.375rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.compliance-bis-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .compliance-bis-content {
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
  }
}

.compliance-bis-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compliance-bis-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.compliance-bis-section-icon {
  font-size: 1.125rem;
  color: #a855f7;
  flex-shrink: 0;
}

.compliance-bis-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compliance-bis-section-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  padding-left: 1.875rem;
}

@media (min-width: 768px) {
  .compliance-bis-section-text {
    padding-left: 0;
  }
}

.compliance-bis-divider {
  display: none;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(71, 85, 105, 0.5),
    transparent
  );
  margin: 0.5rem 0;
}

@media (min-width: 768px) {
  .compliance-bis-divider {
    display: block;
  }
}

/* Contact demo card styles */

.contact-demo-card {
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1.5rem;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
}

.contact-demo-card::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: -12rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 30;
  filter: blur(100px);
}

.contact-demo-card:hover::before {
  opacity: 0.2;
}

.contact-demo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
  background: radial-gradient(
    250px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(148, 163, 184, 0.1),
    transparent
  );
}

.contact-demo-card:hover::after {
  opacity: 1;
}

.contact-demo-card-inner {
  position: relative;
  background: #0f172a;
  border-radius: inherit;
  padding: 2.5rem;
  z-index: 20;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-demo-card-inner {
    padding: 3.5rem;
  }
}

.contact-demo-gradient {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  pointer-events: none;
  z-index: -10;
  width: 50%;
  aspect-ratio: 1 / 1;
}

.contact-demo-gradient-blur {
  position: absolute;
  inset: 0;
  transform: translateZ(0);
  background: #a855f7;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.contact-demo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

@media (min-width: 768px) {
  .contact-demo-header {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }
}

.contact-demo-icon-wrapper {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .contact-demo-icon-wrapper {
    margin-bottom: 0;
  }
}

.contact-demo-card:hover .contact-demo-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  transform: scale(1.05) rotate(5deg);
}

.contact-demo-icon-wrapper i {
  font-size: 2rem;
  color: #a855f7;
  transition: all 0.3s ease;
}

.contact-demo-card:hover .contact-demo-icon-wrapper i {
  color: #c084fc;
  transform: scale(1.1);
}

.contact-demo-header-content {
  flex: 1;
}

.contact-demo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .contact-demo-title {
    font-size: 1.75rem;
  }
}

.contact-demo-subtitle {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.contact-demo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-demo-content {
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
  }
}

.contact-demo-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-demo-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-demo-section-icon {
  font-size: 1.25rem;
  color: #a855f7;
  flex-shrink: 0;
}

.contact-demo-section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-demo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.contact-demo-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
  padding-left: 0;
}

.contact-demo-list li i {
  font-size: 1rem;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-demo-list li:first-child i,
.contact-demo-list li:nth-child(2) i,
.contact-demo-list li:nth-child(3) i,
.contact-demo-list li:nth-child(4) i {
  color: #a855f7;
}

.contact-demo-divider {
  display: none;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(71, 85, 105, 0.5),
    transparent
  );
  margin: 0.5rem 0;
}

@media (min-width: 768px) {
  .contact-demo-divider {
    display: block;
  }
}

.contact-demo-cta {
  display: flex;
  justify-content: center;
}

.contact-demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-demo-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-demo-button:hover::before {
  opacity: 1;
}

.contact-demo-button:hover {
  background: linear-gradient(to right, #ffffff, #ffffff, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-demo-button span {
  position: relative;
  z-index: 1;
}

.contact-demo-button i {
  font-size: 1.125rem;
  color: #a855f7;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-demo-button:hover i {
  transform: translateX(0.25rem);
  color: #9333ea;
}

/* 404 Error page styles */

.error-404-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.75rem;
  text-decoration: none;
  color: #cbd5e1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.error-404-link-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-404-link-item:hover::before {
  opacity: 1;
}

.error-404-link-item:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
  color: #e2e8f0;
}

.error-404-link-item i {
  font-size: 1.5rem;
  color: #a855f7;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.error-404-link-item:hover i {
  color: #c084fc;
  transform: scale(1.1);
}

.error-404-link-item span {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Contact form styles */

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.contact-label i {
  font-size: 1rem;
  color: #a855f7;
}

.contact-input,
.contact-select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: #e2e8f0;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  outline: none;
}

.contact-input:focus,
.contact-select:focus {
  border-color: #a855f7;
  background-color: rgba(30, 41, 59, 0.7);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.contact-input::placeholder {
  color: #64748b;
}

.contact-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.contact-select option {
  background-color: #0f172a;
  color: #e2e8f0;
}

.contact-checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .contact-checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-checkbox-item:hover {
  background-color: rgba(30, 41, 59, 0.5);
  border-color: rgba(168, 85, 247, 0.3);
}

.contact-checkbox-item input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #a855f7;
  flex-shrink: 0;
}

.contact-checkbox-item input[type="checkbox"]:checked + span {
  color: #e2e8f0;
  font-weight: 500;
}

.contact-checkbox-item span {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
  flex: 1;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-submit-btn:hover::before {
  opacity: 1;
}

.contact-submit-btn:hover {
  background: linear-gradient(to right, #ffffff, #ffffff, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn span {
  position: relative;
  z-index: 1;
}

.contact-submit-btn i {
  font-size: 1.125rem;
  color: #a855f7;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-submit-btn:hover i {
  transform: translateX(0.25rem);
  color: #9333ea;
}

/* Services Page Styles */

.services-section {
  position: relative;
}

.services-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

.services-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .services-pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

.services-card-outer {
  background: rgba(30, 41, 59, 0.9);
  border-radius: 1.5rem;
  padding: 1px;
  border: 1px solid rgba(71, 85, 105, 0.6);
}

.services-card-inner {
  background: radial-gradient(
      circle at top left,
      rgba(148, 163, 184, 0.08),
      transparent 55%
    ),
    #020617;
  border-radius: inherit;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media (min-width: 768px) {
  .services-card-inner {
    padding: 2rem;
  }
}

.services-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.services-card-badge i {
  font-size: 0.9rem;
  color: #a855f7;
}

.services-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin: 1rem 0 0.5rem 0;
}

.services-card-text {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.services-card-list {
  margin: 0.5rem 0 0.9rem 0;
  padding: 0;
  list-style: none;
}

.services-card-list li {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.services-card-list-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.services-card-list-link:hover {
  color: #a855f7;
  transform: translateX(4px);
}

.services-card-list-link::after {
  content: "→";
  position: absolute;
  right: -1.25rem;
  opacity: 0;
  transition: all 0.2s ease;
  color: #a855f7;
}

.services-card-list-link:hover::after {
  opacity: 1;
  right: -1.5rem;
}

.services-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(51, 65, 85, 0.7);
}

.services-card-link {
  font-size: 0.875rem;
}

.services-all-grid {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .services-all-grid {
    margin-top: 2rem;
  }
}

.services-all-grid .error-404-link-item {
  align-items: flex-start;
  text-align: left;
  padding: 1rem 1rem;
}

.services-all-grid .error-404-link-item span {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Error Page Styles */
.error-page-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .error-page-section {
    padding: 6rem 0;
    min-height: 70vh;
  }
}

.error-page-container {
  width: 100%;
  text-align: center;
}

.error-page-content {
  max-width: 42rem;
  margin: 0 auto;
}

.error-page-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.2),
    rgba(220, 38, 38, 0.1)
  );
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  animation: pulse-error 2s ease-in-out infinite;
}

.error-page-icon i {
  font-size: 3rem;
  color: #f87171;
}

@keyframes pulse-error {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.error-page-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.error-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .error-page-title {
    font-size: 3rem;
  }
}

.error-page-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.error-page-details {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 36rem;
  text-align: left;
}

.error-page-details-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fca5a5;
  margin-bottom: 1rem;
}

.error-page-details-header i {
  color: #f87171;
}

.error-page-details-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.error-page-detail-item {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-family: "Courier New", monospace;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0.5rem;
  border-left: 3px solid rgba(239, 68, 68, 0.5);
  word-break: break-word;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 3rem;
}

.error-page-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-page-button i {
  font-size: 1rem;
}

.error-page-button-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
}

.error-page-button-primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.error-page-button-secondary {
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.error-page-button-secondary:hover {
  background: rgba(51, 65, 85, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
  transform: translateY(-2px);
}

.error-page-links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.error-page-links-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.error-page-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .error-page-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.error-page-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.75rem;
  text-decoration: none;
  color: #cbd5e1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.error-page-link-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-page-link-item:hover::before {
  opacity: 1;
}

.error-page-link-item:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
  color: #e2e8f0;
}

.error-page-link-item i {
  font-size: 1.5rem;
  color: #a855f7;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.error-page-link-item:hover i {
  color: #c084fc;
  transform: scale(1.1);
}

.error-page-link-item span {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.services-all-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.85rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  text-decoration: none;
  color: #cbd5e1;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  margin: 10px;
}

.services-all-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(148, 85, 247, 0.2),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.services-all-card:hover::before {
  opacity: 1;
}

.services-all-card:hover {
  border-color: rgba(168, 85, 247, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}

.services-all-card-icon {
  position: relative;
  z-index: 1;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 30% 0,
    rgba(148, 85, 247, 0.6),
    rgba(79, 70, 229, 0.4)
  );
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.9);
}

.services-all-card-icon i {
  font-size: 1.1rem;
  color: #f9fafb;
}

.services-all-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.services-all-card-title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.services-all-card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9ca3af;
}

.tools-section {
  position: relative;
  padding: 3rem 0 4.5rem;
}

@media (min-width: 768px) {
  .tools-section {
    padding: 4rem 0 5.5rem;
  }
}

.tools-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.tools-background-particles {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18rem;
  height: 18rem;
  transform: translateX(-50%);
  opacity: 0.9;
}

.tools-background-shape {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -25%);
  filter: blur(26px);
  opacity: 0.45;
}

.tools-container {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tools-inner {
  padding-top: 3.5rem;
}

@media (min-width: 768px) {
  .tools-inner {
    padding-top: 5rem;
  }
}

.tools-hero {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.tools-hero-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  background: linear-gradient(
    90deg,
    rgba(226, 232, 240, 0.6),
    rgba(248, 250, 252, 1),
    rgba(226, 232, 240, 0.6)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) {
  .tools-hero-title {
    font-size: 2.25rem;
  }
}

.tools-hero-subtitle {
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  color: #94a3b8;
}

.tools-grid-wrapper {
  margin-top: 1.5rem;
}

.tools-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tools-card-text {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #94a3b8;
}

.tools-card-meta {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: #64748b;
}

.tools-card-icon {
  width: 5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at 30% 0, rgba(51, 65, 85, 0.9), rgba(15, 23, 42, 0.95));
}

.tools-card-icon-green {
  background: radial-gradient(circle at 30% 0, rgba(16, 185, 129, 0.7), rgba(5, 46, 22, 0.95));
  border-color: rgba(52, 211, 153, 0.7);
}

.tools-card-icon-amber {
  background: radial-gradient(circle at 30% 0, rgba(245, 158, 11, 0.75), rgba(69, 26, 3, 0.95));
  border-color: rgba(251, 191, 36, 0.8);
}

.tools-card-icon-indigo {
  background: radial-gradient(circle at 30% 0, rgba(79, 70, 229, 0.8), rgba(30, 27, 75, 0.96));
  border-color: rgba(129, 140, 248, 0.8);
}

.tools-card-icon-cyan {
  background: radial-gradient(circle at 30% 0, rgba(6, 182, 212, 0.75), rgba(8, 47, 73, 0.96));
  border-color: rgba(34, 211, 238, 0.8);
}

/* Blogs Page Styles */

.blogs-section {
  position: relative;
}

.blogs-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .blogs-hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

.blogs-filters {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.blogs-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.blog-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.blog-filter-pill:hover {
  background-color: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
  transform: translateY(-1px);
}

.blog-filter-pill.active {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .blogs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1.5rem;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.blog-card::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: -12rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 30;
  filter: blur(100px);
}

.blog-card:hover::before {
  opacity: 0.15;
}

.blog-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.6);
}

.blog-card-link {
  position: relative;
  display: block;
  background: #0f172a;
  border-radius: inherit;
  padding: 2rem;
  z-index: 20;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .blog-card-link {
    padding: 2.5rem;
  }
}

.blog-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-card-category {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card-date {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 400;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: #c084fc;
}

.blog-card-description {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a855f7;
  transition: all 0.3s ease;
}

.blog-card-read-more i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-read-more {
  color: #c084fc;
}

.blog-card:hover .blog-card-read-more i {
  transform: translateX(4px);
}

/* Blog View Page Styles */

.blog-view-section {
  position: relative;
}

.blog-view-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .blog-view-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.blog-view-header {
  max-width: 3xl;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-view-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.blog-view-category {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-view-date {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 400;
}

.blog-view-author {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  font-weight: 400;
}

.blog-view-author i {
  color: #a855f7;
  font-size: 0.875rem;
}

.blog-view-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-view-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.blog-view-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.blog-view-tag:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: #bfdbfe;
}

@media (min-width: 768px) {
  .blog-view-title {
    font-size: 2.5rem;
  }
}

.blog-view-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-view-article {
  background: rgba(30, 41, 59, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
}

@media (min-width: 768px) {
  .blog-view-article {
    padding: 3.5rem;
  }
}

.blog-view-article .prose {
  color: #cbd5e1;
  line-height: 1.75;
}

.blog-view-article .prose p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.blog-view-article .prose h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-view-article .prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-view-article .prose a {
  color: #a855f7;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
  transition: all 0.2s ease;
}

.blog-view-article .prose a:hover {
  color: #c084fc;
  border-bottom-color: rgba(168, 85, 247, 0.6);
}

.blog-view-article .prose strong {
  color: #e2e8f0;
  font-weight: 600;
}

.blog-view-article .prose blockquote {
  border-left: 3px solid #a855f7;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #94a3b8;
  background: rgba(168, 85, 247, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}

.blog-view-article .prose ul,
.blog-view-article .prose ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-view-article .prose li {
  margin: 0.75rem 0;
  color: #cbd5e1;
}

.blog-view-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-view-back:hover {
  color: #a855f7;
}

.blog-view-back i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.blog-view-back:hover i {
  transform: translateX(-4px);
}

.blog-view-cover {
  margin: 2rem 0 3rem;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(51, 65, 85, 0.3);
}

.blog-view-cover-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

@media (min-width: 768px) {
  .blog-view-cover {
    margin: 3rem 0 4rem;
    border-radius: 1.5rem;
  }

  .blog-view-cover-image {
    max-height: 600px;
  }
}

.blog-view-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.blog-view-share-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
}

.blog-view-share-label i {
  color: #a855f7;
  font-size: 1.125rem;
}

.blog-view-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.blog-view-share-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid rgba(51, 65, 85, 0.5);
  background: rgba(30, 41, 59, 0.6);
  color: #cbd5e1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-view-share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-view-share-button i {
  font-size: 1rem;
}

.blog-view-share-twitter {
  border-color: rgba(29, 161, 242, 0.3);
  background: rgba(29, 161, 242, 0.1);
  color: #1da1f2;
}

.blog-view-share-twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  border-color: rgba(29, 161, 242, 0.5);
  color: #4fc3f7;
}

.blog-view-share-linkedin {
  border-color: rgba(0, 119, 181, 0.3);
  background: rgba(0, 119, 181, 0.1);
  color: #0077b5;
}

.blog-view-share-linkedin:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: rgba(0, 119, 181, 0.5);
  color: #00a0dc;
}

.blog-view-share-facebook {
  border-color: rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

.blog-view-share-facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  border-color: rgba(24, 119, 242, 0.5);
  color: #42a5f5;
}

.blog-view-share-copy {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.blog-view-share-copy:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
}

.blog-view-share-copy.blog-view-share-copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #22c55e;
}

.blog-view-share-copy.blog-view-share-copied:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.6);
}

.blog-view-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.blog-view-related-section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 2rem 0;
}

@media (min-width: 768px) {
  .blog-view-related-section-title {
    font-size: 2rem;
  }
}

.blog-view-related-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-view-related-card:hover .blog-view-related-card-title {
  color: #c084fc;
}

.blog-view-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .blog-view-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-view-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-view-related-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.blog-view-related-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.1);
}

.blog-view-related-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-view-related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.blog-view-related-category {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-view-related-date {
  font-size: 0.875rem;
  color: #94a3b8;
}

.blog-view-related-excerpt {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* News Page Styles - Reuse Blog Styles */

.news-section {
  position: relative;
}

.news-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .news-hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

.news-filters {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.news-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.news-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.news-filter-pill:hover {
  background-color: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
  transform: translateY(-1px);
}

.news-filter-pill.active {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1.5rem;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.news-card::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: -12rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 30;
  filter: blur(100px);
}

.news-card:hover::before {
  opacity: 0.15;
}

.news-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.6);
}

.news-card-link {
  position: relative;
  display: block;
  background: #0f172a;
  border-radius: inherit;
  padding: 2rem;
  z-index: 20;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .news-card-link {
    padding: 2.5rem;
  }
}

.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.news-card-category {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card-date {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 400;
}

.news-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  color: #c084fc;
}

.news-card-description {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.news-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.news-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a855f7;
  transition: all 0.3s ease;
}

.news-card-read-more i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-read-more {
  color: #c084fc;
}

.news-card:hover .news-card-read-more i {
  transform: translateX(4px);
}

/* News View Page Styles */

.news-view-section {
  position: relative;
}

.news-view-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .news-view-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.news-view-header {
  max-width: 3xl;
  margin: 0 auto 3rem;
  text-align: center;
}

.news-view-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.news-view-category {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-view-date {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 400;
}

.news-view-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .news-view-title {
    font-size: 2.5rem;
  }
}

.news-view-content {
  max-width: 48rem;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.news-view-article {
  background: rgba(30, 41, 59, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
}

@media (min-width: 768px) {
  .news-view-article {
    padding: 3.5rem;
  }
}

.news-view-article .prose {
  color: #cbd5e1;
  line-height: 1.75;
}

.news-view-article .prose p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.news-view-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-view-back:hover {
  color: #a855f7;
}

.news-view-back i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.news-view-back:hover i {
  transform: translateX(-4px);
}

/* Previous News/Events Section */

.news-view-related {
  max-width: 48rem;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

.news-view-related-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 2rem 0;
  text-align: center;
}

.news-view-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .news-view-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-view-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-view-related-card {
  display: block;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.news-view-related-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(30, 41, 59, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.4);
}

.news-view-related-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-view-related-card-category {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-view-related-card-date {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 400;
}

.news-view-related-card-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-view-related-card:hover .news-view-related-card-title {
  color: #c084fc;
}

/* Whitepapers Page Styles */

.whitepapers-section {
  position: relative;
}

.whitepapers-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .whitepapers-hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }
}

.whitepapers-filters {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.whitepapers-filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.whitepaper-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whitepaper-filter-pill:hover {
  background-color: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
  transform: translateY(-1px);
}

.whitepaper-filter-pill.active {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.whitepapers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .whitepapers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .whitepapers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.whitepaper-card {
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1.5rem;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.whitepaper-card::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: -12rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 30;
  filter: blur(100px);
}

.whitepaper-card:hover::before {
  opacity: 0.15;
}

.whitepaper-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.6);
}

.whitepaper-card-link {
  position: relative;
  display: block;
  background: #0f172a;
  border-radius: inherit;
  padding: 2rem;
  z-index: 20;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .whitepaper-card-link {
    padding: 2.5rem;
  }
}

.whitepaper-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.whitepaper-card-category {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.whitepaper-card-date {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 400;
}

.whitepaper-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}

.whitepaper-card-icon i {
  font-size: 1.75rem;
  color: #a855f7;
}

.whitepaper-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.whitepaper-card:hover .whitepaper-card-title {
  color: #c084fc;
}

.whitepaper-card-description {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.whitepaper-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.whitepaper-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a855f7;
  transition: all 0.3s ease;
}

.whitepaper-card-read-more i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.whitepaper-card:hover .whitepaper-card-read-more {
  color: #c084fc;
}

.whitepaper-card:hover .whitepaper-card-read-more i {
  transform: translateX(4px);
}

/* Whitepaper View Page Styles */

.whitepaper-view-section {
  position: relative;
}

.whitepaper-view-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .whitepaper-view-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.whitepaper-view-header {
  max-width: 3xl;
  margin: 0 auto 3rem;
  text-align: center;
}

.whitepaper-view-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.whitepaper-view-category {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.whitepaper-view-date {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 400;
}

.whitepaper-view-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .whitepaper-view-title {
    font-size: 2.5rem;
  }
}

.whitepaper-view-content {
  max-width: 48rem;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.whitepaper-view-article {
  background: rgba(30, 41, 59, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
}

@media (min-width: 768px) {
  .whitepaper-view-article {
    padding: 3.5rem;
  }
}

.whitepaper-view-article .prose {
  color: #cbd5e1;
  line-height: 1.75;
}

.whitepaper-view-article .prose p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.whitepaper-view-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whitepaper-view-back:hover {
  color: #a855f7;
}

.whitepaper-view-back i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.whitepaper-view-back:hover i {
  transform: translateX(-4px);
}

/* Email Gate & Download Section */

.whitepaper-download-section {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.whitepaper-download-card {
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1.5rem;
  padding: 1px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
}

.whitepaper-download-card::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: -12rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 30;
  filter: blur(100px);
}

.whitepaper-download-card:hover::before {
  opacity: 0.15;
}

.whitepaper-download-card-inner {
  position: relative;
  background: #0f172a;
  border-radius: inherit;
  padding: 3rem;
  z-index: 20;
  text-align: center;
}

@media (min-width: 768px) {
  .whitepaper-download-card-inner {
    padding: 4rem;
  }
}

.whitepaper-email-form,
.whitepaper-download-link {
  position: relative;
  background: #0f172a;
  border-radius: inherit;
  padding: 3rem;
  z-index: 20;
  text-align: center;
}

@media (min-width: 768px) {
  .whitepaper-email-form,
  .whitepaper-download-link {
    padding: 4rem;
  }
}

.whitepaper-download-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
}

.whitepaper-download-icon i {
  font-size: 2rem;
  color: #a855f7;
}

.whitepaper-download-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .whitepaper-download-title {
    font-size: 1.75rem;
  }
}

.whitepaper-download-description {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.whitepaper-email-gate-form {
  max-width: 24rem;
  margin: 0 auto;
}

.whitepaper-email-input-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.whitepaper-email-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.whitepaper-email-label i {
  font-size: 1rem;
  color: #a855f7;
}

.whitepaper-email-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  color: #e2e8f0;
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  outline: none;
}

.whitepaper-email-input:focus {
  border-color: #a855f7;
  background-color: rgba(30, 41, 59, 0.7);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.whitepaper-email-input::placeholder {
  color: #64748b;
}

.whitepaper-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.9)
  );
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.whitepaper-download-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whitepaper-download-btn:hover::before {
  opacity: 1;
}

.whitepaper-download-btn:hover {
  background: linear-gradient(to right, #ffffff, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.whitepaper-download-btn span {
  position: relative;
  z-index: 1;
}

.whitepaper-download-btn i {
  font-size: 1.125rem;
  color: #a855f7;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.whitepaper-download-btn:hover i {
  transform: translateX(0.25rem);
  color: #9333ea;
}

/* Get Started Page Styles */

.get-started-section {
  position: relative;
}

.get-started-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .get-started-layout {
    grid-template-columns: 1fr 28rem;
    gap: 4rem;
  }
}

.get-started-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.get-started-header {
  max-width: 48rem;
}

.get-started-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .get-started-title {
    font-size: 3rem;
  }
}

.get-started-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.get-started-features {
  margin-top: 1rem;
}

.get-started-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .get-started-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.get-started-feature-card {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
}

.get-started-feature-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(30, 41, 59, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.4);
}

.get-started-feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.get-started-feature-icon i {
  font-size: 1.5rem;
  color: #a855f7;
}

.get-started-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.get-started-feature-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.get-started-benefits {
  margin-top: 1rem;
}

.get-started-benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.get-started-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.get-started-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.get-started-benefit-item i {
  font-size: 1.25rem;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.get-started-cta {
  margin-top: 1rem;
}

.get-started-cta-card {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(71, 85, 105, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.get-started-cta-card::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: -10rem;
  top: -10rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  filter: blur(80px);
}

.get-started-cta-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}

.get-started-cta-icon i {
  font-size: 2rem;
  color: #a855f7;
}

.get-started-cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.get-started-cta-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Form Wrapper - Sticky on Desktop */

.get-started-form-wrapper {
  position: relative;
}

@media (min-width: 1024px) {
  .get-started-form-sticky {
    position: sticky;
    top: 6rem;
  }
}

.get-started-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.get-started-form-subtitle {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.get-started-form {
  position: relative;
  z-index: 1;
}

/* Success Message */

.get-started-success {
  text-align: center;
  padding: 2rem 1rem;
}

.get-started-success-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2),
    rgba(5, 150, 105, 0.1)
  );
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
}

.get-started-success-icon i {
  font-size: 2rem;
  color: #10b981;
}

.get-started-success-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.get-started-success-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Product Sticky Navigation Styles */
.product-sticky-nav {
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

@media (min-width: 768px) {
  .product-sticky-nav {
    top: 85px;
  }
}

.product-sticky-nav-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.product-sticky-nav-container {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .product-sticky-nav-container {
    padding: 0 1rem;
  }
}

.product-sticky-nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 9999px;
  padding: 0.375rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.product-sticky-nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
}

.product-sticky-nav-pill:hover {
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(71, 85, 105, 0.3);
  transform: translateY(-1px);
}

.product-sticky-nav-pill-active {
  color: #c084fc;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

/* CRISKLE Platform Section */
.criskle-platform-section {
  position: relative;
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .criskle-platform-section {
    padding: 5rem 0 6rem;
  }
}

.criskle-platform-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.criskle-platform-inner {
  position: relative;
}

.criskle-platform-header {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.criskle-platform-eyebrow {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(30, 64, 175, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #bfdbfe;
  margin-bottom: 0.75rem;
}

.criskle-platform-title {
  margin-bottom: 0.75rem;
  background: linear-gradient(
    90deg,
    rgba(226, 232, 240, 0.6),
    rgba(248, 250, 252, 1),
    rgba(226, 232, 240, 0.6)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.criskle-platform-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

@media (min-width: 768px) {
  .criskle-platform-subtitle {
    font-size: 1.0625rem;
  }
}

.criskle-platform-hero {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .criskle-platform-hero {
    margin-bottom: 3.75rem;
  }
}

.criskle-platform-hero-card {
  position: relative;
  border-radius: 1.75rem;
  padding: 1px;
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.8), rgba(15, 23, 42, 1));
  overflow: hidden;
}

.criskle-platform-hero-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0, rgba(129, 140, 248, 0.25), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(236, 72, 153, 0.2), transparent 55%);
  opacity: 0.9;
  filter: blur(40px);
}

.criskle-platform-hero-inner {
  position: relative;
  border-radius: 1.7rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  padding: 1.25rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .criskle-platform-hero-inner {
    padding: 1.75rem;
  }
}

.criskle-platform-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.9);
}

.criskle-platform-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .criskle-platform-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .criskle-platform-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.criskle-platform-benefit-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(51, 65, 85, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
  text-align: left;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.criskle-platform-benefit-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  opacity: 0;
  background: radial-gradient(circle at top, rgba(168, 85, 247, 0.18), transparent 55%);
  transition: opacity 0.25s ease;
}

.criskle-platform-benefit-card > * {
  position: relative;
  z-index: 1;
}

.criskle-platform-benefit-card:hover {
  border-color: rgba(168, 85, 247, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
  background: rgba(15, 23, 42, 0.98);
}

.criskle-platform-benefit-card:hover::before {
  opacity: 1;
}

.criskle-platform-benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.criskle-platform-benefit-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: currentColor;
}

.criskle-platform-benefit-icon-cloud {
  background: rgba(168, 85, 247, 0.12);
  color: #c4b5fd;
  border-color: rgba(168, 85, 247, 0.6);
}

.criskle-platform-benefit-icon-security {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.6);
}

.criskle-platform-benefit-icon-ownership {
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.6);
}

.criskle-platform-benefit-icon-availability {
  background: rgba(6, 182, 212, 0.12);
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.6);
}

.criskle-platform-benefit-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin: 0 0 0.5rem;
}

.criskle-platform-benefit-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

.criskle-platform-apps {
  padding-top: 1rem;
}

.criskle-platform-apps-header {
  text-align: center;
  margin-bottom: 2rem;
}

.criskle-platform-apps-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  background: linear-gradient(
    90deg,
    rgba(226, 232, 240, 0.75),
    rgba(248, 250, 252, 1),
    rgba(226, 232, 240, 0.75)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.criskle-platform-apps-subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: #94a3b8;
}

.criskle-platform-apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .criskle-platform-apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .criskle-platform-apps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.criskle-platform-app-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.9);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}

.criskle-platform-app-card:hover {
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(15, 23, 42, 0.98);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.criskle-platform-app-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.criskle-platform-app-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
}

.criskle-platform-app-icon-purple {
  background: rgba(168, 85, 247, 0.16);
  color: #c4b5fd;
  border-color: rgba(168, 85, 247, 0.6);
}

.criskle-platform-app-icon-blue {
  background: rgba(59, 130, 246, 0.16);
  color: #bfdbfe;
  border-color: rgba(59, 130, 246, 0.6);
}

.criskle-platform-app-icon-amber {
  background: rgba(245, 158, 11, 0.16);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.6);
}

.criskle-platform-app-icon-emerald {
  background: rgba(16, 185, 129, 0.16);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.6);
}

.criskle-platform-app-icon-red {
  background: rgba(239, 68, 68, 0.16);
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.6);
}

.criskle-platform-app-icon-cyan {
  background: rgba(6, 182, 212, 0.16);
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.6);
}

.criskle-platform-app-icon-orange {
  background: rgba(249, 115, 22, 0.16);
  color: #fed7aa;
  border-color: rgba(249, 115, 22, 0.6);
}

.criskle-platform-app-icon-indigo {
  background: rgba(99, 102, 241, 0.16);
  color: #e0e7ff;
  border-color: rgba(99, 102, 241, 0.6);
}

.criskle-platform-app-icon-pink {
  background: rgba(236, 72, 153, 0.16);
  color: #f9a8d4;
  border-color: rgba(236, 72, 153, 0.6);
}

.criskle-platform-app-icon-violet {
  background: rgba(139, 92, 246, 0.16);
  color: #ddd6fe;
  border-color: rgba(139, 92, 246, 0.6);
}

.criskle-platform-app-icon-teal {
  background: rgba(20, 184, 166, 0.16);
  color: #99f6e4;
  border-color: rgba(20, 184, 166, 0.6);
}

.criskle-platform-app-icon-rose {
  background: rgba(244, 63, 94, 0.16);
  color: #fecdd3;
  border-color: rgba(244, 63, 94, 0.6);
}

.criskle-platform-app-content {
  flex: 1;
}

.criskle-platform-app-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e5e7eb;
  margin: 0 0 0.35rem;
}

.criskle-platform-app-card:hover .criskle-platform-app-title {
  color: #e9d5ff;
}

.criskle-platform-app-text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0;
}

/* CRISKLE Supply Chain - Dynamic TARA Callouts */
.criskle-dynamic-tara-callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .criskle-dynamic-tara-callouts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.criskle-dynamic-tara-callout {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.25), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.45);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.criskle-dynamic-tara-callout::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0, rgba(168, 85, 247, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.criskle-dynamic-tara-callout > * {
  position: relative;
  z-index: 1;
}

.criskle-dynamic-tara-callout:hover::before {
  opacity: 1;
}

.criskle-dynamic-tara-callout:hover {
  border-color: rgba(168, 85, 247, 0.7);
}

.criskle-dynamic-tara-callout-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.criskle-dynamic-tara-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  white-space: nowrap;
}

.criskle-dynamic-tara-pill-secondary {
  background: rgba(6, 182, 212, 0.18);
  border-color: rgba(6, 182, 212, 0.5);
  color: #cffafe;
}

.criskle-dynamic-tara-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
}

.criskle-dynamic-tara-list {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.criskle-dynamic-tara-list li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.criskle-dynamic-tara-list li:last-child {
  margin-bottom: 0;
}

.product-sticky-nav-pill-active:hover {
  color: #c084fc;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.25),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.6);
}

@media (max-width: 640px) {
  .product-sticky-nav-pills {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-sticky-nav-pills::-webkit-scrollbar {
    display: none;
  }

  .product-sticky-nav-pill {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
}

/* Sitemap Styles */
.sitemap-section {
  padding-bottom: 5rem;
}

.sitemap-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sitemap-section-block {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.sitemap-section-block:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.sitemap-section-title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.sitemap-section-title i {
  color: #a855f7;
  font-size: 1.125rem;
}

.sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sitemap-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: 0.75rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.05);
  transition: all 0.2s ease;
  font-size: 0.9375rem;
}

.sitemap-link:hover {
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(4px);
}

.sitemap-link:hover i {
  color: #a855f7;
  transform: translateX(2px);
}

.sitemap-link span {
  flex: 1;
}

.sitemap-link i {
  color: #64748b;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  margin-left: 0.75rem;
}

.sitemap-link-nested {
  padding-left: 2rem;
  font-size: 0.875rem;
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(148, 163, 184, 0.03);
}

.sitemap-link-nested:hover {
  background: rgba(30, 41, 59, 0.6);
}

.sitemap-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.1);
  margin: 1rem 0;
  padding: 0;
  border: none;
}

.sitemap-divider::before {
  content: none;
}

@media (max-width: 768px) {
  .sitemap-section-block {
    padding: 1.5rem;
  }

  .sitemap-section-title {
    font-size: 1.125rem;
  }

  .sitemap-link {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }

  .sitemap-link-nested {
    padding-left: 1.5rem;
    font-size: 0.8125rem;
  }
}

/* AI for Cybersecurity Vision Page Styles */
.ai-vision-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.ai-vision-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.ai-vision-stat:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
  transform: translateY(-4px);
}

.ai-vision-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.ai-vision-stat-label {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* AI Capabilities */
.ai-capabilities-section {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 23, 42, 0.3) 100%
  );
}

.ai-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ai-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .ai-capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.ai-capability-card {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ai-capability-card::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  left: -12rem;
  top: -12rem;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 30;
  filter: blur(100px);
}

.ai-capability-card:hover::before {
  opacity: 0.15;
}

.ai-capability-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
  background: radial-gradient(
    250px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(148, 163, 184, 0.1),
    transparent
  );
  pointer-events: none;
}

.ai-capability-card:hover::after {
  opacity: 1;
}

.ai-capability-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
  transform: translateY(-4px);
}

.ai-capability-card > * {
  position: relative;
  z-index: 20;
}

.ai-capability-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  color: #a855f7;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.ai-capability-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.ai-capability-description {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.ai-capability-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.ai-capability-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 0.5rem;
  color: #c084fc;
  font-size: 0.75rem;
  font-weight: 500;
}

/* AI Transformation */
.ai-transformation-section {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.3) 0%,
    transparent 100%
  );
}

.ai-transformation-item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.ai-transformation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 9999px;
  color: #c084fc;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.ai-transformation-badge i {
  font-size: 1rem;
}

.ai-transformation-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.ai-transformation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-transformation-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ai-transformation-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: bold;
}

.ai-transformation-before {
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.3);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.ai-transformation-after {
  padding: 1.5rem;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.ai-transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .ai-transformation-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
}

/* AI Roadmap */
.ai-roadmap-section {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 23, 42, 0.3) 100%
  );
}

.ai-roadmap-timeline {
  position: relative;
  padding-left: 2rem;
}

.ai-roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #a855f7, rgba(168, 85, 247, 0.3));
}

.ai-roadmap-phase {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
}

.ai-roadmap-phase::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #a855f7;
  border-radius: 50%;
  border: 3px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.2);
}

.ai-roadmap-phase-vision {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-left: -3rem;
  margin-top: 2rem;
}

.ai-roadmap-phase-header {
  margin-bottom: 1.5rem;
}

.ai-roadmap-phase-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.5rem;
  color: #c084fc;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.ai-roadmap-phase-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
}

.ai-roadmap-phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-roadmap-phase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ai-roadmap-phase-list li i {
  color: #22c55e;
  font-size: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.ai-roadmap-vision-text {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* AI Impact */
.ai-impact-section {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.3) 0%,
    transparent 100%
  );
}

.ai-impact-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.ai-impact-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
  transform: translateY(-4px);
}

.ai-impact-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  color: #a855f7;
  font-size: 2rem;
}

.ai-impact-value {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.ai-impact-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.ai-impact-description {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ai-impact-cta {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.ai-impact-cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.ai-impact-cta-text {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .ai-vision-hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .ai-vision-stat-value {
    font-size: 2rem;
  }

  .ai-capability-card,
  .ai-transformation-item,
  .ai-roadmap-phase,
  .ai-impact-card {
    padding: 1.5rem;
  }

  .ai-roadmap-timeline {
    padding-left: 1.5rem;
  }

  .ai-roadmap-phase {
    padding-left: 2rem;
  }

  .ai-roadmap-phase-vision {
    margin-left: -2rem;
  }

  .ai-impact-value {
    font-size: 2.5rem;
  }

  .ai-impact-cta-title {
    font-size: 1.5rem;
  }
}

/* Vulnerability Report Styles */
.vulnerability-report-section {
  padding-bottom: 5rem;
}

.vulnerability-info-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.vulnerability-info-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.vulnerability-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.vulnerability-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  color: #a855f7;
  font-size: 1.25rem;
}

.vulnerability-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
}

.vulnerability-info-content {
  color: #cbd5e1;
}

.vulnerability-info-text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.vulnerability-info-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a855f7;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.vulnerability-info-email:hover {
  color: #c084fc;
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-1px);
}

.vulnerability-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vulnerability-info-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.vulnerability-info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: bold;
}

.vulnerability-form-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.vulnerability-form-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.vulnerability-form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.vulnerability-form-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  color: #a855f7;
  font-size: 2rem;
}

.vulnerability-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.vulnerability-form-subtitle {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.vulnerability-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vulnerability-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vulnerability-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
}

.vulnerability-form-label i {
  color: #a855f7;
  font-size: 1rem;
}

.vulnerability-form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.75rem;
  color: #e2e8f0;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.vulnerability-form-input:focus {
  outline: none;
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(30, 41, 59, 0.7);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.vulnerability-form-input::placeholder {
  color: #64748b;
}

.vulnerability-form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.vulnerability-form-submit {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.vulnerability-form-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  color: #c084fc;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vulnerability-form-btn:hover:not(:disabled) {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.vulnerability-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.vulnerability-form-btn i {
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}

.vulnerability-form-btn:hover:not(:disabled) i {
  transform: translateX(2px);
}

.vulnerability-success-message {
  text-align: center;
  padding: 2rem;
}

.vulnerability-success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.2),
    rgba(22, 163, 74, 0.15)
  );
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 1rem;
  color: #22c55e;
  font-size: 2rem;
}

.vulnerability-success-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.vulnerability-success-text {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .vulnerability-info-card,
  .vulnerability-form-card {
    padding: 1.5rem;
  }

  .vulnerability-form-title {
    font-size: 1.25rem;
  }

  .vulnerability-form-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

/* CVE Database Search Engine Styles */
.cve-database-section {
  padding: 2rem 0 4rem;
  min-height: 80vh;
}

.cve-database-hero {
  margin-bottom: 3rem;
}

.cve-database-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cve-database-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cve-database-title {
    font-size: 3rem;
  }
}

.cve-database-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Search Box */
.cve-search-container {
  max-width: 48rem;
  margin: 0 auto;
}

.cve-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cve-search-box:focus-within {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.cve-search-icon {
  color: #94a3b8;
  font-size: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.cve-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e2e8f0;
  font-size: 1rem;
  padding: 0.5rem 0;
}

.cve-search-input::placeholder {
  color: #64748b;
}

.cve-search-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.5rem;
  color: #c084fc;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.75rem;
}

.cve-search-button:hover {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  transform: translateY(-1px);
}

.cve-search-suggestions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: center;
}

.cve-search-suggestion-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.cve-search-suggestion-pill {
  padding: 0.375rem 0.875rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 9999px;
  color: #cbd5e1;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cve-search-suggestion-pill:hover {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}

/* Stats Bar */
.cve-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cve-stats-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cve-stat-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cve-stat-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.cve-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .cve-stat-value {
    font-size: 2rem;
  }
}

.cve-stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Content Layout */
.cve-content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cve-content-layout {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

/* Results Column */
.cve-results-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cve-results-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cve-results-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cve-results-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}

.cve-results-filters {
  display: flex;
  gap: 0.75rem;
}

.cve-filter-select {
  padding: 0.5rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  color: #e2e8f0;
  font-size: 0.875rem;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.cve-filter-select:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.cve-filter-select:focus {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

/* Results Container */
.cve-results-container {
  min-height: 400px;
}

.cve-results-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cve-result-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cve-result-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.cve-result-card-link:hover .cve-result-card {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.cve-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cve-result-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 1.125rem;
  font-weight: 600;
  color: #a855f7;
}

.cve-severity-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cve-severity-critical {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.cve-severity-high {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fdba74;
}

.cve-severity-medium {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fde047;
}

.cve-severity-low {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.cve-result-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.cve-result-description {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.cve-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-result-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.cve-result-meta-item i {
  color: #a855f7;
  font-size: 1rem;
}

.cve-result-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-result-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a855f7;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.cve-result-card-link:hover .cve-result-link {
  color: #c084fc;
  gap: 0.75rem;
}

/* Empty State */
.cve-results-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cve-results-empty-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 50%;
  color: #64748b;
  font-size: 2rem;
}

.cve-results-empty-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
}

.cve-results-empty-hint {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin: 0;
}

/* Loading State */
.cve-results-loading {
  text-align: center;
  padding: 4rem 2rem;
}

.cve-results-loading-spinner {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(71, 85, 105, 0.3);
  border-top-color: #a855f7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cve-results-loading p {
  color: #94a3b8;
  font-size: 0.9375rem;
  margin: 0;
}

/* Pagination */
.cve-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cve-pagination-btn:hover:not(:disabled) {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}

.cve-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cve-pagination-info {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Sidebar */
.cve-sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cve-sidebar-section {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
}

.cve-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-sidebar-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}

.cve-sidebar-title i {
  color: #a855f7;
  font-size: 1.25rem;
}

.cve-sidebar-link {
  font-size: 0.875rem;
  color: #a855f7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cve-sidebar-link:hover {
  color: #c084fc;
}

.cve-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Recent Findings */
.cve-recent-item {
  display: block;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.cve-recent-item:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(4px);
}

.cve-recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cve-recent-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a855f7;
}

.cve-recent-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.cve-recent-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.cve-recent-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.cve-recent-score {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
}

/* News Items */
.cve-news-item {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cve-news-date {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cve-news-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.cve-news-excerpt {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .cve-database-title {
    font-size: 2rem;
  }

  .cve-search-box {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cve-search-button {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .cve-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CVE View/Detail Page Styles */
.cve-view-section {
  padding: 2rem 0 4rem;
}

.cve-view-back {
  margin-bottom: 2rem;
}

.cve-view-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cve-view-back-link:hover {
  color: #a855f7;
  gap: 0.75rem;
}

.cve-view-back-link i {
  transition: transform 0.2s ease;
}

.cve-view-back-link:hover i {
  transform: translateX(-4px);
}

/* Hero Section */
.cve-view-hero {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cve-view-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: #a855f7;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .cve-view-id {
    font-size: 2rem;
  }
}

.cve-view-severity-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cve-view-cvss {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  padding: 0.5rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
}

.cve-view-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .cve-view-title {
    font-size: 2.5rem;
  }
}

.cve-view-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.cve-view-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cve-view-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #94a3b8;
}

.cve-view-meta-item i {
  color: #a855f7;
  font-size: 1rem;
}

/* Layout */
.cve-view-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cve-view-layout {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

/* Main Content */
.cve-view-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cve-view-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.cve-view-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.05);
}

.cve-view-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-view-card-title i {
  color: #a855f7;
  font-size: 1.5rem;
}

.cve-view-card-content {
  color: #cbd5e1;
  line-height: 1.7;
}

.cve-view-card-content p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.cve-view-card-content p:last-child {
  margin-bottom: 0;
}

/* Affected Products */
.cve-view-affected {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-view-affected-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.cve-view-affected-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cve-view-affected-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cve-view-affected-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Impact Assessment */
.cve-view-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cve-view-impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cve-view-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.75rem;
}

.cve-view-impact-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.cve-view-impact-icon.cve-view-impact-critical {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.cve-view-impact-content {
  flex: 1;
}

.cve-view-impact-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cve-view-impact-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
}

.cve-view-impact-desc {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

.cve-view-impact-summary {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-view-impact-summary-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.cve-view-impact-summary p {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.cve-view-impact-summary strong {
  color: #e2e8f0;
  font-weight: 600;
}

/* Remediation */
.cve-view-remediation-steps {
  margin-bottom: 2rem;
}

.cve-view-remediation-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.cve-view-remediation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cve-view-remediation-list li {
  position: relative;
  padding-left: 3rem;
  counter-increment: step-counter;
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.cve-view-remediation-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  color: #c084fc;
  font-weight: 600;
  font-size: 0.875rem;
}

.cve-view-remediation-list li strong {
  color: #e2e8f0;
  font-weight: 600;
}

.cve-view-remediation-workaround {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-view-remediation-workaround-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cve-view-remediation-workaround-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cve-view-remediation-workaround-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: bold;
}

.cve-view-remediation-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 0.5rem;
  color: #fde047;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cve-view-remediation-note strong {
  color: #fde047;
  font-weight: 600;
}

.cve-view-remediation-resources {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-view-resources-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cve-view-resource-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.5rem;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.cve-view-resource-link:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
  transform: translateX(4px);
}

.cve-view-resource-link i {
  color: #a855f7;
  font-size: 1.125rem;
}

/* Related CVEs */
.cve-view-related-desc {
  font-size: 0.9375rem;
  color: #cbd5e1;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.cve-view-related-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cve-view-related-item {
  display: block;
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.cve-view-related-item:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(4px);
}

.cve-view-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cve-view-related-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #a855f7;
}

.cve-view-related-title {
  font-size: 1rem;
  font-weight: 500;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.cve-view-related-meta {
  font-size: 0.8125rem;
  color: #94a3b8;
}

/* Sidebar */
.cve-view-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cve-view-sidebar-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
}

.cve-view-sidebar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.cve-view-sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cve-view-sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

.cve-view-sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cve-view-sidebar-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cve-view-sidebar-value {
  font-size: 0.9375rem;
  color: #e2e8f0;
  font-weight: 500;
  word-break: break-word;
}

.cve-view-sidebar-vector {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.8125rem;
  color: #cbd5e1;
}

.cve-severity-critical-text {
  color: #fca5a5;
}

.cve-view-reference-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

.cve-view-reference-link:last-child {
  border-bottom: none;
}

.cve-view-reference-link:hover {
  color: #a855f7;
  transform: translateX(4px);
}

.cve-view-reference-link i {
  color: #a855f7;
  font-size: 1.125rem;
}

/* CTA Card */
.cve-view-cta-card {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 6rem;
  z-index: 10;
}

@media (max-width: 1023px) {
  .cve-view-cta-card {
    position: relative;
    top: 0;
  }
}

.cve-view-cta-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  color: #a855f7;
  font-size: 2rem;
}

.cve-view-cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.cve-view-cta-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.cve-view-cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.cve-view-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.cve-view-cta-feature i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

.cve-view-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cve-view-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.cve-view-cta-primary {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.cve-view-cta-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.cve-view-cta-secondary {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(71, 85, 105, 0.3);
  color: #cbd5e1;
}

.cve-view-cta-secondary:hover {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .cve-view-title {
    font-size: 1.75rem;
  }

  .cve-view-id {
    font-size: 1.5rem;
  }

  .cve-view-impact-grid {
    grid-template-columns: 1fr;
  }

  .cve-view-card {
    padding: 1.5rem;
  }
}

/* SBOM Analysis Tool Styles */
.sbom-analysis-section {
  padding: 2rem 0 4rem;
}

.sbom-analysis-hero {
  margin-bottom: 3rem;
  text-align: center;
}

.sbom-analysis-header {
  max-width: 48rem;
  margin: 0 auto;
}

.sbom-analysis-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .sbom-analysis-title {
    font-size: 3rem;
  }
}

.sbom-analysis-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Layout */
.sbom-analysis-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .sbom-analysis-layout {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.sbom-analysis-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
  width: 100%;
}

.sbom-results-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.sbom-results-container .sbom-summary-card,
.sbom-results-container .sbom-components-card,
.sbom-results-container .sbom-vulnerabilities-card,
.sbom-results-container .sbom-remediation-card {
  margin: 0;
}

/* Upload Card */
.sbom-upload-card,
.sbom-summary-card,
.sbom-components-card,
.sbom-vulnerabilities-card,
.sbom-remediation-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  margin: 0;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.sbom-upload-card:hover,
.sbom-summary-card:hover,
.sbom-components-card:hover,
.sbom-vulnerabilities-card:hover,
.sbom-remediation-card:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.05);
}

.sbom-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.sbom-card-title i {
  color: #a855f7;
  font-size: 1.5rem;
}

.sbom-card-content {
  color: #cbd5e1;
}

/* Upload Area */
.sbom-upload-area {
  position: relative;
  border: 2px dashed rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(30, 41, 59, 0.3);
}

.sbom-upload-area:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(30, 41, 59, 0.5);
}

.sbom-upload-area-dragover {
  border-color: rgba(168, 85, 247, 0.7);
  background: rgba(168, 85, 247, 0.1);
}

.sbom-file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.sbom-upload-icon {
  font-size: 3rem;
  color: #a855f7;
  margin-bottom: 1rem;
}

.sbom-upload-text {
  margin-bottom: 1.5rem;
}

.sbom-upload-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
}

.sbom-upload-subtitle {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin: 0;
}

.sbom-upload-formats {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.sbom-upload-format-label {
  font-size: 0.875rem;
  color: #94a3b8;
  display: block;
  margin-bottom: 0.75rem;
}

.sbom-upload-formats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.sbom-upload-format {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  color: #cbd5e1;
}

/* Uploaded Files */
.sbom-uploaded-files {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.sbom-uploaded-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.sbom-uploaded-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sbom-uploaded-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.5rem;
}

.sbom-uploaded-file-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.sbom-uploaded-file-info i {
  font-size: 1.5rem;
  color: #a855f7;
}

.sbom-uploaded-file-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 0.25rem;
}

.sbom-uploaded-file-size {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.sbom-uploaded-file-remove {
  padding: 0.5rem;
  background: transparent;
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.375rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sbom-uploaded-file-remove:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Summary Grid */
.sbom-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .sbom-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sbom-summary-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.75rem;
}

.sbom-summary-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sbom-summary-icon.sbom-summary-components {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.sbom-summary-icon.sbom-summary-vulnerabilities {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.sbom-summary-icon.sbom-summary-critical {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fdba74;
}

.sbom-summary-icon.sbom-summary-licenses {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.sbom-summary-content {
  flex: 1;
  min-width: 0;
}

.sbom-summary-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.25rem;
}

.sbom-summary-label {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Components List */
.sbom-components-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sbom-component-item {
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.sbom-component-item:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(168, 85, 247, 0.3);
}

.sbom-component-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sbom-component-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
}

.sbom-component-version {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
  color: #94a3b8;
  padding: 0.25rem 0.75rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 0.375rem;
}

.sbom-component-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sbom-component-license {
  font-size: 0.875rem;
  color: #cbd5e1;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.375rem;
}

.sbom-component-vuln {
  font-size: 0.875rem;
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.375rem;
}

.sbom-component-safe {
  font-size: 0.875rem;
  color: #86efac;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.375rem;
}

/* Vulnerabilities */
.sbom-vulnerabilities-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.sbom-filter-btn {
  padding: 0.5rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sbom-filter-btn:hover {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}

.sbom-filter-btn.sbom-filter-active {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
}

.sbom-vulnerabilities-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sbom-vulnerability-item {
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.sbom-vulnerability-item:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(168, 85, 247, 0.3);
}

.sbom-vulnerability-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sbom-vulnerability-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #a855f7;
}

.sbom-vulnerability-component {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.sbom-vulnerability-description {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sbom-vulnerability-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(71, 85, 105, 0.2);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sbom-vulnerability-meta span {
  font-size: 0.875rem;
  color: #94a3b8;
}

.sbom-vulnerability-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a855f7;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sbom-vulnerability-link:hover {
  color: #c084fc;
  gap: 0.75rem;
}

/* Remediation */
.sbom-remediation-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sbom-remediation-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.2);
  border-radius: 0.75rem;
}

.sbom-remediation-number {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  color: #c084fc;
  font-weight: 600;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.sbom-remediation-content {
  flex: 1;
}

.sbom-remediation-action {
  font-size: 0.9375rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.sbom-remediation-priority {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sbom-priority-critical {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.sbom-priority-high {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #fdba74;
}

.sbom-priority-medium {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #fde047;
}

/* Loading State */
.sbom-loading {
  text-align: center;
  padding: 4rem 2rem;
}

.sbom-loading-spinner {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(71, 85, 105, 0.3);
  border-top-color: #a855f7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.sbom-loading p {
  color: #94a3b8;
  font-size: 0.9375rem;
  margin: 0;
}

/* Sidebar */
.sbom-analysis-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sbom-info-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
}

.sbom-sidebar-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.sbom-sidebar-title i {
  color: #a855f7;
  font-size: 1.25rem;
}

.sbom-sidebar-content {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.sbom-sidebar-content p {
  margin: 0 0 1rem 0;
}

.sbom-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sbom-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.sbom-info-item i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.sbom-formats-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sbom-format-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.sbom-format-item i {
  color: #a855f7;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* CTA Card */
.sbom-cta-card {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 6rem;
  z-index: 10;
}

@media (max-width: 1023px) {
  .sbom-cta-card {
    position: relative;
    top: 0;
  }
}

.sbom-cta-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  color: #a855f7;
  font-size: 2rem;
}

.sbom-cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.sbom-cta-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.sbom-cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.sbom-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.sbom-cta-feature i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

.sbom-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sbom-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.sbom-cta-primary {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.sbom-cta-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.sbom-cta-secondary {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(71, 85, 105, 0.3);
  color: #cbd5e1;
}

.sbom-cta-secondary:hover {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .sbom-analysis-title {
    font-size: 2rem;
  }

  .sbom-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sbom-upload-card,
  .sbom-summary-card,
  .sbom-components-card,
  .sbom-vulnerabilities-card,
  .sbom-remediation-card {
    padding: 1.5rem;
  }
}

/* IP/DNS Health Checkup Tool Styles */
.ip-check-section {
  padding: 2rem 0 4rem;
}

.ip-check-hero {
  margin-bottom: 3rem;
  text-align: center;
}

.ip-check-header {
  max-width: 48rem;
  margin: 0 auto;
}

.ip-check-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .ip-check-title {
    font-size: 3rem;
  }
}

.ip-check-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.ip-check-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ip-check-layout {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.ip-check-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ip-check-card,
.ip-check-summary-card,
.ip-check-analysis-card,
.ip-check-threats-card,
.ip-check-abuse-card,
.ip-check-ddos-card,
.ip-check-related-card,
.ip-check-blocking-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  margin: 0;
  transition: all 0.3s ease;
}

.ip-check-card:hover,
.ip-check-summary-card:hover,
.ip-check-analysis-card:hover,
.ip-check-threats-card:hover,
.ip-check-abuse-card:hover,
.ip-check-ddos-card:hover,
.ip-check-related-card:hover,
.ip-check-blocking-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(30, 41, 59, 0.8);
}

.ip-check-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ip-check-card-title i {
  color: #a855f7;
  font-size: 1.5rem;
}

.ip-check-card-content {
  color: #cbd5e1;
  margin: 0;
  padding: 0;
}

.ip-check-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ip-check-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.ip-check-input-wrapper:focus-within {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(15, 23, 42, 0.8);
}

.ip-check-input-icon {
  color: #64748b;
  font-size: 1.25rem;
}

.ip-check-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-size: 1rem;
  outline: none;
}

.ip-check-input::placeholder {
  color: #64748b;
}

.ip-check-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border: none;
  border-radius: 0.5rem;
  padding: 0.625rem 1.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ip-check-button:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  transform: translateY(-1px);
}

.ip-check-button i {
  transition: transform 0.3s ease;
}

.ip-check-button:hover i {
  transform: translateX(2px);
}

.ip-check-examples {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ip-check-examples-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.ip-check-example {
  background: rgba(51, 65, 85, 0.3);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ip-check-example:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
  color: #e2e8f0;
}

.ip-check-results-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
}

.ip-check-results-container .ip-check-summary-card,
.ip-check-results-container .ip-check-analysis-card,
.ip-check-results-container .ip-check-threats-card,
.ip-check-results-container .ip-check-abuse-card,
.ip-check-results-container .ip-check-ddos-card,
.ip-check-results-container .ip-check-related-card,
.ip-check-results-container .ip-check-blocking-card {
  margin: 2rem 0;
}

.ip-check-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.ip-check-target {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
}

.ip-check-target i {
  color: #a855f7;
  font-size: 1.5rem;
}

.ip-check-risk-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ip-check-risk-high {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ip-check-risk-critical {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.ip-check-risk-medium {
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.ip-check-risk-low {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.ip-check-risk-score {
  text-align: right;
}

.ip-check-risk-score-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fca5a5;
  line-height: 1;
}

.ip-check-risk-score-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.ip-check-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .ip-check-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ip-check-summary-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.ip-check-summary-item:hover {
  background: rgba(15, 23, 42, 0.6);
}

.ip-check-summary-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.5rem;
}

.ip-check-summary-icon.ip-check-summary-threats {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.ip-check-summary-icon.ip-check-summary-abuse {
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
}

.ip-check-summary-icon.ip-check-summary-ddos {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.ip-check-summary-icon.ip-check-summary-ips {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.ip-check-summary-content {
  flex: 1;
}

.ip-check-summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}

.ip-check-summary-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.ip-check-analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .ip-check-analysis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ip-check-analysis-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ip-check-analysis-label {
  font-size: 0.875rem;
  color: #94a3b8;
}

.ip-check-analysis-value {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
}

.ip-check-analysis-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ip-check-flag {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.ip-check-flag-warning {
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.ip-check-flag-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ip-check-flag-info {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.ip-check-dns-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(51, 65, 85, 0.5);
}

.ip-check-dns-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.ip-check-dns-records {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ip-check-dns-record {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0.5rem;
}

.ip-check-dns-type {
  font-weight: 600;
  color: #a855f7;
  min-width: 3rem;
}

.ip-check-dns-value {
  color: #cbd5e1;
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
}

.ip-check-ssl-valid {
  color: #86efac;
}

.ip-check-ssl-invalid {
  color: #fca5a5;
}

.ip-check-threats-list,
.ip-check-abuse-list,
.ip-check-ddos-list,
.ip-check-related-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ip-check-threat-item,
.ip-check-abuse-item,
.ip-check-ddos-item,
.ip-check-related-item {
  padding: 1rem;
  margin: 0;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0.75rem;
  border-left: 3px solid rgba(168, 85, 247, 0.5);
  transition: all 0.3s ease;
}

.ip-check-threat-item:hover,
.ip-check-abuse-item:hover,
.ip-check-ddos-item:hover,
.ip-check-related-item:hover {
  background: rgba(15, 23, 42, 0.6);
  border-left-color: #a855f7;
}

.ip-check-threat-header,
.ip-check-abuse-header,
.ip-check-ddos-header,
.ip-check-related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.ip-check-threat-type,
.ip-check-abuse-type,
.ip-check-ddos-type {
  font-weight: 600;
  color: #e2e8f0;
}

.ip-check-threat-severity,
.ip-check-abuse-status {
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ip-check-severity-critical {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.ip-check-severity-high {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ip-check-severity-medium {
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.ip-check-status-active {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.ip-check-status-resolved {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.ip-check-threat-meta,
.ip-check-abuse-meta,
.ip-check-ddos-meta,
.ip-check-related-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  padding: 0;
}

.ip-check-threat-meta span,
.ip-check-abuse-meta span,
.ip-check-ddos-meta span,
.ip-check-related-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.ip-check-ddos-duration {
  padding: 0.25rem 0.75rem;
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.ip-check-related-ip {
  font-family: "Courier New", monospace;
  font-weight: 600;
  color: #e2e8f0;
}

.ip-check-related-risk {
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ip-check-blocking-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.ip-check-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ip-check-tab:hover {
  color: #cbd5e1;
}

.ip-check-tab-active {
  color: #a855f7;
  border-bottom-color: #a855f7;
}

.ip-check-blocking-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.ip-check-blocking-commands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ip-check-command {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 0.5rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.ip-check-command code {
  flex: 1;
  color: #cbd5e1;
  font-family: "Courier New", monospace;
  font-size: 0.875rem;
  word-break: break-all;
}

.ip-check-copy-btn {
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.375rem;
  padding: 0.5rem;
  color: #c084fc;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-check-copy-btn:hover {
  background: rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.5);
}

.ip-check-blocking-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.5rem;
  color: #93c5fd;
  font-size: 0.875rem;
}

.ip-check-blocking-note i {
  color: #60a5fa;
  margin-top: 0.125rem;
}

.ip-check-blocking-note code {
  background: rgba(15, 23, 42, 0.6);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: "Courier New", monospace;
  color: #cbd5e1;
}

.ip-check-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.ip-check-loading-spinner {
  width: 3rem;
  height: 3rem;
  border: 3px solid rgba(168, 85, 247, 0.2);
  border-top-color: #a855f7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.ip-check-loading p {
  color: #cbd5e1;
  font-size: 1rem;
}

.ip-check-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ip-check-info-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.ip-check-info-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.ip-check-sidebar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ip-check-sidebar-title i {
  color: #a855f7;
}

.ip-check-sidebar-content {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
}

.ip-check-sidebar-content p {
  margin: 0 0 1rem 0;
}

.ip-check-info-list,
.ip-check-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ip-check-info-item,
.ip-check-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ip-check-info-item i,
.ip-check-feature-item i {
  color: #a855f7;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.ip-check-cta-card {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1) 0%,
    rgba(168, 85, 247, 0.1) 100%
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 6rem;
  z-index: 10;
}

@media (max-width: 1023px) {
  .ip-check-cta-card {
    position: relative;
    top: 0;
  }
}

.ip-check-cta-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  font-size: 2rem;
  color: #c084fc;
}

.ip-check-cta-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
}

.ip-check-cta-text {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.ip-check-cta-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.ip-check-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.ip-check-cta-feature i {
  color: #a855f7;
  flex-shrink: 0;
}

.ip-check-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ip-check-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ip-check-cta-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: #ffffff;
}

.ip-check-cta-primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  transform: translateY(-1px);
}

.ip-check-cta-secondary {
  background: rgba(51, 65, 85, 0.5);
  color: #cbd5e1;
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.ip-check-cta-secondary:hover {
  background: rgba(51, 65, 85, 0.7);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .ip-check-title {
    font-size: 2rem;
  }

  .ip-check-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ip-check-summary-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .ip-check-card,
  .ip-check-summary-card,
  .ip-check-analysis-card,
  .ip-check-threats-card,
  .ip-check-abuse-card,
  .ip-check-ddos-card,
  .ip-check-related-card,
  .ip-check-blocking-card {
    padding: 1.5rem;
  }

  .ip-check-analysis-grid {
    grid-template-columns: 1fr;
  }
}

/* Partners Section Styles */
.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 2.5rem 0;
  position: relative;
  padding-bottom: 1rem;
}

.partners-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 25rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgb(52 79 145), transparent);
}

@media (min-width: 768px) {
  .partners-title {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

.partners-container {
  display: inline-flex;
  width: 100%;
  flex-wrap: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 128px,
    black calc(100% - 128px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    black 128px,
    black calc(100% - 128px),
    transparent 100%
  );
}

.partners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: infinite-scroll 30s linear infinite;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .partners-list {
    justify-content: flex-start;
  }
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.partners-item {
  margin: 0 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partners-item:hover {
  transform: scale(1.05);
}

.partners-logo {
  max-width: none;
  height: auto;
  width: auto;
  max-height: 3rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .partners-logo {
    max-height: 4rem;
  }
}

.partners-item:hover .partners-logo {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 767px) {
  .partners-container {
    mask-image: linear-gradient(
      to right,
      transparent 0,
      black 64px,
      black calc(100% - 64px),
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      black 64px,
      black calc(100% - 64px),
      transparent 100%
    );
  }

  .partners-item {
    margin: 0 1.5rem;
  }

  .partners-logo {
    max-height: 2.5rem;
  }
}

/* Team Member Styles */
.team-member-avatar {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.3);
  transition: all 0.3s ease;
}

.team-member-card:hover .team-member-avatar {
  border-color: rgba(168, 85, 247, 0.6);
  transform: scale(1.05);
}

.team-member-card {
  transition: transform 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-2px);
}

/* Team Modal Styles */
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.team-modal-active {
  opacity: 1;
  visibility: visible;
}

.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.team-modal-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.95),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.team-modal-active .team-modal-content {
  transform: scale(1) translateY(0);
}

.team-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.team-modal-close:hover {
  background: rgba(30, 41, 59, 1);
  border-color: rgba(168, 85, 247, 0.5);
  color: #e2e8f0;
  transform: rotate(90deg);
}

.team-modal-close i {
  font-size: 1.25rem;
}

.team-modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.team-modal-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.team-modal-header-text {
  flex: 1;
}

.team-modal-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.team-modal-role {
  font-size: 1rem;
  color: #a855f7;
  margin: 0;
  font-weight: 500;
}

.team-modal-body {
  padding: 1.5rem 2rem 2rem;
}

.team-modal-bio {
  margin-bottom: 2rem;
}

.team-modal-bio p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.team-modal-expertise {
  margin-bottom: 2rem;
}

.team-modal-expertise-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.team-modal-expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.team-modal-expertise-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  color: #c084fc;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.team-modal-expertise-tag:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

.team-modal-companies {
  margin-bottom: 2rem;
}

.team-modal-companies-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.team-modal-companies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.team-modal-company-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(71, 85, 105, 0.2);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 9999px;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.team-modal-company-tag:hover {
  background: rgba(71, 85, 105, 0.3);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
  transform: translateY(-2px);
}

.team-modal-actions {
  display: flex;
  gap: 1rem;
}

.team-modal-linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.5rem;
  color: #c084fc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.team-modal-linkedin-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.team-modal-linkedin-btn i {
  font-size: 1.25rem;
}

@media (max-width: 640px) {
  .team-modal-content {
    max-width: 100%;
    border-radius: 1rem;
    max-height: 95vh;
  }

  .team-modal-header {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .team-modal-avatar {
    width: 64px;
    height: 64px;
  }

  .team-modal-name {
    font-size: 1.25rem;
  }

  .team-modal-body {
    padding: 1.5rem;
  }

  .team-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
  }
}

/* Mission & Vision Section Styles */
.mission-vision-pillar {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 2rem 1.5rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-vision-pillar:hover {
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
}

.mission-vision-pillar-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  color: #c084fc;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.mission-vision-pillar:hover .mission-vision-pillar-icon {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.mission-vision-pillar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
}

.mission-vision-pillar-text {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.mission-vision-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.mission-vision-feature:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateX(4px);
}

.mission-vision-feature-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  color: #c084fc;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.mission-vision-feature:hover .mission-vision-feature-icon {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  transform: scale(1.05);
}

.mission-vision-feature-content {
  flex: 1;
}

.mission-vision-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
}

.mission-vision-feature-text {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .mission-vision-pillar {
    min-width: 100%;
    max-width: 100%;
  }

  .mission-vision-feature {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .mission-vision-feature-icon {
    margin: 0 auto;
  }
}

/* Careers Page Styles */
/* Careers Section Styles */
.careers-section {
  position: relative;
  padding: 2rem 0 4rem;
}

.careers-hero {
  margin-bottom: 3rem;
}

/* Careers Filters */
.careers-filters {
  margin-bottom: 3rem;
}

.careers-filters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
}

.careers-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 9999px;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.careers-filter-pill i {
  font-size: 0.875rem;
}

.careers-filter-pill:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(168, 85, 247, 0.4);
  color: #e2e8f0;
  transform: translateY(-2px);
}

.careers-filter-pill.active {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: #c084fc;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

/* Careers Grid */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .careers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .careers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Job Card */
.careers-job-card {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.careers-job-card-inner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.6),
    rgba(15, 23, 42, 0.8)
  );
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

.careers-job-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.careers-job-card-inner:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.6);
}

.careers-job-card-inner:hover::before {
  opacity: 1;
}

.careers-job-header {
  margin-bottom: 1rem;
}

.careers-job-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.careers-job-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.careers-job-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.careers-job-type-fulltime {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.careers-job-type-contract {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.careers-job-type-badge i {
  font-size: 0.75rem;
}

.careers-job-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.careers-job-location i {
  font-size: 0.875rem;
  color: #a855f7;
}

.careers-job-description {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  flex: 1;
}

.careers-job-requirements {
  margin-bottom: 1.25rem;
}

.careers-job-requirements-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.careers-job-requirements-label i {
  font-size: 0.875rem;
  color: #a855f7;
}

.careers-job-requirements-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.careers-job-requirement-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: rgba(71, 85, 105, 0.3);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 0.5rem;
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 500;
}

.careers-job-more-tag {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.careers-job-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.careers-job-info-btn,
.careers-job-apply-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.careers-job-info-btn {
  background: rgba(71, 85, 105, 0.3);
  border-color: rgba(71, 85, 105, 0.4);
  color: #cbd5e1;
}

.careers-job-info-btn:hover {
  background: rgba(71, 85, 105, 0.5);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
  transform: translateY(-2px);
}

.careers-job-apply-btn {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.careers-job-apply-btn:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.careers-job-info-btn i,
.careers-job-apply-btn i {
  font-size: 1rem;
}

/* Empty State */
.careers-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.careers-empty-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50%;
  color: #a855f7;
}

.careers-empty-icon i {
  font-size: 2.5rem;
}

.careers-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.75rem 0;
}

.careers-empty-text {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto;
}

/* Job Modal Styles */
.job-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

.job-modal-active {
  opacity: 1;
  visibility: visible;
}

.job-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.job-modal-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.95),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1.5rem;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.job-modal-active .job-modal-content {
  transform: scale(1) translateY(0);
}

.job-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.job-modal-close:hover {
  background: rgba(30, 41, 59, 1);
  border-color: rgba(168, 85, 247, 0.5);
  color: #e2e8f0;
  transform: rotate(90deg);
}

.job-modal-close i {
  font-size: 1.25rem;
}

.job-modal-header {
  padding: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.job-modal-header-content {
  padding-right: 3rem;
}

.job-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 9999px;
  color: #c084fc;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.job-modal-badge i {
  font-size: 0.875rem;
}

.job-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.job-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-modal-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

.job-modal-meta-item i {
  font-size: 0.875rem;
  color: #a855f7;
}

.job-modal-body {
  padding: 2rem;
}

.job-modal-section {
  margin-bottom: 2rem;
}

.job-modal-section:last-child {
  margin-bottom: 0;
}

.job-modal-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 1rem 0;
}

.job-modal-section-title i {
  font-size: 1.125rem;
  color: #a855f7;
}

.job-modal-section-text {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.9375rem;
  margin: 0;
}

.job-modal-requirements-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.job-modal-requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.job-modal-requirement-item i {
  font-size: 1rem;
  color: #86efac;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.job-modal-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.job-modal-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  color: #c084fc;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.job-modal-apply-btn:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(168, 85, 247, 0.3);
}

.job-modal-apply-btn i {
  font-size: 1.25rem;
}

@media (max-width: 640px) {
  .careers-grid {
    grid-template-columns: 1fr;
  }

  .careers-job-actions {
    flex-direction: column;
  }

  .job-modal-content {
    max-width: 100%;
    margin: 1rem;
    border-radius: 1rem;
  }

  .job-modal-header,
  .job-modal-body {
    padding: 1.5rem;
  }

  .job-modal-title {
    font-size: 1.5rem;
  }

  .job-modal-header-content {
    padding-right: 2.5rem;
  }
}

/* Header Site Switcher */
.header-site-switcher-wrapper {
  margin-left: 1rem;
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .header-site-switcher-wrapper {
    display: block;
  }
}

.header-site-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(71, 85, 105, 0.8);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.7), 0 0 0 1px rgba(15, 23, 42, 0.9);
  transition: all 0.25s ease;
}

.header-site-switcher-btn:hover {
  border-color: rgba(168, 85, 247, 0.7);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8), 0 0 0 1px rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}

.header-site-switcher-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 64, 175, 0.4),
    rgba(168, 85, 247, 0.5)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  box-shadow: 0 0 12px rgba(129, 140, 248, 0.5);
}

.header-site-switcher-icon i {
  font-size: 0.9rem;
}

.header-site-switcher-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.header-site-switcher-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.header-site-switcher-current {
  font-size: 0.75rem;
  color: #e5e7eb;
}

.header-site-switcher-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.65rem;
}

.header-site-switcher-dropdown {
  position: absolute;
  top: 2.5rem;
  right: 0;
  width: 15.5rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  overflow: hidden;
  z-index: 40;
}

.header-site-switcher-dropdown-header {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
}

.header-site-switcher-dropdown-header p {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.header-site-switcher-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.header-site-switcher-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  color: #e5e7eb;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.header-site-switcher-item:hover {
  background: rgba(30, 64, 175, 0.25);
  transform: translateY(-1px);
}

.header-site-switcher-item-main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-site-switcher-item-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfdbfe;
}

.header-site-switcher-item-icon i {
  font-size: 0.8rem;
}

.header-site-switcher-item-flag {
  width: 1.5rem;
  height: 1rem;
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.header-site-switcher-item-flag img {
  width: 100%;
  height: 100%;
  display: block;
}

.header-site-switcher-item-text {
  display: flex;
  flex-direction: column;
}

.header-site-switcher-item-label {
  font-weight: 500;
}

.header-site-switcher-item-domain {
  font-size: 0.65rem;
  color: #9ca3af;
}

.header-site-switcher-item-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.4rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(22, 163, 74, 0.45);
}

.header-site-switcher-item-badge-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 9999px;
  background: #22c55e;
}

.header-site-switcher-item-active {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.55));
}

/* Footer Site Switcher */
.footer-site-switcher-wrapper {
  display: none;
  position: relative;
}

@media (min-width: 640px) {
  .footer-site-switcher-wrapper {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
  }
}

.footer-site-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-site-switcher-btn:hover {
  border-color: rgba(168, 85, 247, 0.7);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.9);
}

.footer-site-switcher-icon {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfdbfe;
}

.footer-site-switcher-icon i {
  font-size: 0.75rem;
}

.footer-site-switcher-current {
  max-width: 6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-site-switcher-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.6rem;
}

.footer-site-switcher-dropdown {
  position: absolute;
  bottom: 110%;
  right: 0;
  width: 12rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.95);
  z-index: 30;
}

.footer-site-switcher-list {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
}

.footer-site-switcher-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  color: #e5e7eb;
  text-decoration: none;
  transition: background 0.2s ease;
}

.footer-site-switcher-item:hover {
  background: rgba(30, 64, 175, 0.35);
}

.footer-site-switcher-item-icon {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bfdbfe;
  margin-right: 0.4rem;
}

.footer-site-switcher-item-icon i {
  font-size: 0.7rem;
}

.footer-site-switcher-item-flag {
  width: 1.25rem;
  height: 0.9rem;
  border-radius: 0.2rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
  margin-right: 0.35rem;
}

.footer-site-switcher-item-flag img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-site-switcher-item-label {
  flex: 1;
}

.footer-site-switcher-item-badge {
  margin-left: 0.35rem;
  padding: 0.15rem 0.35rem;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.18);
  border: 1px solid rgba(22, 163, 74, 0.45);
}

.footer-site-switcher-item-active {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.55));
}

/* Chatbot Widget Styles */
.chatbot-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  font-family: inherit;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.9),
    rgba(139, 92, 246, 0.9)
  );
  border: 2px solid rgba(168, 85, 247, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.4),
    0 8px 24px rgba(15, 23, 42, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5),
    0 12px 32px rgba(15, 23, 42, 0.6);
}

.chatbot-toggle:active {
  transform: scale(0.95);
}

.chatbot-toggle i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.chatbot-toggle:hover i {
  transform: scale(1.1);
}

.chatbot-toggle-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  background: #ef4444;
  border: 2px solid #0f172a;
  border-radius: 50%;
  animation: chatbot-pulse 2s infinite;
}

.chatbot-toggle-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

@keyframes chatbot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Chatbot Window */
.chatbot-window {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: 22rem;
  max-width: calc(100vw - 2rem);
  height: 32rem;
  max-height: calc(100vh - 6rem);
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.98),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5),
    0 10px 10px -5px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(168, 85, 247, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  pointer-events: none;
}

.chatbot-window-open {
  pointer-events: auto;
}

.chatbot-widget-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
  animation: chatbot-overlay-fade-in 0.3s ease;
}

@keyframes chatbot-overlay-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Chatbot Header */
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(139, 92, 246, 0.05)
  );
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
  flex-shrink: 0;
}

.chatbot-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.chatbot-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 2px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.chatbot-header-text {
  flex: 1;
  min-width: 0;
}

.chatbot-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.chatbot-subtitle {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.chatbot-close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.5rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chatbot-close:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(168, 85, 247, 0.4);
  color: #e2e8f0;
  transform: rotate(90deg);
}

.chatbot-close i {
  font-size: 1rem;
}

/* Chatbot Body */
.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 85, 247, 0.3) transparent;
}

.chatbot-body::-webkit-scrollbar {
  width: 6px;
}

.chatbot-body::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot-body::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 3px;
}

.chatbot-body::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.5);
}

/* Chatbot Questions */
.chatbot-questions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatbot-question-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.75rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-question-btn:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(168, 85, 247, 0.4);
  color: #e2e8f0;
  transform: translateX(4px);
}

.chatbot-question-btn i {
  font-size: 1rem;
  color: #a855f7;
  flex-shrink: 0;
}

.chatbot-question-btn span {
  flex: 1;
  line-height: 1.5;
}

/* Chatbot Messages */
.chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.chatbot-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(10px);
  animation: chatbot-message-fade-in 0.4s ease forwards;
}

@keyframes chatbot-message-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-message-bot {
  flex-direction: row;
}

.chatbot-message-user {
  flex-direction: row-reverse;
}

.chatbot-message-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.chatbot-message-avatar-user {
  background: linear-gradient(
    135deg,
    rgba(71, 85, 105, 0.3),
    rgba(51, 65, 85, 0.2)
  );
  border-color: rgba(71, 85, 105, 0.4);
  color: #94a3b8;
}

.chatbot-message-content {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 0.75rem;
  min-width: 0;
}

.chatbot-message-user .chatbot-message-content {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.25);
}

.chatbot-message-content p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  word-wrap: break-word;
}

.chatbot-message-user .chatbot-message-content p {
  color: #e2e8f0;
}

/* Ask Another Button */
.chatbot-ask-another {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.chatbot-ask-another-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 0.75rem;
  color: #c084fc;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-ask-another-btn:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
  color: #d8b4fe;
  transform: translateY(-2px);
}

.chatbot-ask-another-btn i {
  font-size: 1rem;
}

/* Chatbot Footer */
.chatbot-footer {
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-top: 1px solid rgba(71, 85, 105, 0.3);
  flex-shrink: 0;
}

.chatbot-contact-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(139, 92, 246, 0.15)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 0.75rem;
  color: #c084fc;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.chatbot-contact-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.3),
    rgba(139, 92, 246, 0.2)
  );
  border-color: rgba(168, 85, 247, 0.5);
  color: #d8b4fe;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.chatbot-contact-btn i {
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 640px) {
  .chatbot-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .chatbot-window {
    width: calc(100vw - 2rem);
    max-width: 22rem;
    height: calc(100vh - 8rem);
    max-height: 32rem;
    bottom: 4rem;
  }

  .chatbot-toggle {
    width: 3rem;
    height: 3rem;
  }

  .chatbot-toggle i {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 1rem);
    right: 0.5rem;
    bottom: 3.5rem;
  }

  .chatbot-header,
  .chatbot-body,
  .chatbot-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
