/* MIRABO Biotechnology - Main Stylesheet */
/* Updated to refer-index.html design system */

/* ========================================
   1. CSS VARIABLES
   ======================================== */
:root {
  /* Brand Colors (refer-index.html) */
  --mirabo-blue: #003BA3;
  --mirabo-lightBlue: #4B8DFF;
  --mirabo-green: #32CD32;
  --mirabo-dark: #05080F;
  --mirabo-surface: #0F141E;
  
  /* Background Colors */
  --bg-primary: #05080F;
  --bg-secondary: #0F141E;
  --bg-section-dark: #0A0E1A;
  --bg-section-light: #F8FAFC;
  --bg-glass: rgba(15, 20, 30, 0.6);
  
  /* Text Colors */
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-accent: #00D9FF;
  --text-dark: #0F172A;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #05080F 0%, #0F141E 50%, #1E1B4B 100%);
  --gradient-mesh: radial-gradient(circle at 20% 50%, rgba(75, 141, 255, 0.15) 0%, transparent 50%),
                   radial-gradient(circle at 80% 80%, rgba(50, 205, 50, 0.1) 0%, transparent 50%);
  --gradient-card: linear-gradient(145deg, rgba(15, 20, 30, 0.8), rgba(5, 8, 15, 0.9));
  --gradient-text: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --text-hero: 6rem;
  --text-h1: 4.5rem;
  --text-h2: 3rem;
  --text-h3: 2.25rem;
  --text-h4: 1.5rem;
  --text-body: 1.125rem;
  --text-small: 0.875rem;
  
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(75, 141, 255, 0.3);
  --shadow-glow-green: 0 0 20px rgba(50, 205, 50, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
}

/* ========================================
   2. RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

p {
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--neon-green);
}

/* ========================================
   4. LAYOUT
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

section {
  padding: var(--space-24) 0;
}

/* ========================================
   5. BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-display);
  font-weight: var(--font-semibold);
  font-size: var(--text-body);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--electric-blue);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--cyber-cyan);
}

.btn-secondary:hover {
  background: var(--cyber-cyan);
  color: white;
  border-color: var(--cyber-cyan);
  transform: translateY(-2px);
}

/* ========================================
   6. CARDS
   ======================================== */
.card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 16px;
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--cyber-cyan);
  box-shadow: var(--shadow-glow);
}

/* ========================================
   8. HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  transition: transform var(--transition-base), background var(--transition-base);
}

.header.scrolled {
  background: rgba(5, 8, 15, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo img {
  transition: opacity var(--transition-base);
}

.nav__logo:hover img {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  position: relative;
  font-weight: var(--font-medium);
  color: rgba(241, 245, 249, 0.8);
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mirabo-green);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

/* ========================================
   9. MOBILE MENU
   ======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  transition: right var(--transition-slow);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu__links {
  list-style: none;
  text-align: center;
}

.mobile-menu__link {
  display: block;
  font-size: var(--text-h4);
  font-family: var(--font-display);
  padding: var(--space-4);
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.mobile-menu__link:hover {
  color: var(--cyber-cyan);
}

/* ========================================
   10. FOOTER
   ======================================== */
