* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #0a0a0f;
  color: #eef2ff;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 255, 136, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.2s ease, width 0.2s, height 0.2s;
}

/* Noise Background */
.noise-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(circle at 20% 30%, rgba(0,255,136,0.02) 0px, transparent 2px);
  pointer-events: none;
  z-index: -1;
}

/* Matrix Background */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  z-index: -2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
  padding: 18px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
}

.logo-ferrum {
  color: #ffffff;
}

.logo-cyber {
  color: #00ff88;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff88;
  transition: 0.2s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #00ff88;
}

/* Dropdown Grid */
.dropdown {
  position: relative;
}

.dropdown-grid {
  position: absolute;
  top: 40px;
  left: -100px;
  background: rgba(15, 15, 25, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  width: 500px;
}

.dropdown:hover .dropdown-grid {
  opacity: 1;
  visibility: visible;
}

.dropdown-col h4 {
  color: #00ff88;
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.dropdown-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  text-decoration: none;
  padding: 8px 0;
  font-size: 0.9rem;
  transition: 0.2s;
}

.dropdown-col a i {
  width: 20px;
  color: #00ff88;
}

.dropdown-col a:hover {
  color: #00ff88;
  transform: translateX(5px);
}

.btn-quote {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0a0f;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: 0.2s;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, #00ff88, #00cc6a, #00ffaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.btn-glow {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0a0f;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
  width: 300px;
  height: 300px;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  color: #cbd5e1;
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: 0.3s;
}

.btn-play:hover {
  border-color: #00ff88;
  color: #00ff88;
}

.hero-trust-badge {
  display: flex;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.trust-item i {
  color: #00ff88;
}

/* Security Dashboard */
.security-dashboard {
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  padding: 20px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f5f;
}

.dashboard-dots span:nth-child(2) { background: #ffbd44; }
.dashboard-dots span:nth-child(3) { background: #00ca4e; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat {
  text-align: center;
}

.stat-label {
  font-size: 0.7rem;
  color: #64748b;
  display: block;
}

.stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ff88;
}

.risk-low {
  color: #00ff88;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #00ff88, #00cc6a);
  border-radius: 8px 8px 4px 4px;
  transition: height 0.3s;
  animation: barRise 1s ease-out;
}

@keyframes barRise {
  from { height: 0; }
}

.dashboard-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #64748b;
}

.dashboard-footer i {
  color: #00ff88;
  margin-right: 5px;
}

/* Stats Marquee */
.stats-marquee {
  background: rgba(0, 255, 136, 0.05);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 50px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  color: #cbd5e1;
  font-size: 0.9rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
}

.section-subtitle {
  color: #94a3b8;
  margin-top: 16px;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.expertise-card {
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 28px;
  padding: 32px 24px;
  position: relative;
  transition: 0.3s;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: #00ff88;
}

.card-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 255, 136, 0.15);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Syne', sans-serif;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon i {
  font-size: 1.8rem;
  color: #00ff88;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.expertise-card p {
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  color: #00ff88;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.card-link:hover {
  gap: 12px;
}

/* Services Grid - 6 Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 28px;
  padding: 32px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #00ff88;
  box-shadow: 0 20px 30px -12px rgba(0, 255, 136, 0.2);
}

.service-icon {
  width: 55px;
  height: 55px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 1.8rem;
  color: #00ff88;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: #00ff88;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Trusted Partner */
.trusted-partner {
  background: linear-gradient(135deg, #0a0a0f, #0d1117);
  padding: 100px 0;
}

.partner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.partner-content p {
  color: #94a3b8;
  margin-bottom: 32px;
  line-height: 1.7;
}

.partner-metrics {
  display: flex;
  gap: 40px;
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00ff88;
}

.metric-label {
  font-size: 0.85rem;
  color: #64748b;
}

.partner-visual {
  display: flex;
  justify-content: center;
}

.security-badge {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed #00ff88;
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.badge-ring::before,
.badge-ring::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
}

.badge-ring::before { transform: scale(1.1); }
.badge-ring::after { transform: scale(1.2); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-inner {
  text-align: center;
  z-index: 1;
}

.badge-inner i {
  font-size: 3rem;
  color: #00ff88;
  margin-bottom: 12px;
}

.badge-inner span {
  display: block;
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* Process Timeline */
.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.process-node {
  text-align: center;
  flex: 1;
}

.node-circle {
  width: 70px;
  height: 70px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.node-circle span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #00ff88;
}

.node-content i {
  font-size: 1.8rem;
  color: #00ff88;
  margin-bottom: 12px;
}

.node-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.node-content p {
  font-size: 0.8rem;
  color: #64748b;
}

.process-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, transparent);
}

/* Industries Pills */
.industries-pill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.industry-pill {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 60px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.industry-pill i {
  color: #00ff88;
  font-size: 1rem;
}

.industry-pill:hover {
  border-color: #00ff88;
  transform: translateY(-2px);
}

/* Threat Intel Section */
.threat-intel {
  padding: 100px 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.05), transparent);
}

