* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: #030712;
  color: #f8fafc;
  overflow-x: hidden;
}

/* Background Effects */
.bg-aurora {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.12), transparent 30%),
              radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.12), transparent 30%),
              radial-gradient(circle at 50% 80%, rgba(236, 72, 153, 0.08), transparent 30%);
  animation: auroraMove 20s ease-in-out infinite alternate;
}

@keyframes auroraMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(30px, -30px); }
}

/* Typography & Utilities */
.text-gradient-purple {
  background: linear-gradient(to right, #a855f7, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-cyan {
  background: linear-gradient(to right, #06b6d4, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.8; }

.logo-icon-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.4));
}

.logo-text-container {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 18px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 8px;
  color: #64748b;
  letter-spacing: 0.2px;
  margin-top: 4px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: #fff; }

.btn-primary {
  padding: 10px 24px;
  border-radius: 30px;
  background: #f8fafc;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
}

.hero-badge {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: #94a3b8;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-glow-purple {
  padding: 16px 32px;
  border-radius: 30px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: #d8b4fe;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.1);
}
.btn-glow-purple:hover {
  background: rgba(124, 58, 237, 0.25);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.btn-glow-cyan {
  padding: 16px 32px;
  border-radius: 30px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.5);
  color: #67e8f9;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}
.btn-glow-cyan:hover {
  background: rgba(6, 182, 212, 0.25);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

/* Trust Band */
.trust-band {
  width: 100%;
  padding: 40px 5%;
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-title {
  font-size: 13px;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.trust-badges {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.trust-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.trust-badge span {
  font-size: 16px;
  color: #cbd5e1;
  font-weight: 500;
}

.trust-icon {
  width: 32px;
  height: 32px;
  fill: #94a3b8;
  transition: fill 0.3s;
}

.trust-badge:hover .trust-icon {
  fill: #67e8f9;
}

/* Products Layout */
.section {
  padding: 120px 5%;
}

.product-container {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-container.reverse {
  flex-direction: row-reverse;
}

.product-info {
  flex: 1;
}

.product-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.product-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.product-desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.5;
}

.product-visual {
  flex: 1;
  position: relative;
}

.glass-mockup {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.glass-mockup::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  animation: rotateGlass 10s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes rotateGlass { 100% { transform: rotate(360deg); } }

.mockup-icon {
  font-size: 80px;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  display: inline-block;
}

.mockup-content {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(3, 7, 18, 0.8);
}
.footer-text {
  color: #64748b;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .product-container, .product-container.reverse {
    flex-direction: column;
    gap: 40px;
  }
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-title { font-size: 36px; }
  .section { padding: 60px 5%; }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.premium-modal {
  width: 95%;
  max-width: 950px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 80px rgba(6, 182, 212, 0.15);
  backdrop-filter: blur(20px);
  display: flex;
  position: relative;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .premium-modal {
  transform: translateY(0) scale(1);
}

.modal-left {
  flex: 1;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
  padding: 60px 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.modal-left-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(to right, #67e8f9, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.modal-left-desc {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.modal-left-visual {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-orb {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
  animation: pulseOrb 3s infinite alternate;
  z-index: 1;
}

@keyframes pulseOrb {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

.modal-right {
  flex: 1.2;
  padding: 60px 50px;
  background: rgba(3, 7, 18, 0.6);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.3);
  transform: rotate(90deg);
}

/* Floating Label Inputs */
.premium-form-group {
  position: relative;
  margin-bottom: 30px;
}

.premium-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0 8px;
  color: #f8fafc;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  transition: all 0.3s;
}

.premium-input:focus {
  outline: none;
  border-bottom-color: #06b6d4;
  box-shadow: 0 10px 10px -10px rgba(6, 182, 212, 0.3);
}

.premium-label {
  position: absolute;
  left: 0;
  top: 16px;
  color: #64748b;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.premium-input:focus ~ .premium-label,
.premium-input:not(:placeholder-shown) ~ .premium-label {
  top: -12px;
  font-size: 12px;
  color: #06b6d4;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.premium-submit {
  width: 100%;
  margin-top: 10px;
  padding: 18px;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 12px;
}

.premium-msg {
  display: none;
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .premium-modal { flex-direction: column; }
  .modal-left { padding: 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .modal-right { padding: 40px; }
  .modal-left-visual { display: none; }
}

/* Product Selection */
.premium-selection {
  margin-bottom: 30px;
}

.selection-group {
  display: flex;
  gap: 16px;
}

.selection-label {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.selection-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.selection-custom {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.selection-label input:checked ~ .selection-custom {
  background: rgba(6, 182, 212, 0.15);
  border-color: #06b6d4;
  color: #67e8f9;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.selection-label:hover .selection-custom {
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.9);
  min-width: 160px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
  color: #cbd5e1;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background: rgba(6, 182, 212, 0.1);
  color: #67e8f9;
}

/* Neural Network Animation for MindFlow */
.neural-net-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nn-core {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #a855f7, #7c3aed);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.5);
  z-index: 5;
  animation: corePulse 2s infinite alternate;
  position: relative;
}

@keyframes corePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 20px rgba(124, 58, 237, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.5); }
  100% { transform: scale(1.05); box-shadow: 0 0 40px rgba(124, 58, 237, 1), 0 0 60px rgba(124, 58, 237, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.8); }
}

.nn-node {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #d8b4fe;
  border-radius: 50%;
  box-shadow: 0 0 15px #d8b4fe;
  z-index: 4;
}

.nn-node-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.nn-node-2 { top: 50%; right: 10%; transform: translateY(-50%); }
.nn-node-3 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.nn-node-4 { top: 50%; left: 10%; transform: translateY(-50%); }
.nn-node-5 { top: 20%; left: 20%; }
.nn-node-6 { bottom: 20%; right: 20%; }

.nn-connection {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  background: rgba(216, 180, 254, 0.3);
  transform-origin: top left;
  z-index: 3;
}

.nn-conn-1 { height: 70px; transform: rotate(180deg); }
.nn-conn-2 { height: 70px; transform: rotate(-90deg); }
.nn-conn-3 { height: 70px; transform: rotate(0deg); }
.nn-conn-4 { height: 70px; transform: rotate(90deg); }
.nn-conn-5 { height: 80px; transform: rotate(135deg); }
.nn-conn-6 { height: 80px; transform: rotate(-45deg); }

.nn-data-packet {
  position: absolute;
  top: 0; left: -2px;
  width: 6px;
  height: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #fff;
  opacity: 0;
}

.nn-conn-1 .nn-data-packet { animation: flowData 2s infinite 0.1s; }
.nn-conn-2 .nn-data-packet { animation: flowData 2s infinite 0.7s; }
.nn-conn-3 .nn-data-packet { animation: flowData 2s infinite 1.2s; }
.nn-conn-4 .nn-data-packet { animation: flowData 2s infinite 0.4s; }
.nn-conn-5 .nn-data-packet { animation: flowData 2s infinite 1.8s; }
.nn-conn-6 .nn-data-packet { animation: flowData 2s infinite 0.9s; }

@keyframes flowData {
  0% { transform: translateY(80px); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 0; }
}

/* MindFlow Specific Styles */
.mf-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.mf-node {
  position: absolute;
  width: 12px; height: 12px;
  background: #67e8f9;
  border-radius: 50%;
  box-shadow: 0 0 20px #67e8f9;
}

.mf-node.node-1 { top: 30%; left: 20%; animation: float 6s infinite; }
.mf-node.node-2 { top: 50%; left: 80%; background: #d8b4fe; box-shadow: 0 0 20px #d8b4fe; animation: float 8s infinite reverse; }
.mf-node.node-3 { top: 80%; left: 40%; animation: float 7s infinite 1s; }
.mf-node.node-4 { top: 20%; left: 60%; background: #a855f7; box-shadow: 0 0 20px #a855f7; animation: float 9s infinite 2s; }

.mf-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

@media (max-width: 768px) {
  .mf-stats-grid { grid-template-columns: 1fr; }
  .mf-stat-card { transform: none !important; }
}

.mf-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.mf-stat-card:hover {
  transform: translateY(-10px) !important;
}

/* Flowchart Styles */
.mf-flow-container {
  width: 100%;
}

.mf-flow-line {
  position: absolute;
  top: 130px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(103,232,249,0.5) 50%, rgba(255,255,255,0.05) 100%);
  z-index: 1;
}

.mf-flow-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.mf-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.mf-step-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: #fff;
  backdrop-filter: blur(5px);
  position: relative;
}

.mf-step-title {
  font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #e2e8f0;
}

.mf-step-desc {
  font-size: 14px; color: #94a3b8; line-height: 1.6;
}

@media (max-width: 768px) {
  .mf-flow-steps { flex-direction: column; gap: 40px; }
  .mf-flow-line { display: none; }
}

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

@keyframes ping {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Compare Cards Layout */
.mf-compare-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 900px) {
  .mf-compare-cards {
    flex-direction: column;
  }
  .compare-arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }
}

.mf-compare-card {
  flex: 1;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.mf-compare-card.traditional {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(to right, rgba(15,23,42,0.6), rgba(30,41,59,0.4));
}

.mf-compare-card.mindflow {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.compare-item:last-child {
  margin-bottom: 0;
}

.icon-placeholder {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.icon-placeholder.glow-cyan {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.item-text {
  display: flex;
  flex-direction: column;
}

.item-text strong {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 5px;
}

.item-text span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.compare-arrow {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #a855f7, #67e8f9);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
  z-index: 2;
}

.compare-arrow svg {
  width: 30px;
  height: 30px;
}

/* SEOps Specific Styles */

/* Quadrant Container */
.seops-quad-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .seops-quad-container { grid-template-columns: 1fr; }
}

.quadrant {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.quadrant:hover {
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-5px);
}

.quad-tl { border-bottom-right-radius: 40px; border-top-color: rgba(251, 191, 36, 0.3); }
.quad-tr { border-bottom-left-radius: 40px; border-top-color: rgba(96, 165, 250, 0.3); }
.quad-bl { border-top-right-radius: 40px; border-bottom-color: rgba(52, 211, 153, 0.3); }
.quad-br { border-top-left-radius: 40px; border-bottom-color: rgba(248, 113, 113, 0.3); }

.quad-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.quad-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.quad-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.quad-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(15,23,42,1) 0%, rgba(30,41,59,1) 100%);
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.core-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.8);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.core-text {
  text-align: center;
  color: #60a5fa;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
}

/* Pillar Card */
.pillar-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #3b82f6;
  border-radius: 0 12px 12px 0;
  margin-bottom: 15px;
  transition: all 0.3s;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

/* Timeline */
.seops-timeline {
  padding: 40px 20px;
  position: relative;
}

.timeline-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  width: 100%;
}

.timeline-progress {
  position: absolute;
  top: 0; left: 0; height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #34d399 0%, #60a5fa 33%, #fbbf24 66%, #f87171 100%);
  width: 100%;
}

.time-node {
  position: absolute;
  top: -6px;
  transform: translateX(-50%);
  text-align: center;
}

.node-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #0f172a;
  margin: 0 auto 10px;
}

.node-label {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.node-label span {
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
}

.alert-badge {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid #f87171;
  color: #f87171;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Heatmap Container */
.heatmap-container {
  height: 400px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
  border-color: rgba(52, 211, 153, 0.3);
}

.hm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.hm-red {
  width: 150px; height: 150px;
  background: #ef4444;
  top: 20%; left: 30%;
  animation: float 5s infinite;
}

.hm-yellow {
  width: 180px; height: 180px;
  background: #fbbf24;
  top: 50%; left: 60%;
  animation: float 7s infinite reverse;
}

.hm-blue {
  width: 200px; height: 200px;
  background: #3b82f6;
  bottom: 10%; left: 20%;
  animation: float 6s infinite 1s;
}

/* Infinity Loop */
.infinity-loop {
  position: relative;
  width: 300px;
  height: 150px;
  display: flex;
}

.loop-circle {
  width: 150px;
  height: 150px;
  border: 15px solid rgba(52, 211, 153, 0.2);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loop-circle.left {
  border-right-color: transparent;
  transform: translateX(10px);
}

.loop-circle.right {
  border-left-color: transparent;
  transform: translateX(-10px);
}

.loop-text {
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
}

.loop-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #34d399;
  color: #022c22;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

.learning-item {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Cyber Button */
.cyber-btn {
  display: inline-block;
  padding: 20px 40px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.5);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2), inset 0 0 10px rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.cyber-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), transparent);
  transition: all 0.5s ease;
}

.cyber-btn:hover {
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.5), inset 0 0 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
  border-color: #67e8f9;
}

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