.footer {
  background: var(--bg-section-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-24) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__logo {
  margin-bottom: var(--space-4);
}

.footer__tagline {
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.footer__desc {
  font-size: var(--text-small);
  color: var(--text-secondary);
}

.footer__title {
  font-size: var(--text-body);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.footer__links {
  list-style: none;
}

.footer__links a {
  display: block;
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  transition: color var(--transition-base);
  line-height: 1.6;
}

.footer__links a:hover {
  color: var(--cyber-cyan);
}

.footer__col p {
  font-size: var(--text-small);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--space-4);
  margin-top: 0;
}

.footer__social a {
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  color: var(--cyber-cyan);
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.footer__wechat-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.footer__col--wechat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__wechat-qr {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Contact page social icons hover effect */
.glass-panel a svg,
.glass-panel button svg {
  transition: all 0.3s ease;
}

.glass-panel a:hover svg,
.glass-panel button:hover svg {
  color: var(--mirabo-lightBlue) !important;
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(75, 141, 255, 0.6));
}

.glass-panel button:hover svg {
  color: var(--mirabo-green) !important;
  filter: drop-shadow(0 0 8px rgba(50, 205, 50, 0.6));
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  font-size: var(--text-small);
  color: var(--text-secondary);
}

/* ========================================
   11. BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 48px;
  height: 48px;
  background: var(--electric-blue);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glow);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}

/* ========================================
   12. HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

/* Homepage hero uses solid dark background (index.html only) */
.hero:not(.hero-platform):not(.hero-about):not(.hero-solutions):not(.hero-contact) {
  background: var(--mirabo-dark);
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.hero__bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/backgrounds/centraldogma.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 80rem;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--mirabo-green);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--mirabo-green);
  border-radius: 4px;
}

.hero__title {
  font-size: var(--text-hero);
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  line-height: 1.05;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: fit-content;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-12);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-small);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
  transition: color var(--transition-base);
}

.hero__scroll:hover {
  color: var(--mirabo-green);
}

.hero__scroll svg {
  /* animation removed */
}

/* ========================================
   7. UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(90deg, var(--cyber-cyan), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow { box-shadow: var(--shadow-glow); }
.glow-green { box-shadow: var(--shadow-glow-green); }


/* ========================================
   8. CONTENT SECTIONS
   ======================================== */

/* Section Common Styles */
.section {
  padding: var(--space-32) 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid var(--cyber-cyan);
  border-radius: 20px;
  color: var(--cyber-cyan);
  font-size: var(--text-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-8);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.section-title--dark {
  color: var(--text-dark);
}

.section-desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
  line-height: 1.8;
}

.section-tagline {
  font-size: var(--text-h4);
  color: var(--cyber-cyan);
  text-align: center;
  margin-bottom: var(--space-16);
  font-weight: 300;
}

.gradient-text {
  background: linear-gradient(90deg, var(--electric-blue), var(--cyber-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Company Overview Section */
.section-overview {
  background: var(--bg-primary);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-12);
  margin-top: var(--space-12);
}

.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyber-cyan);
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyber-cyan);
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.stat-title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.stat-desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
}

.stat-title {
  font-size: var(--text-h4);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.stat-desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* MiRAiQ Platform Section */
.section-platform {
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 70%),
              var(--bg-primary);
  text-align: center;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-12);
  margin: var(--space-12) 0;
}

.platform-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.platform-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.platform-card--prism {
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(0, 102, 255, 0.1));
}

.platform-card--prism:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.platform-card--orion {
  background: linear-gradient(145deg, rgba(0, 217, 255, 0.1), rgba(0, 255, 136, 0.1));
}

.platform-card--orion:hover {
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.platform-card--ignis {
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(255, 0, 0, 0.1));
}

.platform-card--ignis:hover {
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
}

.platform-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyber-cyan);
  filter: drop-shadow(0 0 15px currentColor);
}

.platform-card--prism .platform-card__icon {
  color: #8B5CF6;
}

.platform-card--orion .platform-card__icon {
  color: var(--cyber-cyan);
}

.platform-card--ignis .platform-card__icon {
  color: #FF6B00;
}

.platform-card__title {
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.platform-card__subtitle {
  font-size: var(--text-small);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.platform-card__desc {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.platform-card__link {
  display: inline-block;
  color: var(--cyber-cyan);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.platform-card__link:hover {
  transform: translateX(4px);
  text-shadow: 0 0 10px currentColor;
}

.platform-cta {
  margin-top: var(--space-12);
}

/* Industries Section */
.section-industries {
  background: var(--bg-section-light);
  padding: var(--space-32) 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--space-12);
  margin-top: var(--space-12);
}

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  transition: all 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.industry-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.industry-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card:hover .industry-card__image img {
  transform: scale(1.1);
}

.industry-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
  transition: background 0.4s ease;
}

.industry-card:hover .industry-card__image::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
}

.industry-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-12);
}