.intel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intel-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intel-content p {
  color: #94a3b8;
  margin-bottom: 24px;
  line-height: 1.7;
}

.intel-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.intel-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
}

.intel-features i {
  color: #00ff88;
  width: 24px;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0a0f;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.globe-animation {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
}

.globe-ring.delay-1 { animation: pulseRing 3s infinite; }
.globe-ring.delay-2 { animation: pulseRing 3s infinite 1s; }

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}

.globe-animation i {
  font-size: 5rem;
  color: #00ff88;
  z-index: 1;
}

/* Testimonial Slider */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 28px;
  padding: 32px;
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: #00ff88;
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #64748b;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
}

.cta-wrapper {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 204, 106, 0.03));
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 48px;
  padding: 60px 40px;
  text-align: center;
}

.cta-icon i {
  font-size: 3rem;
  color: #00ff88;
  margin-bottom: 24px;
}

.cta-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-wrapper p {
  color: #94a3b8;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-outline-light {
  border: 1px solid #00ff88;
  color: #00ff88;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background: rgba(0, 255, 136, 0.1);
}

/* Footer */
.footer {
  background: #050508;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo i {
  font-size: 28px;
  color: #00ff88;
}

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 800;
}

.footer-brand p {
  color: #64748b;
  margin-bottom: 20px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-contact i {
  color: #00ff88;
  width: 20px;
}

.footer-links h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin: 12px 0;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #00ff88;
}

.footer-newsletter p {
  color: #64748b;
  margin-bottom: 16px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 40px;
  border: 1px solid rgba(0, 255, 136, 0.3);
  background: rgba(15, 15, 25, 0.6);
  color: white;
}

.footer-newsletter button {
  background: #00ff88;
  border: none;
  padding: 12px 20px;
  border-radius: 40px;
  color: #0a0a0f;
  cursor: pointer;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  text-decoration: none;
  transition: 0.2s;
}

.footer-social a:hover {
  background: #00ff88;
  color: #0a0a0f;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slider { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .process-timeline { flex-direction: column; gap: 30px; }
  .process-line { width: 2px; height: 40px; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0a0a0f;
    padding: 20px;
    flex-direction: column;
  }
  .nav-menu.active { display: flex; }
  .nav-list { flex-direction: column; }
  .dropdown-grid { position: static; width: 100%; flex-direction: column; }
  .expertise-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .partner-wrapper { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
}


/* Welcome Section - NEW */
.welcome-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0f, #0d1117);
  position: relative;
  overflow: hidden;
}

.welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.03), transparent);
  pointer-events: none;
}

.welcome-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.welcome-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.badge-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

.welcome-badge span:not(.badge-line) {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #00ff88;
  font-weight: 600;
  text-transform: uppercase;
}

.welcome-title {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  margin-bottom: 20px;
  line-height: 1.2;
}

.welcome-desc {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 48px;
}

.welcome-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 48px;
  text-align: left;
}

.welcome-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}

.welcome-feature:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 10px 30px -10px rgba(0, 255, 136, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #00ff88;
}

.feature-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: white;
}

.feature-text p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.welcome-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.welcome-stat {
  text-align: center;
}

.welcome-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00ff88;
  font-family: 'Syne', sans-serif;
}

.welcome-stat .stat-label {
  font-size: 0.85rem;
  color: #64748b;
}

.welcome-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-glow {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0a0f;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::before {
  width: 300px;
  height: 300px;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  color: #cbd5e1;
  border: 1px solid rgba(0, 255, 136, 0.3);
  transition: 0.3s;
}

.btn-play:hover {
  border-color: #00ff88;
  color: #00ff88;
}

/* Responsive for Welcome Section */
@media (max-width: 1024px) {
  .welcome-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .welcome-stats {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 2rem;
  }
  .welcome-features {
    grid-template-columns: 1fr;
  }
  .welcome-stats {
    gap: 20px;
  }
  .welcome-cta {
    flex-direction: column;
    align-items: center;
  }
}