.mainContainer {
  overflow: hidden;
  background-color: var(--color-background);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroVideoWrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.heroVideo {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transform: scale(1.1); /* To allow parallax */
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(10, 4, 24, 0.6) 0%, 
    rgba(10, 4, 24, 0.4) 40%, 
    rgba(10, 4, 24, 0.95) 100%);
  z-index: 1;
}

.heroContent {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
  margin-top: -5vh;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.heroBadgeDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 15px var(--color-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.heroBadgeText {
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.heroTitle {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}

.heroTitleAccent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ff9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-right: 0.1em;
}

.heroSubtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.heroActions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btnSuper {
  background: linear-gradient(45deg, var(--color-accent), #ff9900);
  color: var(--color-primary-dark);
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btnSuper:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.5);
}

.btnSuperOutline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btnSuperOutline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Floating Elements */
.floatingElement1, .floatingElement2 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.floatingElement1 {
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.floatingElement2 {
  bottom: 30%;
  right: 15%;
  animation: float 8s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.glassCard {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glassIcon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-accent), #ff9900);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
}

.glassText {
  text-align: left;
}

.glassText h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.glassText p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* Tracking Bar - Overlapping */
.trackingWrapper {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0 1rem;
}

.trackingInner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 8, 30, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.trackingInputWrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 100px;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.trackingInputWrapper:focus-within {
  border-color: rgba(255, 204, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.trackingIcon {
  color: var(--color-accent);
  margin-right: 1rem;
}

.trackingInput {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.1rem;
  padding: 1rem 0;
  outline: none;
  font-family: inherit;
}

.trackingInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.trackingBtn {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border: none;
  padding: 1rem 3rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.trackingBtn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Stats Section */
.statsSection {
  padding: 8rem 0;
  position: relative;
  background: radial-gradient(circle at center, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.statCard {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.statCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.statCard:hover {
  transform: translateY(-10px);
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border-color: rgba(255,255,255,0.1);
}

.statCard:hover::after {
  opacity: 1;
}

.statNumber {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.statLabel {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Services 3D Grid */
.servicesSection {
  padding: 8rem 0;
  position: relative;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 5rem;
}

.sectionTitle {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.sectionSubtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

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

.serviceCard {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  group: service;
}

.serviceImageWrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.serviceImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.serviceCard:hover .serviceImage {
  transform: scale(1.1);
}

.serviceOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: 1;
  transition: all 0.5s ease;
}

.serviceCard:hover .serviceOverlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(29, 15, 66, 0.6) 60%, transparent 100%);
}

.serviceContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.serviceCard:hover .serviceContent {
  transform: translateY(0);
}

.serviceIcon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.serviceTitle {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
}

.serviceDesc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 80%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  transition-delay: 0.1s;
}

.serviceCard:hover .serviceDesc {
  opacity: 1;
  transform: translateY(0);
}

.serviceLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  transition-delay: 0.2s;
}

.serviceCard:hover .serviceLink {
  opacity: 1;
  transform: translateY(0);
}

.serviceLink:hover {
  color: white;
}

/* Feature Showcase */
.showcaseSection {
  padding: 10rem 0;
  position: relative;
}

.showcaseGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.showcaseGrid.reverse {
  direction: rtl;
}

.showcaseGrid.reverse > * {
  direction: ltr;
}

.showcaseImageContainer {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.showcaseImageContainer::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  z-index: 10;
  pointer-events: none;
}

.showcaseImage {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.showcaseFloatingBadge {
  position: absolute;
  bottom: 10%;
  left: -5%;
  background: rgba(15, 8, 30, 0.9);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.showcaseGrid.reverse .showcaseFloatingBadge {
  left: auto;
  right: -5%;
}

.badgeIcon {
  color: var(--color-accent);
  background: rgba(255, 204, 0, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.badgeText h4 {
  color: white;
  font-size: 1.5rem;
  margin: 0;
}

.badgeText p {
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.showcaseContent h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
}

.showcaseContent p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.featureList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.featureItemIcon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featureItemText h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.featureItemText p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  margin: 0;
}

/* Marquee */
.marqueeWrapper {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}

.marqueeInner {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marqueeItem {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}

.marqueeText {
  font-size: 2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.marqueeText:hover {
  color: var(--color-accent);
  -webkit-text-stroke: 1px var(--color-accent);
}

.marqueeDot {
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* CTA Section */
.ctaSection {
  padding: 12rem 0;
  position: relative;
  text-align: center;
}

.ctaBg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ctaBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.4);
}

.ctaOverlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(108, 92, 231, 0.4) 0%, rgba(10, 4, 24, 0.9) 100%);
  z-index: 1;
}

.ctaContent {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.ctaTitle {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .servicesGrid {
    grid-template-columns: 1fr;
  }
  .serviceCard {
    aspect-ratio: 21/9;
  }
}

@media (max-width: 992px) {
  .statsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcaseGrid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .showcaseGrid.reverse {
    direction: ltr;
  }
  
  .showcaseFloatingBadge {
    left: 5%;
    bottom: -5%;
  }
  
  .showcaseGrid.reverse .showcaseFloatingBadge {
    right: 5%;
    bottom: -5%;
  }
  
  .serviceCard {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .heroTitle {
    font-size: 3rem;
  }
  
  .heroActions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btnSuper, .btnSuperOutline {
    width: 100%;
    justify-content: center;
  }
  
  .trackingInner {
    flex-direction: column;
    border-radius: 20px;
    padding: 1.5rem;
  }
  
  .trackingInputWrapper {
    width: 100%;
  }
  
  .trackingBtn {
    width: 100%;
  }
  
  .floatingElement1, .floatingElement2 {
    display: none;
  }
  
  .serviceContent {
    padding: 1.5rem;
  }
  
  .serviceTitle {
    font-size: 1.8rem;
  }
  
  .serviceDesc {
    display: none; /* Hide description on mobile to save space */
  }
  
  .showcaseImageContainer {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .statsGrid {
    grid-template-columns: 1fr;
  }
  
  .serviceCard {
    aspect-ratio: 4/3;
  }
}