.industry-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-4);
  color: var(--neon-green);
  filter: drop-shadow(0 0 10px currentColor);
}

.industry-card__title {
  font-size: var(--text-h3);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-4);
  min-height: 2.5rem;
}

.industry-card__desc {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
  min-height: 3rem;
}

/* Mission & Vision Section */
.section-mission {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #1E1B4B 100%);
  position: relative;
  overflow: hidden;
}

.section-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: var(--space-12);
  position: relative;
  z-index: 1;
}

.mission-card {
  background: rgba(15, 20, 30, 0.4);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  transition: all 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  background: rgba(15, 20, 30, 0.5);
  box-shadow: 0 20px 60px rgba(75, 141, 255, 0.2);
}

.mission-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-6);
  color: var(--neon-green);
  filter: drop-shadow(0 0 15px currentColor);
}

.mission-card__label {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.mission-card__text {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* CTA Section */
.section-cta {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%),
              var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-20) 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.cta-text {
  font-size: var(--text-h4);
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
}

.btn-large {
  padding: var(--space-6) var(--space-12);
  font-size: var(--text-h4);
}

.btn-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
  }
}

/* Visual Enhancement Animations */
@keyframes scan {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(200px); }
}

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

/* ========================================
   CUSTOM CURSOR SYSTEM (refer-index.html)
   ======================================== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--mirabo-green);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(50, 205, 50, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(50, 205, 50, 0.1);
}

/* ========================================
   NOISE TEXTURE OVERLAY
   ======================================== */
.bg-noise {
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
}

/* ========================================
   GLASSMORPHISM STYLES
   ======================================== */
.glass-panel {
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(15, 20, 30, 0.8);
  border-color: rgba(50, 205, 50, 0.2);
  transform: translateY(-4px);
}

/* ========================================
   STICKY SCROLL CARDS
   ======================================== */
.sticky-card {
  position: sticky;
  margin-bottom: 6rem;
}

.sticky-card:nth-child(1) { top: 8rem; }
.sticky-card:nth-child(2) { top: 9rem; }
.sticky-card:nth-child(3) { top: 10rem; }

/* ========================================
   SCROLLBAR HIDE
   ======================================== */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.clip-text-image {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}


/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Hero Section */
.section-hero-about {
  min-height: 70vh;
  background: var(--mirabo-dark);
  display: flex;
  align-items: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--mirabo-lightBlue) 0%, var(--mirabo-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Company Story Section */
.section-story {
  background: var(--mirabo-dark);
}

/* Mission & Vision Section - Light Mode */
.section-mission-vision {
  background: #F3F4F6;
  color: #111827;
}

.section-mission-vision h2,
.section-mission-vision h3 {
  color: #111827;
}

/* Approach Section */
.section-approach {
  background: var(--mirabo-dark);
}

/* CTA Section */
.section-cta {
  background: var(--mirabo-dark);
}

/* ========================================
   ABOUT PAGE - TIMELINE STYLES
   ======================================== */

.approach-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.timeline-item {
  position: relative;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-8px);
}

.timeline-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: rgba(75, 141, 255, 0.1);
  line-height: 1;
}

.timeline-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.timeline-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-align: center;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
}


