/*
 * ILAY AI - Compiled Styles
 * Tailwind CSS Utilities + Custom Styles
 */

/* ==========================================
   CSS RESET & BASE
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: inherit;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, [type='button'], [type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================
   CUSTOM PROPERTIES (Colors)
   ========================================== */
:root {
  --primary-300: #B37FEB;
  --primary-400: #9747FF;
  --primary-500: #7B2CBF;
  --primary-600: #6622AA;
  --accent-pink: #FF006E;
  --accent-orange: #FF6B35;
  --accent-cyan: #00B4D8;
  --accent-teal: #2EC4B6;
  --accent-gold: #FFD700;
  --dark-900: #0a0a0f;
  --dark-800: #12121a;
  --dark-700: #1a1a24;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container { width: 100%; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.top-1\/4 { top: 25%; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.right-8 { right: 2rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.bottom-24 { bottom: 6rem; }
.bottom-1\/4 { bottom: 25%; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-1\/4 { left: 25%; }
.left-1\/2 { left: 50%; }
.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }
.-right-4 { right: -1rem; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }
.z-101 { z-index: 101; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }

/* ==========================================
   FLEXBOX
   ========================================== */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* ==========================================
   GRID
   ========================================== */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ==========================================
   SPACING
   ========================================== */
/* Padding */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-32 { padding-top: 8rem; }
.pb-0 { padding-bottom: 0; }
.pb-4 { padding-bottom: 1rem; }
.pb-20 { padding-bottom: 5rem; }
.pl-11 { padding-left: 2.75rem; }

/* Margin */
.m-0 { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mr-12 { margin-right: 3rem; }
.ml-12 { margin-left: 3rem; }
.ml-24 { margin-left: 6rem; }

/* ==========================================
   SIZING
   ========================================== */
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.h-2 { height: 0.5rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-48 { height: 12rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-\[450px\] { height: 450px; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[calc\(100vw-3rem\)\] { max-width: calc(100vw - 3rem); }
.max-w-\[80\%\] { max-width: 80%; }
.max-h-48 { max-height: 12rem; }
.max-h-90vh { max-height: 90vh; }

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.font-outfit { font-family: 'Outfit', sans-serif; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.line-through { text-decoration-line: line-through; }

/* ==========================================
   COLORS
   ========================================== */
.text-white { color: #ffffff; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-primary-300 { color: #B37FEB; }
.text-primary-400 { color: #9747FF; }
.text-primary-500 { color: #7B2CBF; }
.text-accent-teal { color: #2EC4B6; }
.text-accent-cyan { color: #00B4D8; }
.text-accent-gold { color: #FFD700; }
.text-dark-900 { color: #0a0a0f; }
.text-green-400 { color: #4ade80; }

.bg-white { background-color: #ffffff; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-dark-900 { background-color: #0a0a0f; }
.bg-dark-800 { background-color: #12121a; }
.bg-dark-700 { background-color: #1a1a24; }
.bg-dark-800\/50 { background-color: rgba(18, 18, 26, 0.5); }
.bg-dark-700\/30 { background-color: rgba(26, 26, 36, 0.3); }
.bg-dark-700\/50 { background-color: rgba(26, 26, 36, 0.5); }
.bg-dark-900\/90 { background-color: rgba(10, 10, 15, 0.9); }
.bg-primary-500 { background-color: #7B2CBF; }
.bg-primary-500\/10 { background-color: rgba(123, 44, 191, 0.1); }
.bg-primary-500\/20 { background-color: rgba(123, 44, 191, 0.2); }
.bg-accent-cyan\/20 { background-color: rgba(0, 180, 216, 0.2); }
.bg-accent-teal { background-color: #2EC4B6; }
.bg-accent-teal\/20 { background-color: rgba(46, 196, 182, 0.2); }
.bg-accent-gold\/20 { background-color: rgba(255, 215, 0, 0.2); }
.bg-accent-pink\/20 { background-color: rgba(255, 0, 110, 0.2); }
.bg-red-500\/20 { background-color: rgba(239, 68, 68, 0.2); }
.bg-green-400 { background-color: #4ade80; }
.bg-transparent { background-color: transparent; }

.placeholder-white\/40::placeholder { color: rgba(255, 255, 255, 0.4); }

/* ==========================================
   BORDERS
   ========================================== */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-primary-500 { border-color: #7B2CBF; }
.border-primary-500\/30 { border-color: rgba(123, 44, 191, 0.3); }
.border-primary-500\/50 { border-color: rgba(123, 44, 191, 0.5); }
.border-accent-teal { border-color: #2EC4B6; }
.border-accent-teal\/50 { border-color: rgba(46, 196, 182, 0.5); }
.border-accent-gold\/50 { border-color: rgba(255, 215, 0, 0.5); }
.border-red-500 { border-color: #ef4444; }
.border-dashed { border-style: dashed; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-tl-md { border-top-left-radius: 0.375rem; }
.rounded-tr-md { border-top-right-radius: 0.375rem; }

/* ==========================================
   EFFECTS & SHADOWS
   ========================================== */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-90 { opacity: 0.9; }
.blur-3xl { filter: blur(64px); }
.blur-xl { filter: blur(24px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* ==========================================
   TRANSFORMS
   ========================================== */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-4 { transform: translateY(1rem); }
.scale-110 { transform: scale(1.1); }
.resize-none { resize: none; }

/* ==========================================
   TRANSITIONS
   ========================================== */
.transition { transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ==========================================
   VISIBILITY
   ========================================== */
.invisible { visibility: hidden; }
.visible { visibility: visible; }
.pointer-events-none { pointer-events: none; }

/* ==========================================
   INTERACTIVITY
   ========================================== */
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-primary-500:focus { border-color: #7B2CBF; }
.focus\:bg-dark-700:focus { background-color: #1a1a24; }

/* ==========================================
   HOVER STATES
   ========================================== */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-primary-300:hover { color: #B37FEB; }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.hover\:bg-white\/90:hover { background-color: rgba(255, 255, 255, 0.9); }
.hover\:bg-dark-700:hover { background-color: #1a1a24; }
.hover\:border-white\/30:hover { border-color: rgba(255, 255, 255, 0.3); }
.hover\:border-primary-500:hover { border-color: #7B2CBF; }
.hover\:border-primary-500\/50:hover { border-color: rgba(123, 44, 191, 0.5); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }

/* ==========================================
   PEER STATES
   ========================================== */
.peer:checked ~ .peer-checked\:border-primary-500 { border-color: #7B2CBF; }
.peer:checked ~ .peer-checked\:bg-primary-500\/10 { background-color: rgba(123, 44, 191, 0.1); }



/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

.animate-float-slow { animation: float 6s ease-in-out infinite; }
.animate-float-medium { animation: float 5s ease-in-out infinite; }
.animate-float-fast { animation: float 4s ease-in-out infinite; }
.animate-bounce { animation: bounce 1s infinite; }

/* ==========================================
   RESPONSIVE - MD (768px+)
   ========================================== */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:p-12 { padding: 3rem; }
  .md\:left-auto { left: auto; }
  .md\:right-8 { right: 2rem; }
  .md\:bottom-8 { bottom: 2rem; }
  .md\:w-96 { width: 24rem; }
}

/* ==========================================
   RESPONSIVE - LG (1024px+)
   ========================================== */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:pt-40 { padding-top: 10rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ==========================================
   RESPONSIVE - XL (1280px+)
   ========================================== */
@media (min-width: 1280px) {
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* ==========================================
   CUSTOM STYLES (from original)
   ========================================== */
.gradient-text {
  background: linear-gradient(135deg, #7B2CBF 0%, #FF006E 50%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, #7B2CBF 0%, #FF006E 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card:hover {
  border-color: rgba(123, 44, 191, 0.5);
  transform: translateY(-8px);
}

.grid-pattern {
  background-image: 
    linear-gradient(rgba(123, 44, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 44, 191, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-gradient {
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
}

.department-card {
  transition: all 0.3s ease;
}

.department-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 44, 191, 0.5);
}

.top10-card {
  transition: all 0.3s ease;
}

.top10-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 44, 191, 0.5);
}

.top10-card.hidden {
  display: none;
}

/* ==========================================
   MOBILE MENU STYLES
   ========================================== */
.mobile-menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  z-index: 9998 !important;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

.mobile-menu-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.mobile-menu-content {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  padding: 1.5rem;
  overflow-y: auto;
  position: relative;
  width: 100%;
  height: 100%;
}

.mobile-menu-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 0, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 2rem 0;
  position: relative;
  z-index: 1;
}

.mobile-menu-close-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.mobile-menu-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(123, 44, 191, 0.5);
  transform: rotate(90deg) scale(1.05);
}

.mobile-menu-close-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-menu-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.mobile-menu-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  width: 100%;
}

.mobile-menu-link {
  display: flex !important;
  align-items: center;
  padding: 1.5rem 1.75rem;
  font-size: 1.375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
  opacity: 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7B2CBF 0%, #FF006E 100%);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open .mobile-menu-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.24s; }

.mobile-menu-link:hover {
  background: rgba(123, 44, 191, 0.12);
  border-color: rgba(123, 44, 191, 0.4);
  color: white;
  transform: translateX(12px);
  box-shadow: 0 8px 24px rgba(123, 44, 191, 0.2);
}

.mobile-menu-link:hover::after {
  transform: scaleY(1);
}

.mobile-menu-link.special {
  background: linear-gradient(135deg, #7B2CBF 0%, #FF006E 100%);
  border: none;
  color: white;
  margin-top: 1.5rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(123, 44, 191, 0.3);
  justify-content: center;
}

.mobile-menu-link.special::after {
  display: none;
}

.mobile-menu-link.special:hover {
  background: linear-gradient(135deg, #8B3CCF 0%, #FF107E 100%);
  transform: translateX(0) scale(1.02);
  box-shadow: 0 12px 32px rgba(123, 44, 191, 0.4);
}



/* ==========================================
   FORM STYLES
   ========================================== */
.form-input.error {
  border-color: #ef4444 !important;
}

.error-message {
  display: none;
}

.error-message.show {
  display: block;
}

.form-group.has-error .form-input {
  border-color: #ef4444 !important;
}

.form-group.has-error .error-message {
  display: block;
}

/* ==========================================
   MODAL STYLES
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-container.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-container.open .modal-content {
  transform: translateY(0);
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(123, 44, 191, 0.5);
  border-radius: 4px;
}

/* ==========================================
   SERVICE SELECTOR STYLES
   ========================================== */
.service-select-card {
  transition: all 0.2s ease;
}

.service-select-card:hover {
  transform: translateY(-2px);
}

.service-select-card.selected {
  border-color: rgb(123, 44, 191);
  background: rgba(123, 44, 191, 0.1);
}

/* ==========================================
   CHATBOT STYLES
   ========================================== */
#chatbot-window.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.chat-message {
  animation: chatFadeIn 0.3s ease;
}

@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-option-btn {
  transition: all 0.2s ease;
}

.chat-option-btn:hover {
  transform: translateX(4px);
  border-color: rgba(123, 44, 191, 0.5);
  background: rgba(123, 44, 191, 0.1);
}

.typing-indicator span {
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

#chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

#chatbot-messages::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
}

#chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(123, 44, 191, 0.5);
  border-radius: 3px;
}

/* ==========================================
   STARTUP CATEGORY STYLES
   ========================================== */
.startup-toggle .toggle-icon {
  transition: transform 0.3s ease;
}

.startup-category.active .toggle-icon {
  transform: rotate(180deg);
}

/* ==========================================
   UTILITY CLASSES (Additional)
   ========================================== */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }

/* Background gradient for section */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-primary-500\/10 {
  --tw-gradient-from: rgba(123, 44, 191, 0.1);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(123, 44, 191, 0));
}

.via-dark-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #0a0a0f, var(--tw-gradient-to, rgba(10, 10, 15, 0));
}

.to-accent-pink\/10 {
  --tw-gradient-to: rgba(255, 0, 110, 0.1);
}



/* ==========================================
   COOKIE BANNER STYLES
   ========================================== */
#cookie-banner {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#cookie-banner.hidden {
  display: none;
}

/* ==========================================
   TABLE STYLES
   ========================================== */
table {
  border-collapse: collapse;
}

th, td {
  text-align: left;
  vertical-align: top;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

/* ==========================================
   UNDERLINE
   ========================================== */
.underline {
  text-decoration: underline;
}

/* ==========================================
   ADDITIONAL UTILITIES
   ========================================== */
.overflow-x-auto {
  overflow-x: auto;
}

.flex-wrap {
  flex-wrap: wrap;
}

.leading-relaxed {
  line-height: 1.625;
}

