@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* Professional UI Refinements */
:root {
  --primary: #6a00ff;
  --primary-600: #5a00db;
  --primary-700: #4a00b7;
  --primary-light: rgba(106, 0, 255, 0.08);
  --accent: #00ff88;
  --black: #0b0b12;
  --text: #1a1a24;
  --muted: #66667a;
  --white: #ffffff;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #eef0f7;
  --shadow-sm: 0 4px 12px rgba(16, 16, 24, 0.04);
  --shadow-md: 0 12px 32px rgba(16, 16, 24, 0.08);
  --shadow-lg: 0 24px 48px rgba(106, 0, 255, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  padding-top: 120px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-600);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Card Hover */
.card-hover-effect {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.card-hover-effect:hover::after {
  transform: translateX(100%);
}

.card-hover-effect:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Glass Indicator */
.glass-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(106, 0, 255, 0.05);
  border: 1px solid rgba(106, 0, 255, 0.1);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.glass-indicator .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}

.glass-indicator .dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }
.align-center { align-items: center; }

/* Header & Navigation */
.nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  padding: 16px 0 !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav.scrolled {
  padding: 10px 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.brand .logo {
  width: 180px !important;
  height: auto !important;
  display: block !important;
}

.menu {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  list-style: none !important;
}

.menu a {
  padding: 10px 20px !important;
  border-radius: 14px !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 15px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid transparent !important;
}

.menu a:hover, 
.menu-item:hover > a {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
  border-color: rgba(106, 0, 255, 0.1) !important;
}

.menu a.active {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
  border-color: rgba(106, 0, 255, 0.2) !important;
}

.menu-item {
  position: relative !important;
}

/* Dropdown */
.dropdown {
  position: absolute !important;
  top: calc(100% + 5px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(106, 0, 255, 0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  padding: 16px !important;
  min-width: 280px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 10000 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.menu-item:hover .dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.dropdown a {
  display: flex !important;
  flex-direction: column !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: background 0.2s ease !important;
}

.dropdown a:hover {
  background: var(--primary-light) !important;
}

.dropdown a strong {
  display: block !important;
  color: var(--black) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 2px !important;
}

.dropdown a span {
  font-size: 13px !important;
  color: var(--muted) !important;
  font-weight: 400 !important;
}

.menu a.has-dropdown::after {
  content: "▾" !important;
  margin-left: 6px !important;
  opacity: 0.5 !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.nav-email {
  color: var(--primary) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 10px 20px !important;
  background: var(--primary-light) !important;
  border-radius: 99px !important;
  white-space: nowrap !important;
  border: 1px solid rgba(106, 0, 255, 0.1) !important;
  transition: all 0.3s ease !important;
}

.nav-email:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes pulse-purple {
  0% { box-shadow: 0 0 0 0 rgba(106, 0, 255, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(106, 0, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 0, 255, 0); }
}

@keyframes text-reveal {
  0% { transform: translateY(30px); opacity: 0; filter: blur(5px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes slide-in-left {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-right {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes zoom-in {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.float { animation: float 6s ease-in-out infinite; }
.pulse { animation: pulse-purple 2s infinite; }

.animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.appear {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Image Hover Effects */
.img-hover {
  overflow: hidden;
  border-radius: 24px;
}

.img-hover img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-hover:hover img {
  transform: scale(1.05);
}

/* Glassmorphism Cards */
.glass {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  text-align: center;
}

.stat {
  flex: 1;
}

.stat h3 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

/* Data Animation Polish */
.counter {
  display: block;
  transition: transform 0.3s ease;
}

.stat:hover .counter {
  transform: scale(1.1);
}

.feature.card.glass {
  padding: 40px;
  border: 1px solid rgba(106, 0, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(20px) !important;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.feature.card.glass:hover {
  background: var(--white) !important;
  border-color: var(--primary) !important;
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow: 0 20px 40px rgba(106, 0, 255, 0.1) !important;
}

.feature.card.glass .icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature.card.glass:hover .icon {
  transform: scale(1.2) rotate(5deg);
}

/* Integrations Tabs */
.tabs-container {
  max-width: 900px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  background: var(--primary-light);
  padding: 8px;
  border-radius: 99px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
  animation: tabFadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

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

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}

.logo-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.logo-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.logo-card strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

/* Background Gradients */
.bg-gradient {
  background: linear-gradient(180deg, rgba(106, 0, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Footer Improvements */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer h4 {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: var(--muted); text-decoration: none; font-size: 15px; transition: color 0.3s ease; }
.footer ul li a:hover { color: var(--primary); }

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

/* Sections */
.section { padding: 100px 0; }
.section.light { background-color: #fcfcff; }
.section.dark { background-color: #0b0b12; color: var(--white); }
.section.dark h2 { color: var(--white); }
.section.dark p { color: rgba(255,255,255,0.7); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

.btn {
  display: inline-flex;
  padding: 16px 32px;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  font-size: 15px;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 20px rgba(106, 0, 255, 0.2);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(106, 0, 255, 0.3);
}

.btn.secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Animation Bar */
.animation-bar {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-600));
  border-radius: 3px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

/* Video Background */
.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.video-bg-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  z-index: -1;
}

.section.dark .video-overlay {
  background: rgba(11, 11, 18, 0.8);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  line-height: 0;
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
}

/* Process Steps (Prismetric Style) */
.process-step {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px;
  border-radius: 12px;
}

.process-step:hover {
  background: var(--white);
  transform: translateX(10px);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-num {
  transform: scale(1.2) rotate(10deg);
  background: var(--accent);
  color: var(--black);
}

.step-num {
  transition: all 0.3s ease;
}

/* Form Polish */
.input-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .input-row {
    flex-direction: column;
    gap: 32px;
  }
}

.input-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f9f9fb;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(106, 0, 255, 0.1);
  transform: translateY(-2px);
}

.input-group:focus-within .input-label {
  color: var(--primary);
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.file-upload-wrapper:hover {
  transform: translateY(-4px);
}

.file-upload-input {
  width: 100%;
  padding: 16px;
  background: var(--primary-light);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-upload-input:hover {
  background: rgba(106, 0, 255, 0.12);
}

.file-upload-text {
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* Service Items Mini */
.service-item-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.service-item-mini:hover {
  border-color: var(--primary);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
  background: var(--primary-light);
}

.service-item-mini .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  border-radius: 8px;
  flex-shrink: 0;
}

/* Floating Call Button */
.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-call:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.floating-call img {
  width: 32px;
  height: 32px;
}

/* Background Decorations */
.decor-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  z-index: -1;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--black) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .lead {
  font-size: 22px;
  margin-bottom: 48px;
  color: var(--muted);
  max-width: 600px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Dotted Background Improvement */
.dotted-bg {
  background-image: radial-gradient(rgba(106, 0, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
}

/* Responsive */
body.no-scroll {
  overflow: hidden !important;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 36px; }
  .hero .lead { font-size: 18px; }
  .section-header h2 { font-size: 32px; }
  .card { padding: 24px; }
  .input-row { gap: 15px; }
  
  .stats h3 { font-size: 32px; }
  .stats p { font-size: 12px; }

  /* Grid Reset for Mobile */
  .grid { display: block !important; }
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-12 { width: 100% !important; margin-bottom: 24px; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  [class*="col-"] { grid-column: span 12 !important; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .brand .logo { width: 140px !important; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hide by default on desktop */
@media (min-width: 1025px) {
  .hamburger { display: none; }
}

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  
  .menu {
    display: none !important;
  }
  
  .menu.open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    gap: 30px;
    padding: 40px;
    text-align: center;
  }
  
  .menu.open a {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
  }

  .menu-item .dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin-top: 10px !important;
    display: none !important;
  }

  .menu-item.active .dropdown {
    display: flex !important;
  }
  
  .nav-actions {
    display: none !important;
  }
  
  .stats.grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 24px !important;
    gap: 20px !important;
  }
  
  .stats .stat {
    grid-column: span 1 !important;
    margin-bottom: 0 !important;
  }
  
  .stats .stat:last-child {
    grid-column: span 2 !important;
  }
}