/* Stats Grid Variations */
.stats-grid.grid-cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mirabo-lightBlue);
  margin: 1rem 0;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .approach-timeline {
    grid-template-columns: 1fr;
  }
  
  .timeline-number {
    font-size: 3rem;
    top: -0.5rem;
    right: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ========================================
   PLATFORM PAGE STYLES
   ======================================== */

/* Hero Platform */
.hero-platform {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   PIPELINE VISUALIZATION
   ======================================== */

.section-pipeline {
  position: relative;
  overflow: hidden;
}

.pipeline-flow {
  position: relative;
}

/* Stage Cards Grid */
.pipeline-stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.stage-card {
  position: relative;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(75, 141, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stage-card:hover {
  transform: translateY(-12px) scale(1.05);
}

.stage-card:hover::before {
  opacity: 1;
}

.stage-card[data-platform="prism"]:hover {
  border-color: #4B8DFF;
  box-shadow: 0 20px 60px rgba(75, 141, 255, 0.4);
}

.stage-card[data-platform="orion"]:hover {
  border-color: #00D9FF;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

.stage-card[data-platform="ignis"]:hover {
  border-color: #FF6B00;
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.4);
}

.stage-card--inactive {
  opacity: 0.4;
  border-style: dashed !important;
  pointer-events: none;
}

.stage-card--inactive .stage-platform-badge {
  display: none;
}

.stage-card--inactive .stage-icon-svg {
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.6;
}

.stage-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: rgba(75, 141, 255, 0.15);
  line-height: 1;
}

.stage-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.stage-icon-svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(75, 141, 255, 0.3));
  transition: transform 0.3s ease;
}

.stage-card:hover .stage-icon-svg {
  transform: scale(1.1);
}

.stage-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.stage-platform-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stage-platform-badge.prism {
  background: rgba(75, 141, 255, 0.15);
  color: #4B8DFF;
  border: 1px solid rgba(75, 141, 255, 0.3);
}

.stage-platform-badge.orion {
  background: rgba(0, 217, 255, 0.15);
  color: #00D9FF;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.stage-platform-badge.ignis {
  background: rgba(255, 107, 0, 0.15);
  color: #FF6B00;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.stage-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Flow Path at Bottom */
.flow-path-bottom {
  position: relative;
  width: 100%;
  height: 4px;
  margin: 0 auto;
  max-width: 1200px;
}

.flow-line {
  width: 100%;
  height: 4px;
  filter: drop-shadow(0 0 8px rgba(75, 141, 255, 0.6));
}

/* Animated Particles */
.flow-particle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #32CD32 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: flowParticle 4s linear infinite;
  box-shadow: 0 0 20px rgba(50, 205, 50, 0.8);
}

@keyframes flowParticle {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Responsive Pipeline */
@media (max-width: 1024px) {
  .pipeline-stages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pipeline-stages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stage-icon-wrapper {
    height: 60px;
  }
  
  .stage-icon-svg {
    width: 48px;
    height: 48px;
  }
}

/* Platform Sections */
.section-platform {
  padding: 6rem 0;
}

.platform-prism {
  background: linear-gradient(135deg, rgba(0, 59, 163, 0.1) 0%, rgba(15, 20, 30, 0.8) 100%);
}

.platform-orion {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(15, 20, 30, 0.8) 100%);
}

.platform-ignis {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(15, 20, 30, 0.8) 100%);
}

.platform-content {
  max-width: 1200px;
  margin: 0 auto;
}

.platform-header {
  text-align: center;
  margin-bottom: 4rem;
}

.platform-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(75, 141, 255, 0.1);
  border: 1px solid var(--mirabo-lightBlue);
  border-radius: 2rem;
  color: var(--mirabo-lightBlue);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.platform-badge.prism {
  background: rgba(75, 141, 255, 0.1);
  border-color: #4B8DFF;
  color: #4B8DFF;
}

.platform-badge.orion {
  background: rgba(0, 217, 255, 0.1);
  border-color: #00D9FF;
  color: #00D9FF;
}

.platform-badge.ignis {
  background: rgba(255, 107, 0, 0.1);
  border-color: #FF6B00;
  color: #FF6B00;
}

.platform-title {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.platform-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
}

.platform-purpose {
  font-size: 1.125rem;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.stage-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(50, 205, 50, 0.1);
  border: 1px solid var(--mirabo-green);
  border-radius: 0.5rem;
  color: var(--mirabo-green);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.stage-badge.prism {
  background: rgba(75, 141, 255, 0.1);
  border-color: #4B8DFF;
  color: #4B8DFF;
}

.stage-badge.orion {
  background: rgba(0, 217, 255, 0.1);
  border-color: #00D9FF;
  color: #00D9FF;
}

.stage-badge.ignis {
  background: rgba(255, 107, 0, 0.1);
  border-color: #FF6B00;
  color: #FF6B00;
}

/* Text Gradients */
.text-gradient-blue {
  background: linear-gradient(135deg, #4B8DFF 0%, #003BA3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00D9FF 0%, #32CD32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accordion */
.feature-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--mirabo-lightBlue);
}

.accordion-item.active {
  border-color: var(--mirabo-lightBlue);
  box-shadow: 0 4px 24px rgba(75, 141, 255, 0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(75, 141, 255, 0.05);
}

.accordion-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
  text-align: left;
}

.accordion-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mirabo-lightBlue);
  flex-shrink: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.feature-list {
  padding: 0 1.5rem 1.5rem 4rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--mirabo-green);
  font-weight: 700;
}

/* Technology Grid */
.platform-technologies {
  margin-bottom: 3rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(75, 141, 255, 0.2);
}

.tech-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  height: 64px;
}

.tech-icon img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.4));
  transition: transform 0.3s ease;
}

.tech-card:hover .tech-icon img {
  transform: scale(1.1);
}

.tech-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.tech-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.tech-points {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  padding-left: 1rem;
}

.tech-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: #FFFFFF;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.tech-points li::before {
  content: '•';
  color: #00D9FF;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Process Flow */
.process-flow {
  margin-bottom: 3rem;
}

.process-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.process-stage {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-stage:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.2);
}

.process-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Platform CTA */
.platform-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Benefits Section */
.section-benefits {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: var(--mirabo-dark);
}

.advantage-card {
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(75, 141, 255, 0.25);
}

.advantage-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.advantage-icon-wrapper svg {
  filter: drop-shadow(0 4px 12px rgba(75, 141, 255, 0.4));
}

.advantage-main-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.advantage-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mirabo-lightBlue);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.advantage-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.advantage-text .text-highlight {
  font-weight: 600;
  color: var(--text-primary);
}

.advantage-text .text-emphasis {
  font-weight: 600;
  color: var(--mirabo-lightBlue);
}

@media (max-width: 768px) {
  .advantage-card {
    padding: 2rem;
  }
  
  .advantage-main-title {
    font-size: 1.25rem;
  }
  
  .advantage-subtitle {
    font-size: 0.9375rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .pipeline-stages {
    flex-direction: column;
  }
  
  .pipeline-connector {
    width: 2px;
    height: 40px;
    transform: rotate(90deg);
  }
  
  .pipeline-connector::after {
    transform: rotate(90deg);
    right: -12px;
    top: 8px;
  }
}

@media (max-width: 768px) {
  .platform-title {
    font-size: 2.5rem;
  }
  
  .platform-subtitle {
    font-size: 1.25rem;
  }
  
  .tech-grid,
  .process-stages,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   SOLUTIONS PAGE STYLES
   ============================================ */

/* Breadcrumb - 已移除，不再使用 */

/* Solutions Section */
.section-solutions {
    padding: 6rem 0;
}

.section-solutions .solution-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-solutions .solution-card:last-child {
    border-bottom: none;
}

.section-solutions .solution-card:hover {
    transform: translateX(8px);
}

.section-solutions .solution-card:hover .solution-title {
    color: var(--cyber-cyan);
}

.solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1rem 0 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.solution-tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-solutions .solution-card {
        padding: 1.5rem 0;
    }
    
    .solution-title {
        font-size: 1.5rem;
    }
}

.solution-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.solution-badge--prism {
    background: rgba(75, 141, 255, 0.1);
    border: 1px solid rgba(75, 141, 255, 0.3);
    color: #4B8DFF;
}

.solution-badge--orion {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: #00D9FF;
}

.solution-badge--ignis {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: #FF6B00;
}

.solution-tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.solution-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--cyber-cyan);
    font-weight: bold;
}

.custom-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.custom-solution-card {
    padding: 2rem;
    text-align: center;
}

.custom-solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.custom-solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution-card-section {
  padding: 4rem 0;
}

.solution-card {
  display: grid;
  grid-template-columns: 60% 40%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
}

.solution-card--healthcare {
  grid-template-columns: 40% 60%;
}

/* Solution Card Image */
.solution-card__image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-card:hover .solution-card__image img {
  transform: scale(1.1);
}

.solution-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 59, 163, 0.3), rgba(50, 205, 50, 0.2));
  z-index: 1;
}

/* Solution Card Content */
.solution-card__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Solution Icon */
.solution-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  color: var(--mirabo-green);
  filter: drop-shadow(0 0 12px rgba(50, 205, 50, 0.5));
}

.solution-icon--cyan {
  color: #00D9FF;
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.5));
}

/* Solution Title */
.solution-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Solution Description */
.solution-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Benefits Section */
.solution-benefits {
  margin-bottom: 2rem;
}

.benefits-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mirabo-lightBlue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.benefits-list li::before {
  content: '✓';
  color: var(--mirabo-green);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Features Section */
.solution-features {
  margin-bottom: 2rem;
}

.features-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mirabo-lightBlue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.features-list li::before {
  content: '•';
  color: var(--mirabo-green);
  font-size: 1.5rem;
  line-height: 1;
}

/* Custom Solutions Section */
.section-custom-solutions {
  background: var(--mirabo-dark);
  position: relative;
  overflow: hidden;
}

.section-custom-solutions::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 59, 163, 0.15), transparent);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

/* Partnership Steps */
.partnership-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-step {
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.partnership-step:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(0, 59, 163, 0.3);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
}

.step-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--mirabo-lightBlue);
  filter: drop-shadow(0 0 12px rgba(75, 141, 255, 0.5));
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-align: left;
}

.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
}

/* Case Studies Section */
.section-case-studies {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--mirabo-dark);
  position: relative;
}

.section-case-studies::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 59, 163, 0.1), transparent);
  border-radius: 50%;
  top: -300px;
  left: -300px;
  pointer-events: none;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.case-study-card {
  padding: 3rem;
  text-align: center;
  transition: all 0.4s ease;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 59, 163, 0.3);
}

.case-study-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  color: var(--mirabo-lightBlue);
  filter: drop-shadow(0 0 12px rgba(75, 141, 255, 0.5));
}

.case-study-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.case-study-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .solution-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .solution-card--healthcare {
    grid-template-columns: 1fr;
  }
  
  .solution-card__image {
    min-height: 400px;
  }
  
  .partnership-steps {
    grid-template-columns: 1fr;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .solution-title {
    font-size: 2rem;
  }
  
  .solution-card__content {
    padding: 2rem;
  }
  
  .solution-card__image {
    min-height: 300px;
  }
  
  .partnership-step {
    padding: 2rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
}

/* ===================================
   FORM STYLES
   =================================== */

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.form-input:focus {
    outline: none;
    border-color: var(--mirabo-lightBlue);
    box-shadow: 0 0 0 3px rgba(75, 141, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input.error {
    border-color: #ef4444;
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

.form-error.active {
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Team Section */
.section-team {
    background: var(--bg-primary);
}

/* MCP Badge */
.mcp-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(75, 141, 255, 0.1);
    border: 1px solid rgba(75, 141, 255, 0.3);
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(75, 141, 255, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mcp-icon-tiny {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Team Section */
.section-team {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a1a2e 100%);
}

.team-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.team-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}

.team-group {
    margin-bottom: 3rem;
}

.team-group-title {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
}

.team-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.team-card-photo {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
}

.team-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.team-card-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.team-card-role {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

.team-card-desc {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.8;
}

.team-card-desc li {
    margin-bottom: 0.5rem;
}

.team-badge {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(75, 141, 255, 0.15);
    border: 1px solid rgba(75, 141, 255, 0.4);
    color: #4B8DFF;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .team-cards {
        grid-template-columns: 1fr;
    }
    
    .team-card-photo {
        width: 120px;
    }
}

@media (max-width: 640px) {
    .team-card-photo {
        width: 100px;
    }
    
    .section-badge {
        margin-bottom: var(--space-4);
    }
}
